Skip to main content
1-Visitor
July 27, 2016
Solved

Problems in Remote Access & Control Application ?

  • July 27, 2016
  • 8 replies
  • 4732 views

Hello Expert ,

I have facing a problem in Remote Access & Control Application ,

Error Like After click on Remote Access & Control  Icon in MashupRemote.PNG

Remote1.PNG

Overview of Project :

I want to access remote system from thingworx , for that i developed EMS application which is run on Remote device and it is working perfectly Below is the code

ClientConfigurator config = new ClientConfigurator();

  config.setUri(args[0]);

  config.setAppKey(args[1]);

  config.ignoreSSLErrors(true);

  // Ensure tunnels are enabled for this example

  config.tunnelsEnabled(true);

  try {

  ConnectedThingClient client = new ConnectedThingClient(config);

  VirtualThing myThing = new VirtualThing(ThingName, "Tunnel Example", client);

  client.bindThing(myThing);

  client.start();

  while (!client.isShutdown()) {

  Thread.sleep(5000);

  }

  } catch (Exception e) {

  e.printStackTrace();

  }

Above code is working and connecting to My Thingworx Below in figure show that connection property is true.

Remote2.PNG

All setting match with : Tunneling with ThingWorx and an Edge Device

But Facing a problem after click on Remote Device icon Shown Error like first Figure.

If you have any idea about this issue Please let me know.

Thanks,

Mayank

Best answer by mpatel-21

Thanks Ravi , I resolved the problem using "ThingWorx Asset Manager" ​Use Asset Remote Transfer things for Remote System from Windows machine to Thingworx Mashup.

8 replies

5-Regular Member
July 27, 2016

Mayank, I see that there's an extra / adding to the end of Thingworx in your URL. In your RemoteThing (with the Tunnel Template), navigate to the Configuration section and clear out the App URI if you have anything in that field.

mpatel-211-VisitorAuthor
1-Visitor
July 27, 2016
5-Regular Member
July 27, 2016

Can you post the configuration on your RemoteThing?