Re: Axis 1.2FINAL support for HTTP1.1 and Keep-Alive

2005-05-30 Thread Chris Averia
Hello Davanum,   How do I set Axis to use CommonsHTTPSender instead of the default HTTPSender?  Which java source file I need to modify for that?   The reason I want a keep-alive support is that I make a sequence of SOAP calls to a Web Server (I use the stub classes generated by WSDL2Java for that)

Weblogic8.1 and Axis 1.2 (Final) :: NullPointerException

2005-05-30 Thread Kiran Kumar
Hello, I wanted to use document style webservices so I moved to Axis 1.2 (Final). I built a simple webservice (RPC style) to see how Axis 1.2 works.. It did go well with Tomcat 4.1. I deployed the same war file in weblogic8.1 SP4. It was deployed successfully but when I try to call from the c

Re: R: showing dialog / message box to client

2005-05-30 Thread Edoardo Causarano
just return the current expiry time and do a check in the client side right after the proxy returns. If diff < so many minutes call renew proxy method. e -- Le montagne sono così: devi assecondarle anche se ti sputano in faccia fiele e veleno. Perdi se pensi di essere più forte. Vinci se

how to unsubscribe?

2005-05-30 Thread Yao Xu
Hi, Please let me know how to unsubscribe this email list. Thanks Yao __ Yahoo! Mail Mobile Take Yahoo! Mail with you! Check email on your mobile phone. http://mobile.yahoo.com/learn/mail

two-dimensional array

2005-05-30 Thread Omar Bennani
I'm trying to use WSDL with SOAP when i use java2wsdl to generate a java file my two-dimensional array of an complex type was not generated in my wsdl file so how I should express two-dimensional array in a wsdl file? someone has an example? thanx

JAX-RPC and Axis

2005-05-30 Thread Abel
Hi, I am starting with Axis 1.2 and I have found that there is a tinny difference in the implemantation of an JSE with what JAX-RPC mandates. As far as I know JAX-RPC says you must have an interface that extends Remote and every method must throw RemoteException,...etc But in Axis It's enough to

Fw: JARs used in Axis 1.2 for emitter and for generated code

2005-05-30 Thread Kathy Chan
Thanks for the answer!  So the only JARs I need to run the Axis generated code are: >  axis.jar >  commons-discovery-0.2.jar >  commons-logging-1.0.4.jar >  jaxrpc.jar >  saaj.jar >  wsdl4j-1.5.1.jar Then how about to run the Axis emitter (java2wsdl & wsdl2java) and the AdminClient?  Do I need a

Re: Axis 1.2FINAL support for HTTP1.1 and Keep-Alive

2005-05-30 Thread Davanum Srinivas
You can use CommonsHTTPSender with Jakarta commons HTTPClient library. -- dims On 5/30/05, Carolina Morais <[EMAIL PROTECTED]> wrote: > Hi Chris, > > The Axis implementation don't support Keep-Alive. Axis always closes > the connection. > See the HttpSender class. > > Ana Carolina. > > On 5/2

Re: Axis 1.2FINAL support for HTTP1.1 and Keep-Alive

2005-05-30 Thread Carolina Morais
Hi Chris, The Axis implementation don't support Keep-Alive. Axis always closes the connection. See the HttpSender class. Ana Carolina. On 5/29/05, Chris Averia <[EMAIL PROTECTED]> wrote: > Hi, > > How do I use HTTP 1.1 and Keep-Alive in my axis client? Im using the > classes compiled by ws

jaxrpc 2.0

2005-05-30 Thread robert rowntree
what is the upgrade path on rpc if u are using axis. do you have to wait for the implementation of these newer rpc things in an organic AXIS releasse. OR can u just mix the jars from the jaxrpc 2.o into Axis 1.2 RC3 ? robert rowntree Borneo Consulting Inc 415 642 4162 415 335 5539 M

Re: Webservices for EJB on Weblogic 8.1

2005-05-30 Thread Anne Thomas Manes
Build the wrapper class. On 5/29/05, Chandu Koppella <[EMAIL PROTECTED]> wrote: > > HI > Here is my situation please advice me how to go about it... > > I have to expose EJB as a webservices...That EJB is already packed in jar > file it has nearly 20 methods or so and the application server tha

AW: Serializer & Deserializer

2005-05-30 Thread Ferruh Zamangoer
Hi,   I have now write my own serializer and deserializer classes additionally the Factory classes. When I start my tomcat server I see in the log file:   2524 [main] DEBUG org.apache.axis.i18n.ProjectResourceBundle  - org.apache.axis.i18n.resource::handleGetObject(exception00)  2534

AxisFault and handlers

2005-05-30 Thread Garzon Maldonado, Jesus Javier
Hello all,   We've a web service with the following method defined:   inteface Service extends java.rmi.Remote { void myMethod(MyParam param) throws java.rmi.RemoteException; }   A handler is bound to this service in order to perform some security actions before each request call. If such secur

Serializer & Deserializer

2005-05-30 Thread Ferruh Zamangoer
Hi,   I have the problem that I want to use a class as a parameter of a method which is not a basic data type of java. I have defined a interface like:   public interface CContentExchangeValidatorService extends java.rmi.Remote {     public boolean validateContent(ContentID contentID

Re: On wsdl2java

2005-05-30 Thread Paul Thomas
Hi Omar, try setting your wsdl2java serverside="true" Regards, Paul i use this wsdl to generate my files types and other stubs, but with wsdl2java only generate this file: ICalcul.java ICalculservice.java ICalculserviceLocator.java ICalculbindingStub.java and no other files types why?