HTTP Basic Authentication ile BPEL de Web Services çağırma
Add this tag into the composite.xml file
<property name=”weblogic.wsee.wsat.transaction.flowOption” type=”xs:string” many=”false”>WSDLDriven</property>
<property name=”oracle.webservices.auth.username” type=”xs:string” many=”false” override=”may”>bpel</property>
<property name=”oracle.webservices.auth.password” type=”xs:string” many=”false” override=”may”>welcome1</property>
<property name=”oracle.webservices.preemptiveBasicAuth” type=”xs:boolean” many=”false” override=”may”>true</property>
Another option that worked was to set the javax.xml.ws.security.auth parameters in composite.xml for the reference.
<property name=”oracle.webservices.preemptiveBasicAuth” many=”false” override=”may”>true</property>
<property name=”javax.xml.ws.security.auth.username” many=”false” override=”may”> bpel</property>
<property name=”javax.xml.ws.security.auth.password” many=”false” override=”may”> welcome1</property>
<property name=”weblogic.wsee.wsat.transaction.version” type=”xs:string” many=”false”>DEFAULT</property>
Yanıt Bırak