Re: axis-c and apache modules...

2008-02-24 Thread Senaka Fernando
Hi Sam, I believe you are referring to Axis2/C. Axis doesn't have a C implementation, but, a C++ implementation rather. You can of course use your own module instead of the existing one. You will have to implement the mod_axis2.c file to suit your environment. If you want any further

Re: axis-c and apache modules...

2008-02-24 Thread Sam Carleton
Senaka, Ok, I am just getting into Web Services and my Apache Module is actually C++. Well a lot of it is simply C+ grin. So from looking at the http://ws.apache.org/soap/ site, I had gotten the impression that Axis2 has replaced Axis. From what you are saying Axis is C++ and Axis2 is either

Re: axis-c and apache modules...

2008-02-24 Thread Samisa Abeysinghe
Sam Carleton wrote: I am working on a project that currently has an Apache C module in it. Now I need this C code to talk to some applications via SOAP. Is axis-C what I am looking for or is that a stand alone SOAP/Web Service implementation using the Apache engine? So your module will

Re: axis-c and apache modules...

2008-02-24 Thread Samisa Abeysinghe
Sam Carleton wrote: Senaka, Ok, I am just getting into Web Services and my Apache Module is actually C++. Well a lot of it is simply C+ grin. So from looking at the http://ws.apache.org/soap/ site, I had gotten the impression that Axis2 has replaced Axis. From what you are saying Axis is C++

Re: axis-c and apache modules...

2008-02-24 Thread Sam Carleton
On Sun, Feb 24, 2008 at 8:21 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Axis2/C is the new implementation with many WS-* level support. I would rather use Axis2/C :) Cool What kind of a service do you want to consume from your module? It is an RPC style or a document style Web

Re: axis-c and apache modules...

2008-02-24 Thread Samisa Abeysinghe
Sam Carleton wrote: On Sun, Feb 24, 2008 at 8:21 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Axis2/C is the new implementation with many WS-* level support. I would rather use Axis2/C :) Cool What kind of a service do you want to consume from your module? It is an RPC

Re: axis-c and apache modules...

2008-02-24 Thread Sam Carleton
On Sun, Feb 24, 2008 at 9:41 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: You can do that by using our Axis2/C httpd module. However, if I understood your earlier mail correctly, you want to expose your own httpd module. Or do you want to expose an existing C++ library as a Web service?

Re: axis-c and apache modules...

2008-02-24 Thread Samisa Abeysinghe
Sam Carleton wrote: On Sun, Feb 24, 2008 at 9:41 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: You can do that by using our Axis2/C httpd module. However, if I understood your earlier mail correctly, you want to expose your own httpd module. Or do you want to expose an existing C++

Re: axis-c and apache modules...

2008-02-24 Thread Sam Carleton
On Sun, Feb 24, 2008 at 11:32 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Ok, let me present my perspective. You can use Axis2/C's httpd module and implement a service, that will wrap your current C/C++ business logic and the .NET application can communicate with the service hosted

Re: axis-c and apache modules...

2008-02-24 Thread Manjula Peiris
On Sun, 2008-02-24 at 23:48 -0500, Sam Carleton wrote: On Sun, Feb 24, 2008 at 11:32 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Ok, let me present my perspective. You can use Axis2/C's httpd module and implement a service, that will wrap your current C/C++ business logic and the

Re: axis-c and apache modules...

2008-02-24 Thread Senaka Fernando
Hi Sam, As I added before to this discussion, I believe that you could use either of the two options, 1. Adding mod_axis2 2. Adding mod_existing (+ mod_axis2 features) The manual caters for 1, which actually targets users, developers like you seeking for option 2, will rather have to browse

Re: SCT

2008-02-24 Thread Hardev Sian
Hi Ruchith, I used the config files from http://wso2.org/repos/wso2/trunk/wsas/java/modules/samples/sts-sample/conf/ and copied the sts.policy.xml to services.xml and try and run the STS service but I get an invalid services.xml. [java]

wsdl2code problem

2008-02-24 Thread Begun, Yana
Hi all, In my wsdl I use genericResponse complex type as a base type to all responses. Everything is fine, but response I receive from the SOAP server is not valid. Type attribute is added to the response. What's wrong and how to change? Thanks, Yana wsdl: xs:element name=addResponse

Re: wsdl2code problem

2008-02-24 Thread Jinyuan Zhou
Don't you have to repeat the definstions of the base type in the new type that is being defined by extension? Jack On Sun, Feb 24, 2008 at 6:19 AM, Begun, Yana [EMAIL PROTECTED] wrote: Hi all, In my wsdl I use genericResponse complex type as a base type to all responses. Everything is

Re: SCT

2008-02-24 Thread Hardev Sian
Hi Ruchith, Please ignore my last email, I was just doing something really silly. I have managed to send a request to the STS service but I get a Unsupported WS-SecureConversation version response back, I think I shoul be able to work that out. Regards, Hardev Hardev Sian

how to map an exceptio to a soap fault with fault code soapenv:Client

2008-02-24 Thread Jinyuan Zhou
Hi, There is an example in AXIS2 distribution where some fault message is defined in wsdl and the wsdl2java converted them in the some exception. But the soap fault created all have Server as the fault code. I wonder if there is some configuration point that I can controle the fault code of the

WSDL element restrictions

2008-02-24 Thread David Bunzli
Hi, Where does Axis2 enforce WSDL element restrictions? For example, if you wish a string element to have a minLength of 1 and maxLength of 3, are requests rejected by Schema validation if they don't conform? Or are these restrictions in the generated classes from Wsdl2Java? Regards, David