Created
January 24, 2009 06:42
-
-
Save zackchandler/51370 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <authenticateResponse xmlns="http://developer.intuit.com/"> | |
| <authenticateResult> | |
| <string><%= @token.fast_xs %></string> | |
| <string><%= @message.fast_xs %></string> | |
| <string><%= @seconds_until_next_update %></string> | |
| <string><%= @seconds_between_runs %></string> | |
| </authenticateResult> | |
| </authenticateResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <clientVersionResponse xmlns="http://developer.intuit.com/"> | |
| <clientVersionResult><%= @version %></clientVersionResult> | |
| </clientVersionResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> | |
| <soap12:Body> | |
| <closeConnectionResponse xmlns="http://developer.intuit.com/"> | |
| <closeConnectionResult><%= @message.fast_xs %></closeConnectionResult> | |
| </closeConnectionResponse> | |
| </soap12:Body> | |
| </soap12:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <connectionErrorResponse xmlns="http://developer.intuit.com/"> | |
| <connectionErrorResult><%= @message.fast_xs %></connectionErrorResult> | |
| </connectionErrorResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <getLastErrorResponse xmlns="http://developer.intuit.com/"> | |
| <getLastErrorResult><%= @message.fast_xs %></getLastErrorResult> | |
| </getLastErrorResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <receiveResponseXMLResponse xmlns="http://developer.intuit.com/"> | |
| <receiveResponseXMLResult><%= @result %></receiveResponseXMLResult> | |
| </receiveResponseXMLResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <sendRequestXMLResponse xmlns="http://developer.intuit.com/"> | |
| <sendRequestXMLResult><%= @qbxml.fast_xs %></sendRequestXMLResult> | |
| </sendRequestXMLResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> | |
| <serverVersionResponse xmlns="http://developer.intuit.com/"> | |
| <serverVersionResult><%= @version %></serverVersionResult> | |
| </serverVersionResponse> | |
| </soap:Body> | |
| </soap:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment