Is this not the correct way set a cookie in suds?
# Create session cookie.
oizysSessionCookie = cookielib.Cookie(version=None,
name="ASP.NET_SessionId",
value=self.loginCredentials.session_id,
port="8082",
port_specified=False,
domain="127.0.0.1",
domain_specified=True,
domain_initial_dot=False,
path="ISTSessionId",
path_specified=True,
secure=False,
expires=None,
discard=True,
comment=None,
comment_url=None,
rest=None)
# Add cookie to clients
commandClient = Client(commandUrl)
commandClient.options.transport.cookiejar.set_cookie(oizysSessionCookie)
monitorClient = Client(monitorUrl)
monitorClient.options.transport.cookiejar.set_cookie(oizysSessionCookie)