java.lang.OutOfMemoryError

2003-10-01 Thread Frank Schoenau
HI, can someone tell me what is going on here? - Servlet.service() for servlet AxisServlet threw exception javax.servlet.ServletException: Servlet execution threw an exception at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:311)

Re: Wrong namespace in the response??

2003-10-01 Thread BLIS Webmaster (Patrick Houbaux)
I'm not sure but what if you try to use the following in your wsdd service name="ComplexType1ServiceDoc" provider="java:RPC" instead of service name="ComplexType1ServiceDoc" style="document" and in the beanMapping try to use xmlns:ns="example.com" instead of xmlns:ns="http://example.com"

Re: Wrong namespace in the response??

2003-10-01 Thread vairamuthu thayapavan
hi i think ur wsdl has the targetname space uri 'http://axis.test.soap' as in following wsdl target namespace uri "http://soap.bookshop.com. wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://soap.bookshop.com"

Re: web service configuration

2003-10-01 Thread Guillaume Sauthier
The init-param tag doesn't look like the one U are using ! Real one : init-param param-nameParam_name/param-name param-valueParam_Value/param-value /init-param Do not use init-param tag with attributes ! The XML you produced is not DTD conformant. Regards Guillaume Uli Magsaam wrote: Hi,

Problem during testing HappyAxis

2003-10-01 Thread VINEETARORA
Hi ! I am getting this error when i run HappyAxis even though file size and classpath is set correctly. Please help . could not find class org.apache.log4j.Layout from file log4j-1.2.8.jar Rgds Vineet Arora Development Manager DID - 68673244

ssl und webservice

2003-10-01 Thread Akacem Mohammed
Hello, does anybody knows about a mailing list about ssl thanks Mohammed

iPlanet Web Server Installation Issues

2003-10-01 Thread Michael Joseph
Hi, I'm attempting to setup Axis 1.1 in the iPlanet Web Server (v6.0 on Windows) J2EE Container (Servlet 2.2 compliant). I package the axis web-app as a WAR (/webapps/axis) and use the wdeploy utility to deploy it: $IWS_SERVER_HOME/bin/https/httpadmin/bin/wdeploy.bat deploy -u /axis -i

How to map EJB exception tree to AxisFaults

2003-10-01 Thread jaccoud
Greetings. In order to have a service exposed both as an EJB and a web service, I have succesfully deployes a stateless session bean through Axis. The methods were mapped correctly, although I will probably have to write a WSDL by hand -- parameter names were not exported, and there seems to be

Error deploying Admin Servlet

2003-10-01 Thread Matthew Britton
Hi, When i start my server and try to deploy the Axis AdminServlet in WebSphere, I get an error like this: Servlet Error-[AdminServlet]: Failed to load servlet: java.lang.ExceptionInInitializerError: org.apache.commons.logging.LogConfigurationException: java.lang.reflect.InvocationTargetException

Error deploying Admin Servlet

2003-10-01 Thread Matthew Britton
Hi, When i start my server and try to deploy the Axis AdminServlet in WebSphere, I get an error like this: Servlet Error-[AdminServlet]: Failed to load servlet: java.lang.ExceptionInInitializerError: org.apache.commons.logging.LogConfigurationException: java.lang.reflect.InvocationTargetException

Re: Problem during testing HappyAxis

2003-10-01 Thread matthew_f_hamburger
Vineetarora, Make sure you have log4j-1.2.8.jar in your classpath, maybe put it in the lib directory of your webapp. Matt Hamburger Bank One Corporate Internet Group [EMAIL PROTECTED] 614.244.5009 VINEETARORA [EMAIL PROTECTED] on 10/01/2003 04:49:33 AM Please respond to [EMAIL

Autogenerated WSDL

2003-10-01 Thread jaccoud
Hi. I am having some trouble with Axis' autogenerated WSDL - it seems to always invent a wrong namespace for the response message. It dos that for all services deployed. For example, the Version service that comes with Axis expects a request message (SOAP body) in the http://axis.apache.org;

RE: problems with setting soapAction to method name

2003-10-01 Thread Wermus Fernando
I´m a newbie, but I give you my javascript client code, my be it could help. html head script languaje=javascript function enviar(){ var xmlhttp = new ActiveXObject(Msxml2.XMLHTTP.4.0); xmlhttp.open(POST, http://127.0.0.1:8080/axis/Calculator.jws,true);

Re: about complex types (newbie)

2003-10-01 Thread Adhamh Findlay
Wermus, It sounds like you need to turn this xml file into a java class, and make this class the argument. If this class is a bean, then you can serialize the class and pass it back and forth. Adhamh On 9/30/03 1:30 PM, Wermus Fernando [EMAIL PROTECTED] wrote: I have a method that it has as

RE: about complex types (newbie)

2003-10-01 Thread Wermus Fernando
I mean I have an xml as argument and I have a schema for the validation. How can I make a class that accept these types of arguments. -Mensaje original- De: Adhamh Findlay [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 01 de octubre de 2003 9:14 Para: [EMAIL PROTECTED] Asunto: Re:

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

2003-10-01 Thread Gupta, Ankit
Thank You Anne for your reply. After this I tried out defining the array in the wsdl in the same way as axis is sending the response on wire and the web service worked with .NET But now axis generates wrong client stubs from the wsdl My java Class is

Maximum size of a SOAP message

2003-10-01 Thread Michael D. Spence
How large a message can Axis/Tomcat cope with? I'm returning a user-defined type which includes an array of another user-defined type and which can get quite large. It works great for, say, 1000 or 2000 elements, but I get an Axis Fault with 500 Internal Server Error for large numbers of

help on mapping

2003-10-01 Thread Tania Durán
hi all, I´m having problems on serializing/deserializing beans and don´t know what´s happening. The thing is that I have a servicewhich returns an arrayList of beans. The client´s code that invokes the services is: QName qn = new

deserialization of xml string

2003-10-01 Thread thuh
Hello all, I'm having problems bypassing the servlet and deserializing an XML string using the axis libraries. I was able to serialize the data, but the deserialization posed more of a problem. In the code snippet below I'm able to serialize the object into an XML string. I am then unable

problem in overriding the default array serializer by custom serializer

2003-10-01 Thread Agarwal, Naresh
Hi I'm trying to use my own custom serializer for array data type (array of int)in AXIS. For this I'm defining the typeMapping in wsdd file as follows: --- typeMapping xmlns:ns="http://DefaultNamespace" qname="ns:ArrayOfint" type="java:int[]"

soapAction WSDD

2003-10-01 Thread William Wen
Is there a way to specify soapAction in the wsdd?

I need to identify the client

2003-10-01 Thread Wermus Fernando
I was thinking in idenfying my client with two methods String login(String user, String pass) bool logOut(String id) And I need the id in the whole messages. I know that this "session id" should be in the soap:header. I 've read this in msdn but, I don't know how to do this.

ComplexType Array

2003-10-01 Thread Cobble, Tim
Title: ComplexType Array All, I feel I am asking a repeated question so I apologize. How do I return an array of my custom complex type? I always get a null pointer exception. I have read that I need to write my own custom serializer/deserializer class. Is this the case? I can not find an

RE: about complex types (newbie)

2003-10-01 Thread Cory Cobler
You should just be able to pass the XML and DTD in as Files through the arg and have your xml parse do the validation on the other side. It has been a long time since I had to do this, but this is the route I would take. You could send the xml files through the web service as attachments. Or even

skeleton and its implementation

2003-10-01 Thread Jeff Guo
Hi, is there a way to dynamically pass a backend implementation in to a skeleton class generated by wsdl2java? In wsdd file, only the skeleton name can be specified in the class attribute, but how do I use the second skeleton constructor that takes a backend implementation. Thanks, Jeff

RE: about complex types (newbie)

2003-10-01 Thread [EMAIL PROTECTED]
Hi, If you want to pass the XML document or valid XML element as the argument to the web services then the part type for the message can be of xsd:any or xsd:anyType in WSDL file. And for implmentation the argument type of the service has to be org.apache.axis.types.Schema e.g. void

RE: ComplexType Array

2003-10-01 Thread [EMAIL PROTECTED]
Hi, If you use the array of uer defined complex types in your web service then you will have to specify the typemapping for the complex type as well as for array of the complex type. The sample type mapping for using array of user defined types can be as shoen below. typeMapping

RE: iPlanet Web Server Installation Issues

2003-10-01 Thread Rick Kellogg
The following information might be of some help: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/SunOne -Original Message- From: Michael Joseph [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 6:21 AM To: [EMAIL PROTECTED] Subject: iPlanet Web Server

Re: ComplexType Array

2003-10-01 Thread Dimuthu Leelarathne
ComplexType ArrayTim Check out this bug; http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15384 Regards, Dimuthu. - Original Message - From: Cobble, Tim To: [EMAIL PROTECTED] Sent: Thursday, October 02, 2003 12:23 AM Subject: ComplexType Array All, I feel I am asking a repeated