RE: Regarding web services through AXIC c++

2007-04-24 Thread Sushmita Sahu
The mod_axis2.dllis in the specified path , ie in modules directory , still I am getting this error. I am attaching the httpd.conf file. Please check whther I have added the right code. Thanks and regards Sushmita Sahu Architecture Team | Finacle Infosys Technologies Limited Plot

RE: Regarding web services through AXIC c++

2007-04-24 Thread Yogender Singh01
Hi all, The error is resolved now for Axis2C[axis2c-bin-0.96-win32.zip] and apache2.2[apache_2.2.4-win32-x86-no_ssl.msi]. The server is able to load the mod_axis2.so. Thanks for all replies. -Original Message- From: Yogender Singh01 [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 24,

Re: Axis2-- Problem calling service inside another service through a handler.

2007-04-24 Thread Michele Mazzucco
On Tue, 2007-04-24 at 03:42 -0300, Inder Dhillon wrote: ow I have compiled the handler file and all related client files (of service which I want to invoke within the handler) and put altogether into a jar file called CallHandler.jar and then placed this jar file in

Re: AXIS2 1.1.1 problem with BASIC AUTH

2007-04-24 Thread Geir Amdal
aassif wrote: Now moving to the Server side implementation, I was expecting retrieving the result will be simple so I tried on the lines similar to Axis 1.X, below is the code listing: [znip code] I don't know which is the preferred procedure for extracting authentication data from

[Axis2] NullPointerException in AxisServlet?

2007-04-24 Thread Michele Mazzucco
I've noticed this error looking at the tomcat logs. Any idea? Michele org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260) ERROR [http-8081-Processor55] - Servlet.service() for servlet AxisServlet threw exception java.lang.NullPointerException at

Re: [Axis2] NullPointerException in AxisServlet?

2007-04-24 Thread Martin Gainty
Good Morning I would look at Log4j configurations for web.xml and also the configuring log4j.properties at http://logging.apache.org/log4j/docs/manual.html HTH Martin-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to

axis2 wsa:to

2007-04-24 Thread Erwin Reinhoud
Hello all, Since axis2 supports ws-addressing i hope to get an answer her to the following question. By whom is the ws-addressing header (and message) supposed to be processed? If i send a message to a service that supports a certain operation but in the wsa header i assign the wsa:To with an

RE: Axis2 Manage Session Cookie Manually

2007-04-24 Thread James Arbo
It's part of axiom axiom-api-1.2.2.jar -Original Message- From: James Arbo Sent: Monday, April 23, 2007 6:41 PM To: axis-user@ws.apache.org Subject: RE: Axis2 Manage Session Cookie Manually Anil, Below is the client side code that produces a valid response

Re: axis2 wsa:to

2007-04-24 Thread Paul Fremantle
Erwin Apache Synapse (ws.apache.org/synapse) can be configured to do this kind of routing. By default Axis2 only uses the wsa:To to dispatch to the right service and operation, but not to different systems. Paul On 4/24/07, Erwin Reinhoud [EMAIL PROTECTED] wrote: Hello all, Since axis2

RE: axis2 wsa:to

2007-04-24 Thread Erwin Reinhoud
Thanks Paul, I'll have a look at that. Kind Regards, Erwin -Oorspronkelijk bericht- Van: Paul Fremantle [mailto:[EMAIL PROTECTED] Verzonden: dinsdag 24 april 2007 16:26 Aan: axis-user@ws.apache.org Onderwerp: Re: axis2 wsa:to Erwin Apache Synapse (ws.apache.org/synapse) can be

RE: Axis2-- Problem calling service inside another service througha handler.

2007-04-24 Thread Inder Dhillon
Hello I have sent another mail regarding the errors. I'll really appreciate if anyone can help me with this problem as I really need it to be done. Inder Hello I am new user of Axis2, so please bear with me and please help me even if I am having stupid errors. I am having problem

message encodingStyle

2007-04-24 Thread pat
Hi, I have RPC based WS server which define message encodingStyle like this: wsdl:operation name=echo soap:operation soapAction=/ wsdl:input soap:body use=encoded encodingStyle=http://schemas.xmlsoap.org/soap/encoding/; namespace=http://echo.ws/ /wsdl:input wsdl:output soap:body

Re: axis2 wsa:to

2007-04-24 Thread Martin Gainty
Take a look at apache - sandesha http://ws.apache.org/sandesha/userguide.html An Operation from 1st web service can pass its returned value (String) to 2nd web service operation as input reference: Invoking more than One Service in a single client HTH/ M- This email message and any files

Re: Apache Axis 2: how to get header? Options

2007-04-24 Thread craig wickesser
so far I haven't found the parse method. On 4/23/07, craig wickesser [EMAIL PROTECTED] wrote: which class should have parse method? On 4/23/07, Davanum Srinivas [EMAIL PROTECTED] wrote: look for parse method in those classes. The parse method takes in a XMLStreamReader. If you see it it

Re: AXIS2 1.1.1 problem with BASIC AUTH

2007-04-24 Thread aassif
Dear Geir, Thank you for your reply. Your solution for OC4J was not working with Tomcat. I managed to make it work after getting ideas from your last reply which was using HttpServletRequest. Below is the working solution, which may help other readers. // acquire the active HTTP

Re: Apache Axis 2: how to get header? Options

2007-04-24 Thread Shaoguang Cong
In the generated Stub class, do a search for the method fromOM - you'll get the idea on how to get your UserInfo object from the OMElement (getHeader().getFirstChildWithName(QName of UserInfo) ). craig wickesser [EMAIL PROTECTED] wrote: so far I haven't found the parse method. On

How to add style to generated XML response?

2007-04-24 Thread Nima Khajehnouri
Hi, Is there any example or thread to add style to the generated XML response using either XSLT or CSS style sheets? Where this style sheet should be served? Thanks, Nima

Re: How to increase the time out of the Axis2 client

2007-04-24 Thread aaron aston
I have generated stubs as well ... you can get to Options via: stub._getServiceClient().getOptions().setTimeOutInMilliSeconds (60*1000); I'm not sure if you need to getOptions(), update them, then setOptions () or not ... see also:

RE: getting com.ctc.wstx.exc.WstxIOException: null exception

2007-04-24 Thread Glen Mazza
Just to add on to the others' comments, there is a recent WS02 article on using JMeter to test web services. This may prove helpful for you in debugging: http://wso2.org/library/1085 Glen Am Montag, den 23.04.2007, 09:21 -0400 schrieb Vibhor_Sharma: Hi Any comments on this please?? Just

RE: How to increase the time out of the Axis2 client

2007-04-24 Thread Vibhor_Sharma
thanks will look in to your suggestions and revert back. thanks From: aaron aston [mailto:[EMAIL PROTECTED] Sent: Tue 4/24/2007 2:34 PM To: axis-user@ws.apache.org Subject: Re: How to increase the time out of the Axis2 client I have generated stubs as well

Axis2 Primary API example

2007-04-24 Thread Anil Chukkapalli
Hi I am trying to go throught the axis 2 primary API example of echo blocking client http://ws.apache.org/axis2/1_1/dii.html and i cant find from where you got the ClientUtil.getEchoOMElement() function OMElement payload = ClientUtil.getEchoOMElement(); Options options

Re: Axis2 Manage Session Cookie Manually

2007-04-24 Thread Anil Chukkapalli
Jay Thanks for the reply one last question in the line outMsgCtx.setEnvelope (createSOAPEnvelope(Fred)); createSOAPEnvelope is a member of SOAPfactory, which is an interface. Is there a particular implementation of createSOAPEnvelope that you suggest i use. Thanks Anil On 4/24/07, James

Re: Axis2 Primary API example

2007-04-24 Thread Anil Chukkapalli
(Typo Fixed) Changed Hemp to Help On 4/24/07, Anil Chukkapalli [EMAIL PROTECTED] wrote: Hi I am trying to go throught the axis 2 primary API example of echo blocking client http://ws.apache.org/axis2/1_1/dii.html and i cant find from where you got the ClientUtil.getEchoOMElement()

RE: Axis2 Manage Session Cookie Manually

2007-04-24 Thread James Arbo
Anil, That was a method I had written. Below is the body: public static SOAPEnvelope createSOAPEnvelope(String personToGreet) { SOAPFactory fac = OMAbstractFactory.getSOAP11Factory(); SOAPEnvelope envelope = fac.getDefaultEnvelope(); OMNamespace

Axis with Tomcat 3.x

2007-04-24 Thread Ramesh Uppuluri
Does anyone know Axis can be deployed with Tomcat 3.x? Thanks ramesh

Does Axis 1.4 supports log4j v1.2.13

2007-04-24 Thread Kathy Chan
Hi, I understands that Axis 1.4 ships with log4j-1.2.8.jar. However, I would like to find out if log4j v1.2.13 is supported or not. Is there any official statement about this support or have anyone tested with it together with Axis 1.4? Regards, Kathy Chan

[AXIS2] Where did MC_SERVLET_ENDPOINT_CONTEXT go?

2007-04-24 Thread Masin, Valerie
I am switching from Axis1 to Axis2. In Axis1 I have code that uses these constants. However there don't seem to be Axis2 equivalents for them. org.apache.axis.Constants.MC_SERVLET_ENDPOINT_CONTEXT org.apache.axis.MessageContext.WSDLGEN_SERV_LOC_URL Here's how I am trying to use the first

No minOccurs=0?

2007-04-24 Thread Brian Neate
Hi, I have a question regarding wsdl generation from a java file. I'm having a problem where if I specify a return type of String[] I get the following schema generated in my wsdl. The problem is that the return element has a maxOccurs=unbounded which is what I want but this element should

Re: Axis2 Manage Session Cookie Manually

2007-04-24 Thread Anil Chukkapalli
Hi Deepal In your article Invoking Web Services using Axis 2 , in the section Working with operationclient in step6 it is stated that the same method works and you can access the response message context Thanks Anil On 4/23/07, Deepal Jayasinghe [EMAIL PROTECTED] wrote: Hi Anil, Anil

[Axis2] Access to HTTPClient within Axis ServiceClient

2007-04-24 Thread Sanoran Triamesh
Is it possible to access the apache commons httpclient that is embedded inside the Axis2 ServiceClient ? I need to access this client so that I can take care of authentication with a server that does not use the standard forms of authentication provided (BASIC/Digest). If someone has a example

Re: Axis2 Manage Session Cookie Manually

2007-04-24 Thread Anil Chukkapalli
Jay I am getting the message context successfully, i print the but String incomingCookie = (String) inMsgCtx.getServiceContext ().getProperty( HTTPConstants.COOKIE_STRING) is returning me a null. Is there any other way I can access the cookie. Thanks Anil On 4/23/07, James Arbo [EMAIL

error in adding service

2007-04-24 Thread Kencana
Hi all, I am new user of axis 2. I try to develop a new service, however it returns me as a faulty service. Any idea to fix this kind of situation? the following is the error messages I get: Error: org.apache.axis2.deployment.DeploymentException: Invalid service META-INF directory not found;

Re: Code generateion, with xmlbeans, results in missing methods.

2007-04-24 Thread Anne Thomas Manes
You might also find my blog entry on doc/literal/wrapped enlightening: http://atmanes.blogspot.com/2005/03/wrapped-documentliteral-convention.html Anne On 4/23/07, Tomas Kelly [EMAIL PROTECTED] wrote: Anne - thanks for that. My list of notes is steadily growing :) Amila - thanks again. I

RE: Axis2 Manage Session Cookie Manually

2007-04-24 Thread James Arbo
Anil, That probably means there is no Coookie: header in the response. Are you certain that your server is returning a Cookie: header? Did you set the manageTransportSession to true in axis2.xml? Have you ever used a proxy server? I'm using fiddler and it allows me to view the complete

Error: Cannot load SchemaTypeSystem

2007-04-24 Thread craig wickesser
Hi, I am using Axis2 to access a web service, and I generated the Java code from a WSDL. Works great So I created a simple Test class which looks like: class Test { public static void main(String[] args) { FooBarServiceStub stub = new FooBarServiceStub(); SayHelloDocument

Re: error in adding service

2007-04-24 Thread Charitha Kankanamge
Hi Kencana, How did you deploy the service? Axis2 service should be deployed as a service archive(aar file) with a proper structure as given in [1] or [2] or [3]. [1]http://ws.apache.org/axis2/1_1_1/userguide-buildingservices.html#buildservices

Re: Axis2 Primary API example

2007-04-24 Thread Charitha Kankanamge
Anil, You can find it in Axis2_home\samples\userguide\src\userguide\clients\ClientUtil.java of the axis2 binary distribution. Axis2_home = the location where you unpacked the Axis2 binary distro. Regards Charitha Anil Chukkapalli wrote: (Typo Fixed) Changed Hemp to Help On 4/24/07, *Anil

Re: [AXIS2] Problem with MessageContext

2007-04-24 Thread Deepal Jayasinghe
Hi Shaoguang , Yes , you can not store property in req message context and access them using response message context. If you want to do so , then you need to store the property in OperationConetxt not in the message context. There will be two fresh message context for one in-out mep. Thanks