Table of Contents [Hide/Show]
Login interface for the Jetfire Web Service Workflow based utilities Login as Guest Login as Named User Login as Guest with Encryption Login with Encryption Logout
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LoginGuest xmlns="http://Jetfire.ca/WebService"> <subscription>string</subscription> </LoginGuest> </soap:Body> </soap:Envelope>
<?xml version='1.0' encoding='utf-8' ?> <LoginResponse xmlns="http://schemas.Jetfire.ca/LoginResponse"> <LoginKey NexusKey="49c55cb8-908c-4d2b-ba0b-70cfcbe05f16" Subscription="localhost" Roles="" Message="Successful Login"/> </LoginResponse>
<?xml version='1.0' encoding='utf-8' ?> <Errors xmlns="http://schemas.Jetfire.ca/Errors"> <Error Name="Error 1" Value="Guest not allowed to login."/> </Errors>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Login xmlns="http://Jetfire.ca/WebService"> <user>string</user> <password>string</password> <subscription>string</subscription> </Login> </soap:Body> </soap:Envelope>
<?xml version='1.0' encoding='utf-8' ?> <LoginResponse xmlns="http://schemas.Jetfire.ca/LoginResponse"> <LoginKey NexusKey="49c55cb8-908c-4d2b-ba0b-70cfcbe05f16" Subscription="localhost" Roles="Admin" Message="Successful Login"/> </LoginResponse>
<?xml version='1.0' encoding='utf-8' ?> <Errors xmlns="http://schemas.Jetfire.ca/Errors"> <Error Name="Error 1" Value="Cannot login."/> </Errors>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LoginGuestWithEncryption xmlns="http://Jetfire.ca/WebService"> <subscription>string</subscription> <direction>string</direction> <encryptionKey>string</encryptionKey> </LoginGuestWithEncryption> </soap:Body> </soap:Envelope>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LoginWithEncryption xmlns="http://Jetfire.ca/WebService"> <user>string</user> <password>string</password> <subscription>string</subscription> <direction>string</direction> <encryptionKey>string</encryptionKey> </LoginWithEncryption> </soap:Body> </soap:Envelope>
<?xml version='1.0' encoding='utf-8' ?> <Errors xmlns="http://schemas.Jetfire.ca/Errors"> <Error Name="Error 1" Value="Cannot login"/> </Errors>
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Logout xmlns="http://Jetfire.ca/WebService"> <nexusKey>string</nexusKey> </Logout> </soap:Body> </soap:Envelope>
<?xml version='1.0' encoding='utf-8' ?> <Errors xmlns="http://schemas.Jetfire.ca/Errors"> <Error Name="Error 1" Value="logged out"/> </Errors>