should be possible…
here’s the gist of how to approach it:
-
create a webmethod on a backend file to get the quote from LTL.
pass into this method any parameters collected from the user. -
in this webmethod, use wix-fetch to call the SOAP interface.
you’ll need to form the SOAP request and fire it to the SOAP endpoint exposed by LTL, then get the response and parse it. -
return the quote to the client as the return value of the webmethod, and use it there.
for step #1, read about webmethods here:
for step #2, read about wix-fetch here:
hope this sets you off in the right direction…