Hi Dustin,
The Ptrs are "smart points" used in the C++ mapping; in Java, there is no need for smart pointers (Java references are already 'smart'), so there is no Ptr.
As cnhome pointed out, the issue here is that you didn't provide configuration for your object adapter--at a minimum, you need to set the .Endpoints property, for example:
Code:
#Ice config file
MonitorAdapter.Endpoints=tcp -h * -p 10000
Alternatively (if you don't want to write any config), you could use createObjectAdapterWithEndpoints.
Best regards,
Bernard