Discussion:
How to print axis2 request and response
Shehan Simen
2008-07-11 01:38:28 UTC
Permalink
Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap envelop and other more detailed technical stuff?

thx
Eran Chinthaka
2008-07-11 04:18:32 UTC
Permalink
Will you have access to request and response objects? If you are using Axis2
war app, unless you like to get ur hands wet, I don't see a way to do that.
Post by Shehan Simen
Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap envelop
and other more detailed technical stuff?
thx
--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is
the best relationship; nirvana is the highest joy. - Dhammapada
Shehan Simen
2008-07-11 04:51:08 UTC
Permalink
Hi Eran,
As I am developing the web service, I have the access to all the objects from the server side.
How can I save the incoming soap requests and outgoing soap response messages to the database?
I want to save everything which is going through the wire. (or at least part of it as a xml message)
Please send me a helpful reply.

Thank you.
Simen

From: Eran Chinthaka [mailto:***@gmail.com]
Sent: Friday, 11 July 2008 2:19 PM
To: axis-***@ws.apache.org
Subject: Re: How to print axis2 request and response

Will you have access to request and response objects? If you are using Axis2 war app, unless you like to get ur hands wet, I don't see a way to do that.
On Thu, Jul 10, 2008 at 6:38 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi,

I want to save the web service request/response to the database as a string or blob.

How can I implement the request.toString() and response.toString() methods?

I am using axis2 and wsdl2java code generation.

I don't want to play with the generated code.

Is there an easier way to do this, without mucking around with soap envelop and other more detailed technical stuff?



thx



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada
Eran Chinthaka
2008-07-11 05:14:50 UTC
Permalink
MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();

The above code will give you the SOAP message in the current message
context. If you use the above code in the in flow, you will get the request
message and you will get the response message if you put the above code in
outflow.

Are you the service author and are you thinking of putting this code, inside
your service implementation class?

There is another way of doing this operation context, but I need above info
to give a better answer.
Post by Shehan Simen
Hi Eran,
As I am developing the web service, I have the access to all the objects
from the server side.
How can I save the incoming soap requests and outgoing soap response
messages to the database?
I want to save everything which is going through the wire. (or at least
part of it as a xml message)
Please send me a helpful reply.
Thank you.
Simen
*Sent:* Friday, 11 July 2008 2:19 PM
*Subject:* Re: How to print axis2 request and response
Will you have access to request and response objects? If you are using
Axis2 war app, unless you like to get ur hands wet, I don't see a way to do
that.
Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap envelop
and other more detailed technical stuff?
thx
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting
is the best relationship; nirvana is the highest joy. - Dhammapada
--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is
the best relationship; nirvana is the highest joy. - Dhammapada
Shehan Simen
2008-07-11 05:28:31 UTC
Permalink
Thank you Eran,
Yes, I am the service author and I am thinking to put this inside the service implementation.
I like to do this in more high level, rather than digging into complex code inside axis.
I use the code generated by wsdl2java.
I don't see anything like MessageContext. It may be more deeper inside axis2.
Is there any simpler way to do this?
Please help me.

Regards,
Simen

From: Eran Chinthaka [mailto:***@gmail.com]
Sent: Friday, 11 July 2008 3:15 PM
To: axis-***@ws.apache.org
Subject: Re: How to print axis2 request and response

MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();

The above code will give you the SOAP message in the current message context. If you use the above code in the in flow, you will get the request message and you will get the response message if you put the above code in outflow.

Are you the service author and are you thinking of putting this code, inside your service implementation class?

There is another way of doing this operation context, but I need above info to give a better answer.
On Thu, Jul 10, 2008 at 9:51 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi Eran,

As I am developing the web service, I have the access to all the objects from the server side.

How can I save the incoming soap requests and outgoing soap response messages to the database?

I want to save everything which is going through the wire. (or at least part of it as a xml message)

Please send me a helpful reply.



Thank you.

Simen



From: Eran Chinthaka [mailto:***@gmail.com<mailto:***@gmail.com>]
Sent: Friday, 11 July 2008 2:19 PM
To: axis-***@ws.apache.org<mailto:axis-***@ws.apache.org>
Subject: Re: How to print axis2 request and response



Will you have access to request and response objects? If you are using Axis2 war app, unless you like to get ur hands wet, I don't see a way to do that.

On Thu, Jul 10, 2008 at 6:38 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi,

I want to save the web service request/response to the database as a string or blob.

How can I implement the request.toString() and response.toString() methods?

I am using axis2 and wsdl2java code generation.

I don't want to play with the generated code.

Is there an easier way to do this, without mucking around with soap envelop and other more detailed technical stuff?



thx



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada
Shehan Simen
2008-07-11 06:13:54 UTC
Permalink
Hi Eran,
Yes, I was able to capture it successfully inside the XXXXMessageReceiverInOut.class generated by wsdl2java.
Thankx for your help.

Regards,
simen

From: Shehan Simen [mailto:***@itree.com.au]
Sent: Friday, 11 July 2008 3:29 PM
To: axis-***@ws.apache.org
Subject: RE: How to print axis2 request and response

Thank you Eran,
Yes, I am the service author and I am thinking to put this inside the service implementation.
I like to do this in more high level, rather than digging into complex code inside axis.
I use the code generated by wsdl2java.
I don't see anything like MessageContext. It may be more deeper inside axis2.
Is there any simpler way to do this?
Please help me.

Regards,
Simen

From: Eran Chinthaka [mailto:***@gmail.com]
Sent: Friday, 11 July 2008 3:15 PM
To: axis-***@ws.apache.org
Subject: Re: How to print axis2 request and response

MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();

The above code will give you the SOAP message in the current message context. If you use the above code in the in flow, you will get the request message and you will get the response message if you put the above code in outflow.

Are you the service author and are you thinking of putting this code, inside your service implementation class?

There is another way of doing this operation context, but I need above info to give a better answer.
On Thu, Jul 10, 2008 at 9:51 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi Eran,

As I am developing the web service, I have the access to all the objects from the server side.

How can I save the incoming soap requests and outgoing soap response messages to the database?

I want to save everything which is going through the wire. (or at least part of it as a xml message)

Please send me a helpful reply.



Thank you.

Simen



From: Eran Chinthaka [mailto:***@gmail.com<mailto:***@gmail.com>]
Sent: Friday, 11 July 2008 2:19 PM
To: axis-***@ws.apache.org<mailto:axis-***@ws.apache.org>
Subject: Re: How to print axis2 request and response



Will you have access to request and response objects? If you are using Axis2 war app, unless you like to get ur hands wet, I don't see a way to do that.

On Thu, Jul 10, 2008 at 6:38 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi,

I want to save the web service request/response to the database as a string or blob.

How can I implement the request.toString() and response.toString() methods?

I am using axis2 and wsdl2java code generation.

I don't want to play with the generated code.

Is there an easier way to do this, without mucking around with soap envelop and other more detailed technical stuff?



thx



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada
Amila Suriarachchi
2008-07-14 06:17:21 UTC
Permalink
you can write an Axis2 Handler to log the soap message. and then put this
handler to inflow and outflow using a module.xml. This means you have to
write Axis2 module and engage it your service.

thanks,
Amila.
Post by Shehan Simen
Hi Eran,
Yes, I was able to capture it successfully inside the
XXXXMessageReceiverInOut.class generated by wsdl2java.
Thankx for your help.
Regards,
simen
*Sent:* Friday, 11 July 2008 3:29 PM
*Subject:* RE: How to print axis2 request and response
Thank you Eran,
Yes, I am the service author and I am thinking to put this inside the
service implementation.
I like to do this in more high level, rather than digging into complex code inside axis.
I use the code generated by wsdl2java.
I don't see anything like MessageContext. It may be more deeper inside axis2.
Is there any simpler way to do this?
Please help me.
Regards,
Simen
*Sent:* Friday, 11 July 2008 3:15 PM
*Subject:* Re: How to print axis2 request and response
MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();
The above code will give you the SOAP message in the current message
context. If you use the above code in the in flow, you will get the request
message and you will get the response message if you put the above code in
outflow.
Are you the service author and are you thinking of putting this code,
inside your service implementation class?
There is another way of doing this operation context, but I need above info
to give a better answer.
Hi Eran,
As I am developing the web service, I have the access to all the objects
from the server side.
How can I save the incoming soap requests and outgoing soap response
messages to the database?
I want to save everything which is going through the wire. (or at least
part of it as a xml message)
Please send me a helpful reply.
Thank you.
Simen
*Sent:* Friday, 11 July 2008 2:19 PM
*Subject:* Re: How to print axis2 request and response
Will you have access to request and response objects? If you are using
Axis2 war app, unless you like to get ur hands wet, I don't see a way to do
that.
Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap envelop
and other more detailed technical stuff?
thx
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting
is the best relationship; nirvana is the highest joy. - Dhammapada
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting
is the best relationship; nirvana is the highest joy. - Dhammapada
--
Amila Suriarachchi,
WSO2 Inc.
Shehan Simen
2008-07-14 06:19:35 UTC
Permalink
Hi Amila,
Is there any tutorial for writing axis2 handler?
I have no idea about the module.xml

From: Amila Suriarachchi [mailto:***@gmail.com]
Sent: Monday, 14 July 2008 4:17 PM
To: axis-***@ws.apache.org
Subject: Re: How to print axis2 request and response

you can write an Axis2 Handler to log the soap message. and then put this handler to inflow and outflow using a module.xml. This means you have to write Axis2 module and engage it your service.

thanks,
Amila.
On Fri, Jul 11, 2008 at 2:13 AM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi Eran,

Yes, I was able to capture it successfully inside the XXXXMessageReceiverInOut.class generated by wsdl2java.

Thankx for your help.



Regards,

simen



From: Shehan Simen [mailto:***@itree.com.au<mailto:***@itree.com.au>]
Sent: Friday, 11 July 2008 3:29 PM

To: axis-***@ws.apache.org<mailto:axis-***@ws.apache.org>
Subject: RE: How to print axis2 request and response



Thank you Eran,

Yes, I am the service author and I am thinking to put this inside the service implementation.

I like to do this in more high level, rather than digging into complex code inside axis.

I use the code generated by wsdl2java.

I don't see anything like MessageContext. It may be more deeper inside axis2.

Is there any simpler way to do this?

Please help me.



Regards,

Simen



From: Eran Chinthaka [mailto:***@gmail.com<mailto:***@gmail.com>]
Sent: Friday, 11 July 2008 3:15 PM
To: axis-***@ws.apache.org<mailto:axis-***@ws.apache.org>
Subject: Re: How to print axis2 request and response



MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();

The above code will give you the SOAP message in the current message context. If you use the above code in the in flow, you will get the request message and you will get the response message if you put the above code in outflow.

Are you the service author and are you thinking of putting this code, inside your service implementation class?

There is another way of doing this operation context, but I need above info to give a better answer.

On Thu, Jul 10, 2008 at 9:51 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi Eran,

As I am developing the web service, I have the access to all the objects from the server side.

How can I save the incoming soap requests and outgoing soap response messages to the database?

I want to save everything which is going through the wire. (or at least part of it as a xml message)

Please send me a helpful reply.



Thank you.

Simen



From: Eran Chinthaka [mailto:***@gmail.com<mailto:***@gmail.com>]
Sent: Friday, 11 July 2008 2:19 PM
To: axis-***@ws.apache.org<mailto:axis-***@ws.apache.org>
Subject: Re: How to print axis2 request and response



Will you have access to request and response objects? If you are using Axis2 war app, unless you like to get ur hands wet, I don't see a way to do that.

On Thu, Jul 10, 2008 at 6:38 PM, Shehan Simen <***@itree.com.au<mailto:***@itree.com.au>> wrote:

Hi,

I want to save the web service request/response to the database as a string or blob.

How can I implement the request.toString() and response.toString() methods?

I am using axis2 and wsdl2java code generation.

I don't want to play with the generated code.

Is there an easier way to do this, without mucking around with soap envelop and other more detailed technical stuff?



thx



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada



--
With Mettha,
Eran Chinthaka

--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada



--
Amila Suriarachchi,
WSO2 Inc.
Charitha Kankanamge
2008-07-14 10:12:37 UTC
Permalink
Hi,
http://ws.apache.org/axis2/1_4/modules.html will help you to get some
understanding on writing a module to log messages.

regards
Charitha
Post by Shehan Simen
Hi Amila,
Is there any tutorial for writing axis2 handler?
I have no idea about the module.xml
*Sent:* Monday, 14 July 2008 4:17 PM
*Subject:* Re: How to print axis2 request and response
you can write an Axis2 Handler to log the soap message. and then put
this handler to inflow and outflow using a module.xml. This means you
have to write Axis2 module and engage it your service.
thanks,
Amila.
Hi Eran,
Yes, I was able to capture it successfully inside the
XXXXMessageReceiverInOut.class generated by wsdl2java.
Thankx for your help.
Regards,
simen
*Sent:* Friday, 11 July 2008 3:29 PM
*Subject:* RE: How to print axis2 request and response
Thank you Eran,
Yes, I am the service author and I am thinking to put this inside the
service implementation.
I like to do this in more high level, rather than digging into complex code inside axis.
I use the code generated by wsdl2java.
I don't see anything like MessageContext. It may be more deeper inside axis2.
Is there any simpler way to do this?
Please help me.
Regards,
Simen
*Sent:* Friday, 11 July 2008 3:15 PM
*Subject:* Re: How to print axis2 request and response
MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();
The above code will give you the SOAP message in the current message
context. If you use the above code in the in flow, you will get the
request message and you will get the response message if you put the
above code in outflow.
Are you the service author and are you thinking of putting this code,
inside your service implementation class?
There is another way of doing this operation context, but I need above
info to give a better answer.
Hi Eran,
As I am developing the web service, I have the access to all the
objects from the server side.
How can I save the incoming soap requests and outgoing soap response
messages to the database?
I want to save everything which is going through the wire. (or at
least part of it as a xml message)
Please send me a helpful reply.
Thank you.
Simen
*Sent:* Friday, 11 July 2008 2:19 PM
*Subject:* Re: How to print axis2 request and response
Will you have access to request and response objects? If you are using
Axis2 war app, unless you like to get ur hands wet, I don't see a way
to do that.
Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap
envelop and other more detailed technical stuff?
thx
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth;
trusting is the best relationship; nirvana is the highest joy. -
Dhammapada
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth;
trusting is the best relationship; nirvana is the highest joy. -
Dhammapada
--
Amila Suriarachchi,
WSO2 Inc.
------------------------------------------------------------------------
No virus found in this incoming message.
Checked by AVG.
Version: 7.5.524 / Virus Database: 270.4.7/1543 - Release Date: 7/9/2008 6:32 PM
Heshan Suriyaarachchi
2008-07-14 10:46:17 UTC
Permalink
Hi Shehan,
Let me add some more to what the other guys have said.You first need
to understand the handler concept in Axis2. Articles [1], [2] will help you
to get an understanding on how to use handlers to add some functionality.
An example of writing a module can be found in Axis2 samples. You can find
it here [3]. I think with some small alterations to [3] , you might be able
to get the functionality you want.

[1] - http://ws.apache.org/axis2/1_4/Axis2ArchitectureGuide.html#bmSOAPPM
[2] - http://www.developer.com/java/web/article.php/3529321
[3] -
http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/userguide/src/userguide/loggingmodule/
Post by Charitha Kankanamge
Hi,
http://ws.apache.org/axis2/1_4/modules.html will help you to get some
understanding on writing a module to log messages.
regards
Charitha
Hi Amila,
Post by Shehan Simen
Is there any tutorial for writing axis2 handler?
I have no idea about the module.xml
*Sent:* Monday, 14 July 2008 4:17 PM
*Subject:* Re: How to print axis2 request and response
you can write an Axis2 Handler to log the soap message. and then put this
handler to inflow and outflow using a module.xml. This means you have to
write Axis2 module and engage it your service.
thanks,
Amila.
Hi Eran,
Yes, I was able to capture it successfully inside the
XXXXMessageReceiverInOut.class generated by wsdl2java.
Thankx for your help.
Regards,
simen
*Sent:* Friday, 11 July 2008 3:29 PM
*Subject:* RE: How to print axis2 request and response
Thank you Eran,
Yes, I am the service author and I am thinking to put this inside the
service implementation.
I like to do this in more high level, rather than digging into complex code inside axis.
I use the code generated by wsdl2java.
I don't see anything like MessageContext. It may be more deeper inside axis2.
Is there any simpler way to do this?
Please help me.
Regards,
Simen
*Sent:* Friday, 11 July 2008 3:15 PM
*Subject:* Re: How to print axis2 request and response
MessageContext messageContext = MessageContext.getCurrentMessageContext();
String request = messageContext.getEnvelope().toString();
The above code will give you the SOAP message in the current message
context. If you use the above code in the in flow, you will get the request
message and you will get the response message if you put the above code in
outflow.
Are you the service author and are you thinking of putting this code,
inside your service implementation class?
There is another way of doing this operation context, but I need above
info to give a better answer.
Hi Eran,
As I am developing the web service, I have the access to all the objects
from the server side.
How can I save the incoming soap requests and outgoing soap response
messages to the database?
I want to save everything which is going through the wire. (or at least
part of it as a xml message)
Please send me a helpful reply.
Thank you.
Simen
*Sent:* Friday, 11 July 2008 2:19 PM
*Subject:* Re: How to print axis2 request and response
Will you have access to request and response objects? If you are using
Axis2 war app, unless you like to get ur hands wet, I don't see a way to do
that.
Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap
envelop and other more detailed technical stuff?
thx
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting
is the best relationship; nirvana is the highest joy. - Dhammapada
--
With Mettha,
Eran Chinthaka
--------------------------------------------------------------------
Health is the greatest gift; contentment is the greatest wealth; trusting
is the best relationship; nirvana is the highest joy. - Dhammapada
--
Amila Suriarachchi,
WSO2 Inc.
------------------------------------------------------------------------
No virus found in this incoming message.
Checked by AVG. Version: 7.5.524 / Virus Database: 270.4.7/1543 - Release
Date: 7/9/2008 6:32 PM
---------------------------------------------------------------------
--
Regards,
Heshan Suriyaarachchi

http://heshans.blogspot.com/
Enaganti M Naidu
2008-07-14 12:14:28 UTC
Permalink
Look at the logging module sample....but it is very primitive....I can share a better example later if you still need it...

From: ***@itree.com.auTo: axis-***@ws.apache.orgDate: Mon, 14 Jul 2008 16:19:35 +1000Subject: RE: How to print axis2 request and response




Hi Amila,
Is there any tutorial for writing axis2 handler?
I have no idea about the module.xml


From: Amila Suriarachchi [mailto:***@gmail.com] Sent: Monday, 14 July 2008 4:17 PMTo: axis-***@ws.apache.orgSubject: Re: How to print axis2 request and response

you can write an Axis2 Handler to log the soap message. and then put this handler to inflow and outflow using a module.xml. This means you have to write Axis2 module and engage it your service. thanks,Amila.

On Fri, Jul 11, 2008 at 2:13 AM, Shehan Simen <***@itree.com.au> wrote:


Hi Eran,
Yes, I was able to capture it successfully inside the XXXXMessageReceiverInOut.class generated by wsdl2java.
Thankx for your help.

Regards,
simen



From: Shehan Simen [mailto:***@itree.com.au] Sent: Friday, 11 July 2008 3:29 PM

To: axis-***@ws.apache.org
Subject: RE: How to print axis2 request and response



Thank you Eran,
Yes, I am the service author and I am thinking to put this inside the service implementation.
I like to do this in more high level, rather than digging into complex code inside axis.
I use the code generated by wsdl2java.
I don't see anything like MessageContext. It may be more deeper inside axis2.
Is there any simpler way to do this?
Please help me.

Regards,
Simen


From: Eran Chinthaka [mailto:***@gmail.com] Sent: Friday, 11 July 2008 3:15 PMTo: axis-***@ws.apache.orgSubject: Re: How to print axis2 request and response

MessageContext messageContext = MessageContext.getCurrentMessageContext();String request = messageContext.getEnvelope().toString();The above code will give you the SOAP message in the current message context. If you use the above code in the in flow, you will get the request message and you will get the response message if you put the above code in outflow. Are you the service author and are you thinking of putting this code, inside your service implementation class?There is another way of doing this operation context, but I need above info to give a better answer.

On Thu, Jul 10, 2008 at 9:51 PM, Shehan Simen <***@itree.com.au> wrote:


Hi Eran,
As I am developing the web service, I have the access to all the objects from the server side.
How can I save the incoming soap requests and outgoing soap response messages to the database?
I want to save everything which is going through the wire. (or at least part of it as a xml message)
Please send me a helpful reply.

Thank you.
Simen


From: Eran Chinthaka [mailto:***@gmail.com] Sent: Friday, 11 July 2008 2:19 PMTo: axis-***@ws.apache.orgSubject: Re: How to print axis2 request and response



Will you have access to request and response objects? If you are using Axis2 war app, unless you like to get ur hands wet, I don't see a way to do that.

On Thu, Jul 10, 2008 at 6:38 PM, Shehan Simen <***@itree.com.au> wrote:


Hi,
I want to save the web service request/response to the database as a string or blob.
How can I implement the request.toString() and response.toString() methods?
I am using axis2 and wsdl2java code generation.
I don't want to play with the generated code.
Is there an easier way to do this, without mucking around with soap envelop and other more detailed technical stuff?

thx
-- With Mettha,Eran Chinthaka--------------------------------------------------------------------Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada
-- With Mettha,Eran Chinthaka--------------------------------------------------------------------Health is the greatest gift; contentment is the greatest wealth; trusting is the best relationship; nirvana is the highest joy. - Dhammapada
-- Amila Suriarachchi,WSO2 Inc.
_________________________________________________________________
Use video conversation to talk face-to-face with Windows Live Messenger.
http://www.windowslive.com/messenger/connect_your_way.html?ocid=TXT_TAGLM_WL_Refresh_messenger_video_072008
Continue reading on narkive:
Loading...