Re: Passing Values through handlers

2003-09-23 Thread Dimuthu Leelarathne
Yes it does sound ok, but I don't understand what do you mean by "re-use the same service for two different scenarios." - Original Message - From: "Jose M Selman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 24, 2003 9:10 AM Subject: Re: Passing Values through ha

Re: Soap Fault question

2003-09-23 Thread Ajay Gondhiya
Steve, I have experimented a bit  with SOAP faults on .NET side and server side exceptions on Axis side. As far as my understanding goes: - You can access the SOAP fault from .NET client. However, that's "SOAP fault" view - not the "Exception" view of the server side problem. I have not seen SOAP

Re: No deserializer for dateTime

2003-09-23 Thread Dimuthu Leelarathne
Hi Anders, I had the exact-problem sometime back, but it was regarding doc\literal services. Isn't this a client side deserialization problem? The Binding stub was the same ( i.e. it added a elemfield to the typedesc ). According to your stackTrace I see that the program-control-flow has not reac

Re: Passing Values through handlers

2003-09-23 Thread Jose M Selman
Thanks for your answer... What if in the first handler (the one that determines whether the next one should be executed) sets a "bypass" variable in the context, then if the next handler checks whether this variable exists it can just return, and accomplish the desired behavior. Do you think that a

Re: Passing Values through handlers

2003-09-23 Thread Dimuthu Leelarathne
Hi Jose, Properties in MessageContext are mostly used to store HTTP header information. Yes there is one message context per request. This MessageContext is passed through handlers and one of the biggest jobs of MessageContext is to carry information. This design pattern is called the mediator pa

RE: EJB provider and JSR109

2003-09-23 Thread Srinath Perera
Thanks Samuel Am worried not about how to expose a EJB as web service. I want to know how the server do the lookup and how it works. JSR109 is "webservices for J2EE" and talk about how to expose J2EE componets as webservices. I want to know how much axis support it. What left to be done :) Tha

Re: can "address location" be flexible?

2003-09-23 Thread Srinath Perera
Hi Rob In genarated classes when u called get() there is a method with get(url). e.g. public com.bookshop.soap.AmazonSearchPort getAmazonSearchPort() is what we are using yet there is a public com.bookshop.soap.AmazonSearchPort getAmazonSearchPort(java.net.URL portAddress) as

Support for xml:lang in XSD/WSDL documentation element

2003-09-23 Thread Tony Opatha
Does AXIS support language identifier for XSD schema documentation such that the WSDL2Java compiler will be able to process the WSDL docs correctly even if the XSD schema that it imports includes: .   Thanks Do you Yahoo!? Yahoo! SiteBuilder - F

Re: axis-wsdl2java ant task

2003-09-23 Thread Jens Schumann
On 9/23/03 01:11 PM Jens Schumann <[EMAIL PROTECTED]> wrote: > I get the following error, but was unable to locate the reason for. It seems > to be a change in DefaultAuthenticator related classes. (commons-discovery?, > commons-logging?) The Authenticator is in axis.jar. > > --- Nested Excepti

RE: Books on Axis?

2003-09-23 Thread Rick Kellogg
Please see the following: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/Articles and http://cvs.apache.org/viewcvs/~checkout~/ws-axis/java/docs/reading.html Rick -Original Message- From: David Orriss Jr [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 6:18 P

Re: can "address location" be flexible?

2003-09-23 Thread Alexander Berry,Jr.
Question, what is your service backend? Robert Kaffl wrote: Hello, I try to develop one service for several different servers. It all works well as long as I work on a certain machine like http://localhost:8080/axis/services/MyService. The problem I'm chewing on is: I don't know the final addre

Books on Axis?

2003-09-23 Thread David Orriss Jr
Have any books on Axis been published?? tnx

Soap Fault question

2003-09-23 Thread Steve Pannier
Axis 1.1 I'm trying to get my web service to throw a custom exception subclassed from RemoteException. So to start off I looked at the code under samples/faults. I deployed the service, ran the supplied Axis client, everything looked good. (I had to 1st put a try/catch around the call.invoke in

SSL web services

2003-09-23 Thread Henry lu
Is there any cliewnt code for SSL web services? What we'd like to know how to send user name, password, truststore, and trustStorePassword to server. _ Help protect your PC. Get a FREE computer virus scan online from McAfee. http:/

can "address location" be flexible?

2003-09-23 Thread Robert Kaffl
Hello, I try to develop one service for several different servers. It all works well as long as I work on a certain machine like http://localhost:8080/axis/services/MyService. The problem I'm chewing on is: I don't know the final address location - is there a way to keep the address location fl

Re: Bypass Service

2003-09-23 Thread Richard Zhu
Hi, Consider the case when the response message is lost due to transport failure, so the client resend the request, but the service can not just re-execute the transaction. So if the previous response message is persisted, then Axis can send back client with the right response message without re-in

List behavior

2003-09-23 Thread Mike Perham
Title: Message Just so other axis-user readers understand, there is a list reader in Poland who is autoresponding anytime someone posts a message in HTML format.  Jose, not that my opinion matters but I think you are fine and this other person is out of line.   mike -Original Message-

Passing Values through handlers

2003-09-23 Thread Jose Miguel Selman
Folks, sorry for the HTML message I sent earlier... Human Mistake :-) ... I'm pasting the contents of the previous email. Thanks, Jose M Selman -- Hi: I have a question regarding on how to pass values from one handler to another in a handler chain, this is needed in

Passing Values through handlers

2003-09-23 Thread Jose Miguel Selman
Hi:     I have a question regarding on how to pass values from one handler to another in a handler chain, this is needed in order to by-pass one of the handlers for certain cases.      I came with the idea of using properties in the MessageContext, but I have a few questions about it. Is the

RE: EJB provider and JSR109

2003-09-23 Thread Koller, Shmuel
Axis exposes a EJB (which can be in remote EJB container - relative to Axis web container). You have to deploy in Axis - meaning just define the web-service (java:EBJ, port of EJB containener, etc). No piece of code needed on SOAP server side. Axis will do the lookup and Expose the EJB - only as S

Re: No deserializer for dateTime

2003-09-23 Thread Anders Peterson
Is this a bug? ... What I have is a custom data type TNAV conatining two attributes - an int and a dateTime. // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(TNAV.class); static { typeDesc.setXmlT

Re: WSDL2JavaAntTask and HTTP BASIC Auth?

2003-09-23 Thread Stephen Gordon
As far as I can see, no. http://cvs.apache.org/viewcvs.cgi/*checkout*/ws-axis/java/docs/ant/axis-wsdl2java.html?rev=HEAD&content-type=text/html Sascha-Matthias Kulawik wrote: Hello - just a simple question, Is it possible to set a HTTP BASIC AUTH Password and User during the WSDL2JavaAntTask?

WSDL2JavaAntTask and HTTP BASIC Auth?

2003-09-23 Thread Sascha-Matthias Kulawik
Hello - just a simple question, Is it possible to set a HTTP BASIC AUTH Password and User during the WSDL2JavaAntTask? The Services I want to import are Password-secured - so this would be nice. Regards, Sascha

Re: axis-wsdl2java ant task

2003-09-23 Thread Jens Schumann
On 9/22/03 01:13 PM Johansen Per Henrik <[EMAIL PROTECTED]> wrote: > > But when running the task, ant fails with the following error: > >[taskdef] Loading definitions from resource axis-tasks.properties >[taskdef] BUILD FAILED: > file:D:/eclipse/workspace/gardskartservlet/build/build.xml:

Re: Statefull service with axis

2003-09-23 Thread Srinath Perera
Hi Piero There is a scope parameter given in the WSDD if tou need there are three scopes Application - only one instance is used all the time Session - new instance for each session request - new instance for each request Hope this helps Srinath - Original Message - From: "Piero

Statefull service with axis

2003-09-23 Thread Piero Campanelli
At this moment does Axis support stateless or statefull service? Stateless = it exists only one instance of the service used by all clients Statefull = for every client access there is a new instance of the service Thank you

Re: XML Schama message validation.

2003-09-23 Thread Marcin Okraszewski
2) You can write a message style service with below signature. public Element [] method(Element [] bodies); public SOAPBodyElement [] method (SOAPBodyElement [] bodies); public Document method(Document body); public void method(SOAPEnvelope req, SOAPEnvelope resp); And then you can validate it usi

Order of arguments in .jws

2003-09-23 Thread Samuel Penn
I'm using Axis 1.1 final with Apache Tomcat and JDK 1.4. I'm trying to create a web service by creating a .jws file, and what I'm seeing is that the names of arguments are being ignored, so when a web service is called, arguments are passed in a 'random' order, regardless of type. e.g., Calculato

Re: Error in running Axis sample appl.

2003-09-23 Thread Stephen Gordon
looks like you don't have an XML parser installed properly... I think happyaxis.jsp checks for this so try running that. (point your browser to axis/happyaxis.jsp or see the docs) If this is the problem, install xerces (http://xml.apache.org/) or some other XML parser to fix it. stephen Suhai

Error in running Axis sample appl.

2003-09-23 Thread Suhaib
Helo everybody, I've some problems while running axis sample applications. I'm using Tomcat 3.2.3 & JDK 1.4.1. According to the given instructions I've added all the jar files in the classpath of my system. But when I try to run the sample appl. I've the following error. Can anybody plz poin

Re: No deserializer for dateTime

2003-09-23 Thread Anders Peterson
Hi again, As I understand it the org.apache.axis.encoding.ser.CalendarDeserializer deserializer is supposed to handle this. org.xml.sax.SAXException: No deserializer for dateTime I assume the above exception means the deserializer is not found (not that it doesn't work properly). Why isn't