Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SalesforceCaseGenerator by
Revision 4:f506cc61e09e, committed 2014-08-27
- Comitter:
- ansond
- Date:
- Wed Aug 27 18:29:55 2014 +0000
- Parent:
- 3:8ad19b204ddf
- Child:
- 5:09d5df94e8ae
- Commit message:
- updates
Changed in this revision
| SalesForceCaseGenerator.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/SalesForceCaseGenerator.cpp Wed Aug 27 18:09:46 2014 +0000
+++ b/SalesForceCaseGenerator.cpp Wed Aug 27 18:29:55 2014 +0000
@@ -54,18 +54,18 @@
this->m_http.setSSLversion(1) ; /* TLSv1.0 */
// POST the case and check the response
- this->m_logger->log("Sending Request...");
+ this->m_logger->log("Posting new Case...");
int ret = this->m_http.post(DF_CASE_GEN_URL,new_case,&http_result);
if (!ret) {
this->m_logger->log("Parsing Reply...");
success = this->contains(result,"status","ok");
if (success)
- this->m_logger->log("Case generated successfully");
+ this->m_logger->log("Case generation SUCCESS");
else
this->m_logger->log("Case generation FAILED");
}
else {
- this->m_logger->log("Failed to send request");
+ this->m_logger->log("Failed to post case");
}
// return our status
