Re: axis error

2003-11-03 Thread Stephen Gordon
Make sure xmlParserAPIs.jar or xml-apis.jar is in your classpath stephen kishani Liyanage wrote: D:\AXIS-1_1>java samples.userguide.example2.CalcClient -p8080 add 2 5 Exception in thread "main" java.lang.NoClassDefFoundError: org/w3c/dom/Node at org.apache.axis.client.Service.getAxisClie

axis error

2003-11-03 Thread kishani Liyanage
D:\AXIS-1_1>java samples.userguide.example2.CalcClient -p8080 add 2 5Exception in thread "main" java.lang.NoClassDefFoundError: org/w3c/dom/Node    at org.apache.axis.client.Service.getAxisClient(Service.java:143)    at org.apache.axis.client.Service.(Service.java:152)    at samples.use

Re: WSDL2Java generated class names starts wiht _XXXX

2003-11-03 Thread Chandrasegaram Jeyakumaran
Hi, That is for avoiding the colloisions of names.For anonymous type,it will replace Axis' ANON_TOKEN with an underscore to make sure that there won't be any name collisions with similarly named non-anonymous types. Other than that There will not be any problems I hope. regards, Jeyakumaran.C > >

Re: generated enumerated types failing to deserialize

2003-11-03 Thread Dimuthu Leelarathne
Hi Andrew, In order for enumerations to be deserialized at server, first they have to be correctly serialized at the client side. Have you checked whether the client side serialization happen correctly? Regards, Dimuthu. Lanka Software Foundation -

Re: Can't find specified service when creating a "service" object

2003-11-03 Thread Dimuthu Leelarathne
Hi Scott, First you have to create a ServiceFactory instance. The below code will help you. URL currWsdlUrl = new URL(UrlString); ServiceFactory serviceFactory = ServiceFactory.newInstance(); Service currService = serviceFactory.createService(currWsdlUrl, new QName(nameSpaceUri, servi

generated enumerated types failing to deserialize

2003-11-03 Thread Andrew McGrath
I'm currently running into what I think is an existing bug (#17484 ). I when I run a test client against the server I get the following error. org.apache.axis.client.Call invoke SEVERE: Exception: org.xml.sax.SAXException: SimpleDeserialize

WSDL2Java generated class names starts wiht _XXXX

2003-11-03 Thread SMK Reddy
Hi   When I ran the WSDL2java on my wsdl file it generated class name starts with '_' eg is '_Employee' (Employee is an element in my imported schema file).   I am not sure of this behaviour, can any one suggest me why does it generates class names starts with _?  Thanks ReddyPost your free ad no

Re: WebServices chaining

2003-11-03 Thread Borut Bolcina
Hi, I am not very focused on my web services task at the moment as my duties don't allow me to, but nevertheless - can you please help me understand just how can one implement this 'simple' scenario. CLIENT ---> INTERMEDIARY ---> ENDPOINT Many clients will connect with different "payload weigh

Can't find specified service when creating a "service" object

2003-11-03 Thread Scott Artman
In writing an Axis client to access a web service hosted by Axis, I'm trying to create a service object using the following signature: Service(java.net.URL wsdlDoc, QName serviceName) In my Axis client, I have the following code: URL url = new URL("http://localhost:8080/jboss-net/services/

Axis C++ and Apache 2.0

2003-11-03 Thread Simon Perkins
Hi, We're looking at using Axis C++ in the next few months. However, we need to be able to use it in Apache 2.0. When do you think the Apache 2.0 version will be ready? Regards Simon Perkins - This is a commercial communicati

RE: Too many CLOSE_WAIT socket connections

2003-11-03 Thread Wang, Pengyu [IT]
By default java.net package of HttpURLConnection is using Http1.1 which is keep live connection. This will cause you CLOSE_WAIT since from the client side you are not closing the socket (keep-live), and from the server side, it will take some time to figure out that you are no longer using the co

RE: Configure services for JMS listener

2003-11-03 Thread ext-thierry . templier
Hi Ray, I have problem to use JMSSender. The SOAP message seems to be correctly sended: I have no error, but the SimpleJMSListener / SimpleJMSWorker don't receive it... I put traces in these classes ( onMessage is never called ). As a matter of fact, I think the message isn't sent because I brows

Re: Apache.WebServices.Next?

2003-11-03 Thread Sanjiva Weerawarana
Hi Glen, I updated the WS-RM proposal to include your prototype as well and said that we'll commit both and combine the best of both to build the Sandesha implementation. OK? (Let's also discuss this when we meet and see whether there's a faster way to combine too.) (My understanding with Wiki st

Re: Apache.WebServices.Next?

2003-11-03 Thread Sanjiva Weerawarana
Hi Glen, I understand what you have in mind (since we chatted in Sept. about this and I imagine we will over the next few days @ the WSDL mtg :-)), but I'd like to get these other projects going without delay. That is, let's work on a "module" architecture but get it going the "hard" way right now

Experience in AdminClient for Axis service deployment

2003-11-03 Thread ebm
Dear stephen, Yes. But I think I met the problem beyond the Apache Axis issue. The samples didn't give me any help. My problem is due to the different version of java excutable used in Tomcat Server and AdminClient. Because I set JAVA_HOME with JDK1.4.x's path(/usr/local/jdk) in setclasspath.sh

SOAP attachment: why I'm not getting faultstring?

2003-11-03 Thread Nilay Hazra
Hi All, Forgive me if this seems to be a very basic question. I need to send a file called myfile.txt as an attachment to my localhost server. My localhost server consists of Jakarta Tomcat 4.1.27 with Apache Axis configured. My client application is written in VC++ which actually POSTs the

RE: commons-logging/SSL-problem reproducible with Axis examples

2003-11-03 Thread Jörn G . Eichler
Problem is fixed in Tomcat 4.1.29. Joern > -Original Message- > From: Jörn G. Eichler [mailto:[EMAIL PROTECTED] > Sent: Monday, October 27, 2003 11:23 PM > To: '[EMAIL PROTECTED]' > Subject: commons-logging/SSL-problem reproducible with Axis examples > > > Hi, > > the problem I descri

cancel long running calls?

2003-11-03 Thread Jörn G . Eichler
Hi, are there any experiences canceling a "long running" (> 5 sec.) web service call with Axis from another thread? Thanks, Joern

Generated client stubs & LocalTransport

2003-11-03 Thread Lothar Nieswandt
Title: Generated client stubs & LocalTransport Hi Kevin (you seem to be the expert with local transport), hi everybody, I would like to use generated client code together with the local transport mode. More precisely: I am using client stubs generated by WSDL2Java. How can I set the tran