Re: SOAP Parameters
Re: SOAP Parameters
- Subject: Re: SOAP Parameters
- From: Paul Berkowitz <email@hidden>
- Date: Tue, 24 Jan 2006 00:53:55 -0800
- Thread-topic: SOAP Parameters
On 1/23/06 11:53 PM, "Christian Mittendorf"
<email@hidden> wrote:
>> I don't know what you mean by "serialize"/. Try 'small integer'
>
> And how can I tell AS to send a value as xsd:long? I've got a couple
> of services that require a long to be passed as a SOAP parameter, but
> I haven't figured out how to do it with AS.
As far as I know, a regular AppleScript integer _is_ a long. Or almost: it
stops just a couple factors of 2 short of the standard limit:
(2 ^ 29) - 1 as integer
--> 536870911
is the largest one. The standard limit of long is
(2 ^ 31) - 1
and its negative. (Small integer's range of of -32767 to 32767, or (2 ^ 15)
-1 is the same as for a short.)
AppleScript's real is the same as Double; you can use 'small real' for
Single. i.e. float.
--
Paul Berkowitz
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden