簡體   English   中英

Java CXF WS客戶端-gZip HTTP REQUEST HEADER被忽略

[英]Java CXF WS Client - gZip HTTP REQUEST HEADER being ignored

由於某種原因,我試圖在Java CXF WS客戶端BUT內的HTTP請求頭中設置/請求gZip。 我沒有回復gZipped回復。 這是我嘗試設置的方式。 我正在使用Apache CXF 2.3.2。 我想念什么?

public class LoggerXML implements SOAPHandler<SOAPMessageContext> {
    private String uniqueIdentifier;
    private String sessionId;

    public LoggerXML(String sessionId, String uniqueIdentifier) {
        this.sessionId = sessionId;
        this.uniqueIdentifier = uniqueIdentifier;
    }

    protected final void setLogStream(PrintStream ps) {
      //  out = ps;
    }

    public void init(Map c) {
        uniqueIdentifier = "";
    }

    public Set<QName> getHeaders() {
        return null;
    }

    public boolean handleMessage(SOAPMessageContext smc) {

        Boolean outboundProperty = (Boolean)
        smc.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY);
        if(outboundProperty){
            // Creating HTTP headers & setting gZip.
            Map<String, List<String>> headers = (Map<String, 
                                        List<String>>) smc.get(MessageContext.HTTP_REQUEST_HEADERS);
            if(headers == null){
                //System.out.println("LoggerXML.handleMessage: headers = null");
                headers = new HashMap<String, List<String>>();  
            }
            // Add HTTP headers to the web service request
            headers.put("Accept-Encoding", Collections.singletonList("gzip,deflate"));
            //headers.put("Content-Encoding", Collections.singletonList("gzip"));
            //headers.put("Accept-Encoding", Collections.singletonList("gzip"));

            smc.put(MessageContext.HTTP_REQUEST_HEADERS, headers);
            //smc.put("org.apache.cxf.transport.common.gzip.GZIPOutInterceptor.UseGzip","YES");

        }

        return true;
    }

    public boolean handleFault(SOAPMessageContext smc) {
        return true;
    }

    // nothing to clean up
    public void close(MessageContext messageContext) {
    }

    // nothing to clean up
    public void destroy() {
    }

// Other Methods....

}

該代碼對我有用

    // Get the underlying Client object from the proxy object of service interface
Client proxy = ClientProxy.getClient(stub);

   // Creating HTTP headers
Map<String, List<String>> headers = new HashMap<String, List<String>>();
headers.put("Accept-Encoding", Arrays.asList("gzip"));

    // Add HTTP headers to the web service request
proxy.getRequestContext().put(Message.PROTOCOL_HEADERS, headers);

請參閱: http : //singztechmusings.wordpress.com/2011/09/17/apache-cxf-how-to-add-custom-http-headers-to-a-web-service-request/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM