我尝试使用IBM Java(1.6)创建后API REST调用,该API是Websphere服务器7(应用程序服务器)的现成的。建立连接时会抛出
线程“主”中的异常java.net.SocketException:java.lang.ClassNotFoundException:找不到指定的类com.ibm.websphere.ssl.protocol.SSLSocketFactory
按照这些链接中的这些步骤进行操作
解决此问题后,在发布请求时会引发
线程“ main”中的异常javax.net.ssl.SSLHandshakeException:收到致命警报:handshake_failure
相同的代码可以与 Oracle Java(1.6)
正常工作下面的代码是我尝试过的
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.ProtocolException;
import java.net.URL;
import java.security.Security;
public class POST {
public static void main(String[] args){
try {
POSTRequest();
} catch (IOException e) {
System.out.println("Error" + e);
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static void POSTRequest() throws IOException {
Security.setProperty("ssl.SocketFactory.provider", "com.ibm.jsse2.SSLSocketFactoryImpl");
Security.setProperty("ssl.ServerSocketFactory.provider", "com.ibm.jsse2.SSLServerSocketFactoryImpl");
System.out.println("Begin Post Request");
final String POST_PARAMS = "{\n" + "\"userId\": 151,\r\n" +
" \"id\": 101,\r\n" +
" \"title\": \"VM Title\",\r\n" +
" \"body\": \"Test Body\"" + "\n}";
System.out.println(POST_PARAMS);
URL obj = new URL("https://jsonplaceholder.typicode.com/posts");
HttpURLConnection postConnection = (HttpURLConnection) obj.openConnection();
postConnection.setRequestMethod("POST");
postConnection.setRequestProperty("userId", "a1bcdefgh");
postConnection.setRequestProperty("Content-Type", "application/json");
postConnection.setDoOutput(true);
OutputStream os = postConnection.getOutputStream();
os.write(POST_PARAMS.getBytes());
os.flush();
os.close();
int responseCode = postConnection.getResponseCode();
System.out.println("POST Response Code : " + responseCode);
System.out.println("POST Response Message : " + postConnection.getResponseMessage());
if (responseCode == HttpURLConnection.HTTP_CREATED) { //success
BufferedReader in = new BufferedReader(new InputStreamReader(
postConnection.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in .readLine()) != null) {
response.append(inputLine);
} in .close();
// print result
System.out.println(response.toString());
} else {
System.out.println("POST NOT WORKED");
}
}
}
Post_API.txt 显示Post_API.txt。
请建议我解决此问题。
答案 0 :(得分:4)
handshake_failure
通常与不匹配的SSL / TLS协议或密码套件有关。
但是,在这种情况下,如果您查看Qualys SSL tester for this site,则返回的4台服务器显示Java 6将由于不支持的SNI而失败。
所以我猜想Oracle Java 6具有一些不同的默认SSL设置,或者有一些设置可以覆盖默认行为,或者WebSphere Java 6是Java 6的较早修订级别,或者是两个Java的序列TLS级别和密码套件的协商方式不同。
还要注意WebSphere 7 is now out of support和Java 6都是如此。
答案 1 :(得分:4)
您可以尝试在提交给Web服务的请求中设置协议。
System.setProperty(“https.protocols”, “TLSv1,TLSv1.1,TLSv1.2”);
此外,要注意的是修订包的版本和WebSphere中使用的Java版本。 WebSphere使用与安装程序捆绑在一起的自己的Java版本。
如果安装的Java版本较低,则可能需要升级Java版本。