Author |
Message
|
N |
Posted: Wed Apr 02, 2008 5:41 am Post subject: Httpinput node |
|
|
Acolyte
Joined: 21 Jul 2007 Posts: 64
|
Hi,
Out of curiousity, any1 know how to put SOAP message to httpinput node?
Any supportpac from IBM?
 |
|
Back to top |
|
 |
jefflowrey |
Posted: Wed Apr 02, 2008 5:42 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
You can use an HTTPRequest node. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
Vitor |
Posted: Wed Apr 02, 2008 5:42 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
The Search Button is Your Friend.
It's been discussed more than a few times in here. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
jefflowrey |
Posted: Wed Apr 02, 2008 5:44 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
More seriously, you can use the Test Client that comes with the Toolkit. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
marcin.kasinski |
Posted: Wed Apr 02, 2008 6:24 am Post subject: Re: Httpinput node |
|
|
Sentinel
Joined: 21 Dec 2004 Posts: 850 Location: Poland / Warsaw
|
N wrote: |
Hi,
Out of curiousity, any1 know how to put SOAP message to httpinput node?
Any supportpac from IBM?
 |
You can do it manually
If you know source of message you can
Then paste entire message with HTTP headers
Code: |
POST /soapURL HTTP/1.0
Host: host
Content-Type: text/xml; charset=utf-8
Content-length: xxx
<?xml version="1.0" encoding="UTF-8" ?>
<SOAP-ENV:Envelope ...
YOUR SOAP HERE
</SOAP-ENV:Envelope> |
Empty line is important.
I do it very often.
For me it is faster. _________________ Marcin |
|
Back to top |
|
 |
gotiashvili |
Posted: Wed Apr 02, 2008 6:57 am Post subject: |
|
|
Newbie
Joined: 02 Apr 2008 Posts: 8
|
|
Back to top |
|
 |
mrgate |
Posted: Wed Apr 02, 2008 3:40 pm Post subject: |
|
|
 Centurion
Joined: 28 Feb 2007 Posts: 141 Location: India
|
Using a third party technologies like nettool,apache jmeter etc..........apart from Test Client that comes with toolkit. _________________ MQSeries terrorist |
|
Back to top |
|
 |
|