Re: Yet another cannot load mod_axis2.dll problem

2008-04-04 Thread Dinesh Premalal
Hi Andre, On Fri, Apr 4, 2008 at 8:04 PM, Andre Coelho [EMAIL PROTECTED] wrote: Why you guys never answers my threads? It's the third one without answers. Please, help me. I'm new to axis! I think your question is regarding Axis-C++ , I'm not familiar with Axis-C++. Hope someone will help

Re: WSDL2C

2008-04-04 Thread Dimuthu Gamage
Hi Kamath, Apparently this is not a problem in the generated code.. Did you include the generated axis2_stub_Calc2.h in your source. If so did you set the headers path to the axis2/c headers directory? Can you try declaring all the types in the first part of the function?, There are issues in

Re: WSDL2C

2008-04-04 Thread Dimuthu Gamage
BTW your wsdl has a problem, I got following warning in generating the code, 2008-04-04 22:18:42,668 WARN org.apache.axis2.schema.SchemaCompiler - Type {http://www.w3.org/2001/XMLSchema}SimpleStruct missing! And noticed following part should be replaced wsdl:message name=testOpRequest

Re: Yet another cannot load mod_axis2.dll problem

2008-04-04 Thread Andre Coelho
But I'm at the wright list, correct? On Fri, Apr 4, 2008 at 12:58 PM, Dinesh Premalal [EMAIL PROTECTED] wrote: Hi Andre, On Fri, Apr 4, 2008 at 8:04 PM, Andre Coelho [EMAIL PROTECTED] wrote: Why you guys never answers my threads? It's the third one without answers. Please, help me.

MSVCR80

2008-04-04 Thread [EMAIL PROTECTED]
Hello, I am a newbe to axis2c. I would like to run the example axis2_http_server.exe as a first step. I have downloaded the binary distribution and followed the steps on http://ws.apache.org/axis2/c/docs/installationguide.html#win_binary In step 2.1.3 (Running the binaries) I have set and

Re: MSVCR80

2008-04-04 Thread Supun Kamburugamuva
Hi Nanne, This occurs all the time to me also. When this occurs I simply clean all the binaries and build them again and the error vanishes. So I couldn't find a specific reason for this error to occur. It seems that building the binaries is not an option for you. So I suggest delete all the

Alternatives to LifeCycle interface to allow data to be freed off immediately after a response is sent?

2008-04-04 Thread Ken Ferguson
Hi, I'm writing a web service using Axis2 that passes back binary data on the response. Inside my service I achieve this by creating a DataHandler corresponding to the File I want to return, then add in some OMText to the response by calling OMFactory.createOMText(Object, boolean). My Service

Re: Alternatives to LifeCycle interface to allow data to be freed off immediately after a response is sent?

2008-04-04 Thread Deepal Jayasinghe
Hi, I'm writing a web service using Axis2 that passes back binary data on the response. Inside my service I achieve this by creating a DataHandler corresponding to the File I want to return, then add in some OMText to the response by calling OMFactory.createOMText(Object, boolean). If

Turning off Schema validation in Axis2 1.3

2008-04-04 Thread Sakari.Isoniemi
Hello There has been quite a lot discussion of schema validation in Axis2 and I have understood that omitting validation is possible only in JIXB model or how would it be possibe with ADB ? It would be nice to bybass validation in runtime but generation time is enough. I now use version

Re: session problem

2008-04-04 Thread Michelantonio Trizio
This code is in a service that invoke another service in the same servicegroup. Thank you. Michelantonio 2008/4/4, Deepal Jayasinghe [EMAIL PROTECTED]: I'd like someone make a comment on my solution. Thanks Mikelantonio

Re: Axis2 Client Engage Module

2008-04-04 Thread A Sunley
Thanks Dimuthu, By engaging the module with each request, do you think this represents any significant difference in performance? Regards, Alan. Dimuthu-2 wrote: Hi, When you engage the module to client it has to be engaged each time you instantiate a new ServiceClient. Each time the

setManageSession not working in JAVA client to .NET web service

2008-04-04 Thread Rajat Bhushan
Hi. I am writing a Java client to a .NET web service. I call an authentication service and then I get a cookie in the response. I need to set the cookie in all subsequent outgoing requests to other web services available on the same server. I tried using the setManageSession(true) , but

Re: setManageSession not working in JAVA client to .NET web service

2008-04-04 Thread Deepal Jayasinghe
Hi. I am writing a Java client to a .NET web service. I call an authentication service and then I get a cookie in the response. I need to set the cookie in all subsequent outgoing requests to other web services available on the same server. I tried using the setManageSession(true) ,

Migrating Project form axis 1.4 to axis2

2008-04-04 Thread Strembski, Christoph (ESN-Bochum)
Hi, im currently trying to migrate an existing project from axis to axis2. That means I will run the contract first approach because the interface must not be changed. What I really want to do is to run a code and contract first approach. When I try to use wsdl2java I get disappointing

[Axis2] Client Thread Safety

2008-04-04 Thread Daniel Ritchey
From what I understand with Axis2 1.3, client stubs are not thread safe, however the ConfigurationContext is; so I can create a single ConfigurationContext (an expensive operation) and reuse it for all stub instances. Is this a correct assumption? Thanks, Dan Ritchey

Re: [Axis2] Client Thread Safety

2008-04-04 Thread Davanum Srinivas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yes. Daniel Ritchey wrote: | From what I understand with Axis2 1.3, client stubs are not thread safe, | however the ConfigurationContext is; so I can create a single | ConfigurationContext (an expensive operation) and reuse it for all stub |

xmlns problem - targetNamespace=urn:TestSearchEngine ceating problem document Literal web services

2008-04-04 Thread sh_santosh
Dear All, I am facing a problem with xmlns. I have created document literal web services. When send a SOAP request then for 1st tag xmlns is required -- xmlns=urn:TestSearchEngine but i don't want to pass the xmlns. If i am not passing xmlns in SOAP Request then it's throwing

Security Policy question

2008-04-04 Thread SGruverman
I'm trying to apply a digital signature to the inbound and outbound message for a simple Axis2 (1.3) web service. I would like the client to send their certificate with the request but send the DN and certidicate serial # in the response and have the client look it up in their keystore. I've

How do I pass an array as an OMElement?

2008-04-04 Thread Nate Roe
I'm using Axis 1.3. On the client side, I have an ADBBean setter method that takes an OMElement. The corresponding service method takes an array of objects. How do I make my array of objects into an OMElement? Thanks, Nate Roe

RE: How do I pass an array as an OMElement?

2008-04-04 Thread Nate Roe
I found this KB article which I think is exactly what I want. http://wso2.org/library/332 After I read that, at first I wasn't sure how to make an appropriate QName, but now I see that my auto-generated ADBBean classes make QName objects often, so I can copy paste from there. Thanks, Nate