I added this plus a bunch more header information to the Axis Wiki

See the new "Headers" section of
  http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages

Thomas, this isn't in the documentation for WSDD in the reference guide.
  
Would you be willing to add it?  And maybe anything else we are missing
(which may be a lot :-()

--
Tom Jordahl
Macromedia Server Development

-----Original Message-----
From: Thomas Bayer [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 16, 2004 6:30 AM
To: [EMAIL PROTECTED]
Subject: AW: WSDD and explicit header

Hi,

Ransel Lopez wrote:
> Hi,
>
>  I've been trying to find a way to specified explicit headers in a WSDD.
>  I want these headers to appear in the WSDL document axis generates for
>  my web service.
>
>  Is there any way to do this? Can someone point me to an example?

With the inHeader and outHeader attribute parameters can be used as header
elements. The headers appear in generated WSDL documents.

see:

<operation name="addMovie"
           returnType="xsd:string"
           xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
  <parameter name="title" type="xsd:string" inHeader="true"/>
  <parameter name="pricePerDay" type="xsd:double" outHeader="true"/>
</operation>

thomas

Reply via email to