Friends, I am consumin a WebService with Following Code
'>>>>>>>GetListItems Method<<<<<<<<
Dim strListName As XSD_String
Set strListName = New XSD_String
Call strListName.SetvalueFromString("IdeaManagement")
Dim strQuery As XSD_String
Set strQuery = New XSD_String
Call strQuery.SetvalueFromString("")
Dim strViewFields As XSD_String
Set strViewFields = New XSD_String
Call strViewFields.SetvalueFromString("")
Dim uRowLimit As XSD_UNSIGNEDINT
Set uRowLimit = New XSD_UNSIGNEDINT
Call uRowLimit.SetvalueFromString("10")
Dim returnValue As XSD_String
Dim result As String
Set returnValue = Fclass.GetListItems(strListName,strQuery,strViewFields,uRowLimit)
result = returnValue.GetValueasString()
Msgbox "Output>>>>"&result
Well the code is not giving me any Problem for Calling a Method from a Class
But it is ending up with a Message
Web Service SiteDataSoap_n0 method GetListItem erro Error Connecting to “mossserver” on port ‘22505’ the Remote server in not known TCP/IP host
Any Suggestions ??
Regrds
Sunit