main.cpp 517 B

123456789101112
  1. #include "EsdlExampleService.hpp"
  2. #include "jliball.hpp"
  3. int main(int argc, char** argv)
  4. {
  5. InitModuleObjects();
  6. StringBuffer result;
  7. onEsdlExampleCppEchoPersonInfo("", "<CppEchoPersonInfoRequest><Name><First>Joe</First><Last>Doe</Last><Aliases><Alias>JD</Alias></Aliases></Name><Addresses><Address><Line1>6601 Park of Commerce Blvd</Line1><City>Boca Raton</City><State>FL</State><Zip>33487</Zip></Address></Addresses></CppEchoPersonInfoRequest>", result);
  8. DBGLOG("%s", result.str());
  9. return 0;
  10. }