Skip to content
Advertisement

Tag: nginx

How do I get OpenJDK 16 to talk with an SSL enabled nginx server?

I’m running a spring boot application that needs to make an https call to an nginx server. The application is running on CentOS 7 with OpenJDK 16. Following this more or less, I gathered a list of all the ciphers available to the JVM: In nginx, I have the following: I’ve tried every one of the ciphers available to my

Header sent from Java changes it name on PHP side

I am sending X-Auth-HMAC header from Java using HttpClient to Nginx + PHP-FPM combo: But on PHP side in $_SERVER variable among all headers i get: How could X-Auth-HMAC become HTTP_X_AUTH_HMAC ? Answer PHP formats HTTP headers in the $_SERVER variable according to RFC 3875 (the CGI 1.1 spec). Specifically section 4.1.18: Meta-variables with names beginning with HTTP_ contain values

Connecting to webservice results in com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 200: OK

I made a wsdl using sun-jaxws. I created a web service client in Netbeans, and successfully called the wsdl web service. Then I configured my nginx server to access the web service by https. When I call the service over https I get the following error: com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 200: OK My wsdl is available by

Advertisement