Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help with an object returned from a web service
Message
General information
Forum:
Visual FoxPro
Category:
Web Services
Title:
Help with an object returned from a web service
Miscellaneous
Thread ID:
00982423
Message ID:
00982423
Views:
77
I have registered a webservice and named it kssstp with the following url:
http://services.taxwatch.biz/rates/kansas/sstp.wsdl     
I then issued the following code:
local oSSTP as ksSSTP
where intellisense added the following code:
LOCAL loWS
loWS = NEWOBJECT("Wsclient",HOME()+"ffc\_webservices.vcx")
loWS.cWSName = "ksSSTP"
oSSTP = loWS.SetupClient("http://services.taxwatch.biz/rates/kansas/sstp.wsdl", "JurisdictionLookupService", "JurisdictionLookupPort")
I then added the following code
dDate = date()
oFIPS = oSSTP.GetFIPSBy5ZipOnly(66612,dDate)

FOR i = 0 TO oFIPS.length-1
	WITH oFIPS.item(i)
		? .nodeName, ":", .text
	ENDWITH
ENDFOR
According to Kansas Dept of Revenue there are 2 other nodes that I can't seem to get access to within this 'oFIPS' object. Can anyone help me with this? The function call issued above is somehow supposed to return a jurisdiction code but I can't seem to see one.

Thanks in advance,
Paul
Next
Reply
Map
View

Click here to load this message in the networking platform