Hi i need to read policy details from Guidewire Software to my Flask application by passing policy number to it. how can I set up it ?
Asked
Active
Viewed 235 times
-2
-
1What is Guidewire Software? If it is a third party API/app contact with their customer service. – arshovon Jun 04 '18 at 08:57
1 Answers
1
You should expose a web service (using SOAP or REST) in your Guidewire application.
Once the web service is established, it should work in the following way:
- Python application passes a policy number to Guidewire
- Guidewire retrieves a policy from your database
- Guidewire sends a response back (policy details)
- Flask receives it
If you don't know how to expose a web service in Guidewire, you should be able to find all necessary information in Guidewire's documentation.

SebastianJ
- 95
- 1
- 10