From: rtrimana <rtrimana@uci.edu>
Date: Mon, 1 May 2017 15:50:15 +0000 (-0700)
Subject: Making sure that C++ RMI test works
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=71fb5f7626f0ff79e2cf215adc44be46ea0db0b5;p=iot2.git

Making sure that C++ RMI test works
---

diff --git a/iotjava/iotrmi/C++/basics/TestClassComplete_Stub.cpp b/iotjava/iotrmi/C++/basics/TestClassComplete_Stub.cpp
index 96827a2..d8f7b58 100644
--- a/iotjava/iotrmi/C++/basics/TestClassComplete_Stub.cpp
+++ b/iotjava/iotrmi/C++/basics/TestClassComplete_Stub.cpp
@@ -121,8 +121,8 @@ int main(int argc, char *argv[])
 	int portRecv = 6000;
 	const char* address = "localhost";
 	//const char* address = "192.168.2.191";	// RPi2
-	const char* skeletonAddress = "128.195.136.163";	// dc-2.calit2.uci.edu
-	//const char* skeletonAddress = "128.195.204.132";
+	//const char* skeletonAddress = "128.195.136.163";	// dc-2.calit2.uci.edu
+	const char* skeletonAddress = "128.195.204.132";
 	const char* callbackAddress = "128.195.204.132";	// dw-2.eecs.uci.edu (this machine)
 	//const char* skeletonAddress = "192.168.2.108";	// RPi1
 	//const char* callbackAddress = "192.168.2.191";	// RPi2
@@ -140,9 +140,9 @@ int main(int argc, char *argv[])
 	in.push_back(68);
 	vector<char> result = tcStub->getByteArray(in);
 	cout << "Test print: " << in[0] << endl;
-/*
-//	cout << "Getting return value from getShort(): " << tcStub->getShort(1234) << endl;
-	//cout << "Getting return value from getShort(): " << tcStub->getShort(4321) << endl;
+
+	cout << "Getting return value from getShort(): " << tcStub->getShort(1234) << endl;
+/*	//cout << "Getting return value from getShort(): " << tcStub->getShort(4321) << endl;
 	//cout << "Getting return value from getShort(): " << tcStub->getShort(5678) << endl;
 	cout << "==== CALLBACK ====" << endl;
 	CallBackInterface *cbSingle = new CallBack(2354);