Update of /cvsroot/smartwin/SmartWin/SmartSOAP/Tester1
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6321
Modified Files:
Main.cpp
Log Message:
Unicode
Index: Main.cpp
===================================================================
RCS file: /cvsroot/smartwin/SmartWin/SmartSOAP/Tester1/Main.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Main.cpp 30 Nov 2006 00:44:55 -0000 1.15
+++ Main.cpp 11 Jun 2007 01:11:25 -0000 1.16
@@ -70,7 +70,7 @@
// Then we create our SoapRequest
SoapRequest< HelloWorldSerializer, HelloWorldSender, HelloWorldReturnValue > soap(
- "localhost", // Which host is our WebService located at
+ _T("localhost"), // Which host is our WebService located at
_T("/Tester1Endpoint/CustomObjects.asmx"), // What is the PATH to our WebService
_T("SOAPAction:\"http://smartwin.org/SmartSOAP/WebServices/Test/CustomObject/HelloWorld\""), // What is the SOAPAction or basically the NAMESPACE of our WebService + the name of the function we're calling
80, // Which TCP/IP port is the WebService listening on
@@ -148,7 +148,7 @@
// Then we create our SoapRequest
SoapRequest< GetArrayOfStringsSerializer, GetArrayOfStringsSender, GetArrayOfStringsReturnValue > soap(
- "localhost", // Which host is our WebService located at
+ _T("localhost"), // Which host is our WebService located at
_T("/Tester1Endpoint/CustomObjects.asmx"), // What is the PATH to our WebService
_T("SOAPAction:\"http://smartwin.org/SmartSOAP/WebServices/Test/CustomObject/GetArrayOfStrings\""), // What is the SOAPAction or basically the NAMESPACE of our WebService + the name of the function we're calling
80, // Which TCP/IP port is the WebService listening on
@@ -235,7 +235,7 @@
// Then we create our SoapRequest
SoapRequest< GetCustomObjectSerializer, TestGetStuff, TestReturnStuff > soap(
- "localhost",
+ _T("localhost"),
_T("/Tester1Endpoint/CustomObjects.asmx"),
_T("SOAPAction:\"http://smartwin.org/SmartSOAP/WebServices/Test/CustomObject/GetCustomObject\""),
80,
@@ -305,7 +305,7 @@
// Then we create our SoapRequest
SoapRequest< GetDateTimeNowSerializer, GetDateTimeNowRequest, GetDateTimeNowResponse > soap(
- "localhost",
+ _T("localhost"),
_T("/Tester1Endpoint/CustomObjects.asmx"),
_T("SOAPAction:\"http://smartwin.org/SmartSOAP/WebServices/Test/CustomObject/GetDateTimeNow\""),
80,
|