Formally, GET requests are only a part of SOAP1.2. But (a) Axis1.1 has some
soap1.2 bits in there and (b) Axis has long had a simple and informal way to
make requests with GET, it just gets better with time :)

try:
http://localhost:8080/axis/EchoHeaders.jws?method=echo&param=test

nb, looks like each param is sent is as a &param=foo&param=bar style, not
with the parameter names from the java source.

----- Original Message -----
From: "Markus Frommherz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 04, 2003 09:20
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