Re: Axis over https/SSL?

2002-02-19 Thread Chris Ruegger
It is a simple matter of adding these lines?:   import jsse classes   // Set up Security System.setProperty("java.protocol.handler.pkgs",  "com.sun.net.ssl.internal.www.protocol");   //Register JSSE Security.addProvider(new com.sun.net.ssl.internal

RE: Connection Refused Error

2002-02-19 Thread mickknutson
I am running it from the example3 directory: == C: \WebSphere\AppServer\ICE\webapps\axis\WEB-INF\classes\samples\userguide\example3>java org.apache.a xis.client.AdminClient -p 80 deploy.wsdd Processing file deploy.wsdd AxisFault faultCode: http://xml.apache.

Axis over https/SSL?

2002-02-19 Thread Chris Ruegger
  I want to connec to the stock quote example over https. I've downloaded jsse 1.0.2. What mods would I need to make to the client to connect via https? Thanks ahead of time  

AW: Problem installing AXIS on Jakarta-Tomcat 4.0.2

2002-02-19 Thread Sascha Kulawik
Title: Nachricht Hai,   thats it, thanks !   But: Why does the Tomcat 4 dont find the expected classes in the WEB-INF/lib Directory ? Will he find all other classes in this directory (and included in JAR Files) ? -Ursprüngliche Nachricht-Von: Egger Oliver [mailto:[EMAIL PR

Re: session management?

2002-02-19 Thread Oliver Suciu
I am with you -- every non-trivial (web) app requires session management. And just as servlets have added HttpSession on top of the stateless HTTP, *something* should be added on top of SOAP (SoapSession?). Note that this is *not* addressed by the current JAX-RPC spec. But perhaps in Axis? (I'm

RE: Connection Refused Error

2002-02-19 Thread Jinghua Gu
You are running from the wrong place. It cannot find deploy.wsdd file. Please download the axis source code tree (xml-axis), locate the deploy.wsdd file. Then follow the installation guide step5.   At 12:30 PM 2/19/2002 -0700, you wrote: C:\WebSphere\AppServer\ICE\webapps\axis>java org.apache.a

RE: Connection Refused Error

2002-02-19 Thread mickknutson
C:\WebSphere\AppServer\ICE\webapps\axis>java org.apache.axis.client.AdminClient -lhttp://localhost:8 0/axis/services/AdminService deploy.wsdd Processing file deploy.wsdd AxisFault faultCode: http://xml.apache.org/axis/:HTTP faultString: Not Found faultActor: null faultDetail: nul

RE: Connection Refused Error

2002-02-19 Thread Jinghua Gu
Did you do the following command? java org.apache.axis.client.AdminClient -lhttp://localhost:8080/axis/services/AdminService deploy.wsdd where localhost is whatever your web server name. At 11:35 AM 2/19/2002 -0700, you wrote: I am running WebSphere 3.5.2 and I have killed and restarted my en

RE: Connection Refused Error

2002-02-19 Thread mickknutson
I am running WebSphere 3.5.2 and I have killed and restarted my entire machine, but I still get the 404 not found error below. It is just not there. --- Thanks Mick Knutson Discover Financial Services Office: 801-902-4244 Fax: 801-902-4123

RE: Connection Refused Error

2002-02-19 Thread Jinghua Gu
You don't have to. Try to kill your browser and restart the tomcat. Use exactly port number your server use(for example, 8080). It worked for me. Emily At 09:11 AM 2/19/2002 -0700, [EMAIL PROTECTED] wrote: How do I install this AdminService? I find no reference to it in the docs, except to depl

RE: determination programmatically

2002-02-19 Thread Peake, Chris
Richard, I am still new to Axis so please excuse the follow on questions. Also, Richard will you look at the comments I have in your questions for me. Thanks so much and for your patience. So, you are saying that if I am trying to create a WS service (WSDDService), I should: 1-I have a java ser

Re: Find the List of Services

2002-02-19 Thread Stan Jordan
Patrick... I had the same problem, and solved it by deleting this file: %TOMCAT_HOME%\webapps\axis\WEB-INF\server-config.wsdd This deletes all your deployed services, so the next time you deploy something, you are starting from scratch, and the file will be rebuilt. Worked for me. If the serve

session management?

2002-02-19 Thread Chris Ruegger
Is it possible to have user sessions using Axis or is it a request-response-only model. My end user wants to:   1. log on via some soap service 2. call some methods 3. log out.   Is this possible and if so how can I access the session object so I know that they have logged on, keep state info,

Re: The client fails decoding the response

2002-02-19 Thread Jens Carlberg
R J Scheuerle Jr wrote: > 1) Use the latest version of axis. I downloaded the version from yesterday, 2002-02-18, and tried it out. I've now had some success; I can get multidimensional String arrays back from the server. However, the test for Vectors, ArrayLists and Maps are still failing. I no

RE: New to axis arrays

2002-02-19 Thread Jon Kurland
I hope someone can clarify the whole array usage with axis. Please excuse me, I am new to accepting arrays through soap. I have a soap server running a product called gsoap. I am sending an integer into the soap server and it sends back the correct complex type, as I can see in the server lo

samples.stock.GetInfo bug

2002-02-19 Thread Richard Cook
Running stock samples testit, I noticed this always displays "IBM: null" unless you add: call.setReturnType( XMLType.XSD_STRING ); (18/02/02 nightly download).

RE: Connection Refused Error

2002-02-19 Thread mickknutson
How do I install this AdminService? I find no reference to it in the docs, except to deploy services.: C: \WebSphere\AppServer\ICE\webapps\axis\WEB-INF\classes\samples\userguide\example3>java org.apache.a xis.client.AdminClient -p80 deploy.wsdd Processing file deploy.wsdd AxisFault faultCode

Re:default java beans serializer/deserializer

2002-02-19 Thread Alex Krotov
Hi all, I've been researching Axis capabilities about last several weeks. I'm exited your job, guys, but I need more "complexType" handling for projects of company I'm working in. Nuno Guerreiro mentioned about working with passing via SOAP structure like: 49584 DDA 494.34 EUR

RE: Complex type in SOAP header

2002-02-19 Thread Jeff Talbot
Title: Message hmm, if you're wondering how to get Java2Wsdl / Wsdl2java to recognize headers, they don't do it. at least not right now (i believe it is on the todo list). if you're wondering about a 3rd party tool to do it, i don't know of any.   right now i am also manually editing the ws

How can I add a listener for Jabber Protocol

2002-02-19 Thread Michael Joyner
We are using Jabber Protocol in our intranet for XML transport. The docs mention custom listeners (ie SMTP). Is it pretty straight forward to add a new listener. I'm coming up to speed in java, so where it might be possible, would it be an involved task?   Thanks for reading my post.   [

RE: How to write a web service which updates the servlet session object ?

2002-02-19 Thread Thierry Dupont
Thank you. I see. So "B" type service are also easy to implement. In your answer, doex "second" require "first" ? : Do I necessarily need to set the scope="session" (have a dedicated target object for each client) to be able to use MessageContext.getCurrentContext().getSession() within my service

AW: Complex type in SOAP header

2002-02-19 Thread Dittmann Werner
Thanks :-). I didn't see that static method in MessageContext. Now it's clear. Werner > -Ursprüngliche Nachricht- > Von: Adam.Leggett [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 19. Februar 2002 15:11 > An: '[EMAIL PROTECTED]' > Betreff: RE: Complex type in SOAP header > > > In a

RE: Complex type in SOAP header

2002-02-19 Thread Adam.Leggett
In a Handler, where you have access to the MessageContext you can get the SOAP envelope like so: //get message from context Message msg = msgContext.getRequestMessage(); //retrieve SOAP envelope SOAPEnvelope env = ms

RE: Axis compatability with JSR109????

2002-02-19 Thread Anne Thomas Manes
Kumar, You have many people at a disadvantage. JSR 109 is still in community review. If you aren't a member of the expert group, you don't have access to the spec. Since the spec isn't public, the Axis team cannot comment on Axis's conformance with JSR 109. Axis does implement the JAX-RPC API. A

AW: Complex type in SOAP header

2002-02-19 Thread Dittmann Werner
Title: Message Just a question: how can I access the envelope (env) in a service? Looking at some example I don't see where the service has access to the envelope.   Regards, Werner -Ursprüngliche Nachricht-Von: Adam.Leggett [mailto:[EMAIL PROTECTED]]Gesendet: Dienstag, 19. Feb

Re: Axis compatability with JSR109????

2002-02-19 Thread Russell Butek
JSR 109 isn't a spec, yet. I suspect AXIS will comply, but I don't think this is decided, yet. AXIS IS JSR 101 (JAX-RPC) compliant as much as it can be. JSR 101 isn't a spec yet, either, and it's still changing. We're trying to keep up. Russell Butek [EMAIL PROTECTED] Vinit Kumar <[EMAIL PR

Axis compatability with JSR109????

2002-02-19 Thread Vinit Kumar
Hi All, I have few doubts regarding Axis.They are as follows: 1.is axis compatible with JSR109.if not,is it in confermance with any standard document??? 2.if my j2ee application uses web service,how can i put mySevice class obtained by wsdl2java tool ,to be accessed thru jndi? 3.I still could no

Do i use AxisServer to deploy webservice dynamically???

2002-02-19 Thread Jeffrey Hau
If i want to deploy a new webservice from an exisitng webservice, which of the following is correct? or are they both wrong?? AxisServer server = AxisServer.getServer(env); server.deployWSDD(wsddDoc); or is it, AxisServer server = new AxisServer(); server.deployWSDD(wsddDoc); i am not sure w

RE: How to write a web service which updates the servlet session object ?

2002-02-19 Thread Glen Daniels
Hi Thierry! Check out the SimpleSessionTest in test/session. That demonstrates using the SimpleSessionHandler to acheive session dynamics with SOAP headers. Axis is already all set up to let you use sessions in two ways. First, by specifying the scope="session" parameter on your service dep

RE: How to search the mailing list archives

2002-02-19 Thread Glen Daniels
This sounds like a job for a FAQ. --Glen > -Original Message- > From: Glyn Normington [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 19, 2002 4:34 AM > To: [EMAIL PROTECTED] > Subject: How to search the mailing list archives > > > Some questions repeatedly crop up -- and perhaps

RE: How to write a web service which updates the servlet session object ?

2002-02-19 Thread Thierry Dupont
OK, I undestand that Axis can manage sessions and pass the ID in SOAP headers. But I don't see from a programmer point of view how I can read / write from/to the session. None of the provided examples saves any user information in the session object. I don't see how they could easily do it, cau

RE: Complex type in SOAP header

2002-02-19 Thread Adam.Leggett
Title: Message Thanks Jeff. I actually worked this out late yesterday by taking a look at the the source for SOAPHeader and MessageElement.   Im interested to know if you have any idea of how  this header message could be captured in WSDL using a Java based tool. I know .NET can do this, 

How to search the mailing list archives

2002-02-19 Thread Glyn Normington
Some questions repeatedly crop up -- and perhaps the Axis documentation and code needs to change as a consequence. However, you can sometimes get a quick answer to your question by searching the archive and it seems that not everyone is aware of how to do this. I use [1] for searching axis-user

RE: How to write a web service which updates the servlet session object ?

2002-02-19 Thread Adam.Leggett
You can always use the SOAP Header to maintain state. Check out org.apache.axis.handlers.SimpleSessionHandler Cheers Adam -Original Message- From: Thierry Dupont [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 8:34 PM To: [EMAIL PROTECTED] Subject: How to write a web service

RE: Problem installing AXIS on Jakarta-Tomcat 4.0.2

2002-02-19 Thread Glyn Normington
See, for example, http://marc.theaimsgroup.com/?l=axis-user&m=101313283018909&w=2. Glyn