AW: load-on-startup for AxisServlet

2002-12-05 Thread Sebastian . Beyer
Hi Yao, in the web.xml in the conf-path of your Tomcat you may have an entry like: index.html index.htm index.jsp This is the order for pages that tomcat searches for, when starting the application. Just write a simple index.jsp that has a dispatcher forwarding to

RE: Registering SerializerFactory in client using config file

2002-12-05 Thread Brian Dillon (ext. 944)
Tom, Does the 'client-config.wsdd' take the same format as the deploy.wsdd or is it different. If it is different can you send me on an example. I tried using my deploy.wsdd renamed but I got an exception; No client transport named 'http' found! Thanks, Brian. -O

Axis and attachments

2002-12-05 Thread Sharmila Pillai
Hi, I have had success in sending and receiving attachments but the problem is only when I try to send few more parameters, like: Client-side: ... call.addParameter("msg", XMLType.XSD_STRING, ParameterMode.IN ); call.addParameter( "source", qnameAttachment,

Re: "View the list of depolyed Web serviecs" shows blank page

2002-12-05 Thread Joseph Rajkumar
Hi In Axis-1.0, if you deploy something with an error, a Blank Page comes up and never goes away until you fix you class error. But in Axis-1.1Beta, if you deploy something with an error, a Blank Page comes up, then if you "undeploy" what ever caused this "Blank Page" to appear, then everyt

How to get handle to this mysterious SerializationContext?

2002-12-05 Thread easter
I used wsdl2java to gerenate my stubs, and have duly filled out my XXXSOAPBindingImpl.java file. The operation returns a complex array type. Now I get to the point where i want to convert my Java object into the return type I defined in my wsdl file, and so I duly call : ser = XML_DSCollection_H

RE: "View the list of depolyed Web serviecs" shows blank page

2002-12-05 Thread Alexey Krivitsky
Joseph, The same behaviour I see on 1.0, I have not deployed the beta yet. > -Original Message- > From: Joseph Rajkumar [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 05, 2002 12:13 PM > To: [EMAIL PROTECTED] > Subject: Re: "View the list of depolyed Web serviecs" shows blank page

ManagedMemoryDataSource disk cache not deleted

2002-12-05 Thread joseph . vallot
Hello, I post (in axis-user) some days ago a question about Axisaxis files filling my $TEMP directory. it seems they are created by ManagedMemoryDataSource class (I searched for "tempfile" in source files), in the "flushToDisk" method. Files should be deleted by the "delete" method, but they are

Re: How to get handle to this mysterious SerializationContext?

2002-12-05 Thread easter
OK, just found out I was COMPLETELY on the wrong track. Seems you need to call org.apache.axis.utils.JavaUtils.convert(javaobject, xmlobject) Which leads me to another question - which of the files, XXXSOAPBindingSkeleton and XXXSOAPBindingStub should be used to fill in the java code? Cheers.

AW: Howto enable sessions with axis

2002-12-05 Thread Sebastian . Beyer
I worked myself through this code over there, but here is still a big problem. Always, when I try to use the MessageContext.getCurrentContext() method I get a NullPointerException. I think there is something missing in my code, what I overread since now. I read that I would have to include the Sess

RE: Licensing Issues

2002-12-05 Thread Anne Thomas Manes
I totally agree. But the intrinsic value of a JAX-RPC standard API is a different issue from the licensing policies that Sun has imposed. Sun owns the JAX-RPC intellectual property. If you want to create or distribute a JAX-RPC implementation, you need to make sure that you have the proper license

RE: How to get handle to this mysterious SerializationContext?

2002-12-05 Thread Tom Jordahl
I still think you are not on exactly the right track. The Convert() API is not a "public" API that I would count on. The expectation is that you will have the right data types to pass to the stub function on the client, or to return on the server side. You should write your own application co

RE: Registering SerializerFactory in client using config file

2002-12-05 Thread Tom Jordahl
Here is an example client-config.wsdd that sets up a request logging handler. You can set this up using the client_deploy.wsdd file attached also, by running the Admin tool: java org.apache.axis.utils.Admin client client_deploy.xml The "Admin" tool does not require a server to be running, it j

Re: ManagedMemoryDataSource disk cache not deleted

2002-12-05 Thread Steve Loughran
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, December 05, 2002 4:04 AM Subject: ManagedMemoryDataSource disk cache not deleted > > Hello, > > I post (in axis-user) some days ago a question about Axisaxis files > filling my $T

Re: Licensing Issues

2002-12-05 Thread Steve Loughran
- Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 05, 2002 7:23 AM Subject: RE: Licensing Issues > ASF licensed the TCK from Sun. Since ASF is a non-profit organization, they > get different licensing terms than a commeri

Réf. : Re: ManagedMemoryDataSource disk cache notdeleted

2002-12-05 Thread joseph . vallot
You mean it can be fixed soon? Sure I _am_ interested ;) Did anybody knew this bug? -- Joseph Extranet [EMAIL PROTECTED] - 12/05/2002 05:52 PM Veuillez répondre à [EMAIL PROTECTED] Pour : axis-user cc : Objet : Re: ManagedMemoryDataSource disk cache not deleted - Original Me

Re: AW: Howto enable sessions with axis

2002-12-05 Thread Alex Dovlecel
For me, the code from SessionTest was not of any help :o((( This happened in my own case. getCurrentContext() returns null when running axis as a client. Have no idea why... maybe because I did not supply an wsdd client file ?!?!? IN order to enable session tracking, I have done the following

Re: How to get handle to this mysterious SerializationContext?

2002-12-05 Thread easter
Yes, I found my problem. When passing the options to wsdl2java : verbose="true" helpergen="true" url="Docushare.wsdl" output="${src_stubs.dir}" serverside="true" skeletonDeploy="true" It didn't generate the Object for the data types. Once I correcte

RE: How to get handle to this mysterious SerializationContext?

2002-12-05 Thread Tom Jordahl
"Use the defaults, Luke..." :-) -- Tom Jordahl Macromedia Server Development -Original Message- From: easter [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 12:41 PM To: [EMAIL PROTECTED] Subject: Re: How to get handle to this mysterious SerializationContext? Yes, I fou

Re: Réf. : Re: ManagedMemoryDataSource disk cache not deleted

2002-12-05 Thread Steve Loughran
I'm implying that if you can find and fix the problem, then it can be fixed soon. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 05, 2002 9:19 AM Subject: Réf. : Re: ManagedMemoryDataSource disk cache not deleted You mean it can be fixed

AxisFault & DOM

2002-12-05 Thread Jorge M. Aliss
Hello, I just was looking at the code for the AxisFault and SOAPFaultBuilder classes and found that they're relying on DOM to do their stuff. Recalling a previous discussion on the list about performance: Is there a particular reason to use DOM here? Wouldn't it be better to use SAX instead? T

AxisFault

2002-12-05 Thread Javier Iglesias
Hello, I've created a Fault Class that extends from AxisFault. When the application throws an exception, it is correctly serialized, but not correctly deserialized. The problem is in the detail tag of the AxisFault. This tag is compose of another tags that must be serialized to an object, but inst

Re: Java2WSDL/WSDL2Java question

2002-12-05 Thread Derek Eichele
Thanks, Tom, you pointed me in the right direction. The problem was caused by the generation of the wsdl, by using the same target namespace as the name of the interface. I was incorrectly focusing on the WSDL2Java utility. Derek. Tom Jordahl wrote: I think the Test.Test is a bad thing in Ja

ClassLoader problems

2002-12-05 Thread Matt Clark
Title: Message Hi,   I'm just getting started with Axis, and I'm having some problems getting the examples to work.  I'm using JDK1.4.1_01, apache 1.3.27, tomcat 3.2.3, and Axis.  When I go to happyaxis.jsp, and view the list of deployed services, none are listed.  I then type:   ---

Attachment problem with Squid proxy

2002-12-05 Thread Christian Gründemann
Hello! I know this is not the correct mailinglist for my problem, but maybe someone of you can give me a hint to. I haven't found a solution for quite a while. Thanks for your cooperation. I have found a strange behaviour when I am using the jaxm api. As long as I am sending pure xml data everyt

class cast exception with SOAPBody.getChildElements (name)

2002-12-05 Thread Darren Rowley
Has anyone tried using the method:         SOAPBody.getChildElements (name) to enumerate child elements? I recieve a class cast exception, I took a look at the source code and it looks to me like a blatant bug (casting to a SOAPHeaderElement  instead of a body), it's so obvious, I'm suprised no