Hi Markus:

That's not strictly true.  SOAP 1.1 does not prohibit GET requests from returning 
SOAP, it simply says if you want to use the standard HTTP binding to *send* SOAP, you 
must use POST.  Several packages (most notably .NET) support GET-style invocation with 
SOAP 1.1 returns.

SOAP 1.2 just made this pattern explicit in the spec (though it still doesn't say 
anything about how to URL encode parameter information, for instance).

--Glen

> -----Original Message-----
> From: Markus Frommherz [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 04, 2003 12:21 PM
> To: [EMAIL PROTECTED]
> Subject: Antw: Re: set and get methods from the browser
> 
> 
> GET-Requests are only allowed in SOAP 1.2 WD)
> http://www.w3.org/TR/soap12-part0/#L26854
>  Axis implements 1.1
> 
> 
> >>> [EMAIL PROTECTED] 04.02.2003  17.58 Uhr >>>
> 
> ----- Original Message -----
> From: "Zafar T Minhas" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, February 03, 2003 23:56
> Subject: set and get methods from the browser
> 
> 
> Hi I have made a web service, a very simple jws file. This is 
> the code:
> 
> 
> 
> >            private java.lang.String sGreeting = "";
> >
> >            public String getMessage()
> >
> >
> >        public void setMessage(java.lang.String TempsGreeting)
> 
> 
> 
> 
> >I am using axis. What I would like to know is whether there 
> is a way of
> >calling the both the setMessage and getMessage in the URL of 
> the browser.
> If
> >so does anyone know what the format of it is?
> 
> try  (on axis1.1 beta)
> 
> GET service.jws?method=setMessage&TempsGreeting=foo
> 
> 
> 

Reply via email to