Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Consuming Web Services

Status
Not open for further replies.

correiadasilva

Programmer
Joined
Nov 9, 2006
Messages
1
Location
PT
Hi!

I'm new in Visual Fox Pro and I have to use a web service to upload one zip File (Big problem).
I can complete lots of internet examples but the method that I have to use receive as parameter one object (PeopleInput) that I don't know how to create.
The sintax to call the method is something like this: loUpload.SendPeople(people as PeopleInput)

I have an example of the soap message that I have to send:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap=" <soap:Header>
<authenticationToken xmlns="urn:/schemas.url.pt/services">
<userID>string</userID>
<password>string</password>
</authenticationToken>
</soap:Header>
<soap:Body>
<sendPeople xmlns="urn:/schemas.url.pt/services">
<people>
<zipFile>base64Binary</zipFile>
</people>
</sendPeople>
</soap:Body>
</soap:Envelope>


I'm confused with this.

Anyone can guide me? Please?

Thank you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top