EchoAtttachment sample

2004-02-24 Thread Nair Kumar
Has anyone tried the EchoAttachment sample under the samples folder of axis1.1? After I deploy this sample, when I try to view the corresponding wsdl from the browser using the url "http://localhost:8080/axis/services/urn:EchoAttachmentsService?wsdl"; I get the error Fault - ; nested excepti

EchoAttachment sample under axis1.1

2004-02-24 Thread Nair Kumar
Has anyone tried the EchoAttachment sample under the samples folder of axis1.1? After I deploy this sample, when I try to view the corresponding wsdl from the browser using the url "http://localhost:8080/axis/services/urn:EchoAttachments -thanks, Kumar Nair EAI Team 714-226-8393 This elec

Re: Return Data As ResultSet

2004-02-24 Thread Kay Chee Cheung
I had done similar thing with web service. I borrow the codes from "chapter 2" examples from the book, Web Service in a Nutshell by Kim Topley ( www.oreilly.com/catalog/javawsian ). In the book's example, a web service is returning an array of book objects. In the code, the book objects were co

RE: Working with XML DOM's

2004-02-24 Thread christopher justin
Vivek, I am in the process of doing exactly what you want to do. I can answer some of your questions, and leave you with a 1 or 2 of my own regarding verifying .NET interoperability with the Axis Web Service. Answers #1) You can return a org.w3c.dom.Element object. It is automatically ser

Working with XML DOM's

2004-02-24 Thread Vivek Nagulapati
Hello All, My apologies if this question has been asked before but I couldnt find any relevant solutions on this topic. I am trying to develop a web service which returns an XML Dom tree which is of type Document. Some of the clients are implemented on .NET technologies. My question is, is the

Return Data As ResultSet

2004-02-24 Thread Asanka Priyanjitih
Title: Return Data As ResultSet I need to return a ResultSet  from a Java server running AXIS a AXIS  client. I know that not every object can be serialized and so I would like to ask if is it possible to return it as it is or if it is necessary to transform it in something else before sen

Re: Problem in deploying Axis 1.1 to Tomcat 5

2004-02-24 Thread Kay Chee Cheung
Hi! Thanks very much. I looked at the other log, jwsdp_log and found more messages related to the error: 2004-02-25 08:58:15 createObjectName with StandardEngine[Catalina].StandardHost[localhost].StandardContext[/wsi-server] 2004-02-25 08:58:15 preRegister with Catalina:type=Logger,path=/wsi-s

Help: .NET C# client failed to generate an object corresponding to a valid soap message in AXIS WS application

2004-02-24 Thread Liu, Scott
Hi, All,   This problem really frustrates me. Even though it looks more like a .NET WS support problem than AXIS problem I post it here in hoping that AXIS developers have used .NET clients and may provide me suggestions to address the issue.   I have a AXIS web service running as the s

RE: Testing SOAP over SSL

2004-02-24 Thread Fontanel, Laurent
  The JVM running your client process needs to import the server's certificate in its truststore (using keytool) if the server's certificate is self-signed.   (You can use IE to extract the server's certificate and feed it to keytool.)   Also, I think the hostname in URL you're connecting to

Re: virtual host and webservice

2004-02-24 Thread boblgum
no one? is everyone here using that ugly super long url? greetz boblgum

Testing SOAP over SSL

2004-02-24 Thread Greg Hess
Hi All,   I am trying to set up my Web Service to be accessed over SSL.   My web server Resin 2.1.2 has SSL enabled and is working fine with a test certificate. For testing, my Server and Client are on the same web server, for some reason when I alter the service address for my client

Namespace frustration..

2004-02-24 Thread Pillai, Ranjith
    Hi Axis group,       Please help me to solve this..         I have a doc/literal web service. I am trying to invoke service methods based on XML QName. But I am not successful, always get the     org.xml.sax.SAXException: Deserializin

SOAP Fault Extensibility

2004-02-24 Thread Carlos Lozano
Hi All, Any examples/experiences on throwing custom SOAP faults with faultcode, faultstring, faultactor and detail using Axis? Regards, Carlos Lozano Diez

Re: FW: No deserializer defined for array type

2004-02-24 Thread Parul . Joshi
If I understand you right, then I have to register type mapping for the complex type and also the array of  the complex type. But the problem that I have is that the QName is the same for all the arrays each of a different complex types. So ends up happening is that if I register an Array of  Com

FW: No deserializer defined for array type

2004-02-24 Thread Wagh, Shrikant
Hi Parul, If you are still looking for the answers for "serializer and deserializer for arrays" issues then this might be helpful information to you. Best regards, Shrikant Wagh QA Lead, HPP/Eprofile, HP -Original Message- From: Wagh, Shrikant Sent: Thursday, January 22, 2004 2:29 PM To

RE: wsdd and java2wsdl

2004-02-24 Thread Heitzeg, Bill
Thanks, I see what you're talking about. I'll give it a try. -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 12:44 PM To: [EMAIL PROTECTED] Subject:RE: wsdd and java2wsdl If you are using latest cvs version of axis...

Debugging WS

2004-02-24 Thread Pedro Maia
Hi,   I would like to debug a WS created with Axis in Windows, but the best I can do is append messages to a file. I don’t know how to open and write to a console window and all my Swing code seems simply to be ignored (I thought sending messages to a JTextArea inside a JFrame). Any help

RE: wsdd and java2wsdl

2004-02-24 Thread Davanum Srinivas
If you are using latest cvs version of axisSee http://cvs.apache.org/viewcvs.cgi/ws-axis/java/samples/ejb/ant-build.xml you can add a complextype tag and specify your own serializers. -- dims --- "Heitzeg, Bill" <[EMAIL PROTECTED]> wrote: > I don't think you're understanding my question. I

RE: wsdd and java2wsdl

2004-02-24 Thread Heitzeg, Bill
I don't think you're understanding my question. I have bean mappings in my wsdd, that's why my service works with complex types (as described below). What I can't do is to get java2wsdl to see my wsdd and therefore generate the same wsdl that axis generates on the fly. Do you know a way that

RE: wsdd and java2wsdl

2004-02-24 Thread Gabriel Ciuloaica
Hi, You need to add to you wsdd a tag. See the example below: http://xml.apache.org/axis/wsdd/"; targetNamespace="http://net.jboss.org/WebSvcAdminProfiles"; xmlns:bitserver="http://net.jboss.org/WebSvcAdminProfiles"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>

wsdd and java2wsdl

2004-02-24 Thread Heitzeg, Bill
Hi, I am trying to use java2wsdl to generate a wsdl with complex types. When I deploy the service, using a deploy.wsdd, axis generates my wsdl without a problem. Unfortunately, when I attempt to run java2wsdl, I get a number of: Please register a typemapping/beanmapping for ' I assum

RE: Licence Questions

2004-02-24 Thread Seref Arikan
Title: RE: Licence Questions thank you, both Nishi, and Luciano -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Tuesday, February 24, 2004 2:06 PMTo: [EMAIL PROTECTED]Subject: RE: Licence Questions Luciano has pointed correctly, you can  …

Re: No serializer found for class

2004-02-24 Thread ian_d_stewart
Hey Parul, The 'No deserializer for Array' error message is somewhat misleading. What it actually means is that no deserializer for the arrayType (e.g., SearchRequest, SearchView) could be found. If you provide serializers/deserializers for the array types, AXIS will take care of encoded/decoded

RE: Is therer any way to get the soap body before sending it out ?

2004-02-24 Thread Heitzeg, Bill
XuLiujuan,       In this example, I’m getting the complete SOAP envelope as a string from the MessageContext.  Hope this helps:     public void invoke(MessageContext msg) throws AxisFault   {     Message request = msg.getRequestMessage();     logger.i

RE: Licence Questions

2004-02-24 Thread luciano.fiandesio
Title: RE: Licence Questions Hi Saref, sometime depends on the laws of your country, but when you use a product under Apache license in your commercial application, you *don't* have to distribute also the source code of your application.   Luciano -Original Message-From: Seref Arik

RE: Licence Questions

2004-02-24 Thread nishikant.deshmukh
Title: RE: Licence Questions Luciano has pointed correctly, you can  … According to my understanding, you don’t have to provide the source code.   nishi   -Original Message- From: Seref Arikan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 4:47 PM To: [EMAIL PROTE

RE: [newbie] Axis implementation of JAXM and SAAJ

2004-02-24 Thread Robert Lowe
I think Axis 1.1 implements SAAJ 1.1 and JWSDP 1.3 implements SAAJ 1.2. I don't believe Axis implements JAXM. Best regards, Robert Lowe http://RMLowe.com/ -Original Message- From: Samuel Cheung [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 12:46 AM To: '[EMAIL PROTECTED

RE: Licence Questions

2004-02-24 Thread Seref Arikan
Title: RE: Licence Questions hi, i apoligize, i should be more clear, what i meant was :"Should i provide the source to commercial program also ?" I was not asking about axis source.   Best Regards Seref Arikan   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

RE: Licence Questions

2004-02-24 Thread luciano.fiandesio
Title: RE: Licence Questions The license file that comes with the 1.1 Axis distribution clearly states that you can distribute also the axis source code but:         Redistributions of source code must retain the above copyright     notice, this list of conditions and the fol

Licence Questions

2004-02-24 Thread Seref Arikan
Hi, When using apache axis for a java program that's going to be sold as a commercial product, what are my obligations ? I think using axis tools for development does not require the distribution of source code for the commercial product. But if the commercial software uses axis.jar or similar

Response element name configurable?

2004-02-24 Thread Peter Landmann
Hello, Is it somehow possible to configure the name of the response element a SOAP service method returns? Our problem is that the web service client seems not to use a real SOAP client implementation, but does some XML parsing on its own instead. It relies that the name of the response element c

RE: Axis 1.1 Memory leaks

2004-02-24 Thread luciano.fiandesio
Title: RE: Axis 1.1 Memory leaks -Original Message- From: Fiandesio, Luciano Sent: Monday 23 February 2004 20:27 To: 'Nair Kumar' Subject: RE: Axis 1.1 Memory leaks Nair, I think this is also interesting... http://marc.theaimsgroup.com/?l=axis-user&m=106859643416988&w=2

RE: Axis 1.1 Memory leaks

2004-02-24 Thread luciano.fiandesio
Title: RE: Axis 1.1 Memory leaks -Original Message- From: Fiandesio, Luciano Sent: Monday 23 February 2004 20:23 To: 'Nair Kumar' Subject: RE: Axis 1.1 Memory leaks Nair, I don't know which may be the best approach to use a .Net client for a web service that uses a DataHan