Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help with an object returned from a web service
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Web Services
Titre:
Help with an object returned from a web service
Divers
Thread ID:
00982423
Message ID:
00982423
Vues:
78
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform