Sabre REST API equivalent to SOAP SabreCommandLLS - rest

Can anyone please tell me if Sabre has REST API equivalent to SOAP SabreCommandLLS Service with Action SabreCommandLLSRQ? If Sabre has developed the same, where I can find its documentation?
Thanks in advance.

No, there' s not a REST equivalent service.

First of all, what kind of transaction are you trying to execute using Sabrecommand ?
Just to remember, use of Sabrecommand it is do not considered a good practice, you should try to avoid use this kind of approach, you should use always services (REST/SOAP) instead of Sabrecommand.
Second of all, Sabrecommand is not supported by REST and the reason is obvious, is do not recommended to use Sabrecommand.

Related

Need help on to design architecture\model for Message send\receive using RESTFul Webservice + JMSTemplates + MQSeries

Need an flow diagram.
How we are making an synchronous between producer and receiver (using MessageID and CorrelationID).
using REST + Spring + MQSeries (mandatory) , i have to implement it.
Any support would be very grateful.
Thanks in Advance!!
NJ
Firstly, it would have been better if you asked your question more clearly and be more specific wherever you can. You can search online for info that already exists. But anyway...
If you want to build a restful service using spring, this is a good starting point:
https://spring.io/guides/gs/rest-service/
If you want to use spring-jms to interface with Websphere MQ, you can search online but, here's a few links to get you started:
http://www.ibm.com/developerworks/library/wa-spring4/
and also https://spring.io/guides/gs/messaging-jms/
Specifically if you are looking to make a synchronous request-response call using jms, you basically need to have the message id of the request message as the correlation id of the response message.
This link might help (you can use spring-jms to implement something similar):
http://www.enterpriseintegrationpatterns.com/patterns/messaging/RequestReplyJmsExample.html
Good luck! :)

Find Undocumented Functions on a REST API

I think the answer is 'NO', but I really do not know the answer to this. Is there a way to find undocumented REST functions on a REST API?
Thank you
Strange question, but the only answer is NO.
Or bruteforce, but, I guess, you don't want to do it.
It depends on...
If the service fulfills the REST constraints (uniform interface / HATEOAS in this case), then you can find every "function" as hyperlinks in the HTTP responses.
If the service does not fulfill the REST constraints, then we aren't talking about REST just a CRUDish RPC.

Kynetx and SOAP

I have been searching the web and Kynetx.com for any documetation or examples of how to use SOAP with KRL but have come up with nothing. Sadly the web services I am working with has a lot of SOAP rather then REST. If there is any links of documentation or examples of doing SOAP with KRL I would be really pleased if you would pass that on to me, i'm not even sure where to start, thanks.
There is no SOAP support in KRL. The best way to get these APIs into KRL is to create a REST-SOAP shim that translates between the two.

Client Program for RestFul WebService?

HI, i Have developed a restful webservice sample application, i want to create a client for the webservice, can anyone tell me how to do this? i was used Rest WebService explorer, but i want to know how to create a client and call the methods ?
Please help ?
Since REST is talking HTTP and is language-agnostic, you can use most any language/tooling available. Of course the simplest test bed available to you is the browser itself.
Have a look at these tools:
http://code.google.com/p/rest-client/
https://github.com/cloudhead/http-console
https://tcpmon.dev.java.net/ (proxying is helpful for debugging)
You can also use Resty, which should make accessing your webservices very easy.
https://github.com/beders/Resty
(see Readme for examples)

The best way to implement REST in CakePHP 1.3?

Does anyone know of any tutorials that explain clearly how to implement simple REST functionality with authorization.
I've seen a few plugins and got also got some basic REST functionality working but there seems no clear guidelines about how to build a secure REST service in Cake.
Any help appreciated.
Sounds like you need to look into OAuth which uses REST to connect to Web Sevices without sending usernames and passwords.
Try these tutorials for a start
http://code.42dh.com/oauth/
http://www.neilcrookes.com/2010/04/12/cakephp-oauth-extension-to-httpsocket/