Closed LordMax2 closed 6 months ago
It seems to be that theres a lot of null in the frontend, is there something missing in the docker build? Or browser?
Hi Max,
I removed the ssl_* parameters and changed baseuri to 0.0.0.0 (in stead of localhost) in the file Server/src/config/config.xml
<commandProcessor classname="org.openas2.cmd.processor.RestCommandProcessor"
enabled="$properties.restapi.command.processor.enabled$"
baseuri="http://0.0.0.0:8443"
userid="userID"
password="pWd" />
Rebuild the whole and check if it works for you.
I had the same issue and @Maef 's solution works for me. Thanks
SSL doesn't work on localhost due to lack of signed SSL Certificates. Also most browsers limit connections from Non-SSL to SSL sites due to privacy concerns.
If you are planning to deploy the WebUI on the wild I would recommend using SSL + domain names. If you are planning to testing it on Localhost disable SSL
On Wed, May 31, 2023 at 8:47 AM Tobias Leyland @.***> wrote:
I had the same issue and @Maef https://github.com/Maef 's solution works for me. Thanks
— Reply to this email directly, view it on GitHub https://github.com/OpenAS2/OpenAs2App/issues/320#issuecomment-1570170010, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2QND6QSZGOUCUGPORMFU3XI44VTANCNFSM6AAAAAAYS3ZRYY . You are receiving this because you are subscribed to this thread.Message ID: @.***>
-- Javier Munoz
CEO
Greicodex Software
+58 2127629120 <+58+2127629120> @.*** www.greicodex.com Av Francisco Solano, Centro Solano Plaza, Oficina PHA, Caracas, Venezuela
SSL doesn't work on localhost due to lack of signed SSL Certificates. Also most browsers limit connections from Non-SSL to SSL sites due to privacy concerns. If you are planning to deploy the WebUI on the wild I would recommend using SSL + domain names. If you are planning to testing it on Localhost disable SSL … On Wed, May 31, 2023 at 8:47 AM Tobias Leyland @.> wrote: I had the same issue and @Maef https://github.com/Maef 's solution works for me. Thanks — Reply to this email directly, view it on GitHub <#320 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2QND6QSZGOUCUGPORMFU3XI44VTANCNFSM6AAAAAAYS3ZRYY . You are receiving this because you are subscribed to this thread.Message ID: @.> -- Javier Munoz CEO Greicodex Software +58 2127629120 <+58+2127629120> @.*** www.greicodex.com Av Francisco Solano, Centro Solano Plaza, Oficina PHA, Caracas, Venezuela
I think that the README should be modified slightly to declare this info, I'm happy to open a PR for this.
Please go ahead with a PR - that would be appreciated
Hi!
I have the docker container running on a windows machine, it seems to boot up right both the server and the WebUI, but when I try to login to the docker container I get the error:
xhr.js:187 GET http://127.0.0.1:8443/api/ net::ERR_EMPTY_RESPONSE
The commands I run are:
docker run -it --rm -p 4080:10080 -p 4081:10081 -p 8443:8443 openas2:latest
(net host and -p doesnt seem to be compatible together, can they reach each other anyways?)docker run --rm -p 8080:80 openas2_webui:latest
Heres the RUN output from the Server:
And here is the code output for the WebUI:
Thanks in advance! Best regards Max