-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hi,
I continue to try to test BRAVA on a local instance. For now, I succeded to compile from master branch but I face some troubles to test my implementation of the BrAPI.
BRAVA runs well on http://localhost:8080/ and I can reach the interface and try to test my own server. My own server is located also on localhost and run on port 8000.
Then, I fill the form with the endpoint url of my BrAPI (http://127.0.0.1:8000/api/v2.1/) and select the 2.1 version of the BrAPI for testing.
But, unfortunately, I get a "can't connect to tested server" error when clicking on "Test it now !" button :
Concerning the logs I don't have much things to show :
-
Jetty display a single line :
77654 [qtp62096277-36] INFO de.ipk_gatersleben.bit.bi.bridge.brapicomp.testing.runner.TestItemRunner - New Request. URL: http://127.0.0.1:8000/api/v2.1/serverinfo
-
The browser console also doesn't show any message ...
-
On the server side, as expected, There isn't any log, the server is indeed not reached.
But as shown here :
The server URL is reachable, i can open it through a browser and display the result in my browser.
Sorry for this weak inforamtion, but do you have any clue of what can happen ?
Thanks for your help.
Additional information :
In the configuration file, I had to fill http.proxyHost (value=localhost) and http.proxyPort (value=80) as I get a NumberFormatException (traceback below)
java.lang.NumberFormatException: For input string: "" at java.lang.NumberFormatException.forInputString (NumberFormatException.java:65) at java.lang.Integer.parseInt (Integer.java:662) at java.lang.Integer.parseInt (Integer.java:770) at de.ipk_gatersleben.bit.bi.bridge.brapicomp.AppServletContextListener.contextInitialized (AppServletContextListener.java:66) at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized (ContextHandler.java:1040)