Hi Guys,
>
> I am just starting out with web services. I have some basic questions, so i
> hope you can answer them.
>
> 1) Where is the API documentation ?
>
> http://ws.apache.org/axis2/c/api/html/index.html
>
> This is giving me a 404.
>
> 2) What is the thread safety with using axis functions? Are the re-entrant
> ? Has any one wrapped c functions into a C++ class ? Are there any buffers
> used which are static/golbal ?
>
> 3) This is the example whcih i have managed to compile and run :
>
> Request :
> <soapenv:Envelope
> xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Body><greet>Hello
> Server!</greet></soapenv:Body></soapenv:Envelope>
>
> what i am trying to build is something like :
>
> <?xml version="1.0" encoding="utf-8"?>
> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="
> http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header>
> <MYHeader xmlns="http://myorg/1.1/Header/">
> <From>
> <systemId>string</systemId>
> <Credential>
> <userName>string</userName>
> <password>string</password>
> </Credential>
> </From>
> <To>
> <systemId>string</systemId>
> </To>
> <timeStamp>dateTime</timeStamp>
> <echoToken>string</echoToken>
> <transactionId>string</transactionId>
> <action>string</action>
> </MYHeader>
> </soap:Header>
> <soap:Body>
> <Request xmlns="http://my.org/1.1/Listener.Wsdl">string</Request>
> </soap:Body>
> </soap:Envelope>
>
>
> Since i am not much of an XML expert , how do i change tags like
> soapenv:Envelope to soap:Envelope.
>
> Cheers!
>