ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Unable to hit the message flow from SoapUI tool

Post new topic  Reply to topic
 Unable to hit the message flow from SoapUI tool « View previous topic :: View next topic » 
Author Message
nukalas2010
PostPosted: Sun Nov 28, 2010 11:00 pm    Post subject: Unable to hit the message flow from SoapUI tool Reply with quote

Master

Joined: 04 Oct 2010
Posts: 220
Location: Somewhere in the World....

Hi All,

My flow contains
SoapInputNode -> computenode -> SoapReuqestNode -> compute -> SoapReplyNode

I am Invoking this flow Via SOAPUI tool

but my problem is when I send request from SOAPUI it doesnt hit this flow in message Broker...

I had given all correct properties for each node n also that end point...
Back to top
View user's profile Send private message
harish_td
PostPosted: Mon Nov 29, 2010 12:40 am    Post subject: Reply with quote

Master

Joined: 13 Feb 2006
Posts: 236

What is the error that you see from the HTTP Log of soapUI?
What is the output of the command
Code:
mqsireportproperties <BrokerName> -e <EGName> -o HTTPConnector -r

What happens when you do
Code:
netstat -an | findstr <Port Number>


More answers more questions
Back to top
View user's profile Send private message Yahoo Messenger
nukalas2010
PostPosted: Mon Nov 29, 2010 1:22 am    Post subject: Reply with quote

Master

Joined: 04 Oct 2010
Posts: 220
Location: Somewhere in the World....

harish_td wrote:
What is the error that you see from the HTTP Log of soapUI?


I am getting the following

Quote:
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "POST /RCOMsgSetSOAP_HTTP_Service HTTP/1.1[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "Accept-Encoding: gzip,deflate[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "Content-Type: text/xml;charset=UTF-8[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "SOAPAction: "http://rco.com/CharitydetailsService/retrieveCharityDetails"[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "User-Agent: Jakarta Commons-HttpClient/3.1[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "Host: 172.18.3.20:7800[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "Content-Length: 297[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:rco="http://rco.com">[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> " <soapenv:Header/>[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> " <soapenv:Body>[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> " <rco:CharityDetailsServiceRequest>[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> " <CPRNo>1</CPRNo>[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> " </rco:CharityDetailsServiceRequest>[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> " </soapenv:Body>[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:>> "</soapenv:Envelope>"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "HTTP/1.1 200 OK[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "HTTP/1.1 200 OK[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Content-Type: text/xml;charset=utf-8[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Content-Length: 162[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Date: Mon, 29 Nov 2010 09:22:44 GMT[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Server: Apache-Coyote/1.1[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body></soapenv:Body></soapenv:Envelope>"



Quote:
What is the output of the command
Code:
mqsireportproperties <BrokerName> -e <EGName> -o HTTPConnector -r


Output is
Quote:
HTTPConnector
uuid='HTTPConnector'
userTraceLevel='none'
traceLevel='none'
userTraceFilter='trace'
traceFilter='none'
port='7800'
address=''
allowTrace=''
maxPostSize=''
acceptCount=''
bufferSize=''
compressableMimeTypes=''
compression=''
connectionLinger=''
connectionTimeout=''
maxHttpHeaderSize=''
maxKeepAliveRequests=''
maxSpareThreads=''
maxThreads=''
minSpareThreads=''
noCompressionUserAgents=''
restrictedUserAgents=''
socketBuffer=''
tcpNoDelay=''
explicitlySetPortNumber=''
enableLookups=''
enableMQListener=''
shutdownDelay=''
DefaultConnector
port='7800'
URLRegistration='/RCOMsgSetSOAP_HTTP_Service'
nodeLabel='SOAP Input'

BIP8071I: Successful command completion.



Quote:
What happens when you do [code]netstat -an | findstr <Port Number>


it comes as follows:
Quote:
TCP 0.0.0.0:7800 0.0.0.0:0 LISTENING
Back to top
View user's profile Send private message
fjb_saper
PostPosted: Mon Nov 29, 2010 1:34 am    Post subject: Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

Quote:
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "HTTP/1.1 200 OK[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "HTTP/1.1 200 OK[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Content-Type: text/xml;charset=utf-8[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Content-Length: 162[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Date: Mon, 29 Nov 2010 09:22:44 GMT[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "Server: Apache-Coyote/1.1[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "[\r][\n]"
Mon Nov 29 14:52:57 IST 2010:DEBUG:<< "<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body></soapenv:Body></soapenv:Envelope>"


So you got a 200 return code (everything went fine) and your return from the service is a SOAP message with an empty "Body". Is that what you were expecting?
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
nukalas2010
PostPosted: Mon Nov 29, 2010 1:50 am    Post subject: Reply with quote

Master

Joined: 04 Oct 2010
Posts: 220
Location: Somewhere in the World....

yeahh... Everything seems to be fine..
But I am getting empty body
Actually I am looking for the response back
Back to top
View user's profile Send private message
mgk
PostPosted: Mon Nov 29, 2010 2:24 am    Post subject: Reply with quote

Padawan

Joined: 31 Jul 2003
Posts: 1642

Post a trace node showing the output of the $Root message immediately before the SOAPReply node...
_________________
MGK
The postings I make on this site are my own and don't necessarily represent IBM's positions, strategies or opinions.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Unable to hit the message flow from SoapUI tool
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.