Re: [Axis2] ArrayIndexOutOfBounds driving me crazy

2006-02-27 Thread Ajith Ranabahu
Hi, ADB is the Axis2 databinding framework with simple schema support. ADB (even though the default) is not meant to support all the schema constructs but acts as a 80% case for the databinding needs. XMLBeans on the other hand is a full blown XML to Object mapping (http://xmlbeans.apache.org/) an

Problem in compiling .jws file for dynamic classes

2006-02-27 Thread chinmoy chakraborty
  Hi All, When axis compiles .jws file, does it support dynamic classes referred in that .jws file? If no, how can i implement that? Thanks, Chinmoy

Re: [Axis2] Sending mails abt Axis2

2006-02-27 Thread Ajith Ranabahu
Hi all, I also opposed the idea of a seperate mailing list sometime back but I have to admit that there's a whole lot of folks interested in Axis2 right now which seems to be making the lists crowded (primarily by forgetting the axis2 prefix). If the Apache infra has no problem I would say we shoul

Re: [AXIS2] How to get AXIS to log the time taken for a service invocation

2006-02-27 Thread Eran Chinthaka
I don't think we have that right now, but you can add your own handlers very easily for that. -- Chinthaka Raghavendra Vaidya wrote: >Hi, > >IS there a way I can get Axis to log the time taken for a service execution?? > >Regards > >Vaidya > > > signature.asc Description: OpenPGP digital sig

Re: how to debug Axis2 WSDL2Java

2006-02-27 Thread Ajith Ranabahu
Hi, I have to admit that the WSDL2Java tool has poor error messages. The primary reason for the tool to have hideous error messages is that it does no validation so far. What you can do for now is to use something like the Capeclear SOA editor to validate the WSDL. If the WSDL is valid and the code

Java Client returns null

2006-02-27 Thread Ragha
Hi,     I created a service & deployed in axis.SOAP Response returns correct values  but client returns null for some objects.     Find the below scenario:     Method in webservice returns object of type Employee. Employee class has other class objects.  deploy.wsdd file has beantypemapping for all

Nightly snapshot of CVS source tree

2006-02-27 Thread Darma Muthiayen
Could we enable the nightly snapshot of the CVS source tree in   http://cvs.apache.org/snapshots/ws-axis/   Regards, Darma  

[AXIS2] How to get AXIS to log the time taken for a service invocation

2006-02-27 Thread Raghavendra Vaidya
Hi, IS there a way I can get Axis to log the time taken for a service execution?? Regards Vaidya

[Axis2] Converting an Axis1 web service to Axis2

2006-02-27 Thread Erik Horstkotte
Greetings! I've been tasked with converting an fairly simple existing, working web service from Axis1 to Axis2 as a development exercise. I've gotten to the point where it all compiles and installs under the Axis2 via a .aar file, appears in the available service list, and coughs up a plausibl

[AXIS1.3] Service method returns null while it should return a object?

2006-02-27 Thread Dave
Hi all,For a school assignment, we have to use axis. We have deployed a webservice succesfully but it doesnt return the correct value. First of all, the webservice is ok, the beanmappings are fine, everything thats has to be in the code and in the deploy.wsdd file is present. So there is nothing wr

RE: how to debug Axis2 WSDL2Java

2006-02-27 Thread Tachtevrenidis, Kosta
Greg,   I have gotten that a lot too. What I do to get an idea of what is going on is to use the wsewsdl3.exe tool to try to generate code for .NET, which have a pretty good error message capability. Just my thoughts.   Kosta Tachtevrenidis http://www.weyer.com/dmg   From: Greg Michalopo

Re: [Axis2] Sending mails abt Axis2

2006-02-27 Thread Srinath Perera
+1, when we first started I oppose this becouse we need Axis 1 developer and users to look at Axis2 and to give feedback. But I think now it is good time to move to a seperate list .. taking one more step closer to 1.0 Srinath On 2/26/06, Jim Azeltine <[EMAIL PROTECTED]> wrote: > I would like to

how to debug Axis2 WSDL2Java

2006-02-27 Thread Greg Michalopoulos
I am getting exceptions when running WSDL2Java in Axis2, is there any way to get feedback from the application what might be wrong with my WSDL?   Thanks, Greg  

java.lang.NullPointerException

2006-02-27 Thread Eliéser Morais
Hello! I am receiving a java.lang.NullPointerException when I use any webservice (include the EcoHeaders.jws). The root cause is triggered by the getEngineException:org.apache.axis.transport.http.AxisServletBase.getEngineEnvironment (AxisServletBase.java:273)Please, I need some suggestions to solve

Help after using WSDL2Java

2006-02-27 Thread Twomey, Luke David
Hey all, after using the WSDL2Java program supplied by Axis, and the WSDL file found at this address: http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl I was expecting AWSECommerceServicePortType to have a method declaration: ItemLookUpResponse itemLookUp(ItemLookUp lo

How to exclude interfaces with Java2WSDL?

2006-02-27 Thread Michael Mattox
I'm generating a WSDL with Java2WSDL. All my classes implement an interface and have a method getCategory. When I run Java2WSDL I pass -x "getCategory" to exclude this method but it doesn't work. The WSDL generated has an object for the class with an attribute "category" of type "anyType". I ca

Axis running within an Application Context

2006-02-27 Thread Craig Fournier
We are very interested in running axis with an exiting applicaion context as we want the objects invoked to be within our existing application. Are there examples of how to do this? Do anyone have experience doing this successfully? From some testing I have done, it appears that the Adm

WSS4J/Axis 1.3

2006-02-27 Thread Greg Michalopoulos
I have a working web service using Axis 1.3 server/client.  When I add the UserToken via WSS4J, the server consumes the request properly, does the pwcallback correctly and returns exactly the same SOAP as when not using the authentication, but the client for some reason cannot properly consu

AW: [Axis2-0.94] add SOAP header at server-side

2006-02-27 Thread Andreas Bobek
Ok, I'll do it this way. Thank you, Andreas. > Hi, > The Axis2 programming model does not anticipate you to > manipulate SOAP headers in the web service > implementation(i.e. inside your operation) Header > manipulation is normally done in the handler chain(INFLOW or > OUTFLOW) using Axis2 h

Re: [Axis2-0.94] add SOAP header at server-side

2006-02-27 Thread Chathura Herath
Hi, The Axis2 programming model does not anticipate you to manipulate SOAP headers in the web service implementation(i.e. inside your operation) Header manipulation is normally done in the handler chain(INFLOW or OUTFLOW) using Axis2 handlers. In this case i believe you need to write an handler and

[Axis2-0.94] add SOAP header at server-side

2006-02-27 Thread Andreas Bobek
Hi, I have a service with a in-out operation which is treated by RawXMLINOutMessageReceiver. I want to add a SOAP header in the response envelope, but RawXMLINOutMessageReceiver calls the operation method (signature: public OMElement operationName(OMElement body)) inside invokeBusinessLogic() firs

Re: Web Services for attachments.

2006-02-27 Thread Anne Thomas Manes
See the Attachments section of the Wiki: How do I use attachments? Where can I see some sample java code for attachments? How do I specify where attachments are written? Why are not my attachments transfered correctly (i.e. problems w/ attachments)? On 2/26/06, [EMAIL PROTECTED] <[EMAIL P

Re: SOAP DOS Attacks

2006-02-27 Thread Anne Thomas Manes
I recommend using an XML gateway.AnneOn 2/27/06, Bhavesh Goswami <[EMAIL PROTECTED]> wrote: Hi,  I was wondering what techniques can I use to prevent DOS attacks on my SOAP Service. Does axis have a way to limit request size? Even then, as my service requires large request, I am in a fix. Are there

Problem integrating axis and Weblogic: soap:Fault not conformant

2006-02-27 Thread Pedro Alves
Hello. Below is a copy of a message I sent to the BEAs forums. I guess the "error" is on their side, but I'm posting the message here in case someone can give me a hint on how to overcome this. Thanks __ I'm having problems integrating an error returned by a web

"major.minor version '49.0' is too recent..." - where did I take the wrong version of what?

2006-02-27 Thread Dr. Exner
My axis-j 1.3 installation with stand alone tomcat 5.5.15 and JRE 1.5.0_06 does not work:   According to the instructions I copied activation.jar from jaf-1_0_2-upd2.zip, mailapi.jar from javamail-1_3_3_01.zip and xmlsec-1.3.0.jar into the ..\Tomcat 5.5\shared\lib. Checking the axis "validat

Re: [axis2] User guide sample application inconsistency(?)

2006-02-27 Thread Chamikara Jayalath
Hi Sadik , Actually the 'schema' directory mentioned in the userguide is the 'resources' directory that was created by the WSDL2Java tool. After generating the files you can easily create the service archieve file by running the ant task.  1. Set the AXIS2_HOME environmental variable to the dir

SOAP DOS Attacks

2006-02-27 Thread Bhavesh Goswami
Hi,  I was wondering what techniques can I use to prevent DOS attacks on my SOAP Service. Does axis have a way to limit request size? Even then, as my service requires large request, I am in a fix. Are there any other ideas around this issues? ThankaBhav