SOAP - How to create soap and call my StoredProc function from external website?
Hi Every one
I'm working on how to use SOAP with my API and StoredProc.
Currently, the method I use is csp page to be able to get pamater from external website and Call my StoredcProc
Step 1 Get pamameter from external site
Step 2 Run My Storeproc
Step 3 Return JSON format
How to create soap and call StoredProc function from external website?
Product version: IRIS 2020.1
$ZV: IRIS for Windows (x86-64) 2020.1 (Build 215_0_21670U) Fri Jun 17 2022 17:36:27 EDT
To create a SOAP service refer to this documentation Creating SOAP Web Services in IRIS. Within your Method you should be able to call a StoredProc and convert the output to the one required by the service.
However it is not that simple to call a SOAP service directly from browser, please refer to this StackOverflow question to see possible solutions and limitations. I would consider exposing it as REST service. Either way the service needs to be exposed on the same domain as your webpage to avoid CORS.
Try using Rest
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
Now I switched to using REST, can call stored now.
thank you so much @Michael Angeleri @Adel Elsayed