madru Active Member Licensed User Longtime User Feb 25, 2019 #1 good morning, are the CommandLineArgs for debugging not supported using the Bridge ? getting this: java.lang.NumberFormatException: For input string: ""8090" "192.168.1.16" "80""
good morning, are the CommandLineArgs for debugging not supported using the Bridge ? getting this: java.lang.NumberFormatException: For input string: ""8090" "192.168.1.16" "80""
Erel B4X founder Staff member Licensed User Longtime User Feb 25, 2019 #2 Can you post the #CommandLineArgs line? Upvote 0
madru Active Member Licensed User Longtime User Feb 25, 2019 #3 #CommandLineArgs: "12345" "192.168.1.16" "80" works 'locally' ..... Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 25, 2019 #4 The quotes are not needed. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 25, 2019 #6 What is the output of this code: B4X: #CommandLineArgs: 12345 192.168.1.16 80 ... For Each a As String In Args Log(a) Next Upvote 0
What is the output of this code: B4X: #CommandLineArgs: 12345 192.168.1.16 80 ... For Each a As String In Args Log(a) Next
madru Active Member Licensed User Longtime User Feb 25, 2019 #7 12345 192.168.1.16 80 all in one line Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 25, 2019 #8 It should be set like this when using B4J-Bridge: B4X: #CommandLineArgs: 12345,192.168.1.16,80 Upvote 0