Abx
Abx

Reputation: 2882

Creating a http web service in message broker

I need to create a http post request that will put a message in a message queue.So far I am able to do it successfull within the test framework i.e: using the integration node.

My question is how I will be able to test this from a external browser?

Do I need to deploy it in an external server?

Any links or suggestion will be really helpful.

Upvotes: 1

Views: 423

Answers (2)

Dave
Dave

Reputation: 633

I often use curl for testing webservices deployed to IIB. You can use the "-d" parameter to specify a file containing the POST data and this works well for both HTTP and SOAP.

Upvotes: 1

Attila Repasi
Attila Repasi

Reputation: 1830

I don't think browsers are meant to call web services directly, try SOAPUI for testing.

Message Broker Applications need to be deployed on a Broker and Execution Group or Integration Node and Integration Server (after V9).

Upvotes: 0

Related Questions