Author: isuru Date: Tue Nov 18 06:36:45 2008 New Revision: 24147 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=24147
Log: Fixing CommodityQuote Removed: trunk/wsas/java/carbon/samples/CommodityQuote/keys/ Modified: trunk/wsas/java/carbon/samples/CommodityQuote/pom.xml trunk/wsas/java/carbon/samples/CommodityQuote/src/org/wso2/wsas/sample/commodityquote/client/Client.java trunk/wsas/java/carbon/samples/pom.xml Modified: trunk/wsas/java/carbon/samples/CommodityQuote/pom.xml URL: http://wso2.org/svn/browse/wso2/trunk/wsas/java/carbon/samples/CommodityQuote/pom.xml?rev=24147&r1=24146&r2=24147&view=diff ============================================================================== --- trunk/wsas/java/carbon/samples/CommodityQuote/pom.xml (original) +++ trunk/wsas/java/carbon/samples/CommodityQuote/pom.xml Tue Nov 18 06:36:45 2008 @@ -53,7 +53,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <property name="keys.dir" value="${basedir}/target/keys"/> + <property name="keys.dir" value="${basedir}/keys"/> <delete dir="${keys.dir}"/> <java classname="org.wso2.carbon.utils.codegen.CodegenHelper" fork="true"> @@ -85,7 +85,7 @@ </dname> </genkey> <echo message="############## Importing Certificates ###################"/> - <java classname="org.wso2.utils.security.KeyImporter"> + <java classname="org.wso2.carbon.utils.security.KeyImporter"> <arg value="${keys.dir}/service.jks"/> <arg value="testing"/> <arg value="service"/> @@ -95,7 +95,7 @@ <classpath refid="maven.compile.classpath"/> <classpath refid="maven.runtime.classpath"/> </java> - <java classname="org.wso2.utils.security.KeyImporter"> + <java classname="org.wso2.carbon.utils.security.KeyImporter"> <arg value="${keys.dir}/client.jks"/> <arg value="testing"/> <arg value="client"/> @@ -168,6 +168,44 @@ </plugins> </build> + <dependencies> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.core</artifactId> + <version>SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.utils</artifactId> + <version>SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.rm</artifactId> + <version>SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.security.mgt</artifactId> + <version>SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.axis2</artifactId> + <version>1.4.1</version> + </dependency> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.wss4j</artifactId> + <version>1.5.4</version> + </dependency> + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.security.rampart</artifactId> + <version>SNAPSHOT</version> + </dependency> + </dependencies> + <reporting> <plugins> <plugin> Modified: trunk/wsas/java/carbon/samples/CommodityQuote/src/org/wso2/wsas/sample/commodityquote/client/Client.java URL: http://wso2.org/svn/browse/wso2/trunk/wsas/java/carbon/samples/CommodityQuote/src/org/wso2/wsas/sample/commodityquote/client/Client.java?rev=24147&r1=24146&r2=24147&view=diff ============================================================================== --- trunk/wsas/java/carbon/samples/CommodityQuote/src/org/wso2/wsas/sample/commodityquote/client/Client.java (original) +++ trunk/wsas/java/carbon/samples/CommodityQuote/src/org/wso2/wsas/sample/commodityquote/client/Client.java Tue Nov 18 06:36:45 2008 @@ -373,7 +373,7 @@ System.setProperty("javax.net.ssl.trustStore", clientSSLStore); System.setProperty("javax.net.ssl.trustStoreType", "JKS"); - System.setProperty("javax.net.ssl.trustStorePassword", "wso2wsas"); + System.setProperty("javax.net.ssl.trustStorePassword", "wso2carbon"); String serviceEPR = getParam(PARAM_ENDPOINT, args); if (serviceEPR == null) { Modified: trunk/wsas/java/carbon/samples/pom.xml URL: http://wso2.org/svn/browse/wso2/trunk/wsas/java/carbon/samples/pom.xml?rev=24147&r1=24146&r2=24147&view=diff ============================================================================== --- trunk/wsas/java/carbon/samples/pom.xml (original) +++ trunk/wsas/java/carbon/samples/pom.xml Tue Nov 18 06:36:45 2008 @@ -74,6 +74,7 @@ <module>JAXWS</module> <module>Jibx</module> --> + <module>CommodityQuote</module> <module>HelloWorld</module> </modules> </project> _______________________________________________ Wsas-java-dev mailing list [email protected] http://mailman.wso2.org/cgi-bin/mailman/listinfo/wsas-java-dev
