java.io.IOException: Server returned HTTP response code: 500 for URL: http://physics.whu.edu.cn/show.asp?id=278 java
java.io.IOException: Server returned HTTP response code: 403 for URL spring
可是本身却能够用浏览器访问,发现多是服务器对咱们这种java程序屏蔽了。 apache
由于服务器的安全设置不接受Java程序做为客户端访问,解决方案是设置客户端的User Agent 数组
url = new URL("http://physics.whu.edu.cn/show.asp?id=278");
HttpURLConnection connection = (HttpURLConnection) url.
openConnection();
connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)"); 浏览器
这样就能够访问了。 安全
Exception in thread "main" com.caucho.hessian.client.HessianConnectionException: 500: java.io.IOException: Server returned HTTP response code: 500 for URL: http://xx:8088/hessian/testServlet
这是你引用的jar包引发的,若是你使用上面的例子,而使用hessian-3.1.5.jar或更高版本的包就会出现上述错误。更换hessian-3.0.20.jar如下的包就能够了。
至于具体的缘由我也没有调查过。 服务器
运行客户端程序,抛出异常: dom
Exception in thread "main" com.caucho.hessian.client.HessianConnectionException: 500: java.io.IOException: Server returned HTTP response code: 500 for URL: http://127.0.0.1:8080/htest/hello
at com.caucho.hessian.client.HessianProxy.invoke(HessianProxy.java:202)
at $Proxy0.getPerson(Unknown Source)
at example.BasicClient.main(BasicClient.java:25) 测试
查看服务器日志,获得异常信息:
java.lang.IllegalStateException: Serialized class example.Person must implement java.io.Serializable
at com.caucho.hessian.io.SerializerFactory.getDefaultSerializer(SerializerFactory.java:262)
at com.caucho.hessian.io.SerializerFactory.getSerializer(SerializerFactory.java:234)
at com.caucho.hessian.io.Hessian2Output.writeObject(Hessian2Output.java:406)
... ui
异常提示 example.Person 必须实现 java.io.Serializable 接口。
(2)Serializable 和序列化
对于简单数据类型,如int, double, char,数组等,以及经常使用的一些类型,如String,java.util.Date,List, Map等,Hessian 自己对其进行了特殊处理,也就是 Hessian 对其进行了序列化操做,可是 Hessian 不可能了解其余的类以及在您的应用程序中使用的那些类。对于这些类,Hessian 则要求这些类自己可以被序列化,也就是要求这些必须实现 Serializable 接口。
(3)正确的作法
让 Person 实现 Serializable 接口,则 Person.java 应该被修改为:
package example;
import java.io.Serializable;
import java.util.Date;
public class Person implements Serializable{
private int id = 0;
private String name = "";
private Date birthday = null;
...
从新启动 Web 服务器,就能够成功运行客户端程序了。
1,org.springframework.remoting.RemoteAccessException: Cannot access Hessian service at [http://61.152.162.173/remote/remoteService];
出现这个异常通常是由于服务端操做出现异常引发的
2,com.caucho.hessian.io.HessianProtocolException: 501: java.io.IOException: Server returned HTTP response code: 501 for URL: http://61.152.162.173/remote/remoteService
出现这个缘由,多是由于代理问题(个人机器是经过squid代理上网的,并非经过路由器),501服务器没法提供对请求中所要求功能的支持。若是服务器没法识别请求方法就会回应此状态代码,这意味着不能回应请求所要求的任何资源。
3,org.springframework.remoting.RemoteConnectFailureException: Cannot connect to Hessian service at http://127.0.0.1:8080/remote/remoteService]; nested exception is java.net.ConnectException: Connection refused: connect
链接不上hessian服务器.
4,客户端抛出的异常:
Exception in thread "main" java.io.IOException: Server returned HTTP response code: 500 for URL: http://192.168.100.196/remote/FileServlet
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1174)
服务端抛出的异常以下:
[org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/].[FileServlet]] - Servlet.service() for servlet FileServlet threw exception
com.caucho.hessian.io.HessianProtocolException: upload: expected end of call ('z') at '
解决:由于个人服务端要求上传的文件必须在userfiles目录下(代码:filePath.indexOf("userfiles");),判断我以前测试的文件没有放到该目录下,就出现了这种错误.
5,为何客户端是对象,到了服务端就是map了呢????? 缘由:个人list在上传前保存的是对象,经测试也不是map型,但到服务端从list获取的变成了map型,经分析是由于目录结构的缘由,个人客户端po放到了domain目录下,服务端po放到domainobject下,我是用netCourseInfo组装信息的,客户端和服务端这两个文件不一样(由于import的po的位置不同),因此形成服务端反序列化时出现问题.