Re: Very Basic Problem with operation invocation

2004-03-19 Thread Kartik
Hi Anne, It worked, and thanks for correcting. Is what you said in your email about the document/literal a standard spec? Does it mean that it is "unsafe" to use multipart message element (at least for the input message)? Why would other web-service containers would not complain about it? I gu

Attachment from Axis service causing .NET to Error

2004-03-19 Thread sergeant
BACKGROUND: I'm using Axis 1.1 on Tomcat 4.1.29. I've written a WSDL using a simple document/literal approach and am interoperating with both Axis and .NET clients. I've introduced an operation that returns a binary attachment and this works fine with the Axis client. The WSDL knows nothing of t

RE: Doc/Literal support in axis

2004-03-19 Thread Cunningham David
That would be a great addition to Axis to provide flexibility to move an abstract WSDL to different deployments without having to continually change the endpoints and usage. -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 2:08 PM To: [EMA

[axis-wsdl2java] java.io.IOException: Type Set is referenced but not defined.

2004-03-19 Thread Oleg Lebedev
Title: Message Hi all.   I am using wsdl2java and am getting the following exception: [axis-wsdl2java] java.io.IOException: Type Set is referenced but not defined. I am sure it is related to me using type Set in my Java code. Below is the exerpt from the wsdl file.   Where should I define typ

Tomcat and Axis ClassLoader error...

2004-03-19 Thread Marepalli, Somesh
Title: Same WSDL different environment - help please Hi:   I am deploying Axis based web services in Tomcat (4.0.6). My web app .jar files need to be dynamically updated...   However, since some of the helper .jar files use Native (JNI) dlls, I am unable to do this...I get the

Same WSDL different environment - help please

2004-03-19 Thread Jaswinder Kaur
Title: Same WSDL different environment - help please If a same service need to run in three different environment like Test, Staging and production, How you can handle with same WSDL. Thanks in advance Jaswinder "Attention: This message is intended only for the individual to whom it is ad

RE: NullPointerException

2004-03-19 Thread Hari Lakshmanan
I figured out. I need to override setChildValue in my custom serializer and in that routine I need to convert between int and Intger __Hari -Original Message- From: Hari Lakshmanan Sent: Thu 3/18/2004 4:54 PM To: [EMAIL PROTECTED] Cc:

RE: Doc/Literal support in axis

2004-03-19 Thread Anderson Jonathan
I second that suggestion. :) -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 2:08 PM To: [EMAIL PROTECTED] Subject: RE: Doc/Literal support in axis When "starting with WSDL", what that really menas if that you should be starting with a W

Problems with Axis deployment...

2004-03-19 Thread Marepalli, Somesh
Hi: I am trying for web services with Axis 1.1 and Tomcat 4.1.29 I have problems re-deploying a web app in Axis as it depends on other .jar files which load native DLLs. I read some forum where it mentions that because of classloader issues, Classes loading native DLLs should be

RE: Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread Anne Thomas Manes
Your WSDL needs to look like this:  xmlns:apachesoap="http://xml.apache.org/xml-soap"  xmlns:impl="http://mywebservice.sabre.com/cruise"  xmlns:intf="http://mywebservice.sabre.com/cruise"  xmlns:tns1="urn:displaybooking:datatypes:communications:cruise:sabre:com"  xmlns:tns10="urn:cabinavaila

RE: Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread Ferguson, Hamish
Jim, Many thanks. This has completely fixed the problem that has caused me lots of frustration the last couple of days. Again, thanks :) Hamish. -Original Message- From: Jim Murphy [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 12:12 PM To: [EMAIL PROTECTED] Subject: Re: Exce

RE: Doc/Literal support in axis

2004-03-19 Thread Anne Thomas Manes
When "starting with WSDL", what that really menas if that you should be starting with a WSDL definition (plus it's referenced definitions) -- not with a complete WSDL document including and elements. The binding information should be specified during packaging and deployment. The element sh

Re: Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread Anne Thomas Manes
Per WS-I BP, you may use only to import a WSDL definition. If you want to import a schema (.xsd file), you must import it using rather than . An element must be a child of the element. The fact that wsdl2java accepted your WSDL definition, which uses to import schemas, means that there's

Message/Document styled web services

2004-03-19 Thread Vivek Nagulapati
Hello Guys, I am trying to develop a message styled web service and was able to deploy a simple web service. But each time, I make changes to the web service I am forced to restart the server for the changes to take effect in the web service. Did anyone had the same problem? If yes, how can we

Re: Different WSDL namespaces

2004-03-19 Thread Anne Thomas Manes
BarZ, The WSDL 1.1 namespace is http://schemas.xmlsoap.org/wsdl/. The WSDL 2.0 Working Draft 10 namespace is http://www.w3.org/2003/11/wsdl. I anticipate that the final WSDL 2.0 spec will have yet another namepsace. WSDL 2.0 is not yet finished -- and it's definitely not ready for adoption. I do

Message/Document styled web services

2004-03-19 Thread Vivek Nagulapati
Hello Guys, I am trying to develop a message styled web service and was able to deploy a simple web service. But each time, I make changes to the web service I am forced to restart the server for the changes to take effect in the web service. Did anyone had the same problem? If yes, how can we

Re: Doc/Literal support in axis

2004-03-19 Thread Jim Murphy
FWIW, ASP.NET does this very thing when generating WSDL. The actual service endpoint depends on the request url for the WSDL so if I request http://www.fred.com/foo/bar.asmx?wsdl the generated wsdl would contain a serice port to http://www.fred.com/foo/bar.asmx. Makes it kinda fun with our WSD

Different WSDL namespaces

2004-03-19 Thread Barzilai Spinak
I've noticed that Axis generates WSDL's in the {http://schemas.xmlsoap.org/wsdl/} namespace, however W3C defines {http://www.w3.org/2003/11/wsdl} Anyone can explain what all this means? BarZ Nueva forma de conectarse a internet en URUGUAY - Cuanto gasta hoy ? -- Tel. 0909

Re: Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread Jim Murphy
The first thing I notices while looking at your WSDL is the wsdl:imports being used to import XSD documents. This is NOT good. wsdl:import should import wsdl documents and xsd:import should import xsd documents. Try inserting a section in your document and build a that imports the xsds. II

RE: Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread Ferguson, Hamish
Vijay, Thanks for responding to me email.   I'm a little unsure of what you mean here.  My imported Schemas are of the form not   ( I probably should have prefixed them with xsd ) .  When you say you took out what did you replace it with?  After all is the root node of my schema file

RE: Doc/Literal support in axis

2004-03-19 Thread Nelson Minar
>There are a bunch of doc/lit specific bugs that have been fixed in both the >straight 1.2 alpha release and the latest Axis CVS. Understood. This is really frustrating if you're trying to use Axis 1.1. A beta of Axis 1.2 that passes all tests would be very welcome. >As to your template WSDL sugg

Re: Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread sreekantan, vijay
i have seen this before. if i remember i had the import statements inside a definition.like <..imports I had to take out the   to get wsdl2java to work vijay"Ferguson, Hamish" <[EMAIL PROTECTED]> wrote: Hello, I am trying to include schema's into my wsdl but am running into a few problems and wa

Exception using wsdl2java using a wsdl with imported schema

2004-03-19 Thread Ferguson, Hamish
Hello, I am trying to include schema's into my wsdl but am running into a few problems and was hoping someone out there has the solution. I'll outline what I'm trying to do. 1) Take an axis generated wsdl and parse it through a java app I have written that adds application specific constrain

RE: Doc/Literal support in axis

2004-03-19 Thread Anderson Jonathan
There are a bunch of doc/lit specific bugs that have been fixed in both the straight 1.2 alpha release and the latest Axis CVS. Originally we were using the straight 1.2 alpha release - then we started playing with WSS4J and have been using the build from Axis CVS that they are using ever since.

RE: Problems with Axis deployment...

2004-03-19 Thread smcardle
Hi Somesh, The short answer to this is no I am not aware of problems. I have a pretty big and complex WebServices and have had very few issues. Regards Steve Quoting "Marepalli, Somesh" <[EMAIL PROTECTED]>: > Hi Steve: >Thanks for the reply. My applications is really big and I can't send

.NET client to Axis WS problem

2004-03-19 Thread Pedro Maia
Hi, I created a WS with Axis and a .NET client and all works fine in my development machine. But, when I try to run the .NET client in another machine (both machines running Windows XP Pro) I get the exception:   "The underlying connection was closed. Unable to connect to the remote ser

.NET client to Axis WS problem

2004-03-19 Thread Pedro Maia
Hi, I created a WS with Axis and a .NET client and all works fine in my development machine. But, when I try to run the .NET client in another machine (both machines running Windows XP Pro) I get the exception:   "The underlying connection was closed. Unable to connect to the remote ser

RE: Problems with Axis deployment...

2004-03-19 Thread Marepalli, Somesh
Hi Steve: Thanks for the reply. My applications is really big and I can't send it over the net... Are you aware of common problems in application that might throw such an application. Regards -Somesh -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: F

Interoperability issues with .NET

2004-03-19 Thread Alok Pandey, Noida
> Hi, > I am facing an issue in calling my .NET service from an axis soap client. I have tried both RPC and document techniques available with AXIS. With RPC technique I am bound to use primitive datatypes which though is working fine, But my requirement is to support complex datatypes and Objec

Re: NullPointerException

2004-03-19 Thread Lanto Randriamiharisoa
I think I've resolved the problem. In the wsdd file generated by the ant task ant-wsdl2java (or the application commande line WSDL2Java), there are some lines you have to change manually : - the classname parameter should be changed to the classname of the service you want to publish (by default

RE: NullPointerException

2004-03-19 Thread Avinash Patil
Team, am working on performance related issues for my AXIS web service implementation. Right now it seems like a bag full of problems. The scalabiltiy is really poor. I want to tweak the code and make it scale better. Can anyone help help me with this. Right now am lost.I dnt know where to start

Re: NullPointerException

2004-03-19 Thread Lanto Randriamiharisoa
Hi Hari, Do you use the ant tasks ant-java2wsdl and ant-wsdl2java to generate your stub and wsdd files ? I have the same problem too, for all services where I use these tasks For the moment, I've not yet resolved the problem. If you have resolved it, please tell me the solution Thanks a lot, -