| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod SetSOAPClientInterfaceConfiguration (SOAPClientInterface soapInterface_i, String host_i, Number port_i,  |  |   String soapServerName_i, String soapMethodName_i, String datasetKind_i,  |  |   String datasetName_i) |  | { |  |   TextBody: |  |   [* |  |     // Set the host, port number, and URL based on the parameters |  |      |  |     soapInterface_i.HostName( host_i ); |  |     soapInterface_i.Port(     port_i ); |  |     soapInterface_i.URL( "/soap/" + soapServerName_i + "/" + soapMethodName_i + "?datasetkind=%22" + datasetKind_i + "%22%26datasetname=%22" + datasetName_i + "%22" ); |  |   *] |  | } | 
 |