webservice
文章平均质量分 64
iteye_8771
这个作者很懒,什么都没留下…
展开
-
使用Cxf 做的服务器中调用时的一个异常解决
异常如下Caused by: org.apache.cxf.binding.soap.SoapFault: "http://schemas.xmlsoap.org/wsdl/", the namespace on the "definitions" element, is not a valid SOAP version. at org.apache.cxf.binding.so...原创 2011-11-09 17:44:15 · 375 阅读 · 0 评论 -
把输入流全部读到一个数组中
现在列举两个方法 写道public static byte[] readInputStream(InputStream inputStream) { ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); byte[] buffer = new byte[16*1024]; try { int bytesRea...原创 2011-11-17 15:49:11 · 325 阅读 · 0 评论