AdvancedHMI Software
General Category => Support Questions => Topic started by: ddddd13 on September 10, 2020, 07:01:07 PM
-
I am trying to get SimpleWebServer to work. I looked on line and it showed how to diagnose connection problems, with a breakpoint. That is well and good if you are debugging the program, but after you have compiled it and try to run it on a different machine, it is a problem. I tried adding a consolewriteline to the SimpleWebServer code as follows.
Dim LocalComputerName As String = System.Net.Dns.GetHostName() '* same as My.Computer.Name
Dim localAddr As System.Net.IPAddress = GetIPv4Address(LocalComputerName)
Console.WriteLine("address ", localAddr)
If localAddr Is Nothing Then
localAddr = System.Net.IPAddress.Parse("127.0.0.1")
End If
But I never see anything. I have also tried.
Mainform.RichTextbox3.text=("address ", localAddr)
That gives me errors. Any ideas?
Dave
-
You can probably benefit from this topic:
https://www.advancedhmi.com/forum/index.php?topic=2630.0
-
Yes, I understand the break points, and I used them to diagnose the code and find the IP address on the computer the code was written on. However that does not help me with the computer the code will run on.
This would be a great candidate for a new component property, ActualAddress. I Envision a simple line of code
Richtextbox1.text=SimpleWebServer1.ActualAddress
This would show the actual IP address no matter what machine the program was running on.
Dave
-
I found the following online. It gets the IP addresses on the computer and displays them in Rich Text Box 3.
Dim GetIPv4Address As String
GetIPv4Address = String.Empty
Dim strHostName As String = System.Net.Dns.GetHostName()
Dim iphe As System.Net.IPHostEntry = System.Net.Dns.GetHostEntry(strHostName)
For Each ipheal As System.Net.IPAddress In iphe.AddressList
If ipheal.AddressFamily = System.Net.Sockets.AddressFamily.InterNetwork Then
GetIPv4Address = ipheal.ToString()
End If
RichTextBox3.Text = RichTextBox3.Text & GetIPv4Address & vbCrLf
Next
Dave
-
Now it leads me to another question. How would the following be able to find my computer as there may be thousands of computers with that same ip address and port.
http://192.168.1.2:8080
Dave
-
You have 1000s of computers with the same IP in your network?!?
-
No. The idea is to be able to type in the web address on a cell phone to be able to see what is going on with the HMI. That is not the same network.
Dave
-
I understood the idea, trying to spur some thought. So, since you will only have one unique IP on your network, that's how you will find it.
-
You may want to look into hostnames.
-
192.168 is classified as a private network.
Unless you are directly connected to that network, accessing it from public networks would require either a VPN or server to allow connecting to it.