一:首先来发布一个web service
package com.ws.service;
public interface iuserservice
{
public string getusername(string id);
}package com.ws.service;
import javax.jws.webmethod;
import javax.jws.webparam;
import javax.jws.webservice;
@webservice
public class userservice implements iuserservice
{
@webmethod
public string getusername(@webparam(name=”id”) string id)
{
return “user:” + id;
}
}package com.ws.service;
import javax.xml.ws.endpoint;
public class server
{
public static void main(string[] args)
{
endpoint.publish(“http://0.0.0.0:6633/api/v1/user”, new userservice());
system.out.println(“ws startup ok on port ” + 6633);
}
}ws的端口为6633
访问地址为:http://192.168.100.95:6633/api/v1/user?wsdl
然后,nginx的配置如下:
upstream webservice {
server 192.168.10.95:6633;
}
server {
listen 6633;
location / {
proxy_pass http://webservice;
}
}nginx地址为:192.168.2.123
然后访问代理地址:http://192.168.2.123:6633/api/v1/user?wsdl
结果如下
这里的地址明显错误。
解决方法如下
nginx配置改为:
upstream webservice {
server 192.168.100.95:6633;
}
server {
listen 6633;
location / {
proxy_set_header host $host:$server_port;
proxy_pass http://webservice;
}
}原因在于如果没有配置
proxy_set_header host $host:$server_port;则,nginx反向代理到后台,传的host http头为
host=webservice
以上就介绍了解决nginx反响代理web service的soap:address location问题,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。