- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个通过 HTTPS 发送数据的 Java 客户端,数据是 SOAP 1.1。我没有使用任何特定技术,例如 JAX-WS。使用的方法很简单。发送 SOAP 响应时,我从错误流中收到 500 错误。似乎当我通过 Java 运行时,500 错误响应被发回,而当在 Java 外部运行相同的 Soap Sonar 时,响应是完美的。看起来有些数据在到达 Web 服务之前就丢失了。如何调试?
代码如下:
public void sendSoap(String endpoint) {
HttpsURLConnection httpsUrlConnection = null;
URL url = new URL(endpoint);
httpsUrlConnection = (HttpsURLConnection) url.openConnection();
httpsUrlConnection.setRequestMethod("POST");
httpsUrlConnection.setDoOutput(true);
httpsUrlConnection.setRequestProperty("Content-Type", "application/xml");
SSLContext sc = SSLContext.getInstance("SSL");
sc.init(null, getTrustManager(), new SecureRandom());
httpsUrlConnection.setSSLSocketFactory(sc.getSecureSocketFactory());
httpsUrlConnection.connect();
try {
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(httpsUrlConnection.getOutputStream());
outputStreamWriter.write(buildData());
outputStreamWriter.flush();
outputStreamWriter.close();
InputStreamReader inputStreamReader = new InputStreamReader(httpsUrlConnection.getInputStream());
}
catch(Exception e) {
InputStream inputStream = httpsUrlConnection.getErrorStream();
inputStreamReader i = new InputStreamReader(inputStream);
BufferedReader j = new BufferedReader(i);
int read = j.read();
while(read != -1) {
String line = j.readLine();
System.out.println(line);
}
}
}
public String buildData() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append(new String("<?xml version='1.0' encoding='utf-8'?>"));
stringBuilder.append(new String("<soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:ns='http://somenamespace.com'>"));
stringBuilder.append(new String("<soap:Body>"));
stringBuilder.append(new String("<ns:service>"));
stringBuilder.append(new String("<ns:message>message</ns:message>"));
stringBuilder.append(new String("<ns:username>username</ns:username>"));
stringBuilder.append(new String("<ns:password>password</ns:password>"));
stringBuilder.append(new String("</ns:service>"));
stringBuilder.append(new String("</soap:Body>"));
stringBuilder.append(new String("</soap:Envelope>");
}
public TrustManager[] getTrustManager() {
TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() {
public void checkClientTrusted(X509Certificate[] xcs, String string) throws CertificateException {
}
public void checkServerTrusted(X509Certificate[] xcs, String string) throws CertificateException {
System.out.println("AuthType : " + " " + string);
for(int i = 0; i < xcs.length; i++) {
System.out.println("\t" + xcs[i].getIssuerX500Principal().getName());
System.out.println("\t" + xcs[i].getIssuerDN().getName());
}
}
public X509Certificate[] getAcceptedIssuers() {
return null;
}
}};
return trustAllCerts;
}
当从 buildData() 复制构造的 String 并通过 Soap Sonar 运行时,它起作用了。
编辑:
这是我从错误流中收到的:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>500 - Internal server error.</title>
<style type="text/css">
<!--
ody{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
ieldset{padding:0 15px 10px 15px;}
1{font-size:2.4em;margin:0;color:#FFF;}
2{font-size:1.7em;margin:0;color:#CC0000;}
3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
ackground-color:#555555;}
content{margin:0 0 0 2%;position:relative;}
content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
<div class="content-container"><fieldset>
<h2>500 - Internal server error.</h2>
<h3>There is a problem with the resource you are looking for, and it cannot be displayed.</h3>
</fieldset>
</div>
</div>
</body>
</html>
最佳答案
我认为您的直接问题出在服务器而不是客户端。 “内部服务器错误”表明服务器以某种方式错误处理了请求。您有权访问服务器和/或其日志吗?尝试弄清楚它在收到您的请求时到底在做什么。
关于Java SOAP 客户端数据丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23360316/
我在 Ubuntu 10.04 LTS 上运行 Eclipse Galileo。今天 Ubuntu 在我身上崩溃了,重新启动后,我发现 Eclipse 已经完全失去了 Java Perspective
我使用配置了 sonata_user 的 SonataAdminBundle在 config.yml : sonata_user: impersonating: route:
我有 ubuntu 14.04 但它不见了 docker exec sudo docker exec -it ubuntu_bash bash 我希望在现有正在运行的 docker 容器中运行交互式
我正在使用 Ubuntu 8.04/32 位(作为虚拟机)。在一个不是 min 的项目上执行一些 make 时,我得到了错误: g++:/usr/lib/libstdc++.a: 没有这样的文件或目录
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我正在尝试获取有关我在 UIImagePicker 中选择的视频的一些数据。 因此,当它进入 UIImagePicker 委托(delegate)方法(如下)时,我知道我需要使用信息字典中的 UIIm
我的网站最近被可能的黑客行为删除了。我上传了备份的文件夹和数据库,但现在我的 View 没有显示。其他一切都有效。我想不出有什么变化,只是上传了几天前的备份。 这些字段在 admin/build/vi
我执行以下操作来设置我的 session ,这是有效的,因为 echo 出现了。但是当我转到下一页或另一页时, session 不存在吗?我做错了什么? $session_start(); if ($
我试图在 BigQuery 中使用这段代码,显然是从 GA 中获取数据,但 _TABLE_SUFFIX 似乎有问题。错误显示“错误:无法识别的名称:_TABLE_SUFFIX at [12:3]”您能
输入:8(2 5 6 9 10 2 7 4)预期输出:(2 7 9 9 12 5 7 6)实际输出:(2 7 9 9) 这是我的大学作业,也是我第一次在这里提问。我不知道为什么,但 10 没有扫描,有
$('div'); // 我在上面的代码中遇到错误。在检查 .js 代码时,我找不到名为 $ 的函数,但根据文档,应该有一个。 最佳答案 试试 http://ajax.googleapis.co
以下简单代码的输出对我来说有点奇怪。它错过了在控制台上打印的 0 到 100 之间的一些数字。 谁能解释一下为什么省略打印?我对并发编程完全陌生。 import java.util.concurren
我正在学习 xamarin 以构建移动应用程序,但我对 Xamarin 和移动应用程序一无所知。我打开了一个空白的移动应用程序,其中有“Hello world”示例并编辑了一些文本,但我的应用程序图标
我正在将一些值存储到 sqlite 数据库中。因此,数据是作为字符串从文本字段收集的,然后转换为 double 并持久化。 这是我试过的 NSDecimalNumber 答案; value.answe
我有一个奇怪的案例。突然,其中一个表中的一些记录(这么多记录)丢失了。首先,我认为这是由我的 PHP 脚本中的错误引起的。但是,我检查了一下,我的脚本中没有DELETE操作,只有UPDATE。有谁知道
我正在复制 NSString来自 NSDictionary进入本地NSString使用 [[NSString alloc] initWithString:] ,对其进行处理(删除一些字符),然后将其发
当保存在根文件夹中时,我的非常基本的 html 页面保持样式。为一个组创建了一个新文件夹,但是当我将页面移动到该文件夹时,它们似乎失去了与 css 文件的连接。 认为问题可能出在链接上,因为它现在
我需要使用 OpenCV 训练一些图像。但问题是,我找不到 opencv_createsamples 程序。我以正常方式安装了 OpenCV,因为我使用的是 Windows 7。这个 opencv_c
我有一个绑定(bind)到 JTable 的 ArrayList。之后 bindingGroup.unbind(); bindingGroup.bind(); (完成刷新数据)我丢失了表格单元格渲
所以基本上我们只是丢失了一个 keystore 和备份 keystore 。但是我们可能知道原始 keystore 的密码。 我的问题是,如果我们知道原始 keystore 的密码,我们可以重新生成
我是一名优秀的程序员,十分优秀!