LTL Freight Shipping Calculator

should be possible…
here’s the gist of how to approach it:

  1. create a webmethod on a backend file to get the quote from LTL.
    pass into this method any parameters collected from the user.

  2. 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.

  3. 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…