Re: How to get HttpServletRequest from my call

2005-01-13 Thread Alex Chen
: [EMAIL PROTECTED] Subject: How to get HttpServletRequest from my call I am using AXIS as my SOAP server. I use WSDL2Java to generate the code stubs and only need to write the *Impl.java part.. Since everything else is handled by the AXIS servlet, I have no handle of the HTTP request and reply

Re: How to get HttpServletRequest from my call

2005-01-12 Thread Tim K. (Gmane)
wrote: If you only want to inspect the messages then use a monitor tool. tcpTrace is excellent for this (thank you simon and matt) Raul -Original Message- From: Alex Chen [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 3:39 PM To: [EMAIL PROTECTED] Subject: How to get

Re: How to get HttpServletRequest from my call

2005-01-12 Thread Alex Chen
) Raul -Original Message- From: Alex Chen [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 3:39 PM To: [EMAIL PROTECTED] Subject: How to get HttpServletRequest from my call I am using AXIS as my SOAP server. I use WSDL2Java to generate the code stubs and only need to write the

RE: How to get HttpServletRequest from my call

2005-01-12 Thread Flores, Raul
If you only want to inspect the messages then use a monitor tool. tcpTrace is excellent for this (thank you simon and matt) Raul -Original Message- From: Alex Chen [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 3:39 PM To: [EMAIL PROTECTED] Subject: How to get

How to get HttpServletRequest from my call

2005-01-12 Thread Alex Chen
I am using AXIS as my SOAP server. I use WSDL2Java to generate the code stubs and only need to write the *Impl.java part.. Since everything else is handled by the AXIS servlet, I have no handle of the HTTP request and reply message. I would like to inspect that in my code. How do I get such i

How to get response use code generated by WSDL2JAVA

2004-12-04 Thread Conrad
I am using the follow code to send the Web Service Request. This is a document style service. URL endpointURL = new URL("http://192.168.7.100:8080/retsclientapp/services/RETSWS";); RETSWSSoapBindingStub callme = new RETSWSSoapBindingStub(endpointURL,service); Object resp = new Object(); resp

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
No problem, Tim. I think I'm going to have to worry about this problem before too long, so I'd be interested in options. SOAP headers are probably the way to go. If you implement the cookie functionality in handlers, then it should be relatively easy to move to another method. I'll probably look

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread Tim K. (Gmane)
Thanks Tony for your good replies on this list. I wonder if my approach is good in general. I suspect there will also be non-Axis clients like .NET and maybe other frameworks on the client side that will need to do the same. Does anyone have a different idea to achieve the same behavior? I think

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
In that case, as I mentioned in my first reply, extract the cookies from the message context, in the first reply and store them somewhere (for example, in a static variable or in system properties) that will be available in the next call. In that next call, add the cookies to the message context a

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread Tim K. (Gmane)
John Walker wrote: Is it possible to get and set cookies on the HTTP transport from the *client* side of Axis? I tried using the MessageContext to get the HttpRequest object, and then set cookies there, but it seemed that when doing this from the AXIS client side, when the HTTP message got to the

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
John, I'm not sure what you were getting back from the MessageContext but there is no HttpRequest available from the Axis client. HttpRequests only exist on the server. Of course, your client may be embedded in a server side object but the HttpRequest for that would not be the one associated with

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread John Walker
> Is it possible to get and set cookies on the HTTP transport from the > *client* side of Axis? I tried using the MessageContext to get the HttpRequest object, and then set cookies there, but it seemed that when doing this from the AXIS client side, when the HTTP message got to the receiver, my c

Re: How to get/set cookies from the Axis *client* side?

2004-12-01 Thread tony . q . weddle
Well, Axis stores cookies in the message context, so I guess you could simply put your cookies there and they will be picked up for transmission to the server. Axis uses two cookies, "Cookie" and "Cookie2". The first contains the session ID (e.g. "JSESSIONID=206048F23B7AB387C5B2801622EF2C1C"). I'm

How to get/set cookies from the Axis *client* side?

2004-11-30 Thread Tim K. (Gmane)
Is it possible to get and set cookies on the HTTP transport from the *client* side of Axis? If so, how? Are there any examples, please? Thank you. Tim

Re: How to get the int returned from the service

2004-11-17 Thread Peter Smith
call.invoke(new Object[]{})).intValue(); Cheers, Peter. > > -Original Message- > From: Dacheng [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 17, 2004 10:45 AM > To: [EMAIL PROTECTED] > Subject: How to get the int returned from the service > > Hi, I am new in

Re: How to get the int returned from the service

2004-11-17 Thread Dacheng
Thank you very much, that is exactly what I want. dacheng - Original Message - From: "Greg Michalopoulos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 17, 2004 3:51 PM Subject: RE: How to get the int returned from the service > Call.i

RE: How to get the int returned from the service

2004-11-17 Thread Greg Michalopoulos
PROTECTED] Sent: Wednesday, November 17, 2004 10:45 AM To: [EMAIL PROTECTED] Subject: How to get the int returned from the service Hi, I am new in AXIS. I tried to invoke a service which would return a int back. But when I tried to use 'int a= (int)call.invoke(new Object[]{})' to get the r

How to get the int returned from the service

2004-11-17 Thread Dacheng
Hi, I am new in AXIS. I tried to invoke a service which would return a int back. But when I tried to use 'int a= (int)call.invoke(new Object[]{})' to get the result. the complier told me int is not an object. So could anyone tell me what I should do? Thank you in advance. Dacheng

RE: how to get rid of these warnings?

2004-10-21 Thread Arijit Mukherjee
generated beans for this purpose. Cheers Arijit >-Original Message- >From: Tami Wright [mailto:[EMAIL PROTECTED] >Sent: 20 October 2004 23:53 >To: [EMAIL PROTECTED] >Subject: RE: how to get rid of these warnings? > >Any complex objects being passed across the wire need

RE: how to get rid of these warnings?

2004-10-20 Thread Tami Wright
OTECTED] Sent: Wednesday, October 20, 2004 10:00 AM To: [EMAIL PROTECTED] Subject: how to get rid of these warnings? I am trying to develop the service using Spring and Hibernate. When I try to get the WSDL from the java classes I am getting the following warnings: WARNING: The class java.util.List is d

RE: how to get rid of these warnings?

2004-10-20 Thread Paul Kukk
Can you post your applicationContext.xml file? -Original Message- From: Koney, Satish [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 12:00 PM To: [EMAIL PROTECTED] Subject: how to get rid of these warnings? I am trying to develop the service using Spring and Hibernate

how to get rid of these warnings?

2004-10-20 Thread Koney, Satish
I am trying to develop the service using Spring and Hibernate. When I try to get the WSDL from the java classes I am getting the following warnings: WARNING: The class java.util.List is defined in a java or javax package and cann ot be converted into an xml schema type. An xml schema anyType will

RE: How to get one object per thread?

2004-09-09 Thread tony . q . weddle
Branko, The Axis servlet is just that, a servlet, and so creates a thread for each request. So request scope should be identical to a thread scope. If the instantiation is expensive, why do you want to do anything other than application scope? Session scope is in the middle, instantiating the se

RE: How to get one object per thread?

2004-09-08 Thread Branko Peteh
Yes, request will do it. It is just very expensive. What I would really need is per-thread instantiation, because the instantiation is, in this particular case, very expensive, so doing it repeatedly on every request is just wasteful (CPU, resources, memory etc.). How about creating a specialized

Re: How to get one object per thread?

2004-09-08 Thread tony . q . weddle
I wouldn't expect session scoped services to get created for each thread, since they need to stay around for the life of the user session (which may span multiple requests). Request scope seems to be the one you want. Servlets create a new thread for each request and, with request scope, each requ

How to get one object per thread?

2004-09-07 Thread Branko Peteh
Hi, There are three choices for deployscope attribute of the axis-wsdl2java ant task. Those are "Application", "Session" and "Request". When "Application" is chosen, the SOAP implementation class is a singleton, i.e. there is only one instance for all axis servlet threads. "Session" and "Request

Re: How to get a MessageContext from a client

2004-07-28 Thread Kapil Khanna
My bad. The class i was using was implementing the javax.xml.rpc.Handler interface. It should be implementing the org.apache.axis.Handler interface. Once i did that i got the handler to work. Thanks for all the help.

Re: How to get a MessageContext from a client

2004-07-28 Thread Kapil Khanna
Message- From: Kapil Khanna [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 4:44 PM To: [EMAIL PROTECTED] Subject: Re: How to get a MessageContext from a client I defined a simple Handler class and tried to set up the handler in the client-config.wsdd file. I am using the

RE: How to get a MessageContext from a client

2004-07-28 Thread Brian Freeman
, 2004 4:44 PM To: [EMAIL PROTECTED] Subject: Re: How to get a MessageContext from a client I defined a simple Handler class and tried to set up the handler in the client-config.wsdd file. I am using the following client-config.wsdd file http://xml.apache.org/axis/wsdd/"; xmlns:java="http:

Re: How to get a MessageContext from a client

2004-07-28 Thread Kapil Khanna
Ok, i got past the NullPointerException. Its seems like i was missing the keyword type in the After fixing that i get the following error:- AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: org.apache.axis.ConfigurationException: j

Re: How to get a MessageContext from a client

2004-07-28 Thread Kapil Khanna
I defined a simple Handler class and tried to set up the handler in the client-config.wsdd file. I am using the following client-config.wsdd file http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apac he.org/axis/wsdd/providers/java"> When i try to execute the SOAP client i

Re: How to get a MessageContext from a client

2004-07-28 Thread Michael Thompson
You can setup client side handlers in client-config.wsdd. Just place it on your clients classpath. --m Kapil Khanna wrote: I am consuming an external web service and am trying to get a handle to the MessageContext via MessageContext.getCurrentContext(). Unfortunately the MessageContext i get

How to get a MessageContext from a client

2004-07-28 Thread Kapil Khanna
I am consuming an external web service and am trying to get a handle to the MessageContext via MessageContext.getCurrentContext(). Unfortunately the MessageContext i get is always null. The purpose of getting to the MessageContext is to get to the SOAPRequest and SOAPResponse messages. There ha

How to get the service object for a given session id

2004-06-18 Thread Chris Aiken
Hi, everybody! I like to get the service object for a given session id, not for a session object (like msgContext.getSession()). How can I get it? Where I have to search? Thanks for any help! Chris Virus checked by G DATA AntiVirusKit Version: AVK 14.0.1040 from 26.05.2004 Virus

How to get the service object for a given session id

2004-06-18 Thread Chris Aiken
Hi, everybody! I like to get the service object for a given session id, not for a session object (like msgContext.getSession()). How can I get it? Where I have to search? Thanks for any help! Chris Virus checked by G DATA AntiVirusKit Version: AVK 14.0.1040 from 26.05.2004 Virus

Re: AW: AW: How to get the SOAP Envelope from msg Context without inv ocat ion

2004-06-15 Thread Davanum Srinivas
n!? > > Thanks Tomi > > -Ursprüngliche Nachricht- > Von: Davanum Srinivas [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 15. Juni 2004 11:59 > An: [EMAIL PROTECTED] > Betreff: Re: AW: How to get the SOAP Envelope from msg Context without > invocat ion

AW: AW: How to get the SOAP Envelope from msg Context without inv ocat ion

2004-06-15 Thread Dorner Thomas
I know this Project for a few month , but it seems they have not finished yet or have some API-Dokumentation!? Thanks Tomi -Ursprüngliche Nachricht- Von: Davanum Srinivas [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 15. Juni 2004 11:59 An: [EMAIL PROTECTED] Betreff: Re: AW: How to get

Re: How to get the SOAP Envelope from msg Context without invocation

2004-06-15 Thread Matt Payne
4:58:41 +0530 Subject: RE: How to get the SOAP Envelope from msg Context without invocation To: [EMAIL PROTECTED] Hi jose, I dont know if it is helpful to you. I adapted a different approach in this case. I created soap envelope first, signed it and used call.invoke(envelope) ap

Re: AW: How to get the SOAP Envelope from msg Context without invocat ion

2004-06-15 Thread Davanum Srinivas
See http://ws.apache.org/ws-fx/wss4j/ -- dims - Original Message - From: Dorner Thomas <[EMAIL PROTECTED]> Date: Tue, 15 Jun 2004 11:36:36 +0200 Subject: AW: How to get the SOAP Envelope from msg Context without invocat ion To: "[EMAIL PROTECTED]" &

AW: How to get the SOAP Envelope from msg Context without invocat ion

2004-06-15 Thread Dorner Thomas
Tomi -Ursprüngliche Nachricht-Von: GANDHIRAJAN, AYYAPPAN [mailto:[EMAIL PROTECTED]Gesendet: Dienstag, 15. Juni 2004 11:29An: [EMAIL PROTECTED]Betreff: RE: How to get the SOAP Envelope from msg Context without invocation Hi jose,   I dont know if it is helpful to you

RE: How to get the SOAP Envelope from msg Context without invocation

2004-06-15 Thread GANDHIRAJAN, AYYAPPAN
From: Dhanush Gopinath [mailto:[EMAIL PROTECTED]Sent: Monday, June 07, 2004 10:07 AMTo: [EMAIL PROTECTED]Subject: Re: How to get the SOAP Envelope from msg Context without invocation Jose,   Handlers are called while request and response flows. It is an automatic process... I

Re: How to get the SOAP Envelope from msg Context without invocatio n

2004-06-06 Thread Dhanush Gopinath
: Friday, June 04, 2004 7:47 PM Subject: Re: How to get the SOAP Envelope from msg Context without invocation Is it possible to programatically set client-side handlers? That way my problem would be solved.   Cheers,   Jose M. Selman     - Original Message

Re: How to get the SOAP Envelope from msg Context without invocation

2004-06-04 Thread Davanum Srinivas
Yes, look at test\wsdl\jaxrpchandler\JAXRPCHandlerTestCase.java search for ClientHandler -- dims - Original Message - From: Jose M. Selman <[EMAIL PROTECTED]> Date: Fri, 4 Jun 2004 10:17:52 -0400 Subject: Re: How to get the SOAP Envelope from msg Context without invocation To:

Re: Re: How to get the SOAP Envelope from msg Context without invocatio n

2004-06-04 Thread Davanum Srinivas
L PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, June 04, 2004 9:04 AM > Subject: Re: Re: How to get the SOAP Envelope from msg Context without > invocatio n > > > please take a look at the samples/security/* for an example that does > xml-dsig. > > > &

Re: Re: How to get the SOAP Envelope from msg Context without invocatio n

2004-06-04 Thread Jose M. Selman
help. Cheers, Jose M. Selman - Original Message - From: "Davanum Srinivas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 04, 2004 9:04 AM Subject: Re: Re: How to get the SOAP Envelope from msg Context without invocatio n > please take a look

Re: How to get the SOAP Envelope from msg Context without invocation

2004-06-04 Thread Jose M. Selman
Is it possible to programatically set client-side handlers? That way my problem would be solved.   Cheers,   Jose M. Selman     - Original Message - From: Dhanush Gopinath To: [EMAIL PROTECTED] Sent: Thursday, June 03, 2004 11:50 PM Subject: Re: How to get the

Re: Re: How to get the SOAP Envelope from msg Context without invocatio n

2004-06-04 Thread Davanum Srinivas
please take a look at the samples/security/* for an example that does xml-dsig. thanks, dims - Original Message - From: Dhanush Gopinath <[EMAIL PROTECTED]> Date: Fri, 4 Jun 2004 09:20:21 +0530 Subject: Re: How to get the SOAP Envelope from msg Context without invocatio

Re: How to get the SOAP Envelope from msg Context without invocatio n

2004-06-03 Thread Dhanush Gopinath
u   Cheers Dhanush   - Original Message - From: Jose M. Selman To: [EMAIL PROTECTED] Sent: Friday, June 04, 2004 8:00 AM Subject: How to get the SOAP Envelope from msg Context without invocation Hi:    I'm writing an Axis Client that needs to send R

How to get the SOAP Envelope from msg Context without invocation

2004-06-03 Thread Jose M. Selman
Hi: I'm writing an Axis Client that needs to send RPC style signed requests according to XML-DSIG. My problem is that in order to sign the SOAP Envelope I need to first have it! :-) I have looked everywhere but I haven't found where to do this. I'm doing Service service = new Service(); Call

How to get enpoint url from ServiceDesc

2004-03-29 Thread Christophe Roudet
Hi, I try to get the endpoint url from a deployed service, but it returns null: Iterator i = axisServer.getConfig().getDeployedServices(); while (i.hasNext()) { ServiceDesc sd = (ServiceDesc) i.next(); _logger.debug("EndPoint: ["+sd.getEndpointURL()+"]"); ... } Does anyone know how y

RE: [newbie] how to get soap-envelope xml?

2004-03-25 Thread Pridemore, Russell (MAN-Corporate)
  Good luck, Russ -Original Message-From: JEFF EMMINGER [mailto:[EMAIL PROTECTED]Sent: Thursday, March 25, 2004 3:18 PMTo: '[EMAIL PROTECTED]'Subject: RE: [newbie] how to get soap-envelope xml? Russell,   how can i use that to monitor incoming requests on some ma

RES: [newbie] how to get soap-envelope xml?

2004-03-25 Thread Fabricio B. Teixeira
Title: [newbie] how to get soap-envelope xml? You can use the SoapMonitor instead. There is a good tutorial in http://www.sosnoski.com/presents/java-xml/axis/axis-monitor.html   Fabricio -Mensagem original-De: Pridemore, Russell (MAN-Corporate) [mailto:[EMAIL PROTECTED]Enviada

RE: [newbie] how to get soap-envelope xml?

2004-03-25 Thread JEFF EMMINGER
ubject: RE: [newbie] how to get soap-envelope xml? Use the tcpmonitor application provided with axis.  Read about it in the user-guide. -Original Message-From: JEFF EMMINGER [mailto:[EMAIL PROTECTED]Sent: Thursday, March 25, 2004 2:56 PMTo: '[EMAIL PRO

RE: [newbie] how to get soap-envelope xml?

2004-03-25 Thread Pridemore, Russell (MAN-Corporate)
Title: [newbie] how to get soap-envelope xml? Use the tcpmonitor application provided with axis.  Read about it in the user-guide. -Original Message-From: JEFF EMMINGER [mailto:[EMAIL PROTECTED]Sent: Thursday, March 25, 2004 2:56 PMTo: '[EMAIL PROTECTED]'Subject: [n

[newbie] how to get soap-envelope xml?

2004-03-25 Thread JEFF EMMINGER
Title: [newbie] how to get soap-envelope xml? hello, I'm writing a client, and I keep getting the error (405)Method Not Allowed How do I get the soap envelope xml that I'm sending to see what's wrong?  Thanks, Jeff CONFIDENTIAL NOTICE: This email including any attach

RE: How to get Enumerations in WSDL?

2004-03-24 Thread Ted Neward
ls. Ted Neward Author, Instructor, Presenter: Java and .NET http://www.neward.net/ted -Original Message- From: BLIS Webmaster (Patrick Houbaux) [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 12:36 AM To: [EMAIL PROTECTED] Subject: Re: How to get Enumerations in WSDL?

Re: How to get Enumerations in WSDL?

2004-03-24 Thread BLIS Webmaster (Patrick Houbaux)
Hi all, Has anybody any hints on my question? Patrick. BLIS Webmaster (Patrick Houbaux) wrote: Dear all, I have the following design for my object datatype model I want to expose from my web service: public class MyClass { MyClassTypeEnum myClassType; public MyClassTypeEnum get

How to get Enumerations in WSDL?

2004-03-22 Thread BLIS Webmaster (Patrick Houbaux)
Dear all, I have the following design for my object datatype model I want to expose from my web service: public class MyClass { MyClassTypeEnum myClassType; public MyClassTypeEnum getMyClassType(){ return myClassType; } public void setMyClassT

Re: How to get the HttpRequest object from within a Web Service?

2004-03-12 Thread Junaid . Bhatra
cc Subject Please respond to How to get the HttpRequest object [EMAIL PROTECTED] from within a Web Service?

Re: How to get the HttpRequest object from within a Web Service?

2004-03-12 Thread Lanto Randriamiharisoa
Hi, Take a look at the Axis User's guide on http://ws.apache.org/axis/java/user-guide.html, especially in paragraph "Classes to know". Perhaps it could help you... -Lanto [EMAIL PROTECTED] wrote: Hi all, Anybody knows how I can get at the HttpRequest object from within a Web Service when wor

How to get the HttpRequest object from within a Web Service?

2004-03-12 Thread Ext-Zoltan.Schreter
Hi all, Anybody knows how I can get at the HttpRequest object from within a Web Service when working with Axis? I haven't found any way yet .. Thanks for any hints, Zoltan Schreter Nokia/Finland

Re: How to get infos about the deployed Web Services

2004-02-22 Thread Jeff Greif
ment. Jeff - Original Message - From: "Chris Aiken" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 22, 2004 2:42 AM Subject: How to get infos about the deployed Web Services > Hi together! > > How can I realize a Web Service, Handler

AW: How to get infos about the deployed Web Services

2004-02-22 Thread Chris Aiken
log.error(Messages.getMessage("exception00"), e); throw AxisFault.makeFault(e); } } So far, Chris -Ursprüngliche Nachricht- Von: Brian Abbott [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 22. Februar 2004 12:16 An: [EMAIL PROTECTED] Betreff: Re: How to get infos about the d

AW: How to get infos about the deployed Web Services

2004-02-22 Thread Chris Aiken
log.error(Messages.getMessage("exception00"), e); throw AxisFault.makeFault(e); } } So far, Chris -Ursprüngliche Nachricht- Von: Brian Abbott [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 22. Februar 2004 12:16 An: [EMAIL PROTECTED] Betreff: Re: How to get infos about the d

Re: How to get infos about the deployed Web Services

2004-02-22 Thread Brian Abbott
Oops, sorry, I think and, I volunteer that I could be wrong as there may already be existing ways to do this, you need to modify AxisServlet in the org.apache.axis.transport.http package, modify: protected void reportAvailableServices(HttpServletResponse response,

Re: How to get infos about the deployed Web Services

2004-02-22 Thread Brian Abbott
Hmm... I think you would need to modify org.apache.axis.transport.http.AxisServerServlet to do that. Brian Abbott Chris Aiken wrote: Hi together! How can I realize a Web Service, Handler or AxisPlugin which is able to list all deployed Web Services of an Axis Environment. In addition, it shoul

How to get infos about the deployed Web Services

2004-02-22 Thread Chris Aiken
Hi together! How can I realize a Web Service, Handler or AxisPlugin which is able to list all deployed Web Services of an Axis Environment. In addition, it should be possible to indicate all important infos about the deployed Web Services (Path to Class files and so on). I need something like thi

How to get infos about the deployed Web Services

2004-02-22 Thread Chris Aiken
Hi together! How can I realize a Web Service, Handler or AxisPlugin which is able to list all deployed Web Services of an Axis Environment. In addition, it should be possible to indicate all important infos about the deployed Web Services (Path to Class files and so on). I need something like thi

Re: How to get to the wsdl

2004-01-13 Thread Tore Halset
Hello. I found the solution to the problem :) It was the server-config.wsdd. Starting with the generaded wsdd by the demo webapp and AdminService/AdminClient fixed the problem. Puh! - Tore. http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>

Re: How to get to the wsdl

2004-01-13 Thread Tore Halset
Hello. I still have problems generating wsdl for my web services. I am running jboss-3.2.1_tomcat-4.1.24 on OS X 10.3.2 with java build 1.4.1_01-99. "axis-1_1/webapps/axis" works very well. Both happyaxis, EchoHeaders and generating wsdl works. I have created a minimal project to demonstrate t

Re: How to get to the wsdl

2004-01-08 Thread Tore Halset
On Jan 6, 2004, at 14:38, Tore Halset wrote: "(wsdl)" are a link to http://servername/warname/services/OrderService?wsdl , but it does not display the wsdl: "AXIS error Could not generate WSDL! There is no SOAP service at this location" http://servername/warname/services/OrderService looks li

Re: How to get to the wsdl

2004-01-07 Thread Tore Halset
Hello! As the services works ok for my java client I guess it should not be a class loading problem. Here is some of mye wsdd. The real one include some other services as well, but this should be enough. http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd

Re: How to get to the wsdl

2004-01-06 Thread Guillaume Sauthier
Hi Maybe there is some class loading problem ... Have you check taht all classes used by your web services are availables ? could you send us the wsdd ? regards Guillaume Tore Halset wrote: > > On Jan 6, 2004, at 14:45, [EMAIL PROTECTED] wrote: > > > Looks like the wsdl file was included and

Re: How to get to the wsdl

2004-01-06 Thread Tore Halset
On Jan 6, 2004, at 14:45, [EMAIL PROTECTED] wrote: Looks like the wsdl file was included and not generated by axis, look at the wsdd file of the web service (that registers the web service) to see where it is located. The wsdd-file does not mention any wsdl-file. - Tore.

Re: How to get to the wsdl

2004-01-06 Thread rd264
Looks like the wsdl file was included and not generated by axis, look at the wsdd file of the web service (that registers the web service) to see where it is located. Quoting Tore Halset <[EMAIL PROTECTED]>: > Hello! > > I have an old web-application packed into a single war. I have recentl

How to get to the wsdl

2004-01-06 Thread Tore Halset
Hello! I have an old web-application packed into a single war. I have recently added some web services using axis that works very well. The axis servlet are mapped to /services AxisServlet Apache-Axis Servlet org.apache.axis.transport.http.AxisServlet AxisServlet /services/* The s

Re: How to get sample SOAP Body?

2003-12-08 Thread Dimuthu Leelarathne
Hi Rajesh, There are three ways to invoke a web service. Using a static client, using a proxy or complete dynamic invocation. It's not really clear to me whether you want to generate the SOAP message given "the wsdl" or "the uri of the wsdl." Of course if you have the wsdl beforehand you can run

Réf. : Re: handler : how to get information on the sender ?

2003-12-08 Thread valerie . bauche
oyé par : [EMAIL PROTECTED] Pour : <[EMAIL PROTECTED]> cc : Objet : Re: handler : how to get information on the sender ? >In a handler we can find who will receive the request with the method >getTargetService() >But how can we get information about who is the sender of th

Re: How to get sample SOAP Body?

2003-12-06 Thread Ben Souther
Did you look at the tcpmon aplication that ships with Axis? On Saturday 06 December 2003 12:53 pm, you wrote: > Hi folks, > > I'd like to be able to get a sample of what > should be provided to a document/literal > web service that I want Apache Axis to invoke > as a client. > > For example, give

Re: handler : how to get information on the sender ?

2003-12-06 Thread Jörn G . Eichler
>In a handler we can find who will receive the request with the method >getTargetService() >But how can we get information about who is the sender of this request ? > >Valerie what do you mean with information about the sender? to get the username & ip: > snip < public void onFault(Messag

How to get sample SOAP Body?

2003-12-06 Thread Rajesh . Chawla
Hi folks, I'd like to be able to get a sample of what should be provided to a document/literal web service that I want Apache Axis to invoke as a client. For example, given the WSDL located at: http://www.webservicex.net/stockquote.asmx?WSDL, I'd like to be able to generate the following: POST /

handler : how to get information on the sender ?

2003-12-05 Thread valerie . bauche
In a handler we can find who will receive the request with the method getTargetService() But how can we get information about who is the sender of this request ? Valerie

Re: how to get the latest checked in code?

2003-11-21 Thread Davanum Srinivas
http://cvs.apache.org/snapshots/ws-axis/ --- Shantanu Sen <[EMAIL PROTECTED]> wrote: > I wanted to check the difference for a specific > wsdl2java behavior between the 1.1 final and the > currently checked in source code to see if what I > think is a bug has been fixed. I looked at > http://cvs.ap

how to get the latest checked in code?

2003-11-21 Thread Shantanu Sen
I wanted to check the difference for a specific wsdl2java behavior between the 1.1 final and the currently checked in source code to see if what I think is a bug has been fixed. I looked at http://cvs.apache.org/dist/axis/nightly/ All I see there are a zero length zip/tar files. Also, there are a

RE: How to get generated wsdl

2003-10-31 Thread Wilson, Allen
, October 31, 2003 6:16 AM To: [EMAIL PROTECTED] Subject: How to get generated wsdl Hello! I am integrating axis into an existing web-app. I have created several services, by creating the server-config.wsdd manually. One of the services are called "Distributor". The services are working,

How to get generated wsdl

2003-10-31 Thread Tore Halset
Hello! I am integrating axis into an existing web-app. I have created several services, by creating the server-config.wsdd manually. One of the services are called "Distributor". The services are working, but I want to take a look at the generated wsdl. http://myserver/myapp/services/Distributor

RE: HOw to get the Binary for the nightly build

2003-08-20 Thread Manchaiah, Girish (LNG-DAY)
Refer to xml-axis\docs\building-axis.html You can build the binary in minutes. -Original Message- From: Rick Kellogg [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 2:23 PM To: [EMAIL PROTECTED] Subject: Re: HOw to get the Binary for the nightly build Some days the build

Re: HOw to get the Binary for the nightly build

2003-08-20 Thread Rick Kellogg
Some days the build fails. That is why you are not seeing a binary. Look for an earlier date. Rick ---Original Message--- From: Subhendu Kumar mohanty <[EMAIL PROTECTED]> Sent: 08/20/03 10:25 AM To: [EMAIL PROTECTED] Subject: HOw to get the Binary for the nightly build >

HOw to get the Binary for the nightly build

2003-08-20 Thread Subhendu Kumar mohanty
Hi, I was looking through the nightly build. I could not find the binary in the nightly field. It contains the source only. Can I get the binary for the nightly build? Thanks, Subhendu

Re: How to get the running AxisEngine?

2003-07-30 Thread Frank Schoenau
Help. when i tryed to get the AxisEngine with AxisEngine en = server.getEngine() it doesnt work. I want to deploy an Object, so i have a reference to this Service and cn communicate with my Application. Is there any way to do this and does anyone can give me a example?? > Hi, > > can anybody t

RE: How to get the running AxisEngine?

2003-07-29 Thread Jerome Baumgarten
Don't know if this help, but on the server side, you can do that from a Servlet : AxisServer axisServer = AxisServlet.getEngine(this); Jerome -Original Message- From: Frank Schoenau [mailto:[EMAIL PROTECTED] Sent: mardi 29 juillet 2003 09:16 To: [EMAIL PROTECTED] Subject: How t

How to get the running AxisEngine?

2003-07-29 Thread Frank Schoenau
Hi, can anybody tell my how i can get the running AxisEngine? I tryed to to get one, but it is not the running one?? Please help. Thanks frank -- COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test -- 1. GMX TopMail - Platz 1 und Testsieger! 2.

How to get the attachment in Axis client side send from server?

2003-06-26 Thread Rajib Das
Hello ,   I am invoking a server function which will send a file as attachment to my rpc response …How to get hold of the attachment in the axis client side?     Regards Rajib  

Fw: How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity

2003-06-26 Thread Chandra Talluri
To: [EMAIL PROTECTED] Sent: Thursday, June 26, 2003 4:13 AM Subject: Re: How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity Chandra, See http://www-106.ibm.com/developerworks/webservices/library/ws-jaxrpc2/?dwzone=webservicesand http

Re: How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity

2003-06-26 Thread Reynardine
ex){  } }} Rey. - Original Message -From: "Chandra Talluri" <[EMAIL PROTECTED]>Date: Thu, 26 Jun 2003 00:47:40 -0400To: <[EMAIL PROTECTED]>Subject: How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity We are  t

How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity

2003-06-25 Thread Chandra Talluri
We are  trying to use AXIS with Tomcat. We want client to open a connection to the server which has webservice and send many soap messages without closing the connection. Is there a way of doing it. I thought about setting http header   Connetcion: keep-alive   But I don't see how I can get

How to get bean data from Axis fault?

2003-04-04 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
fault?. Your reply will be deeply appreciated.   Note: Now I use Message->SOAPEnvelope->SOAPBodyElement-> getObjectValue() to get my bean data as one string like "RanjithKottayam". Here my concern is how to get data individually or what is the right procedure to read bean d

How to get bean data in client?

2003-04-03 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Hi there,   Please help ...   This represents my bean data in SOAP Response. How do I read this data (to get "Name" and "City" ) in Axis Client?. All my effort did not produce any results...      Ranjith    Kottayam     Thanks in advance for your help. Ran

Re: Performance testing - timing data - how to get it?

2003-03-31 Thread Kevin . Bedell
SHO/SunLife) 03/31/2003 04:06 PM Subject: Re: Performance testing - timing data - how to get it? Please respond t

Re: Performance testing - timing data - how to get it?

2003-03-31 Thread James Black
Pascale, Peter H. wrote: We are embarking on a short project to validate Axis performance within a particular web service client application. I've seen a few recent posts that refer to timing data for web service calls. How are folks getting timing information? Are you using a third-party tool lik

  1   2   >