#bounar-springboot
1 messages ยท Page 1 of 1 (latest)
Hi looking into this. Your code looks ok. What is the type of password? Is it a char array?
char[] password = "password".toCharArray();
What jdk version and what version of stripe-java are you using?
Also can you try "Disable Basic authentication for HTTPS tunneling":
https://www.oracle.com/java/technologies/javase/8u111-relnotes.html
java 1.8
Can you try setting jdk.http.auth.tunneling.disabledSchemes to an empty string?
jdk.http.auth.tunneling.disabledSchemes=true
jdk.http.auth.proxying.disabledSchemes=true
on properties file
but not working
jdk.http.auth.tunneling.disabledSchemes=""
jdk.http.auth.tunneling.disabledSchemes=
both not working
finally i found this trick
System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");
it's working for me
๐
thank you for help ๐
Of course!
No problem!