2013-05-27 119 views
0

因此,我有一個帶有幾個命名空間的Web服務,我想通過一個bean路由來執行一些用戶憑證檢查。自從我使用XPATH以來,它已經很長時間了,所以我可能只是有一個PICNIC(主席不在計算機時出現的問題)錯誤。Apache Camel Java和XPath

Web服務消息將始終具有以下結構/圖案:

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

下面是一個例子消息(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> 

所以基本上我希望能夠創造一個能夠查詢所有用戶名和密碼數據的MsgReq頭的bean。爲了簡化事情,我只是試圖查詢MsgGUID並從那裏開始工作。不過,我似乎無法得到正確的xpath。由於我使用了幾個名稱空間,爲了確保它們可用,我將它們包含在駱駝上下文文件中。

這裏是我的駱駝上下文:

<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目前非常簡單,請參閱下面的代碼。

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我得到下面的異常請求:

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

那麼,如何去獲取這些信息?爲什麼即使我已經在我的camel-context.xml中聲明瞭名稱空間,它們被報告爲失蹤?

只是爲了興趣緣故,我已經試過了XPATH的幾個變化,如:

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

每次我要麼得到一個異常以上或NULL值作爲上市...

回答

0

權得到了它上班。在處理bean中的名稱空間時,必須使用以下語法來包含名稱空間。

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); 





    } 
}