Re: JDK1.5.0 and AXIS

2004-10-05 Thread Johan Meyer
Silvano Maffeis wrote: Johan Meyer wrote: Hallo All Axis users Now that JDK1.5.0 has been release and is out of BETA when can we expect AXIS to be compatible with JDK1.5.0? Thanks in advance. Johan Meyer I got nullpointerxceptions in the unmarshaling on the server side. Had to install xercesImpl

Re: JDK1.5.0 and AXIS

2004-10-05 Thread Johan Meyer
Silvano Maffeis wrote: Johan Meyer wrote: Hallo All Axis users Now that JDK1.5.0 has been release and is out of BETA when can we expect AXIS to be compatible with JDK1.5.0? Thanks in advance. Johan Meyer I got nullpointerxceptions in the unmarshaling on the server side. Had to install xercesImpl

Re: JDK1.5.0 and AXIS

2004-10-05 Thread Silvano Maffeis
Johan Meyer wrote: Hallo All Axis users Now that JDK1.5.0 has been release and is out of BETA when can we expect AXIS to be compatible with JDK1.5.0? Thanks in advance. Johan Meyer I got nullpointerxceptions in the unmarshaling on the server side. Had to install xercesImpl.jar, then the problem w

JDK1.5.0 and AXIS

2004-10-05 Thread Johan Meyer
Hallo All Axis users Now that JDK1.5.0 has been release and is out of BETA when can we expect AXIS to be compatible with JDK1.5.0? Thanks in advance. Johan Meyer

Re: axis-1_2beta3 - "functional-test" failures

2004-10-05 Thread Davanum Srinivas
Peter, the web service was removed recently from the whitemesa sitethat's the reason for the problem. one more tip: in your ANT_OPTS set "-Dtest.functional.fail=false" and then you can run "ant report" to see how many test cases have failed. For some reason, am still getting 100% coverage, pr

Re: axis-1_2beta3 - "functional-test" failures

2004-10-05 Thread Peter Smith
Thanks for the confirmation Jayachandra! Of course that was also my first impression but as I am a newbie to web services and given my other proxy problems I was not confident in coming to that conclusion. And I'd assumed there should be 100% pass mainly because of the "Please run ant functional-

The ins and outs of client-config.wsdd

2004-10-05 Thread Brian Nielsen
First thanks for your great work. My question is related to the client side deployment file. I have a scenario where I access a remote web service using wss4j (using the handlers), and what i would like to know is: 1. what is the best practice to generate the client-config.wsdd? a) By hand

wsdl generation

2004-10-05 Thread Oleg Lebedev
Title: Message Greetings.   I am using java2wsdl to generate wsdl for my web service. I have a getNextActivity() method which returns IWSActivity, so wsdl2java correctly generates the following:   I also have a getState() method, which returns IWSState, but wsdl2java uses anyType as shown

Re:RE: String[] NullPointerException

2004-10-05 Thread Wu Gang
I found the problem which was caused by null string values. It seems that axis is more strict on null value strings. I used the same method in other non-axis programs without same problem. -- Ursprungligt meddelande -- Sounds to me like your other classes are not instantiating the String

Re:RE: String[] NullPointerException

2004-10-05 Thread Wu Gang
I found the problem which was caused by null string values. It seems that axis is more strict on null value strings. I used the same method in other non-axis programs without same problem. -- Ursprungligt meddelande -- Sounds to me like your other classes are not instantiating the String

RE: WSDL2Java error

2004-10-05 Thread Oleg Lebedev
Chris, You have a space in the name below: Remove the space and it may fix your problem. -Original Message- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 12:04 PM To: [EMAIL PROTECTED] Subject: WSDL2Java error I am creating a new soap service f

RE: WSDL2Java error Fixed!

2004-10-05 Thread Hubble, Christopher
Never mind. I found my typo. Chris -Original Message- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 2:04 PM To: [EMAIL PROTECTED] Subject: WSDL2Java error I am creating a new soap service from scratch. I took my preexisting wsdl, and changed the m

WSDL2Java error

2004-10-05 Thread Hubble, Christopher
I am creating a new soap service from scratch. I took my preexisting wsdl, and changed the method names and parameters to work with my new service. However, when I run wsdl2java, I get the following. java.io.IOException: , or in with undefined message found. message name is 'sendFileRequest'

RE: String[] NullPointerException

2004-10-05 Thread Tami Wright
Sounds to me like your other classes are not instantiating the String[] array correctly. Meaning--in your other classes do you ensure that you are doing the following: String[] stringName = new String[length]; ... stringName[0] = new String("some string"); //or use: stringName[0] = "some string'

RE: custom deploying a webservice at a location other than standa rd /axis/services pattern

2004-10-05 Thread THOMAS, JAI [AG-Contractor/1000]
Jaya, /axis/services is only a url definition in your axis webapp that corresponds to axis servlet. You can define a new url, say /axis/importantServices referring the same AxisServlet and use that for your new web service. Jai -Original Message- From: jayachandra [mailto:[EMAIL PROTEC

SAX passthrough with Axis

2004-10-05 Thread Irv Salisbury III
I am parsing an XML file through SAX. This XML file contains the SOAP call I need to make to Axis. What is the best and fastest way to turn this SAX stream into an Axis call? I have a wsdl file that uses doc/literal with a schema and use wsdl2java to create my service. In looking at the code

RE: DB Connections with Axis

2004-10-05 Thread Hubble, Christopher
I'm using tomcat 4. I ended up defining the db in the server.xml using an example I found(see my Thanks post). Chris -Original Message- From: Ivan Aguirre [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 8:59 AM To: [EMAIL PROTECTED] Subject: Re: DB Connections with Axis I use

String[] NullPointerException

2004-10-05 Thread Wu Gang
Hi, I'm using jdk1.3.1, Tomcat4.1.30 and Axis1.1. I wrote a RPC service that returns String[] to the client. The service impl calls other classes that i developed earlier. I got NullPointerException every time, but if i do not call other classes, just return i.e. new String[] {"1", "2"}, it wen

String[] NullPointerException

2004-10-05 Thread Wu Gang
Hi, I'm using jdk1.3.1, Tomcat4.1.30 and Axis1.1. I wrote a RPC service that returns String[] to the client. The service impl calls other classes that i developed earlier. I got NullPointerException every time, but if i do not call other classes, just return i.e. new String[] {"1", "2"}, it wen

Re: DB Connections with Axis

2004-10-05 Thread Ivan Aguirre
I use db pooling with Axis and It's working well. I'll teel you how I use it, so I hope help you ;) 1. I don't define the Connections inside Context Elements on server.xml. Instead I use a .xml located at TOMCAT_HOME/conf/localhost, its's a recommendation: "Please note that for tomcat 5.x, unlike

Re: axis-1_2beta3 - "functional-test" failures

2004-10-05 Thread jayachandra
Hi Peter! I've run the functional-tests using the latest release candidate axis-rc1. My test reports shows errors and failures only in the "WhiteMesaSoap12AddTestSvcTestCase". When I tried to look around for the cause, as a first step I saw if the given location "http://www.whitemesa.net/soap12/add

Element names ignored?

2004-10-05 Thread Kristoffer Sjögren (HF/EAB)
Hello all, I have deployed a axis WS service to weblogic and when testing out the service i notice that axis doesnt seem to care what the Qname is. For example, axis accepts and deserialize these soap request exactly the same without error. [correct request] http://schemas.xmlsoap.org/soap/env