Axis sends weird SOAP requests

2005-02-17 Thread [EMAIL PROTECTED]
Hi all, I'm investigating how good/bad Axis and Systinet work together. And I think I found a fault at Axis' side. When I send a request with no parameters, Axis generates the following SOAP message: POST /WholeSalerService HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept:

Problems with Axis with document/literal-wrapped

2005-02-02 Thread [EMAIL PROTECTED]
Hi, I'm trying out a bit with document/literal-wrapped style, but Axis gives me a few problems. I'm creating a WSDL file with 2 methods: createCustomer() and getAllCustomers(). getAllCustomers() has no parameters (so no input), only a return (output). But Axis doesn't seem to like this. I get

Long: Problem with a method that returns byte[]

2004-12-13 Thread [EMAIL PROTECTED]
Hi all, sorry for the long post but we're facing this problem and any help would be greatly appreciated. We have a method with this signature: byte[] getDocumentDataByteArray(String param1, String param2) This method, based on param1 and param2, retrieves a document from the server and returns

Attachment file locked

2004-11-10 Thread [EMAIL PROTECTED]
Hello, I have created some Web Services with attachments. For do that, I have followed the thread zip files as attachments (see http://marc.theaimsgroup.com/?l=axis-userm=107780801011044w=2;). Thanks people it was very helpful ;-). I have just one problem with my Web Services. On my

extension base inheritance seems non-functional in wsdl2java?

2004-09-09 Thread [EMAIL PROTECTED]
I'm trying to factorise my wsdl descriptions for all our web services, but as soon as I use the extension base=... the stubs which are generated are completely empty. Is there some special magic option I need to set, or is this functionality just not supported by Axis yet? (using 1.1 beta) The

Re: extension base inheritance seems non-functional in wsdl2java?

2004-09-09 Thread [EMAIL PROTECTED]
=xsd:string/ /xsd:all /extension /complexContent /xsd:complexType but the end result is the same. Does anyone have an example using a wsdl declaration like this that I can crib from? [EMAIL PROTECTED] wrote: If you copy

Re: extension base inheritance seems non-functional in wsdl2java?

2004-09-09 Thread [EMAIL PROTECTED]
this common portion, but also a new parameter specific1, do you currently just duplicate every single wsdl you have? I was planning a usefull import statement to import this base type in the wsdl, and then each web service can extend it as needed. wh [EMAIL PROTECTED] wrote: Yes, sorry, it was just

Re: extension base inheritance seems non-functional in wsdl2java?

2004-09-09 Thread [EMAIL PROTECTED]
=StaticDeviceGroup complexContent extension base=tns1:DeviceGroup sequence element name=devices nillable=true type=xsd:anyType/ /sequence /extension /complexContent /complexType Christophe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent

Re: extension base inheritance seems non-functional in wsdl2java?

2004-09-09 Thread [EMAIL PROTECTED]
Certainly doesn't work in Axis 1.2 beta 3 I had to switch from 1.1 some time ago due to some serious bugs, and can't switch back. [EMAIL PROTECTED] wrote: Thanks, I'll try it with your sample and see if I get anything going. However, you don't seem to define namespace tns1? Perhaps

Still no joy on configuring a way to cleanup undeployed ws's

2004-09-02 Thread [EMAIL PROTECTED]
Can anyone point me in the right direction for how to perform some cleanup code before my web service is undeployed? It's a application based ws, and I currently start up various JMX MBeanServers within the web service, but even when it's undeployed, this dam thread keeps on running, and I have

Re: Still no joy on configuring a way to cleanup undeployed ws's

2004-09-02 Thread [EMAIL PROTECTED]
Thanks a lot for that. Dam, I spent 2 hours looking at the Axis Javadoc and I missed that class! cheers Davanum Srinivas wrote: try the ServiceLifeCycle's destroy (example - http://www.developer.com/java/web/article.php/3073881) -- dims On Thu, 02 Sep 2004 17:34:57 +0200, [EMAIL PROTECTED] [EMAIL

How to stop my ws reloading for each invocation?

2004-08-27 Thread [EMAIL PROTECTED]
Each time my web service is invoked, Axis creates a new instance of the **SOAPBindingImpl class. Is there a way to tell it do re-use the first instance created for all subsequent invocations of the web service? much appreciated wh

Re: How to stop my ws reloading for each invocation?

2004-08-27 Thread [EMAIL PROTECTED]
is created for each method call Mahen On Fri, 27 Aug 2004 16:29:14 +0200, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Each time my web service is invoked, Axis creates a new instance of the **SOAPBindingImpl class. Is there a way to tell it do re-use the first instance created for all subsequent

Re: Axis generates an undefined namespace in the generated WSDL?

2004-08-26 Thread [EMAIL PROTECTED]
build. This bug was fixed a long time ago. Anne -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 25, 2004 10:13 AM To: [EMAIL PROTECTED] Subject: Re: Axis generates an undefined namespace in the generated WSDL? Could someone at least tell me

Re: Axis generates an undefined namespace in the generated WSDL?

2004-08-26 Thread [EMAIL PROTECTED]
e.org/axis/, the last build is supposed to be March 31, 2004, 1.2 Beta, not alpha. "[EMAIL PROTECTED]" [EMAIL PROTECTED] wrote: Exactly my point, these namespaces for the tns1 namespace are MISSING! I'm not sure there IS a later version of Axis availale (se the clue in my

Axis generates an undefined namespace in the generated WSDL?

2004-08-25 Thread [EMAIL PROTECTED]
Hi all, I use wsdl2java to create my stubs, but the generated wsdl for my web service contains an undefined namespace tns1, which obviously blows up my web service client software. Does anyone know what I'm doing wrong, or if this is a known issue in Axis? I'd really appreciate any information

Re: Axis generates an undefined namespace in the generated WSDL?

2004-08-25 Thread [EMAIL PROTECTED]
Could someone at least tell me if it's a stupid question? I've looked all through the mailing list archives, but although I find examples of tns1 and tns2 they too are never properly defined in the namespace. How are they supposed to be resolved? In case it helps, here is my entire generated

HELP - .NET Client gets Null when request sent to Axis server???

2004-05-15 Thread [EMAIL PROTECTED]
Hi all, I hope someone can help me, I have being tying to fix this problem for a week now, and it has to be fixed by Wed. I have an Axis Java web service that returns a message using SOAP messaging. When I try to communicate using the java client it works no problem, but when i try to send

RE: .NET Interoperability

2004-05-13 Thread [EMAIL PROTECTED]
Hi, I am having major trouble at the moment trying to get my .NET client to communicate with my Java Axis server. I am able to send a request to the server, but when a response is sent back to the client the response Array just has null in it. I had a look at what was being passed and the SOAP

Client Authentication SSL

2004-05-07 Thread [EMAIL PROTECTED]
Hi, I am trying to authenticate my web services client. I have server authentication working using the System.setProperty method to set the clients trusted certificates, now I want to set the clients keystore. I am using the following set property... System.setProperty(javax.net.ssl.trustStore,

RE: Web Services testing

2004-02-04 Thread [EMAIL PROTECTED]
Please take a look at WebServiceTester from Optimyz. For more information : www.optimyz.com Or you can contact me directly at : [EMAIL PROTECTED] Narendra Patil Original Message: - From: Heitzeg, Bill [EMAIL PROTECTED] Date: Wed, 4 Feb 2004 07:56:34 -0600 To: [EMAIL PROTECTED

RE: RE : RE : Web Services testing

2004-02-04 Thread [EMAIL PROTECTED]
Oliver, please look at Optimyz's WebServiceTester which provides , all the information that you mentioned below. For more info : www.optimyz.com Or you can directly reach me at : [EMAIL PROTECTED] regards, Narendra Patil Original Message: - From: Olivier Lamy [EMAIL PROTECTED

Migration from Apache SOAP 2.2

2003-12-10 Thread [EMAIL PROTECTED]
Hi. I have an application developed on Apache soap 2.2 . I want to migrate it to Axis(both client and server). Is there a migration guide/faq/how-to or any other documentation that will help me ? Thanks /s mail2web -

RE: xsi:nil=true

2003-10-06 Thread [EMAIL PROTECTED]
, Shrikant... Optimyz Software, Inc. Email: [EMAIL PROTECTED] Web: www.optimyz.com For more information about WebServiceTester product visit: http://www.optimyz.com Original Message: - From: Slaybaugh Laura J IHMD [EMAIL PROTECTED] Date: Mon, 6 Oct 2003 16:00:15 -0400 To: [EMAIL

RE: about complex types (newbie)

2003-10-01 Thread [EMAIL PROTECTED]
(org.apache.axis.types.Schema myxml) If you try to use the the String you will get the illegal argument exception. hope this helps. regards, Shrikant Wagh Optimyz Software, Inc. Making Software Robust Email: [EMAIL PROTECTED] Web: www.optimyz.com For more information about WebServiceTester product

RE: ComplexType Array

2003-10-01 Thread [EMAIL PROTECTED]
, Inc. Making Software Robust Email: [EMAIL PROTECTED] Web: www.optimyz.com For more information about WebServiceTester product visit www.optimyz.com. Original Message: - From: Cobble, Tim [EMAIL PROTECTED] Date: Wed, 01 Oct 2003 14:23:06 -0400 To: [EMAIL PROTECTED] Subject

RE:Axis 1.1 + WebLogic 7.0 + Sun-JSSE/Certicom-SSL

2003-09-18 Thread [EMAIL PROTECTED]
Hi, I know this is a more-than-2-month old thread but really need some help here. I have the similar config as you do, but can't get pass the log4j problem. I tried your solution by putting the system property by using -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog in

Packages not found !

2003-08-28 Thread BECHU Thierry - REN ( [EMAIL PROTECTED] )
Hi all, I try to write a simple client like the client provide with example1, but it doesn't compile. The errors are : refoforxml/refows/ClientSoap.java:1: package org.apache.axis.client does not existimport org.apache.axis.client.Call; ^refoforxml/refows/ClientSoap.java:2: package

RE: Admin Client Exception:: org.w3c.dom.DOMException

2003-08-21 Thread [EMAIL PROTECTED]
This may not be a Axis problem ... I found a query at this site which may point you in the right direction ... http://www.caucho.com/support/resin-interest/0107/0113.html Conrad Original Message: - From: Bianchi Simona [EMAIL PROTECTED] Date: Thu, 21 Aug 2003 10:29:46 +0200

RE: [Fwd: RE: accessing the HTTP Headers in the Response]

2003-08-21 Thread [EMAIL PROTECTED]
the HTTP Headers in the Response Date: Wed, 20 Aug 2003 17:29:15 -0400 From: Manchaiah, Girish (LNG-DAY) [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Call.getMessageContext().getProperty(cookieName); -Original Message- From: [EMAIL PROTECTED

Re: [Fwd: RE: accessing the HTTP Headers in the Response]

2003-08-21 Thread [EMAIL PROTECTED]
Original Message: - From: Mental Patient [EMAIL PROTECTED] Date: Thu, 21 Aug 2003 11:58:21 -0400 To: [EMAIL PROTECTED] Subject: Re: [Fwd: RE: accessing the HTTP Headers in the Response] [EMAIL PROTECTED] wrote: Girish, No -- Call.getMessageContext().getProperty(JSESSIONID

RE: [Fwd: RE: accessing the HTTP Headers in the Response]

2003-08-21 Thread [EMAIL PROTECTED]
because some sample SOAP code showed Set-Cookie: in the header. Still no luck. Have you been able to access jsessionid (or any cookie set by the webserver) within an Axis client? Conrad Original Message: - From: Manchaiah, Girish (LNG-DAY) [EMAIL PROTECTED] Date: Thu, 21 Aug

Re: [Fwd: RE: accessing the HTTP Headers in the Response]

2003-08-21 Thread [EMAIL PROTECTED]
Message: - From: Mental Patient [EMAIL PROTECTED] Date: Thu, 21 Aug 2003 11:58:21 -0400 To: [EMAIL PROTECTED] Subject: Re: [Fwd: RE: accessing the HTTP Headers in the Response] [EMAIL PROTECTED] wrote: Girish, No -- Call.getMessageContext().getProperty(JSESSIONID) returned a NULL

accessing the HTTP Headers in the Response

2003-08-20 Thread [EMAIL PROTECTED]
All, I need to access the HTTP headers in the response after the call.invoke(). Specifically, I need to get the JSESSIONID (cookie) that the web server sets. This is to code a work around for a load balancer which does not understand SOAP Headers. I have been through the API (and chased my tail

Urgent : fatal error when deploying web service on Axis

2003-08-19 Thread BECHU Thierry - REN ( [EMAIL PROTECTED] )
Hi all,I am trying to deploy aweb service on Axis 1.1with Tomcat 4.1.10 (Apache 2.0.39).When I enter the command "java org.apache.axis.client.AdminClient -lhttp://myserver/axis/services/AdminService RefOForXml_deploy.wsdd", I get the following error. Processing file

TR: Urgent : fatal error when deploying web service on Axis

2003-08-19 Thread BECHU Thierry - REN ( [EMAIL PROTECTED] )
My apologies if you receive this mail twice, because I've had a problem on the first sending. Hi all, I am trying to deploy a web service on Axis 1.1 with Tomcat 4.1.10 (Apache 2.0.39). When I enter the command

RE: Web service from Java code - online example

2002-11-01 Thread [EMAIL PROTECTED]
Enterprise Java, XML, and Web Services Support http://www.sosnoski.com Original Message: - From: Stuart Halloway \(DevelopMentor\) [EMAIL PROTECTED] Date: Fri, 1 Nov 2002 14:56:19 -0500 To: [EMAIL PROTECTED] Subject: RE: Web service from Java code - online example Hi Dennis, WRT making

Re: SOAP on JMS, a solution to which problem?

2002-10-14 Thread [EMAIL PROTECTED]
: Ricky Ho [EMAIL PROTECTED] Date: Mon, 14 Oct 2002 11:36:48 -0700 To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: SOAP on JMS, a solution to which problem? I agree that SOAP over JMS over the intranet (to Dave's definition) is a very practical approach today. although we

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

RE: rpc-literal and document-literal

2002-07-22 Thread [EMAIL PROTECTED]
Are you talking about the newgroups on or the soap list on the develop.com server ? http://msdn.microsoft.com/webservices/ /s This is, as was noted earlier, just one man's opinion, but a good resource for this kind of discussion is the Microsoft WebServices area on MSDN; some very

Re: evaluation for small client

2002-07-18 Thread [EMAIL PROTECTED]
Boris: wSOAP SOAP client by Wingfoot is 35K (including parser) and works with applets. http://www.wingfoot.com/products.jsp On Thu, 18 Jul 2002 11:33:23 -0700 Boris Garbuzov wrote: We need the product for SOAP client to bundle with Java applet. Is this a suitable one? Or even old Apache

Interop - WSDL2Java (Beta 2) and .Net with overloaded methods

2002-05-01 Thread [EMAIL PROTECTED]
I'm a bit fuzzy about whether WSDL2Java is supposed to support overloaded methods. I'm trying to generate proxies for a Microsoft .Net web service that has overloaded method signatures. In the .Net model, the methods are identified uniquely using the MessageName property on the WebMethod