跟踪XML请求/响应与JAX-WS跟踪XML请求/响应与JAX-WS(Tracing XML req

2019-05-08 20:46发布

有没有一种简单的方法(又名:不使用代理),以获得访问原始的请求/响应XML与JAX-WS参考实现发布一个Web服务(在JDK 1.5和更好地包括一个)? 如果能够做到这一点通过代码是什么,我需要做的。 只是有它记录到文件中通过巧妙的日志记录配置将是很好的,但远远不够。

我知道其他更复杂和完整的框架存在,可能做到这一点,但我想保持尽可能简单和轴,CXF等所有补充一点,我想避免相当大的开销。

谢谢!

Answer 1:

以下选项使所有通信到控制台的日志记录(从技术上说,你只需要其中的一个,但是这取决于你使用的库,所以将所有四是更安全的选择)。 可以作为命令行参数使用-D或作为环境变量如众议员写设置在这样的代码的例子中,或。

System.setProperty("com.sun.xml.ws.transport.http.client.HttpTransportPipe.dump", "true");
System.setProperty("com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump", "true");
System.setProperty("com.sun.xml.ws.transport.http.HttpAdapter.dump", "true");
System.setProperty("com.sun.xml.internal.ws.transport.http.HttpAdapter.dump", "true");

见问题时出现的错误与JAX-WS跟踪XML请求/响应的详细信息。



Answer 2:

这里是原代码的解决方案(放在一起感谢stjohnroe和Shamik):

Endpoint ep = Endpoint.create(new WebserviceImpl());
List<Handler> handlerChain = ep.getBinding().getHandlerChain();
handlerChain.add(new SOAPLoggingHandler());
ep.getBinding().setHandlerChain(handlerChain);
ep.publish(publishURL);

凡SOAPLoggingHandler是(从链接的例子撕开):

package com.myfirm.util.logging.ws;

import java.io.PrintStream;
import java.util.Map;
import java.util.Set;

import javax.xml.namespace.QName;
import javax.xml.soap.SOAPMessage;
import javax.xml.ws.handler.MessageContext;
import javax.xml.ws.handler.soap.SOAPHandler;
import javax.xml.ws.handler.soap.SOAPMessageContext;

/*
 * This simple SOAPHandler will output the contents of incoming
 * and outgoing messages.
 */
public class SOAPLoggingHandler implements SOAPHandler<SOAPMessageContext> {

    // change this to redirect output if desired
    private static PrintStream out = System.out;

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

    public boolean handleMessage(SOAPMessageContext smc) {
        logToSystemOut(smc);
        return true;
    }

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

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

    /*
     * Check the MESSAGE_OUTBOUND_PROPERTY in the context
     * to see if this is an outgoing or incoming message.
     * Write a brief message to the print stream and
     * output the message. The writeTo() method can throw
     * SOAPException or IOException
     */
    private void logToSystemOut(SOAPMessageContext smc) {
        Boolean outboundProperty = (Boolean)
            smc.get (MessageContext.MESSAGE_OUTBOUND_PROPERTY);

        if (outboundProperty.booleanValue()) {
            out.println("\nOutbound message:");
        } else {
            out.println("\nInbound message:");
        }

        SOAPMessage message = smc.getMessage();
        try {
            message.writeTo(out);
            out.println("");   // just to add a newline
        } catch (Exception e) {
            out.println("Exception in handler: " + e);
        }
    }
}


Answer 3:

起tomcat之前,设置JAVA_OPTS在Linux中ENVS如下。 然后启动Tomcat。 您将看到的请求和响应catalina.out文件中。

export JAVA_OPTS="$JAVA_OPTS -Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump=true"


Answer 4:

设置以下系统属性,这将支持XML日志记录。 也可以使用Java或配置文件进行设置。

static{
        System.setProperty("com.sun.xml.ws.transport.http.client.HttpTransportPipe.dump", "true");
        System.setProperty("com.sun.xml.ws.transport.http.HttpAdapter.dump", "true");
        System.setProperty("com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump", "true");
        System.setProperty("com.sun.xml.internal.ws.transport.http.HttpAdapter.dump", "true");
    }

控制台日志:

INFO: Outbound Message
---------------------------
ID: 1
Address: http://localhost:7001/arm-war/castService
Encoding: UTF-8
Http-Method: POST
Content-Type: text/xml
Headers: {Accept=[*/*], SOAPAction=[""]}
Payload: xml
--------------------------------------
INFO: Inbound Message
----------------------------
ID: 1
Response-Code: 200
Encoding: UTF-8
Content-Type: text/xml; charset=UTF-8
Headers: {content-type=[text/xml; charset=UTF-8], Date=[Fri, 20 Jan 2017 11:30:48 GMT], transfer-encoding=[chunked]}
Payload: xml
--------------------------------------


Answer 5:

这样做有程序,如在其他答案中描述的各种方式,但他们具有相当的侵入性的机制。 但是,如果你知道你正在使用的JAX-WS RI(又名“地铁”),那么你可以在配置级别做到这一点。 看到这里的说明如何做到这一点。 没有必要招惹你的应用程序。



Answer 6:

//该解决方案提供了一种编程的处理程序添加到Web服务CLIEN W / O的XML配置

//查看完整的文档在这里: http://docs.oracle.com/cd/E17904_01//web.1111/e13734/handlers.htm#i222476

//创建一个实现SOAPHandler新类

public class LogMessageHandler implements SOAPHandler<SOAPMessageContext> {

@Override
public Set<QName> getHeaders() {
    return Collections.EMPTY_SET;
}

@Override
public boolean handleMessage(SOAPMessageContext context) {
    SOAPMessage msg = context.getMessage(); //Line 1
    try {
        msg.writeTo(System.out);  //Line 3
    } catch (Exception ex) {
        Logger.getLogger(LogMessageHandler.class.getName()).log(Level.SEVERE, null, ex);
    } 
    return true;
}

@Override
public boolean handleFault(SOAPMessageContext context) {
    return true;
}

@Override
public void close(MessageContext context) {
}
}

//编程方式添加LogMessageHandler

   com.csd.Service service = null;
    URL url = new URL("https://service.demo.com/ResService.svc?wsdl");

    service = new com.csd.Service(url);

    com.csd.IService port = service.getBasicHttpBindingIService();
    BindingProvider bindingProvider = (BindingProvider)port;
    Binding binding = bindingProvider.getBinding();
    List<Handler> handlerChain = binding.getHandlerChain();
    handlerChain.add(new LogMessageHandler());
    binding.setHandlerChain(handlerChain);


Answer 7:

注入SOAPHandler到端点接口。 我们可以追踪的SOAP请求和响应

利用程序实现SOAPHandler

ServerImplService service = new ServerImplService();
Server port = imgService.getServerImplPort();
/**********for tracing xml inbound and outbound******************************/
Binding binding = ((BindingProvider)port).getBinding();
List<Handler> handlerChain = binding.getHandlerChain();
handlerChain.add(new SOAPLoggingHandler());
binding.setHandlerChain(handlerChain);

通过添加声明 @HandlerChain(file = "handlers.xml")标注你的端点接口。

handlers.xml

<?xml version="1.0" encoding="UTF-8"?>
<handler-chains xmlns="http://java.sun.com/xml/ns/javaee">
    <handler-chain>
        <handler>
            <handler-class>SOAPLoggingHandler</handler-class>
        </handler>
    </handler-chain>
</handler-chains>

SOAPLoggingHandler.java

/*
 * This simple SOAPHandler will output the contents of incoming
 * and outgoing messages.
 */


public class SOAPLoggingHandler implements SOAPHandler<SOAPMessageContext> {
    public Set<QName> getHeaders() {
        return null;
    }

    public boolean handleMessage(SOAPMessageContext context) {
        Boolean isRequest = (Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY);
        if (isRequest) {
            System.out.println("is Request");
        } else {
            System.out.println("is Response");
        }
        SOAPMessage message = context.getMessage();
        try {
            SOAPEnvelope envelope = message.getSOAPPart().getEnvelope();
            SOAPHeader header = envelope.getHeader();
            message.writeTo(System.out);
        } catch (SOAPException | IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return true;
    }

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

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

}


Answer 8:

我张贴一个新的答案,因为我没有足够的声誉上所提供的一个评论安东尼奥 (参见: https://stackoverflow.com/a/1957777 )。

如果你想在一个文件中(例如,经由Log4j的)要打印的SOAP消息,可以使用:

OutputStream os = new ByteArrayOutputStream();
javax.xml.soap.SOAPMessage soapMsg = context.getMessage();
soapMsg.writeTo(os);
Logger LOG = Logger.getLogger(SOAPLoggingHandler.class); // Assuming SOAPLoggingHandler is the class name
LOG.info(os.toString());

请注意,在某些情况下,方法调用的writeTo()可能无法按预期的行为(参见: https://community.oracle.com/thread/1123104?tstart=0或https://www.java.net/node / 691073 ),因此下面的代码将这样的伎俩:

javax.xml.soap.SOAPMessage soapMsg = context.getMessage();
com.sun.xml.ws.api.message.Message msg = new com.sun.xml.ws.message.saaj.SAAJMessage(soapMsg);
com.sun.xml.ws.api.message.Packet packet = new com.sun.xml.ws.api.message.Packet(msg);
Logger LOG = Logger.getLogger(SOAPLoggingHandler.class); // Assuming SOAPLoggingHandler is the class name
LOG.info(packet.toString());


Answer 9:

您需要实现一个javax.xml.ws.handler.LogicalHandler,那么这个处理程序需要一个处理器配置文件,这反过来又通过@HandlerChain注释在您的服务端点(接口或实现)参考引用。 然后您可以通过输出的System.out的消息或在您而processMessage实现的记录器。

看到

http://publib.boulder.ibm.com/infocenter/wasinfo/v7r0/index.jsp?topic=/com.ibm.websphere.express.doc/info/exp/ae/twbs_jaxwshandler.html

http://java.sun.com/mailers/techtips/enterprise/2006/TechTips_June06.html



Answer 10:

你可以尝试把一个ServletFilter的web服务前,检查请求和响应去/从服务返回。

虽然你特别没有要求代理,有时我发现tcptrace足以看到那张连接。 这是一个简单的工具,无需安装,它确实表明了数据流,可以写入文件了。



Answer 11:

运行时 ,你可以简单地执行

com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.dump = true

转储是在类中定义的公共变种如下

public static boolean dump;


Answer 12:

我在你想改变的理解是正确/访问原始的XML信息?

如果是这样,你(或因为这是五岁了,未来的家伙)可能想看看提供的接口,是JAXWS的一部分。 客户端对应使用“调度”类完成。 无论如何,你不必添加处理程序或拦截器。 你仍然可以,当然。 缺点是这种方式,你是为建设的SOAPMessage负完全责任,但它很容易,如果这就是你想要的东西(像我一样),这是完美的。

下面是服务器端的例子(有点笨拙,它只是为试验) -

@WebServiceProvider(portName="Provider1Port",serviceName="Provider1",targetNamespace = "http://localhost:8123/SoapContext/SoapPort1")
@ServiceMode(value=Service.Mode.MESSAGE)
public class Provider1 implements Provider<SOAPMessage>
{
  public Provider1()
  {
  }

  public SOAPMessage invoke(SOAPMessage request)
  { try{


        File log= new File("/home/aneeshb/practiceinapachecxf/log.txt");//creates file object
        FileWriter fw=new FileWriter(log);//creates filewriter and actually creates file on disk

            fw.write("Provider has been invoked");
            fw.write("This is the request"+request.getSOAPBody().getTextContent());

      MessageFactory mf = MessageFactory.newInstance();
      SOAPFactory sf = SOAPFactory.newInstance();

      SOAPMessage response = mf.createMessage();
      SOAPBody respBody = response.getSOAPBody();
      Name bodyName = sf.createName("Provider1Insertedmainbody");
      respBody.addBodyElement(bodyName);
      SOAPElement respContent = respBody.addChildElement("provider1");
      respContent.setValue("123.00");
      response.saveChanges();
      fw.write("This is the response"+response.getSOAPBody().getTextContent());
      fw.close();
      return response;}catch(Exception e){return request;}


   }
}

您发布它,就像您的SEI,

public class ServerJSFB {

    protected ServerJSFB() throws Exception {
        System.out.println("Starting Server");
        System.out.println("Starting SoapService1");

        Object implementor = new Provider1();//create implementor
        String address = "http://localhost:8123/SoapContext/SoapPort1";

        JaxWsServerFactoryBean svrFactory = new JaxWsServerFactoryBean();//create serverfactorybean

        svrFactory.setAddress(address);
        svrFactory.setServiceBean(implementor);

        svrFactory.create();//create the server. equivalent to publishing the endpoint
        System.out.println("Starting SoapService1");
  }

public static void main(String args[]) throws Exception {
    new ServerJSFB();
    System.out.println("Server ready...");

    Thread.sleep(10 * 60 * 1000);
    System.out.println("Server exiting");
    System.exit(0);
}
}

或者你可以使用一个端点类吧。 希望有帮助。

哦,如果你想你不需要处理头之类的东西,如果你改变了服务模式,有效载荷(你只能获得SOAP体)。



Answer 13:

它指导您的使用这里列出的答案SOAPHandler是完全正确的。 这种方法的好处是,它可以与任何JAX-WS实现工作,因为SOAPHandler是JAX-WS规范的一部分。 然而,随着SOAPHandler的问题是,它含蓄地试图在内存中代表整个XML消息。 这可能会导致巨大的内存使用情况。 JAX-WS的各种实现都增加了自己的解决方法这一点。 如果你有大的请求或较大的响应工作,那么你需要考虑的专有方法之一。

既然你问“收录于JDK 1.5或更好的一个”我就什么正式名称为JAX-WS RI(又名地铁),这就是包含在JDK回答。

JAX-WS RI具有用于此特定的解决方案,其是在存储器使用方面很有效。

见https://javaee.github.io/metro/doc/user-guide/ch02.html#efficient-handlers-in-jax-ws-ri 。 不幸的是这个链接现在已经打破,但你可以找到它的Wayback机器。 我给下面的亮点:

地铁人早在2007年引入的额外的处理程序的类型, MessageHandler<MessageHandlerContext>它是专有的地铁站。 这是远远超过有效SOAPHandler<SOAPMessageContext>因为它不尝试做内存中的DOM表示。

下面是从原来的博客文章的关键文字:

的MessageHandler:

利用由JAX-WS规范提供了可扩展的处理器架构,并在RI好消息的抽象,我们引入了一个名为新的处理程序MessageHandler扩展Web服务应用程序。 的MessageHandler类似于SOAPHandler,除了它的是实现能存取MessageHandlerContext (MessageContext中的扩展)。 通过MessageHandlerContext一个可以访问该消息并使用消息API处理它。 正如我放在博客的标题,这个处理器可以让你上的消息,它提供了有效的方法来访问/处理消息不只是一个DOM基于消息的工作。 的处理程序的编程模型是相同的,并且消息处理程序可以用标准逻辑和SOAP处理程序进行混合。 我已经添加了JAX-WS RI 2.1.3样品展示使用的MessageHandler的登录信息,这里是从样品中的一个片段:

public class LoggingHandler implements MessageHandler<MessageHandlerContext> {
    public boolean handleMessage(MessageHandlerContext mhc) {
        Message m = mhc.getMessage().copy();
        XMLStreamWriter writer = XMLStreamWriterFactory.create(System.out);
        try {
            m.writeTo(writer);
        } catch (XMLStreamException e) {
            e.printStackTrace();
            return false;
        }
        return true;
    }

    public boolean handleFault(MessageHandlerContext mhc) {
        ..... 
        return true;
    }

    public void close(MessageContext messageContext) {    }

    public Set getHeaders() {
        return null;
    }
}

(从2007年的博客文章末尾报价)

不用说您的自定义处理程序, LoggingHandler在本例中,需要被添加到您的处理链产生任何影响。 这是一样的添加任何其他Handler ,所以你可以看看在其他答案这个网页,如何做到这一点的。

你可以找到一个完整的例子在地铁GitHub库 。



Answer 14:

与logback.xml配置文件,你可以这样做:

<logger name="com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe" level="trace" additivity="false">
    <appender-ref ref="STDOUT"/>
</logger>

将登录请求,像这样(取决于你的日志输出配置)的回应:

09:50:23.266 [qtp1068445309-21] DEBUG c.s.x.i.w.t.h.c.HttpTransportPipe - ---[HTTP request - http://xyz:8081/xyz.svc]---
Accept: application/soap+xml, multipart/related
Content-Type: application/soap+xml; charset=utf-8;action="http://xyz.Web.Services/IServiceBase/GetAccessTicket"
User-Agent: JAX-WS RI 2.2.9-b130926.1035 svn-revision#5f6196f2b90e9460065a4c2f4e30e065b245e51e
<?xml version="1.0" ?><S:Envelope xmlns:S="http://www.w3.org/2003/05/soap-envelope">[CONTENT REMOVED]</S:Envelope>--------------------

09:50:23.312 [qtp1068445309-21] DEBUG c.s.x.i.w.t.h.c.HttpTransportPipe - ---[HTTP response - http://xyz:8081/xyz.svc - 200]---
null: HTTP/1.1 200 OK
Content-Length: 792
Content-Type: application/soap+xml; charset=utf-8
Date: Tue, 12 Feb 2019 14:50:23 GMT
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">[CONTENT REMOVED]</s:Envelope>--------------------


Answer 15:

其中一个办法是不使用你的代码,但利用网络数据包嗅探器像醚类或Wireshark的可与作为有效载荷给它的XML消息捕获HTTP数据包,你可以让他们记录到文件左右。

但更复杂的方法是编写自己的消息处理程序。 你可以看看它在这里 。



Answer 16:

其实。 如果你看看HttpClientTransport的来源,你会发现,它也写邮件到java.util.logging.Logger中。 这意味着你可以在你的日志中看到这些消息了。

例如,如果你正在使用Log4J2所有你需要做的是以下几点:

  • 添加JUL-Log4J2桥到类路径
  • 设置com.sun.xml.internal.ws.transport.http.client包跟踪级别。
  • -Djava.util.logging.manager = org.apache.logging.log4j.jul.LogManager系统属性添加到您的一个应用启动命令行

完成这些步骤后,你开始在日志中看到的SOAP消息。



文章来源: Tracing XML request/responses with JAX-WS