Purpose of project :
Client(VB) will send the "SendContentURL" to server after "mssoapinit" the wsdl file.

Details :
I try to debug the program by using Step Into(F8). As client(VB) mssoapinit the wsdl file, the server will send the WSDL file through tcp connection. The client(VB) continue and stop at the "MsgBox lobj.SendContentURL", thus an error message "Application-defined or object-defined error" pop up.

The following is the Client(VB) code,

VB Code:
  1. Sub Main()
  2. Dim lobj As New MSSOAPLib.SoapClient
  3.    
  4.     lobj.ClientProperty("ServerHTTPRequest") = True
  5.     ' Initialization of WSDL URL using soap client tool kit
  6.     lobj.mssoapinit "http://219.94.43.6:2503/MAXIS_EWIG.WSDL"      
  7.     strTimeStamp = Format$(Now, "DDMMYYYYHHMMSS")    
  8.    
  9.     [B]MsgBox lobj.SendContentURL[/B](3177, "beta", "beta", "36322",123, "60126563277", strTimeStamp, 2999, "Message", "http://203.115.229.184/wapcontent/andy.mid?id=99999", "", "", "W")              
  10.  
  11.     If Err <> 0 Then
  12.         MsgBox "initialization failed " + Err.Description
  13.     End If
  14.    
  15. End Sub

The following is the WSDL file located in server,
http://219.94.43.6:2503/MAXIS_EWIG.WSDL

Would much appreciate if anyone could state the problem and solution. Thanks in advance.