java 服务器 http请求,拦截服务器java中的HTTP请求

I need to implemented something like a filter or listener, that intercepts HTTP requests and retrieves the HTTP headers for various purposes.

I use Java, Jboss application server and web services. I want this filtering system to be performed prior to the Web Services call - was thinking about aspects but they do not hold the HTTP related stuff. After the filter, the service call should be carried out.

Jax-WS handlers don't work for me either as they only hold the SOAP payload.

Any ideas?

Thanks in advance.

解决方案

can you not create a servlet filter which intercepts all the requests coming to your webservice engine? If you are using Axis or anyother SOAP engine, I hope you should be able to create a filter that intercepts all the requests coming to the main servlet that the SOAP engine provides.

public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain) throws IOException,ServletException

{

HttpServletRequest httpRequest=(HttpServletRequest)request;

HttpServletResponse httpResponse=(HttpServletResponse)response;

Enumeration headerNames = httpRequest.getHeaderNames();

while(headerNames.hasMoreElements()) {

String headerName = (String)headerNames.nextElement();

out.println(headerName);

out.println(request.getHeader(headerName));

}

chain.doFilter(request,response);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值