You are here: Home Register  |  Login
 

Welcome to the ClearStar.net Developer Community!  Gateway Web Services, the open platform for building to, extending, and integrating with ClearStar.net, provides the core functionality for creating screening solutions that are specialized to meet your needs.  This site contains a full set of resources to help make the development process quick and easy by putting putting resources in your hands and helping you to connect to other developers.

ClearStar.net Developer Community Blog
Nov 6

Written by: Ken Dawson
11/6/2009 4:32 PM 

 With the latest release of Gateway Web Services, version 2009.02, you can now attach documents to Profiles.  The documentation covers all of the methods that are available for adding, deleting, updated, and downloading Profile documents.  There is no limit to the number of documents that a Profile can have.  Each document can be up to 4MB and can be any of the following types:  .bmp, .doc, .docx, .efx, .gif, .jpeg, .jpg, .pdf, .png, .rtf, .txt, .tif, .xls, .xlsx, .zip.

The code shown below is an example written in C# of how to download a document and display it on a web page. 

Example:

 

CS_DocumentWS.Document wsDocument = new CS_DocumentWS.Document();
CS_DocumentWS.DownloadFile oDownloadFile = new CS_DocumentWS.DownloadFile();
 
oDownloadFile = wsDocument.DownloadProfileDocument(sUserName, sPassword, iBOID, sCustID, iFileID);
 
if (oDownloadFile.sErrorCode == "0")
{
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" + oDownloadFile.sFilename);
      Response.ContentType = oDownloadFile.sContentType;
      Response.BinaryWrite(oDownloadFile.baFileBytes);
      Response.End();
}
else
{
      // Display Error Messagew
lblError.Text = "Error downloading document: " + oDownloadFile.sErrorMsg;
}

 

Tags:
News & Events
Gateway Web Services 2010.01 Released - Thursday, February 04, 2010

ClearStar.net is pleased to announce the release of version 2010.01 of Gateway Web Services.  The first major release of 2010 includes the following:

  • Support for Stremline Web Services

For a full list of the updates, go to the Gateway Documentation and review the update log at the end.

 
Gateway Web Services 2009.02 Released - Friday, November 06, 2009

ClearStar.net is pleased to announce the release of version 2009.02 of Gateway Web Services.  The second major release of 2009 includes new functionality including:

  • Document Storage support for Profiles
  • Ability to transmit a Profile with Credit Card information
  • Updated Documentation

For a full list of the updates, go to the Gateway Documentation and review the update log at the end.

 
Gateway Web Services Developer Community Launched - Thursday, May 28, 2009

Yesterday, was the official launch of this site, ClearStar.net's Gateway Web Services Developer Community.  This site will be the hub for developer communications, community development, and open source efforts.  Be sure to register to get the most out the Developer Community.  Additional features are available for registered users of ClearStar.net Business Owners, including:  posting in the discussion forums, viewing the documentation, and downloading example and open source code.

Here is the full press release.

 read more ...
Gateway Web Services 2009.01 Released - Friday, March 27, 2009

ClearStar.net is pleased to announce the release of version 2009.01 of Gateway Web Services.  The first major release of 2009 includes new functionality including:

  • Notification when Profiles are completed
  • Disclaimer notice support
  • Copy a Profile
  • Driver's License format validation
  • Updated documentation
  • And more ...

For a full list of the updates, go to the Gateway Documentation and review the update log at the end.

 

 

Privacy Statement  |  Terms Of Use
Copyright 2009 by ClearStar.net