User1641955678 posted
Hi David,
Yes, this should work no differently than it does from a C# app. Just import the web service ('Add Web Reference...') and use it. e.g. in you python code for a page, you could have:
from localhost import *
def Page_Load():
ws = WebService()
Response.Write(ws.HelloWorld())
Just adapt 'localhost' and 'WebService' to your specific scenario.
thanks,
David