SAXException: SimpleDeserializer encountered a child element

2003-10-03 Thread KaiErnst
Hi to all,   I'm trying to write a Webservice wich has to send complex object/java types over thw wire. Although I already wrote custom (de)serializer factories wich should filter the javaTypes I don’t need do serialize, I still get a SAXException.   While I’m watching at tcpmon, SOAPMo

RE: iPlanet Web Server Installation Issues

2003-10-03 Thread Michael Joseph
I'm using the default axis webapp installation, so log4j-1.2.8.jar is in the right place: axis/WEB-INF/lib: . axis-ant.jar commons-discovery.jar jaxrpc.jar saaj.jar xerces-2.0.2.jar .. axis.jar commons-logging.jarlog4j-1.2.8.jar wsdl4j.jar xml-apis-2.0.2.jar Also, the only cha

Properties

2003-10-03 Thread Tania Durán
Hello,   I read some time ago that after setting some properties for your call, these are not sent over the wire. Is there any way to send some properties to the server apart from the service parameters?   Thanks.

AxisFault subclass

2003-10-03 Thread Hans Jakob Skovenborg
Can someone tell me how to catch an AxisFault subclass at the clientside. Regards Jakob

service returns custom types

2003-10-03 Thread Sunil Iyengar
Hello Axis-Users, I am currently having two services: One returns a stirng and the other service returns a custom type. I am aslo using handlers for encryption/decryption of the request and response for both services. Everything works okay for the service returns a string and all the security is do

Turning off multirefs

2003-10-03 Thread Anders Peterson
Hi, How do I turn off multirefs for my client? The server seems to have problems with them. Axis makes these kind of references down to individual text/number fields (seems odd). I've read in the docs about *.wsdd files. The problem is I don't have one! The only server-config.wsdd and client-

Keep-Alive

2003-10-03 Thread jose.arevalo
Hi, Do we know if keep-Alive issue has been fixed ? org.apache.axis.transport.http.HTTPSender.java monitoring the connections , each request open a new socket connection. Thanks, Jose Visit our website at http://www.ubs.com This message contains confidential information and is intended o

Keep-Alive

2003-10-03 Thread Mike Spreitzer
Return Receipt Your Keep-Alive document :

Keep-Alive

2003-10-03 Thread matthew_f_hamburger
Return Receipt Your Keep-Alive document :

Packaging for Weblogic 7

2003-10-03 Thread Christian Antognini
Hi I just downloaded AXIS 1.1 and tried to configure it in Bea Weblogic 7 SP4 on my XP laptop. When I deploy it in exploded format (i.e. I copy/paste the directory) it works. When I create a WAR with the same structure (actually I create the WAR on the same directory used for the copy/paste...)

Re: SAXException: SimpleDeserializer encountered a child element

2003-10-03 Thread atul
I am getting similar error when I am trying to access my service (with wsdl defined; complex types specified in schema;) with style as "document" use="literal" with provider as "java:MSG". I did not define any serializer/deserializer beans/factories as my service/client itself is taking care of it.

RE: Packaging for Weblogic 7

2003-10-03 Thread Michael D. Spence
Go to http://ws.apache.org/axis/index.html, select Installation from the list on the left, and read Step 5. And after you've read that, consider this sentence (from that section): "After adding new classes or libraries to the Axis webapp, you must restart the webapp. This can be done by restartin

restarting axis on tomcat WAS RE: Packaging for Weblogic 7

2003-10-03 Thread PARLEY,THUNDER (HP-MountainView,ex1)
Hi Michael, If you have a permanent deployment in place. (you need to use the admin username/password to access this, by default) Automated URL http://yourhost:port/manager/html/reload?path=/axis (or whatever deployment context you use for the axis engine) This only bounces an entire webapp and n

RE: Packaging for Weblogic 7

2003-10-03 Thread Christian Antognini
>Go to http://ws.apache.org/axis/index.html, select Installation from the >list on the left, and read Step 5. Since I got a problem in step 4, I didn't read step 5... >And after you've read that, consider this sentence (from that section): > >"After adding new classes or libraries to the Axis we

RE: Turning off multirefs

2003-10-03 Thread Michael Ser
Anders, In the createCall method of SoapBindingStub.java code created by wsdl2java add the following: _call.setOption(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, new Boolean(false)); Good luck, mike Michael Ser Netweave Integrated Solutions, Inc. -Original Message- From: An

Re: Turning off multirefs

2003-10-03 Thread Anders Peterson
Thanks! I just figured out that I could do ((org.apache.axis.client.Service) this.service).getEngine().setOption(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); in the *BindingStub constructor. Is that equivalent to your suggestion? (Axis contains a myriad of *Engines, *Services, *Clients and *

Re: Turning off multirefs

2003-10-03 Thread Anders Peterson
BTW Is this standard? http://schemas.xmlsoap.org/soap/encoding/"; xsi:type="decimal" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";>6053.14 http://schemas.xmlsoap.org/soap/encoding/"; xsi:type="decimal" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";>

Keep-Alive

2003-10-03 Thread Sumant Padbidri
Return Receipt Your Keep-Alive document :

Re: Turning off multirefs

2003-10-03 Thread Mitch Gitman
This doesn't address Anders' immediate problem, which Michael's fix below does. But such a hack should not be necessary. The SOAP 1.1 specification reads:"All values are represented as element content. A multi-reference value MUST be represented as the content of an independent element. A single-

RE: Axis Response Time appears linear with load

2003-10-03 Thread Sutton, Ray
To answer Mike's comment first. What I was expecting to see was a slow incremental increase in response time with load up to some point where the server saturates when the response time sky-rockets, probably with some instability near the saturation point. In terms of your equation "a + b * load",

RE: Axis Response Time appears linear with load

2003-10-03 Thread Sutton, Ray
To answer Mike's comment first. What I was expecting to see was a slow incremental increase in response time with load up to some point where the server saturates when the response time sky-rockets, probably with some instability near the saturation point. In terms of your equation "a + b * load",

performance problems

2003-10-03 Thread Abhijat Thakur
I have integrated Tomcat 4.1.12 with Apache Axis 1.1. A few minutes after logging into UI the server becomes very slow. It becomes so slow that even when i type the path to the wsdl file in a browser it takes 25-30 seconds to bring up the wsdl file. Any suggestion would be very appreciated. th

Re: performance problems

2003-10-03 Thread Benjamin Tomasini
What is your log4j root setting at? If it is at DEBUG, this could cause issues. On Fri, 2003-10-03 at 15:14, Abhijat Thakur wrote: > I have integrated Tomcat 4.1.12 with Apache Axis 1.1. A few minutes after logging > into UI the server becomes very slow. It becomes so slow that even when i type

RE: performance problems

2003-10-03 Thread Abhijat Thakur
We have our own logging application and we use log4j. In our application the category that i use its root is set to DEBUG. Why would this cause problems? Also i have not inluded the log4j.jar file provided with axis in the classpath but use the one that we use for out logging application since t

Generic Client

2003-10-03 Thread atul
How can(if at all) one write a generic client, irrespective of the way service is being hosted - rpc, doc, or literal, that can dynamically invoke the service? __ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com

HTTP 1.1 in the Soap Request

2003-10-03 Thread Gupta, Pavi
Hi, I noticed that in the Soap request the HTTP version is 1.0 . How can I change this so it's HTTP 1.1 ? Thanks.

Performance Issues with AXIS

2003-10-03 Thread Suket . N . Gandhi
Hi,   We are using Apache AXIS 1.1 to support a web service that returns images. The images are base-64 encoded and embedded within the XML. What we are seeing is very slow response times with AXIS when it tries to construct the SOAP XML.The size of the images are in the range 50-100KB.

RE: Axis Response Time appears linear with load

2003-10-03 Thread Toshiyuki Kimura
Hi Ray, It seems your problem is from a synchronized block for a DocumentBuilderFactory. Axis is pooling parser instances, however the current is using only one dbf instance at least. But, I think also this bottle-neck might be caused by your testing scenarios.I mean the neck might make it ha

RE: Axis using wrong encoding for array in Doc/literal

2003-10-03 Thread Anne Thomas Manes
Arun, Looking at your WSDL, I don't see that you've changed it to say that you're returning an ArrayOf_xsd_int type. I do see that you've added a new operation (echo) (which you've defined it in a very odd way), and your SOAP message refers to this operation. It looks to me that wsdl2java is g

Re: Axis 1.1 w/ Java Web Services 1.2

2003-10-03 Thread Anne Thomas Manes
Mike, Can you clarify what you mean by Java Web Services 1.2 and 1.1? Are you referring to Sun's JWSDP? Anne At 08:35 AM 10/2/2003 -0500, you wrote: Has anyone successfully gotten Axis 1.1 to work with Java Web Services 1.2 ( w/ Tomcat 5 )? I tried it for a little while yesterday and I was ha