Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SOAP and passing parameters by reference
Message
From
10/01/2004 18:00:32
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Web Services
Title:
SOAP and passing parameters by reference
Miscellaneous
Thread ID:
00865781
Message ID:
00865781
Views:
76
From the following code:
Serializer=CREATEOBJECT('MSSOAP.SoapSerializer')
Connector=CREATEOBJECT('MSSOAP.HTTPConnector')
Reader=CREATEOBJECT('MSSOAP.SoapReader')

Connector.Property("EndPointURL") = "https://..."
Connector.Connect
Connector.Property("SoapAction") = 'http://tempuri.org/...'
Connector.BeginMessage
Serializer.Init(Connector.InputStream)
Serializer.startEnvelope

Serializer.startBody

Serializer.startElement("MyMethod", "http://tempuri.org/...", , "m")

Serializer.startElement('FirstField')
Serializer.writeString('')
Serializer.endElement

Serializer.startElement('SecondField')
Serializer.writeString('')
Serializer.endElement

Serializer.startElement('ThirdField')
Serializer.writeString('')
Serializer.endElement

Serializer.startElement('Username')
Serializer.writeString('something')
Serializer.endElement

Serializer.startElement('Password')
Serializer.writeString('something')
Serializer.endElement

Serializer.startElement('City')
Serializer.writeString('Something')
Serializer.endElement

Serializer.endElement

Serializer.endBody

Serializer.endEnvelope

Connector.EndMessage
The first three parameters are passed by reference. This is a request from the server application. Can someone tell me how in Visual FoxPro I can pass such element by reference?
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Next
Reply
Map
View

Click here to load this message in the networking platform