Re: soap:mustUnderstand

2010-10-29 Thread Rico M
to fix this since from another requester, the prefix might be different to soap. Hence, code should be added to extract the prefix and appended it to mustUnderstand part and then do the matching. Please raise a jira for this. Regards Nandika On Thu, Oct 28, 2010 at 9:28 PM, Rico M rickom

soap:mustUnderstand

2010-10-28 Thread Rico M
Hi All, One of the received messages fell over when the following attribute was present in the soap message: soap:Header CustomAttr soap:mustUnderstand=1 soap:Header [Thu Oct 28 15:31:23 2010] [debug] apache2_worker.c(299) Client HTTP version HTTP/1.1 [Thu Oct 28 15:31:23 2010] [debug]

Re: SoapAction retrived as NULL

2010-10-18 Thread Rico M
Anyone ? :( On Fri, Oct 15, 2010 at 11:47 AM, Rico M rickom...@gmail.com wrote: Further logs ; [Fri Oct 15 11:27:32 2010] [debug] apache2_worker.c(241) http://localhost:8080/axis2/services/ReceiveMessageAsync [Fri Oct 15 11:27:32 2010] [debug] apache2_worker.c(299) Client HTTP version HTTP

Re: SoapAction retrived as NULL

2010-10-15 Thread Rico M
-table not set in message context Also tried to retrive the same from options , but still fetching NULL :( On Fri, Oct 15, 2010 at 10:37 AM, Rico M rickom...@gmail.com wrote: Hi , I am facing a strange problem while trying to retrieve the soap Action value from the HTTP headers. *Following

SSL Client configuration

2010-10-07 Thread Rico M
Hi, I am trying to run a client which is sending a message to a https host. The logs seem to show the following error : [Thu Oct 7 10:25:14 2010] [error] http_client.c(285) Transport protocol is unsupported by axis2 [Thu Oct 7 10:25:14 2010] [error] http_client.c(286) Invalid Transport

Re: Configuring endpoint URL SOAPAction for WebServices

2010-10-06 Thread Rico M
for service using SOAP message body's first child's namespace URI : http://ws.apache.org/axis2/services/math [Wed Oct 6 11:45:52 2010] [debug] soap_body_disp.c(138) Service found using SOAP messagebody's first child's namespace URI Damitha Rico M wrote: Thanks damitha, That does help me get

Configuring endpoint URL SOAPAction for WebServices

2010-09-28 Thread Rico M
Hi, I wanted to understand how endpoints soap action are used to call a web service in axis2c. For ex: I am reaching an endpoint : http://abc.org and calling the soapAction : http://mno.org/ServiceA. How can the following be configured in my webserver ? All current calls I am making are via a

Re: Sending a NULL value in xml response to notify the usage of xsi:nil attribute

2010-09-28 Thread Rico M
You should be able to find your way around with these two functions. AXIS2_EXTERN axiom_attribute_t *AXIS2_CALL axiom_attribute_create( const axutil_env_t * env, const axis2_char_t * localname, const axis2_char_t * value, axiom_namespace_t * ns);

XML Encoding information in soap message.

2010-09-27 Thread Rico M
Hi All! All soap messages i am sending are intercepted as : soap:Envelope soap:Header /soap:Header soap:Body /soap:Body /soap:Envelope What i am looking for is adding xml encoding information to the message... ?xml version=1.0 encoding=utf-8? soap:Envelope soap:Header

Re: Unable to call web service : Message Error occurred in transport

2010-09-22 Thread Rico M
Nevermind guys the problem was with loading the axis2.xml.. Cheers! :)) On Wed, Sep 22, 2010 at 11:03 AM, Rico M rickom...@gmail.com wrote: The logs are : [Wed Sep 22 10:00:27 2010] [debug] phase_resolver.c(140) Service name is : __ANONYMOUS_SERVICE__ [Wed Sep 22 10:00:27 2010] [debug

Unable to call web service : Message Error occurred in transport

2010-09-21 Thread Rico M
Hi All, I am trying to call a web service over the internet. I tried to deploy and use proof-of-concept services locally and they work fine ( using simple axis server). I am trying to call a web service at this location : http://www.thomas-bayer.com:80/axis2/services/BLZService This fails with

Re: Axis2c deployment on Apache - endpoint reference problem

2010-08-16 Thread Rico M
is packed within a folder(that has same name as service), together with the services.xml and, that folder is in the repositoyr/services Thanks, Damitha Rico M wrote: Hi Sam, The services file is written and deployed in axis2c repo. Is there any other location i need to put this file or update

Axis2c deployment on Apache - endpoint reference problem

2010-08-12 Thread Rico M
Hi I am facing a strange problem accessing web services via Apache2. I have configured it as per the quick start guide. The following URL shows my services are deployed as well... http://XX.XX.XX.103/axis2/services *hello* Quick start guide hello service sample. *Available Operations* -

Re: Axis2c deployment on Apache - endpoint reference problem

2010-08-12 Thread Rico M
. Deepal On Thu, Aug 12, 2010 at 10:01 AM, Rico M rickom...@gmail.com wrote: Hi I am facing a strange problem accessing web services via Apache2. I have configured it as per the quick start guide. The following URL shows my services are deployed as well... http://XX.XX.XX.103/axis2

Re: Axis2c deployment on Apache - endpoint reference problem

2010-08-12 Thread Rico M
/axis2/services/hello and wsa actions is http://localhost/axis2/services/hello /Exception/soap:Detail/soap:Fault/soap:Body/soap:Envelope Still failing :( On Thu, Aug 12, 2010 at 4:29 PM, Rico M rickom...@gmail.com wrote: The operation name is correct, here is a extract of tcpmon. SENDING

Re: Document Style messages VS RPC

2010-08-09 Thread Rico M
Thanks for all the replies! On Sat, Aug 7, 2010 at 3:04 AM, Samisa Abeysinghe sam...@wso2.com wrote: There is more to this. See http://www.eherenow.com/soapfight.htm On Thu, Aug 5, 2010 at 8:33 PM, Rico M rickom...@gmail.com wrote: I am trying to understand various calling mechanisms

Axis Architecture : Nodes, Elements ..

2010-08-09 Thread Rico M
Hello everyone. I am trying to understand the underlying structure of Axis OM having little luck with it. I hope you can answer some of my basic queries. 1) What is a Axis Node , Element , Attribute, Text. 2) What is the hierarchy in which they are stored... i.e. is Axis node the container for

Re: Libxml2 Axis2/C

2010-08-09 Thread Rico M
axiom, and through axiom libxml2. *Also the test suite of libxml2 is best suited to make you learn how to use the library.* TEST are most often BETTER than some poorly written manuals. Regards Josef.Stadelmann @axa-winterthur.ch *Von:* Rico M [mailto:rickom

Validation

2010-08-06 Thread Rico M
Hi, Does axis2/c support validations of XSD's ? I am unable to lookup any information about it. What i need to achieve is the following : When the message is composed or received, i need to ensure it matches a particular format. Apart from application level check , is there any facility provided

Libxml2 Axis2/C

2010-08-06 Thread Rico M
Hi everyone... Sorry for the flurry of queries... Has any one managed to use libxml2 with axis2c. Please correct me if i am wrong , if one goes with libxml2, all parsing/creation will be done by libxml2 api and not axiom api.. I would love to see a simple example for managing requests response.

Re: Libxml2 Axis2/C

2010-08-06 Thread Rico M
,. Is this currently possible ? Cheers! On Fri, Aug 6, 2010 at 12:05 PM, Damitha Kumarage dami...@wso2.com wrote: Rico M wrote: Hi everyone... Sorry for the flurry of queries... Has any one managed to use libxml2 with axis2c. Please correct me if i am wrong , if one goes with libxml2, all parsing

Re: Retriving value from Soap Header

2010-07-27 Thread Rico M
Anyone ? :| On Wed, Jul 21, 2010 at 11:39 AM, Rico M rickom...@gmail.com wrote: Assuming my message is as follows: soap:Envelope xmlns:soap=http://www.w3.org/2003/05/soap-envelope; xmlns:xsi=http://www.w3.org/1999/XMLSchema-instance; xmlns:xsd= http://www.w3.org/2001/XMLSchema

Re: Modifying envelope of Axis

2010-07-20 Thread Rico M
at 2:00 PM, Rico M rickom...@gmail.com wrote: Thanks Nandika. I have gone through the OM tutorial : http://ws.apache.org/axis2/c/docs/om_tutorial.html Is there an api available which we can use to search for a particular element ?? Or the only way possible is to traverse it ? ( which i'll

Re: Axis2C Doubts

2010-07-19 Thread Rico M
, Damitha Kumarage dami...@wso2.com wrote: Samisa Abeysinghe wrote: On Sat, Jul 17, 2010 at 12:39 AM, Damitha Kumarage dami...@wso2.commailto: dami...@wso2.com wrote: Rico M wrote: Hi Damitha, Thanks for your reply. I did jump the gun i guess :) These are still

Re: Axis2C Doubts

2010-07-19 Thread Rico M
OS - Fedora core 13. Source version 1.6.0 On Mon, Jul 19, 2010 at 10:34 AM, Rico M rickom...@gmail.com wrote: Thanks guys! Now the build is failing with this error :| make[4]: *** No rule to make target `../../../../guththila/src/ libguththila.la', needed by `libaxis2_parser.la'. Stop

Re: Axis2C Doubts

2010-07-19 Thread Rico M
Sorry for the flood , but even the latest trunk in svn is failing to build: make[6]: *** No rule to make target `test_http_server.o', needed by `test_http_server'. Stop. Cheers! On Mon, Jul 19, 2010 at 10:48 AM, Rico M rickom...@gmail.com wrote: OS - Fedora core 13. Source version 1.6.0

Modifying envelope of Axis

2010-07-19 Thread Rico M
Hi, I am trying to modify the SOAP envelope generated by Axis. What i need to do is add some name spaces to it. 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/; I tried to

Axis2C Doubts

2010-07-16 Thread Rico M
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: Axis2C Doubts

2010-07-16 Thread Rico M
. For xml/soap follow a good tutorial. Thanks, Damitha Rico M wrote: 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