Re: Axis Server on PDA

2002-09-18 Thread saccheda
Yes, my PDAs will also be servers and not only clients. I've checked www.wingfoot.com but their product is only a SOAP client and doesn't provide a SOAP implementation for J2ME. Rajal Shah wrote: >Check out www.wingfoot.com for a SOAP server on J2ME. > >-- >Rajal > > >-Original Message

messaging

2002-09-18 Thread Gregor Kovaè
Hi! I'm still trying to send an org.w3c.dom.Document XML document with Axis. Since in user's doc there is a section about this stating that Axis supports also the public Document method(Document doc) type of methods on the service side I tried using JAXM to send it: SOAPConnectionFactory facto

RE: Problem with servlet engine config file server-config.wsdd

2002-09-18 Thread Agrawal, Anuj (Anuj)** CTR **
Liviu -   This was a bug in RC1 and has already been resolved.  Please try using one of the recent nightly builds. For more information about the resolution of the bug, see http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12509   HTH. Anuj. -Original Message-From: Liviu Chiriac

Re: "Chicken-Egg" problem with Java2WSDL/WSDL2Java

2002-09-18 Thread Chad
How I solve the problem is I generate all the classes and redirect to my classes at the appropriate points using sed For the web service classes I have my own implementation that implements the interface and I sed the generated skeleton class replacing the reference to the generated impl class

Re: Anybody deployed Axis under Resin

2002-09-18 Thread Takashi Okamoto
> Any success? I succesed deploy axis for Resin. Then I needed to remove sax.jar which is included in Resin's lib directory. Takashi Okamoto

RE: Session scope and threaded request?

2002-09-18 Thread Alan Moore
In the original axis bug, multiple clients would end up "merging" onto the same session and I think that I was just being overly paranoid about proving that the defect was in axis and not in my service's handling of the instance data. You can safely ignore the extra synchronization... alan > --

RE: Session scope and threaded request?

2002-09-18 Thread Rajal Shah
Many thanks.. Perfect example to try out the session stuff.. One question: In your example, StatefulService.java:- why do you synchronize in the getMyInstance() method? The same session specific StatefulService class's getMyInstance() method would be invoked for all Client1 requests (with each

RE: Serializer/Deserializer

2002-09-18 Thread nbrennan
BDY.RTF Description: RTF file

RE: Session scope and threaded request?

2002-09-18 Thread Alan Moore
There is likely to be an example in the samples and I know there is a unit test for session. In addition, there was a defect in Axis session handling and I provided a client and server that reproduced the problem. This can be found as an attachment here: http://nagoya.apache.org/bugzilla/show_bu

no SOAPAction header!

2002-09-18 Thread Sharmin Choksey
Get this when using AdminClient AdminService list. -tia, sharmin. AxisFault faultCode: {http://xml.apache.org/axis/}Client.NoSOAPAction faultString: no SOAPAction header! faultActor: null faultDetail: stackTrace: AxisFault faultCode: {http://xml.apache.org/axis/}Client.NoSOAPAction

Dot-net interop problem w/embedded array

2002-09-18 Thread Robert Herold
One of our service methods takes a bean type with an embedded array of a second bean type. We use Java2wsdl to generate the WSDL, and wsdl2java to generate a java client. The java client works fine. When using a dot-net client from the WSDL file, however, the Axis server cannot deserialize the e

RE: NoSuchMethodError: getSAXParser when running AdminClient

2002-09-18 Thread MAYOR,CHRIS (HP-PaloAlto,ex1)
Get a newer version of the xerces jar (I'm using 1.4.4). I have seen the same error before. Regards -Original Message- From: Liviu Chiriac [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 14:32 To: [EMAIL PROTECTED] Subject: NoSuchMethodError: getSAXParser when running Adm

RE: Error Trying to Deploy

2002-09-18 Thread Jianliang Zhao
It seems you are using DOM level 1 APIs. Make sure you have the right XML parser used. org.apache.axis.deployment.wsdd.WSDDDocument.(WSDDDocument.java:103): if (ELEM_WSDD_UNDEPLOY.equals(docEl.getLocalName())) { -Original Message- From: Jason D. Lee [mailto:[EMAIL PROTECTED]] Sent: Wedn

RE: Error Trying to Deploy

2002-09-18 Thread Jason D. Lee
I get the same stack trace when I run java org.apache.axis.client.AdminClient list I tried recompiling Axis from source, just to see if that might fix, but no dice... -- Jason Lee - Programmer 405.745.1789 Hobby Lobby Stores, Inc. > -Original Message- > From: Jason D. Lee

RE: Serializer/Deserializer

2002-09-18 Thread Alan Moore
You might try creating a custom de/serializer that creates a byte buffer from your existing RMI service objects (using standard java serialization.) Then repackage the byte buffer into a soap compatible data type (?) and send that to the client for rehydration back into your java objects. Seems l

Error Trying to Deploy

2002-09-18 Thread Jason D. Lee
When I run java org.apache.axis.client.AdminClient deploy.wsdd I get this error: Exception in thread "main" java.lang.NoSuchMethodError at org.apache.axis.deployment.wsdd.WSDDDocument.(WSDDDocument.java:103) at org.apache.axis.configuration.FileProvider.configureEngine(FileProvid

Re: NoSuchMethodError: getSAXParser when running AdminClient

2002-09-18 Thread Sharmin Choksey
junit.jar and src.jar are I think needed during wsdl2java - not for AdminClient deploy. Can you verify your classpath - not sure if there are typos in there where it misses the "c:" prefix in the path for all the jars with the excpeption of xerces.jar. -Sharmin. >Mailing-List: contact [EMAIL P

Problem with servlet engine config file server-config.wsdd

2002-09-18 Thread Liviu Chiriac
My ‘server-config.wsdd’ is missing, and Tomcat complains: --- Starting service Tomcat-Standalone Apache Tomcat/4.0.4 Starting service Tomcat-Apache Apache Tomcat/4.0.4 - Problem with servlet engine config file: C:\soap\jakarta-tomcat-4.0.4\webapps\a

RE: Session scope and threaded request?

2002-09-18 Thread Rajal Shah
Ok.. I still need to get this session behvior verified. It would be great if anyone can provide an example showing a client & server session behavior. It would shorten my initial learning curve with Axis. -- Rajal -Original Message- From: Ramon Turnes [mailto:[EMAIL PROTECTED]] Sent:

NoSuchMethodError: getSAXParser when running AdminClient

2002-09-18 Thread Liviu Chiriac
When I try to run: java org.apache.axis.client.AdminClient deploy.wsdd   In the Tomcat log I get a java.lang.NoSuchMethodError for .apache.axis.utils.XMLUtils.getSAXParser()   I suspect something is wrong with my classpath, but I tried almost everything! Does anyone have a hint to what

RE: Axis Server on PDA

2002-09-18 Thread Rajal Shah
Check out www.wingfoot.com for a SOAP server on J2ME. -- Rajal -Original Message- From: Jung, Eric (Contractor) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 2:16 PM To: '[EMAIL PROTECTED]' Subject: RE: Axis Server on PDA I hope your PDAs will only be clients. Your em

RE: Axis Server on PDA

2002-09-18 Thread Jung, Eric (Contractor)
I hope your PDAs will only be clients. Your email makes it sound like they might also be servers??? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 5:09 PM To: [EMAIL PROTECTED] Subject: Axis Server on PDA Hi, I'm trying to dev

Axis Server on PDA

2002-09-18 Thread [EMAIL PROTECTED]
Hi, I'm trying to develop a system based on Web Services over a wireless network with resource- constrained devices like PDAs, running a JVM J2ME CDC. I want to use Java Micro edition to minimize resource consumption on devices. I need to run a server implementing SOAP and providing W

Anybody deployed Axis under Resin

2002-09-18 Thread Benjamin Tomasini
Any success? Ben

using namespace for service invocation

2002-09-18 Thread Lloyd, Colin
Hello, It seems that right out of the box Axis uses the URL to map a SOAP message to a deployed service. What is the easiest way to change this so that axis will check the namespace of the incoming message instead. I checked the server-config.xml file and it looks like you can adjust the global

Re: Deploying AXIS in iWS 4.1

2002-09-18 Thread Tam Oskar
Thats true. 4.1 doesnt support the std J2EE format for deploying servlets. So I tried to deploy the servlet in the way it supports it by specifying properties in servlets.properties and rules.properties files. Couldnt make it work though. Gautam.  Sharmin Choksey <[EMAIL PROTECTED]>wrote: I don't t

Re: Deploying AXIS in iWS 4.1

2002-09-18 Thread Sharmin Choksey
I don't think iWS4.x is J2EE compliant for you to be able to "deploy" services so to speak. Was successful with iWS6.0 though, since that supports J2EE deployment spec. -Sharmin. >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm >list-help: >list-unsubscribe:

RE: Registering service in uddi registry when startup

2002-09-18 Thread Jung, Eric (Contractor)
Hi Stefan, Try using the wsdl4reg http://sourceforge.net/projects/wsdl4reg, by Olivier Brand, in Axis lifecycle methods. It should be straightforward. For example: public final class MyService implements javax.xml.rpc.server.ServiceLifecycle { public final String getStockQuote(String symbol)

Deploying AXIS in iWS 4.1

2002-09-18 Thread Tam Oskar
Has anybody deployed axis in iPlanet WebServer 4.1? I was unable to load the axis servlet. I have all the classpaths set properly. Anything specific I need to do? The container gives an internal error and doesnt load the servlet. thanks, Tam.Do you Yahoo!? Yahoo! News - Today's headlines

Deserializing without Call.invoke()

2002-09-18 Thread Cun Yong Tan
I have a xml string that is a SOAP message that is rpc/encoded or document/encoded. The message may have been received via a one-way notification message or a saved response message from a request/response at some previous time. Is there a way of deserializing this message into java objects with

Registering service in uddi registry when startup

2002-09-18 Thread Stefan Henke
Hi, I´m looking for a way to do the following with axis. Maybe you can help me. I have deployed a webservice using axis sucessfully. Each time the server which hosts the service starts up, it should automatically register the service in a uddi registry. Vice a versa, the service has to be unpubl

RE: jdk1.1.8

2002-09-18 Thread Emily Short
I too need only the client to use jdk1.1. I tried going back to Axis beta2 and still got a runtime error: java.lang.NoClassDefFoundError: java/lang/ThreadLocal Maybe there is something I am doing wrong? Thanks, Emily -Original Message- From: Padmanaban, Duraiswamy [mailto:[EMAIL PROTECT

java.net.SocketException: Connection reset by peer: JVM_recv in socket input stream read

2002-09-18 Thread Akacem Mohammed
Hello, I have the following problem: my soap client send an xml string to the soap server. in the transfer soap server methode I try to make an insert in the database. the following occurs: 1) the tomcat is stopped 2) on the soap client I get the following exception: java.net.SocketExceptio

Deserializers for Immutable classes

2002-09-18 Thread Deepth Dinesan
Hello , How do I write a deserializer for an Immutable Class . the class is as follows Class GloballyUniqueIdentifier { public String domainName; public HashMap keyValuePairs; public long firstSixtyFourBit; public long nextSixtyFourBits; public GloballyUniqueIdentifier(St

RE: jdk1.1.8

2002-09-18 Thread Sharmin Choksey
RC 1 release didn't work for me without migrating my client to JDK1.3. The wsdl2java generated proxies did not execute with JDK1.2 and lower. -sharmin. >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm >list-help: >list-unsubscribe: >li

RE: jdk1.1.8

2002-09-18 Thread Padmanaban, Duraiswamy
Is it possible for the client alone to be using JDK 1.1 versions. We are in the process of migrating to Axis. One of our existing appln. is using JDK 1.1 (to be precise webobjects). Since Axis is using 1.3 & above will this client application communicate with Axis if required ? Thanks, VP. --

Re: jdk1.1.8

2002-09-18 Thread Sharmin Choksey
Thanks Matt. Our client apps still use JDK1.2 and was hoping if the RC releases were going to support it. Best, Sharmin. >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm >list-help: >list-unsubscribe: >list-post:

Re: jdk1.1.8

2002-09-18 Thread Matt Seibert
"Intermittently" simply means 'sometimes' I never got the tests to work fully, but I got most of the compiles taken care of. That was quite some time ago (over two months) and a lot of the new development work I know relies on newer JDK packages. My guess is that if you need an AXIS that ru

Re: jdk1.1.8

2002-09-18 Thread Sharmin Choksey
Could you please explain "intermittently" ? The RC 1 release uses certain apis avalaible in JDK1.3 and upwards only (such as the java.reflect.InvocationHandler), forcing me to upgrade to a higher version of JDK and also putting a dependency on the client applications that use the generated p

Sending an object as an attachment

2002-09-18 Thread Shimon Crown
As an experiment and proof of concept I would like to send a Java object or an undefined BLOB as an attachment. I ran the attachment sample and everything seems fine. Looking in EchoAttachment.java I see the following line //Create the data for the attached file. DataHandler dhSource = ne

Re: jdk1.1.8

2002-09-18 Thread Matt Seibert
I intermittantly got the Axis Beta 3 driver to work with jdk 1.1.8 on Red Hat Linux, but it isn't supported. Matt Seibert [EMAIL PROTECTED] IBMExternal:(512) 838-3656 Internal: 678-3656

RE: server-config.wsdd is not written to WEB-INF - supplemental

2002-09-18 Thread Peake, Chris
Fixed and tested in the 9/16 build availble for download. -Original Message- From: Shimon Crown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 12:54 AM To: [EMAIL PROTECTED] Subject: Re: server-config.wsdd is not written to WEB-INF - supplemental Searching through the ar

Re: Exeption when creating wsdl for "document-type".

2002-09-18 Thread Gregor Kovaè
Hi! Look at the User's Guide on Axis' website. There is a section about messaging (sending XML documents). And in samples/messaging directory of your Axis install you have an example of the first method type Axis supports. I also tried making it work with org.w3c.dom.document and I didn't succ

RE: server-config.wsdd is not written to WEB-INF - supplemental

2002-09-18 Thread Agrawal, Anuj (Anuj)** CTR **
Shimon - You are right, this WAS a bug, but had been fixed on 9/12. See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12459. The nightly build since then places the server-config.wsdd file in the WEB-INF directory. HTH. Anuj. > -Original Message- > From: Shimon Crown [mailto:[EMA

Re: Serializer/Deserializer

2002-09-18 Thread Sorin Pop
I only know the one in the AXIS documentation, which is not really much... - Original Message - From: "Deepth Dinesan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 18, 2002 1:44 PM Subject: Re: Serializer/Deserializer > Hi Sorin, > > In fact am trying to conver

Re: Serializer/Deserializer

2002-09-18 Thread Deepth Dinesan
Hi Sorin, In fact am trying to convert an exising RMI Server to emit SOAP messages. [ Convert Java Serialization to SOAP Serialization ] Some of these classes are immutable and already define ObjectStreamFields[] ,readObject(), and writeObject() for Java Object Serialization . Am wondering why

WSDL2Java namespace problem

2002-09-18 Thread Daniel Hägg
[Re-posted with new subject] Hi! I am trying to develop a client for an existing SOAP server using Axis RC1. I have a problem with complex return values. They all end up as null. I have developed the client by trying to write a valid WSDL file and running WSDL2Java. The SOAP server was invented

Re: Serializer/Deserializer

2002-09-18 Thread Sorin Pop
I guess you could use the builtin bean (de)serializer, that is, tha beanmapping tag in the deploy.wsdd file. Theoretically you will be able to serialize all the public members of your types and you don't have to write custom (de)serializers. I have been experiencing with the same issue the last f

Exeption when creating wsdl for "document-type".

2002-09-18 Thread Manjula Fernando
Hi All , We are trying to create a "document-style" web sevice.Our sample interface looks like this. package samples.echo; public interface InteropTestDocType extends java.rmi.Remote { public org.w3c.dom.Document echoDocument(org.w3c.dom.Document stringDocument) throws java.rmi.RemoteExcept

Serializer/Deserializer

2002-09-18 Thread Deepth Dinesan
Hi all, I have some (about 25) user defined types that I need to serialize . These classses are fairly complex making use of inheritance and aggregation extensively . Is there a way by which I can avoid writing serializers/deserializers and still be able to serialize . Eg: (1) I may use the O

beanmapping - typemapping

2002-09-18 Thread Sorin Pop
Hey! There's nobody in the world who had tried to do domething similar?! I can't believe it... - Original Message - From: "Sorin Pop" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Pop Lucian Marius" <[EMAIL PROTECTED]> Sent: Monday, September 16, 2002 7:32 PM Subject: (de)serialization

Re: Logging II

2002-09-18 Thread Torsten Rüger
Sorry, maybe I was unclear: I want the axis loggin in the controlling applications log file. The DEBUG, INFO, and ERROR stuff. I didn't mean a LogHandler or something. I'm not concerned with with tracing requests. Thanks Torsten > Moi > > a simple question, for which I have no answer _after_