WS Provider - Retaining Enable SSL and Port Type
When using the silent migration option, the characteristics ‘AU_ENABLESSL’ and ‘AU_SELECTEDPORT’ are not being saved in the Web Service Provider.
Here's the excerpt from the retain.xml file
<service comment="Retainment of Web Service Provider" table="AU_WSPROVIDER" retainNewActivities="false" >
<field comment="Creationmode" fieldName="AU_CREATIONMODE" />
<field comment="Enable SSL" fieldName="AU_ENABLESSL" />
<field comment="The processflow to be called" fieldName="AU_TRANSACTIONID" />
<field comment="The securitypolicy to be used" fieldName="AU_SECURITYPOLICYID" />
<field comment="The selected port" fieldName="AU_SELECTEDPORT" />
<field comment="Configuration" fieldName="AU_CONFIGURATION" />
</service>
How do we retain the SSL and selected port setting?
-
include the following line in your retain.xml
<field comment="WSDL File Path" fieldName="AU_WSDLPATH" />
Under the "AU_WSPROVIDER" service section
<service comment="Retainment of Web Service Provider" table="AU_WSPROVIDER" retainNewActivities="false" >
<field comment="Creationmode" fieldName="AU_CREATIONMODE" />
<field comment="Enable SSL" fieldName="AU_ENABLESSL" />
<field comment="The processflow to be called" fieldName="AU_TRANSACTIONID" />
<field comment="The securitypolicy to be used" fieldName="AU_SECURITYPOLICYID" />
<field comment="The selected port" fieldName="AU_SELECTEDPORT" />
<field comment="Configuration" fieldName="AU_CONFIGURATION" />
<field comment="WSDL File Path" fieldName="AU_WSDLPATH" />
</service>0
Post is closed for comments.
Comments
1 comment