Apache Camel Java 和 XPath [英] Apache Camel Java and XPath

查看:26
本文介绍了Apache Camel Java 和 XPath的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我有一个带有多个命名空间的 Web 服务,我想通过一个 bean 路由它来对用户凭据进行一些检查.自从我使用 XPATH 已经很长时间了,所以我可能只是遇到了 PICNIC(椅子上的问题不在计算机时刻)错误.

So I have a web service with several namespaces that I would like to route through a bean to do some checking of user credentials. Its been a long time since I used XPATH so I might just be having a PICNIC(Problem In Chair Not In Computer Moment) error.

Web 服务消息将始终具有以下结构/模式:

The web service message will always have the following structure/pattern :

<Operation>
    <header with the head name space where the user credentials are stored>
    <record control>
    <objXX>
</Operation>

这是一个示例消息(SOAP UI):

Here is a example message(SOAP UI):

 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:list="http://www.insol.irix.com.au/IRIX_V1/Debtors/List" xmlns:head="http://www.insol.irix.com.au/IRIX_V1/Headers" xmlns:rec="http://www.insol.irix.com.au/IRIX_V1/RecordControl">
 <soapenv:Header/>
   <soapenv:Body>
      <list:ListDebtorReq>
         <head:MsgReqHdr>
            <head:MsgGUID>${=java.util.UUID.randomUUID()}</head:MsgGUID>
        <head:MsgDateTime>${=javax.xml.datatype.DatatypeFactory.newInstance().newXMLGregorianCalendar(GregorianCalendar.getInstance())}</head:MsgDateTime>
        <head:ConsumerSystemIDInfo>
           <head:ConsumerSystemID>ConsumerSystemID</head:ConsumerSystemID>
           <head:ConsumerSystemUserID>AgentX</head:ConsumerSystemUserID>
        </head:ConsumerSystemIDInfo>
        <head:SecCredInfo>
           <head:IRIXUserID>Some User ID</head:IRIXUserID>
           <head:IRIXPassword>Some Password</head:IRIXPassword>
        </head:SecCredInfo>
        <head:CryptoInfo>
           <head:DigitalSignatureInfo>
              <head:DigitalSignatureValue>verrantque per auras</head:DigitalSignatureValue>
              <head:DigitalSignatureAlgorithm>SHA-256</head:DigitalSignatureAlgorithm>
           </head:DigitalSignatureInfo>
        </head:CryptoInfo>
     </head:MsgReqHdr>
     <!--Optional:-->
     <rec:RecCntrl>
        <rec:StartRecordNumber>1</rec:StartRecordNumber>
        <!--Optional:-->
        <rec:NumberOfRecords>3</rec:NumberOfRecords>
     </rec:RecCntrl>
  </list:ListDebtorReq>
  </soapenv:Body>
</soapenv:Envelope>

所以基本上我希望能够创建一个 bean,该 bean 将能够查询 MsgReq 标头以获取所有用户名和密码数据.为了简化事情,我只是尝试查询 MsgGUID 并从那里开始工作.但是我似乎无法正确使用 xpath.由于我使用了多个命名空间,因此我将它们包含在骆驼上下文文件中,以确保它们可用.

So essentially I want to be able to create a bean that will be able to query the MsgReq header for all the user name and password data. To simplify things I am just trying to query the MsgGUID and work my way from there. However I cant seem to get the xpath right. Since I am using several namespaces I have included them in the camel context file just to make sure they are available.

这是我的骆驼语境:

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:camel="http://camel.apache.org/schema/spring"
   xsi:schemaLocation="
     http://www.springframework.org/schema/beans 
     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://camel.apache.org/schema/spring 
     http://camel.apache.org/schema/spring/camel-spring.xsd">
  <import resource="classpath:META-INF/spring/camel-cxf.xml" />
  <bean id="SecurityCheckBean" class="au.com.irix.insol.Security.IRIXSecurity"/>
  <camelContext xmlns="http://camel.apache.org/schema/spring"
   xmlns:list="http://www.insol.irix.com.au/IRIX_V1/Debtors/List" 
   xmlns:head="http://www.insol.irix.com.au/IRIX_V1/Headers" 
   xmlns:rec="http://www.insol.irix.com.au/IRIX_V1/RecordControl">
   <route>
    <from uri="cxf:bean:DebtorsService?dataFormat=PAYLOAD"/>    
    <bean ref="SecurityCheckBean"/>
   </route>
</camelContext>

</beans>

如您所见,我正在将 Web 服务生产者的传入消息运行到 SecurityCheckBean.我的 SecurityCheckBean 目前非常简单,请参阅下面的代码.

As you can see I am running the incoming message of the web service producer to the SecurityCheckBean. My SecurityCheckBean is super simple at the moment see code below.

  public class IRIXSecurity {



    public void CheckCredentials(


            @XPath("//head:MsgGUID") String msgGUID,
            @Body String body){


        System.out.println(body);
        System.out.println("Check Credentials Invoked");
        System.out.println(msgGUID);



    }
}

但是,当我通过soap UI发送发送请求时,出现以下异常:

However when I send a send a request via soap UI I get the following exception:

Invalid xpath: //head:MsgGUID. Reason: javax.xml.xpath.XPathExpressionException: net.sf.saxon.trans.XPathException: Prefix head has not been declared

那么我该如何检索这些信息呢?为什么即使我在我的 camel-context.xml 中声明了名称空间,它们也会被报告为丢失?

So how do I go about retrieving this information? Why even though I have declared the name spaces in my camel-context.xml they are reported as missing?

为了兴趣,我尝试了 XPATH 的几种变体,例如:

Just for interest sake I have tried several variations of the XPATH such as:

@XPath("//MsgGUID")
@XPath("//MsgReqHdr/head:MsgGUID")
@XPath("//head:MsgReqHdr/head:MsgGUID")

每次我遇到上面列出的异常或 NULL 值时...

Every time I either get an exception as listed above or a NULL value...

推荐答案

正确使用它.在处理 bean 中的命名空间时,必须使用以下语法来包含命名空间.

Right got it to work. When dealing with the namespaces in a bean the following syntax must be used to include the namespaces.

public class IRIXSecurity {



    public void CheckCredentials(
            //@Body ListDebtorReqType msgBody, @Headers Map hdr,

            @XPath(value="//header:MsgGUID",namespaces = @NamespacePrefix(
                    prefix = "header",
                    uri = "http://www.insol.irix.com.au/IRIX_V1/Headers")) String msgGUID,
            @Body Document xml)
    {


        System.out.println("Check Credentials Invoked");
        System.out.println(msgGUID);
        //exchange.getOut().setBody(debtorRsType);





    }
}

这篇关于Apache Camel Java 和 XPath的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆