Post Reply 
HP Prime Pro (1)
10-10-2017, 07:40 AM
Post: #4
RE: HP Prime Pro (1)
Hello,

For things to work, both systems (the PC and the tablet) have to be connected on the same IP subnet.

How it works under the hood:
The con kit will 'advertise' its presense using UDP multicast every 1 second.
The Prime pro app is listening on the same UDP port and should receive the advertisement and show the network on the calcualtor entwork list.

If it does not, and both devices are on the same subnet, then it is most likely because the UDP messages are not being sent or received.

This might be either because the connection is not active 100% of the time on one of the 2 devices (which apparently can happen for power saving reasons), or because some security features are blocking them (either at a firewall or router level, on any of the 2 devices)...

It is unfortunately very hard to diagnose the exact root cause of the problem remotely :-(

If you are technicaly oriented, you might be able to list the ports used by your systems and see if you can see any network trafic.

The system is using port:38812.
As you can see from the code comment bellow, choosing an IP port is a big problem :-(
// Port selection: A BIG issue!
// Most advices from the net tels you to use a port <1024 as they are less likely to be blocked by network administrators
// However, for some reason, mac os has decided that only root process can listen on port <1024, so we have a conflict here.
// Luckily enough, in our case, we are only interested in LOCAL networking (same subnet in most cases), and sub-nets are usually
// handled by 'dumb' network hubs, which are usually not configured to block anything.
// as a reson, we should be safe enough using a port with a number > 1024.
// I used the data at https://en.wikipedia.org/wiki/List_of_TC...rt_numbers to find a 'large empty range' between 2 officially assigned ports and, sice that fell
// and use something aroudn the middle of it. Since the middle was a multiple of 100 (38800: more likely to be used by someone else), I added 12 to the result to get 38812.
// I then verified this port use and could not find anything.

Cyrille

Although I work for the HP calculator group, the views and opinions I post here are my own. I do not speak for HP.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
HP Prime Pro (1) - Davidro - 10-07-2017, 11:22 PM
RE: HP Prime Pro (1) - Davidro - 10-09-2017, 12:39 PM
RE: HP Prime Pro (1) - cyrille de brébisson - 10-10-2017 07:40 AM
RE: HP Prime Pro (1) - toml_12953 - 10-10-2017, 11:06 AM
RE: HP Prime Pro (1) Solved - Davidro - 10-14-2017, 10:18 PM
RE: HP Prime Pro (1) - Mic_Dec - 10-14-2017, 11:31 PM
RE: HP Prime Pro (1) - toml_12953 - 10-15-2017, 01:41 AM



User(s) browsing this thread: 1 Guest(s)