Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Robbie Nati
33
Views
4
Comments
Web Services with input parameters
Question
What is the correct URL format for a webservice that requires an input parameter?
I have a webservice (UserData), and a method (GetUserName) with an input parameter(userid)
What is the format of the url of this web service using the above mentioned variables?
The video tutorial of the webservice does not show the URL with the input parameters in the example.
Robbie
João Rosado
Staff
Hi Robbie,
Platform webservices are SOAP, not REST.
So the url for the webservice will only have the webservice name:
https://yourservername/eSpaceName/UserData.asmx?WSDL
Regards,
João Rosado
Robbie Nati
Thanks Joao.
Does than mean you cant pass parameters via web service??
João Rosado
Staff
Hi Robbie,
You can (and need) to pass the parameters to call the methods, just not directly on the url.
To call a webservice you need to import that url into an application that can handle SOAP webservices (for example another eSpace, by adding it as web reference).
Regards,
João Rosado
Gonçalo Martins
Staff
Hi..
Just to add a comment, João is saying that and his right. Even for every kind of URL usages (with query string, or example) you should never pass the credencials using that URL, since it is a huge security lack.
Be aware of that.
Kind Regards,
GM
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...