C# Class SampleGenevaSOAPInterface.CallableLoaderSession

Class to start and run callable a loader session via the Geneva SOAP interface.
Inheritance: GenevaSOAPSession
显示文件 Open project: GFTUSA/GFTInternal Class Usage Examples

Public Methods

Method Description
CallableLoaderSession ( string soapURL, string host, int port, string username, string password, bool sharedConnection ) : System

Constructor

LoadData ( string xmlData ) : void

Method to load xml data into Geneva using the callable loader.

Private Methods

Method Description
startRunrepSession ( ) : string

Method to start a callable loader session.

Method Details

CallableLoaderSession() public method

Constructor
public CallableLoaderSession ( string soapURL, string host, int port, string username, string password, bool sharedConnection ) : System
soapURL string URL for the Geneva SOAP Interface, in the form http://server:port, where port is the dbaserver port number, as defined in dbaserver.ini.
host string Server name that is running your Geneva service manager.
port int Port where the Geneva service manager is running, defined in geneva.ini.
username string Geneva username to login and run your report.
password string Password for the Geneva user.
sharedConnection bool True if this is a shared connection, false if you want to use a persistent connection.
return System

LoadData() public method

Method to load xml data into Geneva using the callable loader.
public LoadData ( string xmlData ) : void
xmlData string String containing the XML data to load, in the masterschema.xsd format.
return void