gpt4 book ai didi

java - 如何获得真正的 Web 服务响应,而不是 403 错误?

转载 作者:行者123 更新时间:2023-11-29 09:07:39 24 4
gpt4 key购买 nike

我在从网络服务获取真实消息时遇到了一些问题。

访问过去工作正常,但一段时间后我再次尝试测试时,AXIS 2 返回 403 HTTP 错误。

org.apache.axis2.AxisFault: Transport error: 403 Error: Forbidden

我开始思考它可能是什么,所以我尝试通过 SOAP UI 访问它,它显示我的证书已过期。

这是我使用 SoapUI 得到的消息

The page requires a valid SSL client certificate
Your client certificate has expired or is not yet valid. A Secure Sockets Layer (SSL) client certificate is used for identifying you as a valid user of the resource.

该消息还有更多内容,我只是将其缩短以使帖子尽可能小。

好的,目前还没有问题,我只需要找到一种方法来通知用户他的证书可能已过期(或发生任何其他错误),而不是只向他显示 403 错误。

我尝试使用 JAX-WS 访问它,我得到了相同的消息,我得到的只是,我尝试查看异常,看看那里是否有任何隐藏信息,但没有运气。我得到的是:

com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 403: Forbidden
at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.checkStatusCode(Unknown Source)
at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.process(Unknown Source)
at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.processRequest(Unknown Source)
at com.sun.xml.internal.ws.transport.DeferredTransportPipe.processRequest(Unknown Source)
at com.sun.xml.internal.ws.api.pipe.Fiber.__doRun(Unknown Source)
at com.sun.xml.internal.ws.api.pipe.Fiber._doRun(Unknown Source)
at com.sun.xml.internal.ws.api.pipe.Fiber.doRun(Unknown Source)
at com.sun.xml.internal.ws.api.pipe.Fiber.runSync(Unknown Source)
at com.sun.xml.internal.ws.client.Stub.process(Unknown Source)
at com.sun.xml.internal.ws.client.sei.SEIStub.doProcess(Unknown Source)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(Unknown Source)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(Unknown Source)
at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(Unknown Source)

任何人都可以给我一些指示,说明我可以做些什么来获得真正的信息吗?这是我用来访问它的代码

    public static void main(String[] args){

try{
System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());

System.setProperty("javax.net.ssl.keyStoreType", "PKCS12");

System.clearProperty("javax.net.ssl.keyStore");
System.clearProperty("javax.net.ssl.keyStorePassword");
System.clearProperty("javax.net.ssl.trustStore");

System.setProperty("javax.net.ssl.keyStore", "myCertificatePath");
System.setProperty("javax.net.ssl.keyStorePassword", "myCertificatePassword");

System.setProperty("javax.net.ssl.trustStoreType", "JKS");
System.setProperty("javax.net.ssl.trustStore", "cacertsFilePath");

NfeRecepcao2 nfe = new NfeRecepcao2();

NfeDadosMsg dados = new NfeDadosMsg();
dados.getContent().add(getFileContent("C:\\teste.xml"));

NfeCabecMsg cabec = new NfeCabecMsg();
cabec.setCUF("35");
cabec.setVersaoDados("2.00");
Holder<NfeCabecMsg> header = new Holder<NfeCabecMsg>(cabec);
NfeRecepcao2Soap12 proxy = nfe.getNfeRecepcao2Soap12();
NfeRecepcaoLote2Result result = proxy.nfeRecepcaoLote2(dados, header);
for (Object o : result.getContent()){
System.out.println(o);
}
} catch (Exception e){
e.printStackTrace();
}

getFileContent 仅打开一个文件并从其内容生成一个字符串。

这里的任何指示都会有很大的帮助。提前谢谢大家

最佳答案

查看您收到的响应的一种方法是记录您的客户端发送和接收的 soap 请求和响应。

如果您使用的是 JAX-WS,那么

System.setProperty("Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump", true);

如果您使用的是 JAX-WS RI 客户端,那么

System.setProperty("Dcom.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump", true);

JAX-WS RI 库作为标准包含在 JDK 中(这是在 Java 6 中),然后 Sun 不得不重命名属性名称以包含“internal”。因此,如果您正在使用 JDK 附带的 JAX-WS RI,那么您必须确保将 internal 添加到属性名称中。

关于java - 如何获得真正的 Web 服务响应,而不是 403 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13988542/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com