Reputation: 61
I have a proxy service which accepts text as request and gives text as response. I have a routed node which invokes another business service. I have to make this way because I need to add soap headers to the input before i invoke the business service. Now everything is working fine and i am able to launch test console of the proxy and get it tested. But I am not able to find the direct url to access the proxy service to share it to the customer.
My proxy uri is for eg, /testWS/TestProxy and if i try to give http://:/testWS/TestProxy?wsdl it returns 404 error. I understand this is because there is no wsdl associated to this proxy. But how will i get this working atleast in soap ui?
Regards Murali
Upvotes: 1
Views: 5033
Reputation: 136
To receive the response in JSON format, you must set the Accept header as application/json
Upvotes: 0
Reputation: 2253
/sbonsole/
to Project Explorer
and find the proxyConfiguration Details
tab (the default tab)Endpoint URI
field has the path details./console/
-> environment
-> servers
- there are Listen Port fields etc)As far as SoapUI goes, you can either treat the service as a REST service, or you can create the project without a WSDL and add stuff manually (for instance, there's a HTTP Test Request
test step that you can use instead of a SOAP test request)
Upvotes: 1