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