Hi,
I'm implementing remote application (Ruby on Rails) for Vibe, using ruby Savon SOAP client.
I can list all operations that Vibe offers,
but I'm not able to call any of them.
I always get "No such operation.... " error message back from the vibe server.
I've already setup the remote application in vibe and added it as an accessory to the workspace.
This is my request:
--------------------------
and response:
--------------------------
SOAP response (status 500)
Any ideas?
Regards
Jiri
I'm implementing remote application (Ruby on Rails) for Vibe, using ruby Savon SOAP client.
I can list all operations that Vibe offers,
but I'm not able to call any of them.
I always get "No such operation.... " error message back from the vibe server.
I've already setup the remote application in vibe and added it as an accessory to the workspace.
This is my request:
--------------------------
Code:
SOAP request: https://example.com/ssr/token/ws/TeamingServiceV1
SOAPAction: "binder_getFolders", Content-Type: text/xml;charset=UTF-8, Content-Length: 609
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:impl="http://ws.remoting.teaming.kablink.org/v1"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ins0="http://model.ws.remoting.teaming.kablink.org/v1">
<env:Body>
<impl:binder_getFoldersRequest>
<accessToken>1-75c3808ea9c2fce0012345664d8002c605c5253f-ff808082405eda1d1234568a7451004b-10-1-0-1</accessToken>
<binderId>48</binderId>
<firstRecord>0</firstRecord>
<maxRecords>-1</maxRecords>
</impl:binder_getFoldersRequest>
</env:Body>
</env:Envelope>
and response:
--------------------------
SOAP response (status 500)
Code:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault>
<faultcode xmlns:ns1="http://xml.apache.org/axis/">ns1:Client</faultcode>
<faultstring>No such operation 'binder_getFoldersRequest'</faultstring>
<detail>
<ns2:hostname xmlns:ns2="http://xml.apache.org/axis/">vibe01-demo.site</ns2:hostname>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Any ideas?
Regards
Jiri