You are on page 1of 2

Setup

Softwares
---------

1. Java instalation

2. Ant instalation

3. Set JAVA_HOME and ANT_HOME and PATH

4. Eclipse instal

5. perforce instal

6. Sink code from perforce

7. import to eclipse

File->new->project->Select "java Project" ->clickNext->select "create project


from existing source" -> click browse-> select the folder and click

Running sample APP


-----------------

1. Make changes in the sampleApp.properties

cobrandId = 4810005220
appId = 76CAC630985EE34CFFB082A55C0EA800
cobLogin = outrightsdk
cobPass = OutrightPub0Adm
soapServer = https://64.14.19.162/yodsoap/services

2. Download certificate otherwise SSLHandshake exception will occur


open the URL : https://64.14.19.162/yodsoap/services/listServices

3. execute below command to set into path

java 1.6 changing from JRE to JDK


---------------------------------
a. keytool -import -file "C:\Documents and
Settings\csomashe\Desktop\SDKSoap\bloomburg.cer" -alias bloomburgTemp2 -keystore
"C:\Program Files\Java\jre1.6\lib\security\cacerts" -storepass changeit

or

keytool -import -file "C:\Documents and


Settings\csomashe\Desktop\SDKSoap\bloomburg.cer" -alias bloomburgTemp -keystore
"C:\Program Files\Java\jdk1.6\jre\lib\security\cacerts" -storepass changeit

java 1.5 changing from JRE to JDK


---------------------------------

keytool -import -file "C:\Documents and


Settings\csomashe\Desktop\SDKSoap\standardInsurance.cer" -alias
standardInsuranceStageTemp -keystore "C:\Program
Files\Java\jre1.5.0_09\lib\security\cacerts" -storepass changeit
or

keytool -import -file "C:\Documents and


Settings\csomashe\Desktop\SDKSoap\standardInsurance.cer" -alias
standardInsuranceStageTemp -keystore "C:\Program
Files\Java\jdk1.5.0_09\lib\security\cacerts" -storepass changeit

4.Complile using ant

Java 1.5 for below 903


java 1.6 for above 903 version

5. Run using yconsole.bat

6. Capturing request and response XML


-----------------------------------
1. Make changes in the following files.

yconsole.bat
-----------
call "%~dp0set_classpath.bat"

java -Xms512M -Xmx512M


-Djava.protocol.handler.pkgs=com.sun.net.ssl.internal.www.protocol
-Dcom.yodlee.soap.http.acceptEncodingHeaderEnabled=true -Dcom.yodlee.appmode=SOAP
-Daxis.ClientConfigFile=client_deploy.wsdd com.yodlee.sampleapps.YodleeConsole

client_deploy.wsdd
------------------
<handler name="log" type="java:org.apache.axis.handlers.LogHandler">
<parameter name="LogHandler.fileName"
value="D:/yodlee/source/razor/sampleapps/9.0.4/log/axis.log" />

</handler>

You might also like