本文使用JAX-WS2.2编译webservice,并使用HttpUrlConnection的POST方式对wsdl发送soap报文进行请求返回数据,

对错误Server returned HTTP response code: 500 的解决方法进行简单分析。

问题描述:

由于课程需要博主需要自己写一个webservice并且通过soap进行请求,

于是使用JAX-WS编译了下面java代码生成webservice服务

生成webservice的java代码:

[java] view plain copy
  1. @WebService()
  2. public class HelloWorld {
  3. @WebMethod
  4. public String sayHelloWorldFrom(String from) {
  5. System.out.println("getMessage.");
  6. String result = "Hello, world, from " + from;
  7. System.out.println(result);
  8. return result;
  9. }
  10. public static void main(String[] argv) {
  11. System.out.println("Service is running...");
  12. Object implementor = new HelloWorld ();
  13. String address = "http://localhost:9000/HelloWorld";
  14. Endpoint.publish(address, implementor);
  15. }
  16. }

查看webservice

在网上查到的一个方法就是通过HttpUrlConnection进行请求,这边贴一下代码,应该很多人都有查到类似的方法

HttpUrlConnection请求实现代码:

[java] view plain copy
  1. public static void main(String[] args) throws Exception
  2. {
  3. String urlString = "http://localhost:9000/HelloWorld?wsdl";//自定义的wsdl服务
  4. URL url = new URL(urlString);
  5. HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();//打开连接
  6. String xmlFile = "soap_xml\\soap.xml";//要发送的soap格式文件
  7. File fileToSend = new File(xmlFile);
  8. byte[] buf = new byte[(int) fileToSend.length()];// 用于存放文件数据的数组
  9. new FileInputStream(xmlFile).read(buf);
  10. //Content-Length长度会自动进行计算
  11. httpConn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
  12. httpConn.setRequestMethod("POST");
  13. httpConn.setDoOutput(true);
  14. httpConn.setDoInput(true);
  15. OutputStream out = httpConn.getOutputStream();
  16. out.write(buf);
  17. out.close();
  18. InputStreamReader is = new InputStreamReader(httpConn.getInputStream());
  19. BufferedReader in = new BufferedReader(is);
  20. String inputLine;
  21. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(
  22. new FileOutputStream("result.xml")));// 将结果存放的位置
  23. while ((inputLine = in.readLine()) != null)
  24. {
  25. System.out.println(inputLine);
  26. bw.write(inputLine);
  27. bw.newLine();
  28. }
  29. bw.close();
  30. in.close();
  31. httpConn.disconnect();
  32. }

soap.xml代码如下:

[html] view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  3. <soap:Body>
  4. <sayHelloWorldFrom>
  5. <arg0>
  6. 撑撑
  7. </arg0>
  8. </sayHelloWorldFrom>
  9. </soap:Body>
  10. </soap:Envelope>

这段代码是网上找的,并没有错误,但是一运行就懵逼了,报了下面的错误

明明直接在浏览器查看wsdl接口是可以访问页面,但是返回500错误

错误代码:

[java] view plain copy
  1. Exception in thread "main" java.io.IOException: Server returned HTTP response code: 500 for URL: http://localhost:9000/HelloWorld?wsdl
  2. at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1839)
  3. at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1440)
  4. at soap.HelloSoap.main(HelloSoap.java:38)
  5. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  6. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  7. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  8. at java.lang.reflect.Method.invoke(Method.java:497)
  9. at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

错误语句指向

[java] view plain copy
  1. InputStreamReader is = new InputStreamReader(httpConn.getInputStream());

而网上其他大部分文章都没有给解决方法,或者给了其他的解决方法,我就在这边分享一下这个问题的详细解决方法。

解决流程(干货

首先应该确认具体的错误,通过下面的语句可以了解InputStream的错误详情。

[java] view plain copy
  1. InputStream is = httpConn.getErrorStream();    //通过getErrorStream了解错误的详情,因为错误详情也以XML格式返回,因此也可以用JDOM来获取。

这个语句其实也是从请求的服务方取回的错误信息,实质也是xml内容,用上面的BufferReader那一连串的语句解析出具体内容,然后输出查看,具体代码如下:

[java] view plain copy
  1. InputStream is = httpConn.getErrorStream();    //通过getErrorStream了解错误的详情,因为错误详情也以XML格式返回,因此也可以用JDOM来获取。
  2. InputStreamReader isr = new InputStreamReader(is,"utf-8");
  3. BufferedReader in = new BufferedReader(isr);
  4. String inputLine;
  5. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(
  6. new FileOutputStream("result.xml")));// 将结果存放的位置
  7. while ((inputLine = in.readLine()) != null)
  8. {
  9. System.out.println(inputLine);
  10. bw.write(inputLine);
  11. bw.newLine();
  12. bw.close();
  13. }
  14. in.close();

错误详情输出如下:

[html] view plain copy
  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
  3. <S:Body>
  4. <S:Fault xmlns:ns4="http://www.w3.org/2003/05/soap-envelope">
  5. <faultcode>
  6. S:Client
  7. </faultcode>
  8. <faultstring>
  9. 找不到{}sayHelloWorldFrom的分派方法
  10. </faultstring>
  11. </S:Fault>
  12. </S:Body>
  13. </S:Envelope>

在这边就要注意了!这个xml文件是第一个要点!

分析一下这段xml代码,可以看到有一个faultcode和faultstring,这就是解决这个问题的第一个突破口

灵光一闪百度了一下SOAP Fault(百科连接:http://baike.baidu.com/link?url=vehb23KNtl58uv2cwVDk8LYzDTUC4MHW9kmpaALl9qht9VXp8ASufe0QlpUrEELEApdKx80AMPzMsfCbUJtWiK)

这样就一目了然了,错误代码中faultcode所含的是Client,说明传递的消息有误,服务端是没有问题的。

于是从要发送的soap中查找错误。

这时候发现faultstring “{}找不到xxx的分派方法” 中有一个大括号,想不明白那个是什么,刚好查看了一下web服务的页面,就是最上面那张图片,发现服务名和端口名那边也有大括号{http://example/},然后也想起来之前看的其他xml代码中,要发送的方法的那个节点中有写命名空间(xmlns),就是网上那个getWeatherByCityName的那个例子,大家应该都有看过,我就不再这边费口舌了。

要是有仔细看我发送的soap.xml的代码,就可以看到sayHelloWorldFrom那个节点没有写命名空间,实在是查了这么多代码网上都没人提到,也没有查到关于soap报文的编写规范,还以为那边可以不用写,于是删掉了。

问题就出在这,我重新试了一下,先把命名空间随便写了个网址,再次运行后依然报错,但是大括号中就有了命名空间指向的网址了,于是把web服务里的大括号里的地址,即{http://example/}写上去,总算是请求成功并成功返回数据!

修改后的soap.xml(就是添加了命名空间)

[html] view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  3. <soap:Body>
  4. <m:sayHelloWorldFrom xmlns:m="http://example/">
  5. <arg0>
  6. 撑撑
  7. </arg0>
  8. </m:sayHelloWorldFrom>
  9. </soap:Body>
  10. </soap:Envelope>

大括号里的地址其实就是wsdl中denfinition里定义的targetNameSpace,具体解释我贴个链接吧大家自己看吧,反正知道问题出在这边总算是解决了。

WebService 之 WSDL文件 讲解 http://blog.itpub.net/20200170/viewspace-740276/

其实出了bug第一反应确实应该是找Error信息,这样才好针对性的进行处理,如果本文的方法还没办法帮你解决的话,那还是建议大家靠前面查看错误详情的方法去进行bug的查找~

主要内容到这边结束啦,希望能帮到大家~

附录

发送httpUrlConnection的java代码
[java] view plain copy
  1. package soap;
  2. import java.io.*;
  3. import java.net.HttpURLConnection;
  4. import java.net.URL;
  5. /**
  6. * Created by cc on 2016/10/21.
  7. */
  8. public class HelloSoap {
  9. public static void main(String[] args) throws Exception
  10. {
  11. String urlString = "http://localhost:9000/HelloWorld?wsdl";//wsdl文档的地址
  12. URL url = new URL(urlString);
  13. HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();//打开连接
  14. //String soapActionString = "http://localhost:9000/HelloWorld/sayHelloWorldFrom";//Soap 1.1中使用
  15. String xmlFile = "soap_xml\\soap.xml";//要发送的soap格式文件
  16. File fileToSend = new File(xmlFile);
  17. byte[] buf = new byte[(int) fileToSend.length()];// 用于存放文件数据的数组
  18. new FileInputStream(xmlFile).read(buf);
  19. //Content-Length长度会自动进行计算
  20. httpConn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
  21. //httpConn.setRequestProperty("soapActionString",soapActionString);//Soap1.1使用 其实完全可以不需要
  22. httpConn.setRequestMethod("POST");
  23. httpConn.setDoOutput(true);
  24. httpConn.setDoInput(true);
  25. OutputStream out = httpConn.getOutputStream();
  26. out.write(buf);
  27. out.close();
  28. if (httpConn.getResponseCode() == HttpURLConnection.HTTP_OK)
  29. {
  30. InputStreamReader is = new InputStreamReader(httpConn.getInputStream());
  31. BufferedReader in = new BufferedReader(is);
  32. String inputLine;
  33. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(
  34. new FileOutputStream("result.xml")));// 将结果存放的位置
  35. while ((inputLine = in.readLine()) != null)
  36. {
  37. System.out.println(inputLine);
  38. bw.write(inputLine);
  39. bw.newLine();
  40. }
  41. bw.close();
  42. in.close();
  43. }
  44. else{
  45. //如果服务器返回的HTTP状态不是HTTP_OK,则表示发生了错误,此时可以通过如下方法了解错误原因。
  46. InputStream is = httpConn.getErrorStream();    //通过getErrorStream了解错误的详情,因为错误详情也以XML格式返回,因此也可以用JDOM来获取。
  47. InputStreamReader isr = new InputStreamReader(is,"utf-8");
  48. BufferedReader in = new BufferedReader(isr);
  49. String inputLine;
  50. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(
  51. new FileOutputStream("result.xml")));// 将结果存放的位置
  52. while ((inputLine = in.readLine()) != null)
  53. {
  54. System.out.println(inputLine);
  55. bw.write(inputLine);
  56. bw.newLine();
  57. bw.close();
  58. }
  59. in.close();
  60. }
  61. httpConn.disconnect();
  62. }
  63. }

转载于:https://www.cnblogs.com/toSeeMyDream/p/6815857.html

java使用POST发送soap报文请求webservice返回500错误解析相关推荐

  1. python发送soap报文_python用http发送soap报文进行webservice接口调用

    最近学习了python用http发送soap报文进行webservice接口调用,从网上找了些资料,为了方便下次温习,在此留下代码片段,也望高手指点: #!/usr/bin/env python # ...

  2. Java工作笔记-发送SOAP协议请求

    这里搭建WebService采用JDKService那种最简单的方式,在此博文中不再说明. 以前说过,调用javaw的API封包是这样的: 这里模拟下. 客户端结构如下: 源码如下: Main2.ja ...

  3. 设置maxJsonLength,解决ajax通过POST方式调用.net的webService时,数据过长时服务器返回500错误的问题

    设置maxJsonLength,解决ajax通过POST方式调用.net的webService时,数据过长时服务器返回500错误的问题 参考文章: (1)设置maxJsonLength,解决ajax通 ...

  4. 微信小程序访问WebService接口返回500错误解决过程

    背景:     新手,第一次尝试使用微信小程序访问WebService接口.     使用Microsoft Visual Studio新建了一个WebService项目,发布后,按照常规流程部署到I ...

  5. ajax post 请求数据服务器返回500错误

    一 .问题描述: 转移一个程序到服务器上,之前的服务器一切正常,今天客户反应内容的分类不显示了,进入后台发现post请求返回500错误 二.解决方法: 报错示例代码: $.ajax({type:&qu ...

  6. WebService soap报文请求与响应报文解析

    需求 今日公司要做一个协同办公系统(OA),PC端已经完成.现在要做一个手机端网页端的.从登陆入手,需要向 服务端发送一段请求报文获取响应报文,对响应报文进行解析判断是否登录成功. 当然手机客户端发送 ...

  7. Java 用HTTP的方式发送JSON报文请求

    前言: 项目调用第三方接口时,通常是用socket或者http的通讯方式发送请求:http 为短连接,客户端发送请求都需要服务器端回送响应,请求结束后,主动释放链接.Socket为长连接:通常情况下S ...

  8. python发送soap报文_使用Python将带附件的XML发送到SOAP ws

    在过去的几周里,我一直在学习Python,并尝试将自定义XML发送到公共测试WS . 现在我觉得我没有取得任何进展 . 所以我现在需要帮助或任何建议 . 如果你使用SoapUI或其他方法(我试过-mz ...

  9. java post请求返回500错误_Ajax请求Json数据,报500错误,后台没有错误日志。

    post请求:http://localhost:9080/DataDiscoveryWeb/issueformcount/queryIssueTendencyDetail.xhtml?jobId=86 ...

最新文章

  1. 亿级系统的Redis缓存如何设计???
  2. Nvidia真的收购Arm了吗?
  3. Angular-cli生成组件修改css成less或sass
  4. 3.STM32中对EXTI_PE5_Config()函数的理解(自定义)之中断控制按键LED
  5. axure9 html文件使用ie打开图片无法显示_win7系统html文件如何打开 win7系统html文件打开方法【介绍】...
  6. idea+maven下jrebel的安装破解
  7. servlet返回数据给html_Servlet 简介
  8. 用python做一个简单的投票程序_以一个投票程序的实例来讲解Python的Django框架使...
  9. 德国力挺华为:建5G网络不排除任何设备厂商
  10. 华视读卡器多浏览器插件_翻遍Chrome商店,这9款插件值得安装
  11. java标签不显示文字_此程序在运行后,窗体上不显示标签的文字,也不显示图标,我自己检查也没发现什么问题,请大神帮帮忙看看我哪个地方有问题?...
  12. Android应用程序访问linux驱动第二步:实现并测试hardware层
  13. vscode 折叠/展开所有区域代码快捷键
  14. H265 CTU、CU、PU、TU划分的特点及要求
  15. 软件工程的6个阶段以及成果精简版
  16. 华为交换机console口如何设置密码
  17. win10下java的下载、安装和配置环境教程,超级详细
  18. iOS 手机淘宝 自动创建一个人的群聊 实现源码 hook 代码源码
  19. linux查看usb文件,linux lsusb查看USB信息
  20. 网页导出pdf不完整_网页文本无法复制?学会这3个套路,一分钟帮你突破限制...

热门文章

  1. 为什么现在还有很多人喜欢在银行存定期?
  2. 每天晚上坚持喝一杯无糖燕麦会怎样?
  3. 生意人没有“攀比”的目标,会过的很迷茫
  4. Since WWDC released the first developer
  5. Windows下Redis的启动命令
  6. SQL Server中的表变量
  7. ssis sql_SSIS OLE DB来源:SQL命令与表或视图
  8. sql用于字符串的聚合函数_SQL字符串函数用于数据整理(争用)
  9. sql server表分区_介绍分区表SQL Server增量统计信息
  10. SQL Server数据库迁移–将数据库克隆到另一个排序规则