tzal Posted September 23, 2013 Posted September 23, 2013 Dear uniGUI friends, i have a question: How would it be possible to integrate very simple REST type service with uniGUI application? Let's say I have existing uniGUI application on address: http://www.example.com/unigui_app.dll And I would want to add web service on this address: http://www.example.com/unigui_app.dll/rest Then I could call the web service like this: GET http://www.example.com/unigui_app.dll/rest?students=123 HTTP/1.1 And into Delphi code I would get these parameters: Method: GET Parameter: students Value: 123 Thanks for any idea. Quote
zilav Posted September 23, 2013 Posted September 23, 2013 UniGUI is stateful, you can't get it to work with such url. Use standard Delphi's WebBroker for REST webservices, no benefits in mixing it together with UniGUI in a single app. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.