: [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
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
)
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
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
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
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
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
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
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
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
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
> 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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
, 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:
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
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
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
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
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
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
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
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
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
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]" &
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
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
: 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
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:
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.
> >
> &
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
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
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
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
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
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
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
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
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
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
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
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?
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
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
cc
Subject
Please respond to How to get the HttpRequest object
[EMAIL PROTECTED] from within a Web Service?
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
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
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
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
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
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,
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
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
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
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";>
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
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
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
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
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.
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
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
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
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
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
>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
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 /
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
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
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
, 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,
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
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
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
>
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
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
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
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.
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
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
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
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
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
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
SHO/SunLife)
03/31/2003 04:06 PM Subject: Re: Performance testing -
timing data - how to get it?
Please respond t
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 - 100 of 166 matches
Mail list logo