I am making a SOAP call to a .net web service which requires the 2001 schema to be used.
I see in the Apple SOAP/XMLRPC Guide on page 16 that you can specify the SOAP Schema Version kSOAP2001Schema (or “ss01”) in making an Apple Event call from an application.
But I do not see how to specify this in AppleScript.
Having searched hi and low, is there an example of this anywhere? What am I missing?
Thanks Much In Advance,
Evan C.
From the Guide:
The SOAP specification defines a schema for encoding (or serializing) information. The Apple Event
Manager can work with both the 1999 (or SOAP specification version 1.1) and 2001 (SOAP specification
version 1.2) schemas. Listing 1-4 (page 16) shows the constants for specifying the SOAP schema used
to format the SOAP request in a remote procedure call Apple event.
You can specify a serialization schema by adding a parameter of type typeType and key
keySOAPSchemaVersion to the direct object of a SOAP request Apple event. If you do not specify a
schema, the default is kSOAP1999Schema.
Listing 1-4 Constants for specifying a SOAP schema.
enum {
kSOAP1999Schema = ‘ss99’,
kSOAP2001Schema = ‘ss01’,
//…
keySOAPSchemaVersion = ‘ssch’
};