Re: For help : how to convert a Java bean instance to Text(org.w3 c.dom.Text text)

2004-02-18 Thread xuliujuan
but how to initialize the doc and I want to convert a java bean instance to MessageElement [] in fact   - Original Message - From: Volkmann, Mark To: '[EMAIL PROTECTED]' Sent: Thursday, February 19, 2004 10:12 AM Subject: RE: For help : how to convert a Java bean

Attachments Exchange between Axis1_1 (Java) and a C++ Client

2004-02-18 Thread Rolf Zelder
Has anyway so far managed to exchange attachments from and to a Axis1_1(Java) and a C++ Client. Cheers Rolf Rolf Zelder Senior Software Engineer Visible Voice 16-22 Eastern Rd,South Melbourne, Vic, 3205 Phone: 9695-1980 Email:[EMAIL PROTECT

RE: For help : how to convert a Java bean instance to Text(org.w3 c.dom.Text text)

2004-02-18 Thread Volkmann, Mark
I'm not sure if this is what you're after, but how about this?   Document doc = . . . Text text = doc.createTextNode(myBean.toString());   String value = text.getNodeValue(); -Original Message-From: xuliujuan [mailto:[EMAIL PROTECTED]Sent: Wednesday, February 18, 2004 7:42 PM

For help : how to convert a Java bean instance to Text(org.w3c.dom.Text text)

2004-02-18 Thread xuliujuan
Hi all, Could you tell me how to convert a Java bean instance to Text(org.w3c.dom.Text text) and how to get the Object's value ?   Thanks ^_^ /xuliujuan

Character encoding problems sending UTF-8 back to client

2004-02-18 Thread Douglas Bitting
All, I can't really figure out if I'm doing something wrong here or if there is a defect involved. Basically, I have a Japanese string that I'm attempting to send back to the client. However, when the client receives the string, it is mangled beyond repair. I've put together a small test case

SOAP client cannot read Element return type

2004-02-18 Thread christopher justin
a web service of mine is returing import org.w3c.dom.Element as the type. This is one way to return literal XML with Apache SOAP says IBM (http://www-106.ibm.com/developerworks/webservices/library/ws-soapmap1/ ). The SOAP message looks fine when viewing with SOAPMonitor, but I have yet to be

"zero configuration" JAX-RPC?

2004-02-18 Thread Joseph Dane
I wonder what, if anything, people are doing to manage client-side configuration? I would like to make it as simple as possible for people to write Java code against services I've deployed. I had envisioned something like this: * clients require a jar file containing the service interface and

Weblogic 6.1

2004-02-18 Thread Barry BURNEREAU
Hello I'd like to know if somebody use AXIS 1.1 with weblogic server 6.1 ? Is there any problem or workarounds for it? Thanks in advance Barry

RE: Handlers and Marshalling

2004-02-18 Thread chris
Brian - Does forcing the marshalling work for you? HttpServletResponse res; org.apache.axis.Message responseMsg = msgContext.getResponseMessage(); responseMsg.writeTo(res.getOutputStream()); What exactly are you trying to perform? You can always modify the SOAPParts on the fly to build anothe

Migration of Web Services to another Axis Environment

2004-02-18 Thread aii
Hi! I like to migrate/move a deployed Web Service from one Axis-Engine to another Axis-Environment; so that I can use the same Web Service on the other server. This shall be automatically done by software (axis). Do solutions, implementations or workarounds already exist for it? Thanks in advan

Migration of Web Services to another Axis Environment

2004-02-18 Thread aii
Hi! I like to migrate/move a deployed Web Service from one Axis-Engine to another Axis-Environment; so that I can use the same Web Service on the other server. This shall be automatically done by software (axis). Do solutions, implementations or workarounds already exist for it? Thanks in advan

RE: wsdl2java mapping primitives to objects

2004-02-18 Thread Richard Martin
Title: RE: wsdl2java mapping primitives to objects If you’ve got Ant then its very easy:               package="ws-axis"     dest="."     />                   target="compile"     inheritAll="true"     dir="ws-

Re: Experience with Custom Serializers and WSDL

2004-02-18 Thread Joseph Dane
I have only recently started using Axis, so I'm not sure if I'm even understanding your question correctly. but it sounds like you're trying to do something I just did yesterday. I had written a Java interface with a bunch of methods. The arguments and return values of the methods were either s

Axis generated beans - to and from XML

2004-02-18 Thread Marepalli, Somesh
Hi: I have generated Axis bean classes from a WSDL using WSDL2Java utility... Is it possible to use these beans independent of the SOAP frame work to serialize to XML / des-serialize from XML documents... I don't see any sample code so far...it looks like it's tied to the SOAP framewo

Re: TR: axis1.1 and attachments

2004-02-18 Thread Jigsaw
Thanks for the info. //JS. On 18/2/04 2:57 pm, "Carbone Cedric" <[EMAIL PROTECTED]> wrote: > my message doesn t seem appear in the axis mailinglist so i resend U > directly ! > reggards, > cedric. > > -Message d'origine- > De : Carbone Cedric [mailto:[EMAIL PROTECTED] > Envoye : mercred

RE: Deploying service in embedded axis

2004-02-18 Thread Heitzeg, Bill
I do this under Jboss-Jetty. Just put your service element inside of you server-config.wsdd. When you redeploy the WAR, all the services in server-config.wsdd will be loaded. -Original Message- From: Roman Zulauf [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 18, 2004 4:02 A

RE: Deploying service in embedded axis

2004-02-18 Thread Melamud, Mikhail
You can add deployment descriptor directly into server-config.wsdd -Original Message- From: Roman Zulauf [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 18, 2004 4:02 AM To: [EMAIL PROTECTED] Subject: Deploying service in embedded axis Hi, I am using Axis embedded in my application

Re: Problem with EchoAttachment sample

2004-02-18 Thread ROBERT SJODIN
Tom, I had both jars deployed with the service, but was missing mail.jar for the client code. It now works. You're a stud, pal. Thanks. From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Problem with EchoAttachment sample Date: 18 Feb 2004 05:44:04 -0500 Ar

Experience with Custom Serializers and WSDL

2004-02-18 Thread J.P. Leibundguth
All of my data types are represented by my own serializers and deserializers. Now that they are finished, I'd like to get the WSDL generation going for those custom types. Does anyone have experience with any of the following: 1) Currently the WSDL Axis generates has all of my methods, but no ty

RE: axis1.1 and attachments

2004-02-18 Thread Carbone Cedric
Hi JS, According to an message of november on your mailinglist, I have deleted the namespace (in the WSSD file) and thanks this, Axis autogenerates the WSDL without SOAPException (good) at http://localhost:8080/axis/services/urn:EchoAttachmentsService?wsdl Another information about this (than

RE: Axis != SOA but used in possible impl?

2004-02-18 Thread Galbreath, Mark A
A good place to start: http://ws.apache.org/axis/java/user-guide.html -Original Message- From: Peter Girard [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 1:02 PM To: [EMAIL PROTECTED] Subject: Axis != SOA but used in possible i

FW: axis1.1 and attachments

2004-02-18 Thread Jigsaw
Can anyone help me with this, please?? /JS -- Forwarded Message From: Jigsaw <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Fri, 13 Feb 2004 16:32:48 + To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> Subject: axis1.1 and attachments Hi, I am getting the following error when I try

Handlers and Marshalling

2004-02-18 Thread Brian Dillon (ext. 944)
Hi, I had aked this question before but received no answer, So thought I would try again. Is there some way of having a ResponseFlow handler called after all the marshalling has been completed ? Thanks, Brian -Original Message- From: Brian Dillon (ext. 944) [mailto:[EMAIL PROTECTED] Se

Re: Problem with EchoAttachment sample

2004-02-18 Thread tnelson
Are you sure that activation.jar and mail.jar are in your classpath? They are from the Java Activation Framework. Tom Nelson On Feb 18 2004, ROBERT SJODIN wrote: When running the samples.attachments.EchoAttachment code, a NullPointerException is thrown in org.apache.axis.Message.createAttachmen

Weblogic soap client

2004-02-18 Thread GANDHIRAJAN,AYYAPPAN (HP-India,ex2)
Hi there, I am trying to invoke a soap service with an attachment using a weblogic soap client. But I consitently failed to invoke the service. The exception that i got is given below. Can some one help me on this? Thanks & regards, Ayyappan Gandhirajan - InvocationTargetException: java.lang.

RE: Deploying service in embedded axis

2004-02-18 Thread Pathuru, Kiran
Once you deploy the service in axis using admin service in your local system, a file will be created under WEB-INF/server-config.wsdd >From then onwards, you can simply copy it to WEB-INF directory while creating WAR file or whatever you are doing. Axis will pick it up automatically and no need to

Deploying service in embedded axis

2004-02-18 Thread Roman Zulauf
Hi, I am using Axis embedded in my application with Jetty. Is there a way I can deploy my services without having to manually deploy using the admin program? I have not found any way in any documentation. What I am trying to achieve is to distribute my application (with embedded Jetty and Axis) an