RE: question on Axis Handlers

2004-04-07 Thread Mark Leone
Ramesh, The piece of info you may be lacking is that Axis IS a web app, and is therefor deployed in a servlet container. It has its own web.xml file that defines how it is deployed. The server-config.wsdd is a deployment descriptor that is used to configure Axis with respect to the web service

Re: Axis :: WSDL :: WSDD ['Watchdog': checked] ['Watchdog': Virus checked]

2004-04-07 Thread Anne Thomas Manes
The RPCProvider converts XML to Java objects and invokes a method in a standard Java class. It works for RPC, Document, and Wrapped styles. The EJBProvider works just like the RPCProvider except that invokes a stateless session bean. The MSGProvider converts the XML to a DOM and invokes a Java

RE: question on Axis Handlers

2004-04-07 Thread Senthil_KM
HI Ramesh, You can get the instance of the axis engine itself. Then you can get the message context through it. And whatever handlers that you are specifying can be specified in the client-config.wsdd or server-config.wsdd depnding on where the handlers should play the role. Then when you can p

RE: question on Axis Handlers

2004-04-07 Thread Mantri, Mr. Ramesh (Contractor)
In my very brief stint with Axis, I did come across "deploy.wsdd" files. But I am assuming that this file is read only when you deploy the service through "AdminClient" which is a totally Axis-specific activity. In a servlet-engine environment, servlets are "deployed" through web.xml. Is it somehow

RE: question on Axis Handlers

2004-04-07 Thread Yakulis, Ross (Ross)
Are you refering to configuring handlers in the deploy.wsdd file? Like: Ross -Original Message- From: Mantri, Mr. Ramesh (Contractor) [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 5:45 PM To: [EMAIL PROTECTED] Subje

question on Axis Handlers

2004-04-07 Thread Mantri, Mr. Ramesh (Contractor)
All, we are writing server-side software - Java servlets (SOAP/HTTP, JAXM, SAAJ). Recently we were told that we would be provided a set of Apache Axis handlers that "must be confnigured in front of your Web service". Is it possible to achieve this without making changes to our server-side cod

RE: How to view my Axis Java objects as XML

2004-04-07 Thread Yakulis, Ross (Ross)
Title: How to view my Axis Java objects as XML I am inclined to say that the generated java files would not let you create anything invalid.  Though, I am not an expert here, rather an interested observer.  I hope others will comment.   Ross -Original Message-From: Yakulis, Ross (R

RE: How to view my Axis Java objects as XML

2004-04-07 Thread Yakulis, Ross (Ross)
Title: How to view my Axis Java objects as XML For the benefit of the email list I have attached a conversation betweenGreg and my self...so that others might also comment should they be inclined.   -   Ross,       Thanks for the re

RE: Axis 1.2 beta - sendXsiType no longer works?

2004-04-07 Thread Mark Leone
Maybe whatever I've got set wrong for Axis 1.1 is set wrong n your 1.2 configuration. Can you think of anything we can compare in our 1.1 configurations? From: Nelson Minar <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Axis 1.2 beta - sendXsiType no longer w

RE: Problem with the example axis\samples\jaxrpc\address of the distribution of AXIS 1.1

2004-04-07 Thread Mark Leone
Is Axis deployed on port 8080 in your web container? From: Ricardo De la Rosa <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Problem with the example axis\samples\jaxrpc\address of the distribution of AXIS 1.1 Date: Wed, 07 Apr 2004 16:41:00 +0200 Hi , I am try

WSDL2JAVA - Binding Stub Problem

2004-04-07 Thread Pyatt, Adam
Hey all, having a problem and I'm stumped. I use PHP NuSOAP to create a Soap Server. I have one function that is causing a compilation error whenever WSDL2JAVA is run with Apache Axis 1.1. I get the error when I run it locally with java, and when we try to use the web services via Cold Fus

InterServlet -> Axis communication

2004-04-07 Thread p2p
Hi, I have a servlet which adds an object to an attribute in it's servlet context in Tomcat. How can I access that context from a service in the Axis Servlet? When I check the Axis servlet context attributes using: (context is the current MessageContext) javax.servlet.ServletContext foo = ((javax.

RE: Axis 1.2 beta - sendXsiType no longer works?

2004-04-07 Thread Nelson Minar
>I can't get it to work properly with Axis 1.1. Hmm, I do have sendXsiTypes working in 1.1. Just not with 1.2 beta. I'm going to try to build a test for the failure first, then I'll file a bug.

org.apache.axis.transport.http.HTTPTransport java.io.NotSerializableException

2004-04-07 Thread Riccardo Marangone
Hi, I am trying to serialize and deserialize the org.apache.axis.client.Service. The class is serializable but when I try to deserialize it fails. Follow exception: java.io.NotSerializableException: org.apache.axis.transport.http.HTTPTransport at java.io.ObjectOutputStream.outputObject(O

Re: Classpath?

2004-04-07 Thread Henry . Li
The class GetQuote is not in axis.jar and so not in your class path. First make sure that you have the file GetQuote.class in your %AXIS_LIB%\WEB-INF\classes\samples\stock folder and then add this to your class path %AXIS_LIB%\WEB-INF\classes ---

Problem with the example axis\samples\jaxrpc\address of the distribution of AXIS 1.1

2004-04-07 Thread Ricardo De la Rosa
Hi , I am trying to execute the example ( \axis\samples\jaxrpc\address ) of AXIS 1.1 distribution. But , it fails when the client call the webservice. The code of the client is: ___ public class AddressClient { public static void main(String[] args) throws Ex

Re: Classpath?

2004-04-07 Thread chudzikr
Thanks for the help everyone! -- [EMAIL PROTECTED] > > Or put another way, because you're using packages, the classloader is not > looking for the file GetQuote.class. It's looking for the file > samles\stock\GetQuote.class. This file, when specified that way, exists in > the directory c:\axis

Re: Session out of order

2004-04-07 Thread Stefano Sambi
>From SimpleSessionHandler.java (in src\org\apache\axis\handlers\) line 135: // By default, sessions time out after 1 minute of inactivity (60 sec) private int defaultSessionTimeout = 60; I hope this is useful to solve your problem. Stefano - Original Message - From: "Dorner, Thomas

Re: Classpath?

2004-04-07 Thread Mark Leone
Or put another way, because you're using packages, the classloader is not looking for the file GetQuote.class. It's looking for the file samles\stock\GetQuote.class. This file, when specified that way, exists in the directory c:\axis-1_1\ From: Giorgos Gaganis <[EMAIL PROTECTED]> Reply-To: [EMA

Re: Axis 1.2 beta - sendXsiType no longer works?

2004-04-07 Thread Davanum Srinivas
Nelson, Please log a bug (http://issues.apache.org/jira) thanks, dims --- Nelson Minar <[EMAIL PROTECTED]> wrote: > I'm testing Axis 1.2 beta and ran into a problem so simple I wondered > if I'm doing something wrong. Can someone else try this and confirm it? > > In the server-config.wsdd I hav

Axis :: WSDL :: WSDD ['Watchdog': checked] ['Watchdog': Virus checked]

2004-04-07 Thread KKanagaraj
Hello there, I just went through the Axis user guide. It says that service styles can be either : - RPC - Document - Wrapped - Message. In the document it says that RPC style services are handled by - org.apache.axis.providers.java.RPCProvider and Message style services are handled by - org.

Re: Classpath?

2004-04-07 Thread John R Meloro
I'm not sure if this is the problem; however, I thought that if you used the complete file name for a class then you had to be in the directory "above"? More specifically, it looks to me like you are attempting to execute the class "samples.stock.GetQuote" from the "C:\axis-1_1\samples\stock" dire

RE: Keep alive connection

2004-04-07 Thread Slimane Amar
I have installed commons-httpclient and i have modified client-config.wsdd in order to use CommonsHTTPSender. But some problems remain. First, i don't find the class org.apache.axis.transport.http.CommonsHTTPSender. Next, how to use CommonsHTTPSender in Axis client in order to keep alive ant to c