You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ri...@apache.org on 2006/10/02 00:12:20 UTC

svn commit: r451824 - in /incubator/tuscany/java/sampleapps/bigbank/account: pom.xml src/main/java/bigbank/account/services/stockquote/StockQuoteService.java src/main/webapp/WEB-INF/default.scdl

Author: rineholt
Date: Sun Oct  1 15:12:19 2006
New Revision: 451824

URL: http://svn.apache.org/viewvc?view=rev&rev=451824
Log:
derby and das need to be included in webapp. Previously was pvoided in webserver common lib

Modified:
    incubator/tuscany/java/sampleapps/bigbank/account/pom.xml
    incubator/tuscany/java/sampleapps/bigbank/account/src/main/java/bigbank/account/services/stockquote/StockQuoteService.java
    incubator/tuscany/java/sampleapps/bigbank/account/src/main/webapp/WEB-INF/default.scdl

Modified: incubator/tuscany/java/sampleapps/bigbank/account/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sampleapps/bigbank/account/pom.xml?view=diff&rev=451824&r1=451823&r2=451824
==============================================================================
--- incubator/tuscany/java/sampleapps/bigbank/account/pom.xml (original)
+++ incubator/tuscany/java/sampleapps/bigbank/account/pom.xml Sun Oct  1 15:12:19 2006
@@ -66,7 +66,7 @@
 			<groupId>org.apache.tuscany.das</groupId>
 			<artifactId>tuscany-das-rdb</artifactId>
 			<version>${pom.version}</version>
-			<scope>provided</scope>
+			<scope>compile</scope>
 		</dependency>
 		<dependency>
 			<groupId>javax.servlet</groupId>
@@ -78,7 +78,7 @@
 			<groupId>org.apache.derby</groupId>
 			<artifactId>derby</artifactId>
 			<version>10.1.2.1</version>
-			<scope>provided</scope>
+			<scope>compile</scope>
 		</dependency>
 		<dependency>
 			<groupId>junit</groupId>

Modified: incubator/tuscany/java/sampleapps/bigbank/account/src/main/java/bigbank/account/services/stockquote/StockQuoteService.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sampleapps/bigbank/account/src/main/java/bigbank/account/services/stockquote/StockQuoteService.java?view=diff&rev=451824&r1=451823&r2=451824
==============================================================================
--- incubator/tuscany/java/sampleapps/bigbank/account/src/main/java/bigbank/account/services/stockquote/StockQuoteService.java (original)
+++ incubator/tuscany/java/sampleapps/bigbank/account/src/main/java/bigbank/account/services/stockquote/StockQuoteService.java Sun Oct  1 15:12:19 2006
@@ -21,9 +21,12 @@
 import java.rmi.RemoteException;
 import java.util.Map;
 
+import org.apache.tuscany.api.annotation.DataType;
+
 /**
  * This is the business interface of the HelloWorld service component.
  */
+//@DataType(name="commonj.sdo.DataObject")
 public interface StockQuoteService {
 
     public Map<String, StockQuote> getQuotes(String[] symbols) throws RemoteException;

Modified: incubator/tuscany/java/sampleapps/bigbank/account/src/main/webapp/WEB-INF/default.scdl
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sampleapps/bigbank/account/src/main/webapp/WEB-INF/default.scdl?view=diff&rev=451824&r1=451823&r2=451824
==============================================================================
--- incubator/tuscany/java/sampleapps/bigbank/account/src/main/webapp/WEB-INF/default.scdl (original)
+++ incubator/tuscany/java/sampleapps/bigbank/account/src/main/webapp/WEB-INF/default.scdl Sun Oct  1 15:12:19 2006
@@ -44,17 +44,16 @@
         <reference name="stockQuoteService">StockQuoteServiceComponent</reference>
     </component>
 
-    <component name="AccountDataServiceComponent">
-        <implementation.java class="bigbank.account.services.accountdata.AccountDataServiceDASImpl"/>
-    </component>
-
-
     <component name="AccountLoggerDataServiceComponent">
         <implementation.java class="bigbank.account.services.accountlogger.AccountLoggerDataServiceImpl"/>
        <reference name="accountDataService">AccountDataServiceComponent</reference>
        <reference name="accountLoggerService">AccountLoggerServiceComponent</reference>
     </component>
 
+    <component name="AccountDataServiceComponent">
+        <implementation.java class="bigbank.account.services.accountdata.AccountDataServiceDASImpl"/>
+    </component>
+
     <component name="AccountLoggerServiceComponent">
         <implementation.java class="bigbank.account.services.accountlogger.AccountLoggerServiceImpl"/>
     </component>
@@ -70,11 +69,11 @@
     </component>
         
     -->
-   <!-- Stock Quote Web Service -->
+   <!-- Stock Quote Web Service 
     <reference name="StockQuoteWebService">
         <interface.wsdl interface="http://www.webserviceX.NET/#wsdl.interface(StockQuoteSoap)" wsdli:wsdlLocation="http://www.webserviceX.NET/ wsdl/stockquotes.webservicex.wsdl"/>
         <binding.ws port="http://www.webserviceX.NET/#wsdl.endpoint(StockQuote/StockQuoteSoap)"/>
     </reference>
-
+-->
 
 </composite>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org