ssl - Accessing Secured Webservice via mobilefirst adapter -
i need access wsdl secured i.e https , need certificates etc access.what did followed steps specified here instead of directly downloading certificates browser: https://www-01.ibm.com/support/knowledgecenter/sshscd_7.0.0/com.ibm.worklight.installconfig.doc/admin/t_configuring_ssl_wl_adapters_backend_servers_certificates.html
when last step keytool -v -list -keystore mfp-default.keystore
keystore type: jks
keystore provider: sun
your keystore contains 1 entry
alias name: backend creation date: 5 feb, 2016 entry type: trustedcertentry
my doubt whether have done enough access secured https , need add here below sslcert , ssl pass in adapter.xml
<?xml version="1.0" encoding="utf-8"?> <!-- licensed materials - property of ibm 5725-i43 (c) copyright ibm corp. 2011, 2013. rights reserved. government users restricted rights - use, duplication or disclosure restricted gsa adp schedule contract ibm corp. --> <wl:adapter name="cloudcheck" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:wl="http://www.ibm.com/mfp/integration" xmlns:http="http://www.ibm.com/mfp/integration/http"> <displayname>cloudcheck</displayname> <description>cloudcheck</description> <connectivity> <connectionpolicy xsi:type="http:httpconnectionpolicytype"> <protocol>https</protocol> <domain>mydummy.com</domain> <port>443</port> <connectiontimeoutinmilliseconds>30000</connectiontimeoutinmilliseconds> <sockettimeoutinmilliseconds>30000</sockettimeoutinmilliseconds> <maxconcurrentconnectionspernode>50</maxconcurrentconnectionspernode> <!-- following properties used adapter's key manager choosing specific certificate key store <sslcertificatealias>backend</sslcertificatealias> <sslcertificatepassword>password</sslcertificatepassword> --> </connectionpolicy> </connectivity> <procedure name="getfeed"/> </wl:adapter>
Comments
Post a Comment