I'm creating an application where I use the jShell library:
When I close the application to StdOut I get the information. I do not know where it comes from.
So it looks like the data returned. The opened application uses UDP, this information is basically the port on which it is listening ..
What should I return an open application to this StdOut? Where or how to define the information returned by the app at closing.
THX
B4X:
Dim shl As Shell
shl.Initialize("shl", "java.exe" , Array As String("-jar", "admin.jar", 0))
shl.WorkingDirectory = "C:\matrix2\module_admin\Objects"
shl.Run(-1) 'set a timeout of 10 seconds
When I close the application to StdOut I get the information. I do not know where it comes from.
B4X:
Port=3662
So it looks like the data returned. The opened application uses UDP, this information is basically the port on which it is listening ..
What should I return an open application to this StdOut? Where or how to define the information returned by the app at closing.
THX