从部署计划XML替换WSDL文件中的属性

时间:2010-10-11 20:42:45

标签: xml web-services deployment wsdl oracle11g

我有两个文件WSDL文件和部署计划文件。我正在尝试从部署计划文件中替换WSDL文件中的属性。

WSDL文件

<wsdl:definitions
   name="Project"
   targetNameSpace="http://xxx/yyy/project"
   xmlns:ns0="http://xxx/zzz">

   <wsdl:types>
       <xs:schema>
        .....
       </sx:schema>
   </wsdl:types>
</wsdl:definitions>

部署计划文件

<deployment-plan>
  <application-name>Project</application-name>
  <variable-definition>
    <variable>
       <name>ErrCode</name>
       <value>2</value>
    </variable>
  </variable-definition>
  <module-override>
    <module-descriptor external="false">
      <root-element>wsdl:definitions</root-element>
      <uri>WEB-INF/wsdl/project.wsdl</uri>
      <variable-assignment>
        <name>ErrCode</name>
        <xpath>/wsdl:definitions/@xmlns:ns0</xpath>
        <operation>replace</operation>
      </variable-assignment>
    </module-descriptor>
  </module-override>
</deployment-plan>

当我将它们都部署到服务器时,xmlns:ns0的值不会更改。

0 个答案:

没有答案