WSDL 2.0 support

2006-11-22 Thread Francis Amanfo
Hi, Does it Axis2 1.1 support WSDL 2.0? Regards, Francis

Dynamic WSDL generation from Interface repository

2006-11-22 Thread Nisheed Raveendran
Hi, I am creating a web service from CORBA objects. The web service will be integrated with axis2. I need the WSDL to be generated dynamically from an Interface repository. I am planning to create a separate package for this and replace the javs2wsdl package with the new WSDL generator. Is

Re: Axis https/SSL Server Certificate Validation question

2006-11-22 Thread Magnus Bergman
This is no axis problem, but anyway, i don't know how to bypass the certification verification. But a solution to your problem is: add the self signed server cert into a truststore file that you put in your client-jar file and configure your client-app to use your shipped trustore file?

RE: Axis https/SSL Server Certificate Validation question

2006-11-22 Thread vincenzo.vitale
For avoiding certification validation, try to use the code: AxisProperties.setProperty(axis.socketSecureFactory,org.apache.axis.c omponents.net.SunFakeTrustSocketFactory); it should solve your problem. Regards, Vicio. -Original Message- From: Magnus Bergman [mailto:[EMAIL PROTECTED]

Axis 1.2-1.4 migration help needed

2006-11-22 Thread Ted Liefeld
We are upgrading an old web service based on Axis 1.2 to 1.4 so that we can start using Java5 (way belatedly) and I am having problems with the deserialization of a HashMap. This always worked easily in 1.1 and 1.2 but not in axis 1.3 or 1.4. The error is this; SEVERE: Could not convert

Throwing an AxisFault using Axis2

2006-11-22 Thread Augusto Arcoverde da Rocha
Hello, I'm impresed with the simplicity of Web Service development with Axis2, but I don't know if I'm understanding the role thing. In a simple Web Service I want fire SOAPException which is done throwing a AxisFault in my Java service class, but when testing with a test client, I have got

Re: SocketTimeout exception occurs during Serviceclient.sendReceiveNonBlocking call

2006-11-22 Thread Thilina Gunarathne
Hope you are using the sendRecieveNonBlocking without seperate listener.. Try increasing the time out value using the options.setTimeOutInMilliSeconds().. ~Thilina On 11/22/06, Sriram Vaidyanathan [EMAIL PROTECTED] wrote: Hi, I am experiencing SocketTimeout exceptions during the

How to Configure SOAP Response to Web Service Call?

2006-11-22 Thread Kent Schmidt
How do I define the format of the SOAP response to the incoming web service call? I determined how to use WSDL and services.xml to correctly define the format of the incoming message, but the outgoing response has several elements I didn't ask for. My Axis2/AXIOM web service looks like this

Re: WSDL and XML type extension

2006-11-22 Thread Srinath Perera
I do not think you can do this directly, one trick is to define a any content for the type, so you can put your additional data there. However web services usally check the type of parameter and I do not think it will accept a sub type. In my opinion Web services are not an effort to implement

Re: Target Resolvers

2006-11-22 Thread David Illsley
Hi, I use a TargetResolver when embedding Axis2 in a non-open source project. There is an example TargetResolver in the integration tests [1] if you want to see the kinds of things which are possible, David [1]

Basic Auth w Axis 1.2

2006-11-22 Thread regs
Hi I've reviewed the mailing lists and tried the samples but I am still having an issue getting Basic Auth to work within my J2ee container using Axis 1.2. I believe I have the roles, groups and users setup on the web service side. When I make a request into my container I am receiving: Axis

Calling blocking/non-blocking services from Ruby, Perl, and Python

2006-11-22 Thread Kevin O'Malley
I'm new to Axis2 and have a general question before jumping in. I'd like to implement blocking and non-blocking (callback/poll) services and talk to them in different languages (Java, Ruby, Perl, and Python). I have not dug deeply into the Axis2 documentation, but from what I've read, you can do

RE: SocketTimeout exception occurs during Serviceclient.sendReceiveNonBlocking call

2006-11-22 Thread Sriram Vaidyanathan
Yes, Thilina. Thanks that did the trick setting the timeout in options. Thanks Sriram -Original Message- From: Thilina Gunarathne [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 5:06 AM To: axis-user@ws.apache.org Subject: Re: SocketTimeout exception occurs during

Re: WSDL 2.0 support

2006-11-22 Thread keith chapman
Well the WSDL 2.0 spec is not finalized yet (It will in in a few months though), but we do support WSDL 2.0 as a feature. Our goal is to support it fully as the spec is finalized. Axis2 has the architecture to support WSDL 2.0 and we are currently integrating WSDL 2.0 to Axis2. In Axis2 1.1 it is

AW: [AXIS2]Savan Module - possible to notify client instead of another service?

2006-11-22 Thread Bastian Köhler
Hi Chamikara, Thanks for your answer. I tried it today as suggested, but it didn't work. The problem is, that i do not get any exception or axis fault, but the messages aren't delivered to my client. I first start a http server on the client side and register the service (POJO), which will be the

RE: Axis https/SSL Server Certificate Validation question

2006-11-22 Thread Luis Rivera
Thanks a lot Vicio and Magnus, I will try Vicio's suggestion first since I am using applets and writing to the client's hard disk might not be a viable option. However, I wonder if including a keystore in the jar file will do the trick. I am not sure if a keystore is also looked for in

What has to be in the wsdl to get a server skeleton

2006-11-22 Thread Lenny Wintfeld
What element(s) has to be in the wsdl to get a [Severname]Skeleton class and java file out of the eclipse wsdl to java converter plugin ? I'm not able to get a skeleton out of the axis 2 samples quickstartadb sample wsdl file StockQuoteService.wsdl Thanks Lenny Wintfeld

Re: axis to spring

2006-11-22 Thread Matthew Hannay
I am just getting back to this after a few days Are you looking at the latest docs ? Yeah, I am using the latest docs. However looking at the new 1.1 doco I't makes things a lot clearer. However I have worked out what my problem is and this could potentially be an axis bug. I have 2

Re: WSDL 2.0 support

2006-11-22 Thread Matthew Hannay
From the axis2 home page: WSDL support - Axis2 supports the Web Service Description Language, version 1.1 and 2.0, which allows you to easily build stubs to access remote services, and also to automatically export machine-readable descriptions of your deployed services from Axis2. I have not

Re: Basic Auth w Axis 1.2

2006-11-22 Thread Matthew Hannay
What Java container are you using? and have you configured the container(i.e JAAS) and the web.xml correctly? Matt --- [EMAIL PROTECTED] wrote: Hi I've reviewed the mailing lists and tried the samples but I am still having an issue getting Basic Auth to work within my J2ee container

Re: What has to be in the wsdl to get a server skeleton

2006-11-22 Thread Lahiru Sandakith
Hi Lenny, when you run eclipse codegen plugin in default flow [1], it only generates client side. What you want to do is to select custom options at the codegen option page and select the server side option. I have done a full scenario using StockQuoteService.wsdl with the plugin available at

Re: Axis2.1.1 wsdl2java

2006-11-22 Thread keith chapman
If u use the options -ss -sd -g all together it will generate both server side and client side in one go. Thanks, Keith. On 11/22/06, Mehar SVLN [EMAIL PROTECTED] wrote: Hai, Can anyone gimme some tips on this On 11/21/06, Mehar SVLN [EMAIL PROTECTED] wrote: Hai All, I have a wsdl i am

Re: Axis2.1.1 wsdl2java

2006-11-22 Thread Mehar SVLN
Hai Keith, Thanks for the reply I want to specify different namespaces for client side and server side how do i do that?? On 11/23/06, keith chapman [EMAIL PROTECTED] wrote: If u use the options -ss -sd -g all together it will generate both server side and client side in one go. Thanks,

Axis2 web service JAR files dependences.

2006-11-22 Thread Eric Chow
Hello, - How can I pack an AAR with some dependens JAR files? - How can I specific the username/password in the ADB web service client for web BASIC authentication? - How can I specify the proxy server information in the client? Best regards, Eric

Re: Axis https/SSL Server Certificate Validation question

2006-11-22 Thread xu cai
Actually, you can use System.setProperty(javax.net.ss.trustStore, your key store file location) . it can set truststore file path. On 11/23/06, Luis Rivera [EMAIL PROTECTED] wrote: Thanks a lot Vicio and Magnus, I will try Vicio's suggestion first since I am using applets and writing

Filling a Struts html:optionsCollection with a web service

2006-11-22 Thread dave .
Hi, Env: Struts 1.2.9, Axis 1.4, HIbernate 3.2 I have a jsp page in which a user enters search criteria to find a Property in a database. some of the fields are select boxes html:select property=typeId html:optionsCollection name=type value=id

ClassCastException when deserializing complex java objects (VOs)

2006-11-22 Thread sameeh harfoush
I am building a prototype that covers Spring webservices implementation. I have a SpringProducer web application that provide services and a SpringConsumer web application that uses these services. everything is working just fine except a ClassCastException when deserializing complex java

[axis2 1.1] Java2WSDL, the wsdl generated invalid

2006-11-22 Thread Qiyun Yang
Hi, I use Java2WSDL to generate a wsdl for java class: StockQuoteService.java (that comes with the axis2 1.1 distribution, --- quick start using AIOM. The generated wsdl is invalid (when validate it). Here is the wsdl code: wsdl:operation name=update wsdl:input message=tns:updateMessage /

AW: Axis2: Problems with running MTOM Sample

2006-11-22 Thread Peter Neu
Hi, I used that as well. Didn't work out. Any ideas what I could try beside that? Cheers, Pete -Ursprüngliche Nachricht- Von: Thilina Gunarathne [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 21. November 2006 18:14 An: axis-user@ws.apache.org Betreff: Re: Axis2: Problems with