Websphere 6.1 to 7 how to update ibm-web-bnd.xmi to ibm-web-bnd.xml

后端 未结 1 494
眼角桃花
眼角桃花 2021-01-02 19:25

In Websphere 6 ibm-web-bnd.xmi file I have




        
相关标签:
1条回答
  • 2021-01-02 20:01

    You'll have to find the corresponding ResourceRef_1294083767913 stanza in web.xml. It should be in this format:

    <resource-ref>
      <res-ref-name>jdbc/myResRef</res-ref-name>
      ...
    </resource-ref>
    

    In that case, you would add this element to ibm-web-bnd.xml:

    <resource-ref name="jdbc/myResRef" binding-name="jdbc/ABC_DEFG"/>
    

    The InfoCenter topic, EJB 3.0 application bindings overview, actually explains the XML bindings format for ibm-ejb-jar.xml, ibm-web-bnd.xml, and ibm-application-client-bnd.xml.

    0 讨论(0)
提交回复
热议问题