I would like to know if its possible to build registration form inside umbraco and when the user will submit the form, the page will also call external web service with the form details in order to update also external system. Or - is it possible to get return values from user control in order to call the web service from umbraco ?
2 ways you could do this the quick way but not free http://umbraco.org/contour or build your own .net macro to do it do a search on the forum plenty of examples on how to do it.
Thanks for your answer, Contour looks nice but I also wanted to know how to use the form details after submiting it in order to send the details also to external web service. I didn't found any explanation for that in the site.
You can find developer docs for Contour here. All you need is a custom workflow type (find info on building custom workflows in the dev docs) that retrieves the info submitted through the Contour form and submit the values to the external webservice.
A good example of retrieving record info can be found in this post - look for Harald's reply (example workflow stores the submitted member info as a member node in the admin section).
Registration Form with Web Service call
I would like to know if its possible to build registration form inside umbraco
and when the user will submit the form, the page will also call external web service with the form details in order to update also external system.
Or - is it possible to get return values from user control in order to call the web service from umbraco ?
How ?
Yaron,
2 ways you could do this the quick way but not free http://umbraco.org/contour or build your own .net macro to do it do a search on the forum plenty of examples on how to do it.
Regards
Ismail
Thanks for your answer,
Contour looks nice but I also wanted to know how to use the form details after submiting it in order to send the details also to external web service.
I didn't found any explanation for that in the site.
You can find developer docs for Contour here. All you need is a custom workflow type (find info on building custom workflows in the dev docs) that retrieves the info submitted through the Contour form and submit the values to the external webservice.
A good example of retrieving record info can be found in this post - look for Harald's reply (example workflow stores the submitted member info as a member node in the admin section).
Hope this helps.
Regards,
/Dirk
Thanks for the help.
is working on a reply...