summaryrefslogtreecommitdiffstats
path: root/site/branches/site-20070701-mvnbased/site-publish/java_das_overview.html
blob: a640a7a5ae753ee53d5806978dfced5679b34d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->


<!-- Content Stylesheet for Site -->

        
<!-- start the processing -->
<!-- ====================================================================== -->
<!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
<!-- Main Page Section -->
<!-- ====================================================================== -->
<html>
<head>
    <link rel="stylesheet" href="./css/style.css"/>
    <script src="DropMenu.js"  type="text/javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>

        
   
            
        
    <title>Tuscany - Tuscany</title>
</head>

<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">

	<table class="topbar" id="topbar" border="0" width="100%" cellspacing="0" cellpadding="0" height="94" background="images/TopBarBG.png">
		<tr>
			<td width="244">
				<img src="images/Logo.png" width="244" height="94" alt=""></td>
                
                            
			 <td align="right"> 
				<img src="http://incubator.apache.org/tuscany/images/apache-incubator-logo.png" style="padding: 5px;"> </td>
		</tr>
	</table>
    <table border="0" width="100%" cellspacing="4">
        <tr>
            <!-- LEFT SIDE NAVIGATION -->
			<td width="141" valign="top" nowrap="true" >
				<table width="100%" class="navbar" border="0" cellpadding="0" cellspacing="0" align="center" height="100%" >
					    		<tr class="navbarHead">
      <td>
          <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  
                  <td>
                      <table border="0" cellspacing="0" cellpadding="0" width="137">
                          <tbody>
                          <tr>
                              <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                              <td height="4" background="images/NavBarT.png"></td>
                              <td align="left"><img src="images/NavBarTR.png"></td>
                          </tr>
                          <tr>
                              <td background="images/NavBarLS.png" width="8"></td>
                              <td align="center" background="images/NavBarM.png">
                                Tuscany General
                              </td>
                              <td width="8" height="4"background="images/NavBarRS.png" ></td>
                          <tr>
                              <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                              <td background="images/NavBarB.png"></td>
                              <td align="left"><img src="images/NavBarBR.png"></td>
                          </tr>
                          </tbody>
                      </table>
                  </td>
                  <td width="6"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
      <td>
          <table border="0" cellspacing="0" cellpadding="0" >
              <tr>
                  <td background="images/leftSideGreyBorder.png" width="6" ></td>
                  <td bgcolor="#fafafa" width="124">
                                            <a href="./index.html">Home</a>
<br>
                                            <a href="./news.html">News</a>
<br>
                                            <a href="./documentation.html">Documentation</a>
<br>
                                            <a href="./Releases.html">Releases</a>
<br>
                                            <a href="./getting_started.html">Getting Started</a>
<br>
                                            <a href="./license.html">License</a>
<br>
                                            <a href="http://www.apache.org/" target="_blank">ASF</a>
<br>
                    </td>
                  <td background="images/rightSideGreyBorder.png" width="7"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
        <td><img src="images/greyBottom.png" width="137" height="10" alt=""></td>
    </tr>

    		<tr class="navbarHead">
      <td>
          <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  
                  <td>
                      <table border="0" cellspacing="0" cellpadding="0" width="137">
                          <tbody>
                          <tr>
                              <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                              <td height="4" background="images/NavBarT.png"></td>
                              <td align="left"><img src="images/NavBarTR.png"></td>
                          </tr>
                          <tr>
                              <td background="images/NavBarLS.png" width="8"></td>
                              <td align="center" background="images/NavBarM.png">
                                Tuscany SCA
                              </td>
                              <td width="8" height="4"background="images/NavBarRS.png" ></td>
                          <tr>
                              <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                              <td background="images/NavBarB.png"></td>
                              <td align="left"><img src="images/NavBarBR.png"></td>
                          </tr>
                          </tbody>
                      </table>
                  </td>
                  <td width="6"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
      <td>
          <table border="0" cellspacing="0" cellpadding="0" >
              <tr>
                  <td background="images/leftSideGreyBorder.png" width="6" ></td>
                  <td bgcolor="#fafafa" width="124">
                                            <a href="./sca_index.html">SCA Overview</a>
<br>
                                            <a href="./java_sca_overview.html">SCA Java</a>
<br>
                                            <a href="./cpp_sca_overview.html">SCA C++</a>
<br>
                                            <a href="./sca_documentation.html">SCA Docs.</a>
<br>
                                            <a href="./sca_downloads.html">SCA Downloads</a>
<br>
                    </td>
                  <td background="images/rightSideGreyBorder.png" width="7"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
        <td><img src="images/greyBottom.png" width="137" height="10" alt=""></td>
    </tr>

    		<tr class="navbarHead">
      <td>
          <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  
                  <td>
                      <table border="0" cellspacing="0" cellpadding="0" width="137">
                          <tbody>
                          <tr>
                              <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                              <td height="4" background="images/NavBarT.png"></td>
                              <td align="left"><img src="images/NavBarTR.png"></td>
                          </tr>
                          <tr>
                              <td background="images/NavBarLS.png" width="8"></td>
                              <td align="center" background="images/NavBarM.png">
                                Tuscany SDO
                              </td>
                              <td width="8" height="4"background="images/NavBarRS.png" ></td>
                          <tr>
                              <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                              <td background="images/NavBarB.png"></td>
                              <td align="left"><img src="images/NavBarBR.png"></td>
                          </tr>
                          </tbody>
                      </table>
                  </td>
                  <td width="6"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
      <td>
          <table border="0" cellspacing="0" cellpadding="0" >
              <tr>
                  <td background="images/leftSideGreyBorder.png" width="6" ></td>
                  <td bgcolor="#fafafa" width="124">
                                            <a href="./sdo_index.html">SDO Overview</a>
<br>
                                            <a href="./java_sdo_overview.html">SDO Java</a>
<br>
                                            <a href="./cpp_sdo_overview.html">SDO C++</a>
<br>
                                            <a href="./sdo_documentation.html">SDO Docs.</a>
<br>
                                            <a href="./sdo_downloads.html">SDO Downloads</a>
<br>
                    </td>
                  <td background="images/rightSideGreyBorder.png" width="7"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
        <td><img src="images/greyBottom.png" width="137" height="10" alt=""></td>
    </tr>

    		<tr class="navbarHead">
      <td>
          <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  
                  <td>
                      <table border="0" cellspacing="0" cellpadding="0" width="137">
                          <tbody>
                          <tr>
                              <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                              <td height="4" background="images/NavBarT.png"></td>
                              <td align="left"><img src="images/NavBarTR.png"></td>
                          </tr>
                          <tr>
                              <td background="images/NavBarLS.png" width="8"></td>
                              <td align="center" background="images/NavBarM.png">
                                Tuscany DAS
                              </td>
                              <td width="8" height="4"background="images/NavBarRS.png" ></td>
                          <tr>
                              <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                              <td background="images/NavBarB.png"></td>
                              <td align="left"><img src="images/NavBarBR.png"></td>
                          </tr>
                          </tbody>
                      </table>
                  </td>
                  <td width="6"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
      <td>
          <table border="0" cellspacing="0" cellpadding="0" >
              <tr>
                  <td background="images/leftSideGreyBorder.png" width="6" ></td>
                  <td bgcolor="#fafafa" width="124">
                                            <a href="./das_index.html">DAS Overview</a>
<br>
                                            <a href="./java_das_overview.html">DAS Java</a>
<br>
                                            <a href="./das_documentation.html">DAS Docs.</a>
<br>
                                            <a href="./das_downloads.html">DAS Downloads</a>
<br>
                    </td>
                  <td background="images/rightSideGreyBorder.png" width="7"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
        <td><img src="images/greyBottom.png" width="137" height="10" alt=""></td>
    </tr>

    		<tr class="navbarHead">
      <td>
          <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  
                  <td>
                      <table border="0" cellspacing="0" cellpadding="0" width="137">
                          <tbody>
                          <tr>
                              <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                              <td height="4" background="images/NavBarT.png"></td>
                              <td align="left"><img src="images/NavBarTR.png"></td>
                          </tr>
                          <tr>
                              <td background="images/NavBarLS.png" width="8"></td>
                              <td align="center" background="images/NavBarM.png">
                                Community
                              </td>
                              <td width="8" height="4"background="images/NavBarRS.png" ></td>
                          <tr>
                              <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                              <td background="images/NavBarB.png"></td>
                              <td align="left"><img src="images/NavBarBR.png"></td>
                          </tr>
                          </tbody>
                      </table>
                  </td>
                  <td width="6"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
      <td>
          <table border="0" cellspacing="0" cellpadding="0" >
              <tr>
                  <td background="images/leftSideGreyBorder.png" width="6" ></td>
                  <td bgcolor="#fafafa" width="124">
                                            <a href="./get-involved.html">Get Involved</a>
<br>
                                            <a href="./mail-lists.html">Mailing Lists</a>
<br>
                                            <a href="./faq.html">FAQ</a>
<br>
                                            <a href="./issue-tracking.html">Issue Tracking</a>
<br>
                                            <a href="http://wiki.apache.org/ws/Tuscany" target="_blank">Wiki</a>
<br>
                                            <a href="http://apache-tuscany.blogspot.com" target="_blank">Blog</a>
<br>
                    </td>
                  <td background="images/rightSideGreyBorder.png" width="7"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
        <td><img src="images/greyBottom.png" width="137" height="10" alt=""></td>
    </tr>

    		<tr class="navbarHead">
      <td>
          <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  
                  <td>
                      <table border="0" cellspacing="0" cellpadding="0" width="137">
                          <tbody>
                          <tr>
                              <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                              <td height="4" background="images/NavBarT.png"></td>
                              <td align="left"><img src="images/NavBarTR.png"></td>
                          </tr>
                          <tr>
                              <td background="images/NavBarLS.png" width="8"></td>
                              <td align="center" background="images/NavBarM.png">
                                Development
                              </td>
                              <td width="8" height="4"background="images/NavBarRS.png" ></td>
                          <tr>
                              <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                              <td background="images/NavBarB.png"></td>
                              <td align="left"><img src="images/NavBarBR.png"></td>
                          </tr>
                          </tbody>
                      </table>
                  </td>
                  <td width="6"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
      <td>
          <table border="0" cellspacing="0" cellpadding="0" >
              <tr>
                  <td background="images/leftSideGreyBorder.png" width="6" ></td>
                  <td bgcolor="#fafafa" width="124">
                                            <a href="./source-code.html">Source Code</a>
<br>
                                            <a href="./java-projects.html">Tuscany Java</a>
<br>
                                            <a href="./cpp-projects.html">Tuscany C++</a>
<br>
                                            <a href="./site_development.html">Tuscany WebSite</a>
<br>
                    </td>
                  <td background="images/rightSideGreyBorder.png" width="7"></td>
              </tr>
          </table>
      </td>
    </tr>
    <tr>
        <td><img src="images/greyBottom.png" width="137" height="10" alt=""></td>
    </tr>

    				</table>
			</td>
            <!-- CONTENT! -->
            <td width="100%" align="left" valign="top">
            <table class="content" border="0" width="98%" cellspacing="0" cellpadding="0" align="left">
                	            	                 <tr>
    <td>
	<table class="content" border="0" width="100%" cellspacing="0" cellpadding="0" align="left">
    <tr class="title" height="17" >
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              <tr>
                  <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                  <td height="4" background="images/NavBarT.png"></td>
                  <td align="left"><img src="images/NavBarTR.png"></td>
              </tr>
              <tr>
                  <td background="images/NavBarLS.png" width="8"></td>
                  <td align="center" background="images/NavBarM.png">
                        <a name="Tuscany DAS - Java">Tuscany DAS - Java</a>
                  </td>
                  <td width="8" height="4" background="images/NavBarRS.png" ></td>
              </tr>
              <tr>
                  <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                  <td background="images/NavBarB.png"></td>
                  <td align="left"><img src="images/NavBarBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    
    <tr>
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              
              <tr>
                  <td background="images/ContentBoxLS.png" width="8"></td>
                  <td align="left">
                                                 <p>This document proves a high-level overview of the Java DAS (Data Access Services) subproject of the Apache Tuscany incubator project.</p> 
                                              </td>
                  <td width="8" height="4" background="images/ContentBoxRS.png" >
                  </td>
              </tr>
              <tr>
                  <td align="right" valign="bottom"><img src= "images/ContentBoxBL.png"></td>
                  <td background="images/ContentBoxB.png"></td>
                  <td align="left"><img src="images/ContentBoxBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    </table>
    </td>
    </tr>
	            	                 <tr>
    <td>
	<table class="content" border="0" width="100%" cellspacing="0" cellpadding="0" align="left">
    <tr class="title" height="17" >
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              <tr>
                  <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                  <td height="4" background="images/NavBarT.png"></td>
                  <td align="left"><img src="images/NavBarTR.png"></td>
              </tr>
              <tr>
                  <td background="images/NavBarLS.png" width="8"></td>
                  <td align="center" background="images/NavBarM.png">
                        <a name="DAS Java Getting Started">DAS Java Getting Started</a>
                  </td>
                  <td width="8" height="4" background="images/NavBarRS.png" ></td>
              </tr>
              <tr>
                  <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                  <td background="images/NavBarB.png"></td>
                  <td align="left"><img src="images/NavBarBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    
    <tr>
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              
              <tr>
                  <td background="images/ContentBoxLS.png" width="8"></td>
                  <td align="left">
                                                 <p>To get started with Java DAS, follow the <a href="downloads.html">downloads</a> link and pick up either a binary or source distribution.
      If you are working from a source distribution, you can follow the <a href="java-projects.html">general instructions</a> for building the whole of the Tuscany java projects,
      or you can follow the intructions within the <A href="java_das_overview.html"> DAS Java overview </A> to build and explore just DAS java.
      </p> 
                                                         <h3>General DAS Documentation</h3> 
                                                         <table class="bodyTable">
         <tr class="b">
            <td>
               <span style="font-weight: bold;">Title</span>
            </td>
            <td>
               <span style="font-weight: bold;">Description</span>
            </td>
         </tr>
         
         <tr class="b">
            <td>
               <a href="RDB_DAS_white_paper_v-0.2.pdf" target="_blank">DAS White Paper: The Data Access Service</a>
            </td>
            <td>
               How to access relational data in terms of Service Data Objects
            </td>
         </tr>
         
         <tr class="b">
            <td>
               <a class="external" rel="nofollow" href="http://java.sys-con.com/read/260053.htm">JDJ DAS Article</a>
            </td>
            <td>
               How to access relational data in terms of Service Data Objects
            </td>
         </tr>	            
      </table> 
                                              </td>
                  <td width="8" height="4" background="images/ContentBoxRS.png" >
                  </td>
              </tr>
              <tr>
                  <td align="right" valign="bottom"><img src= "images/ContentBoxBL.png"></td>
                  <td background="images/ContentBoxB.png"></td>
                  <td align="left"><img src="images/ContentBoxBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    </table>
    </td>
    </tr>
	            	                 <tr>
    <td>
	<table class="content" border="0" width="100%" cellspacing="0" cellpadding="0" align="left">
    <tr class="title" height="17" >
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              <tr>
                  <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                  <td height="4" background="images/NavBarT.png"></td>
                  <td align="left"><img src="images/NavBarTR.png"></td>
              </tr>
              <tr>
                  <td background="images/NavBarLS.png" width="8"></td>
                  <td align="center" background="images/NavBarM.png">
                        <a name="DAS Java Overview">DAS Java Overview</a>
                  </td>
                  <td width="8" height="4" background="images/NavBarRS.png" ></td>
              </tr>
              <tr>
                  <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                  <td background="images/NavBarB.png"></td>
                  <td align="left"><img src="images/NavBarBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    
    <tr>
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              
              <tr>
                  <td background="images/ContentBoxLS.png" width="8"></td>
                  <td align="left">
                                                 <p>Currently, the project's code base includes an implementation of a DAS RDB (relational database) with following key features :</p> 
                                                         <h3>DAS Java Project Structure</h3> 
                                                         <p>The DAS RDB project is divided into three parts:</p> 
                                                         <ol type="1">
	<li><p><strong>das.rdb</strong> contains the DAS interfaces and  the RDB (Relational Database) runtime implementation.</p></li>
	<li><p><strong>samples.das</strong> provides sample applications based on DAS.</p></li>
	<li><p><strong>distribution.das</strong> provides DAS binaries distribution with required dependencies.</p></li>
	<li><p><strong>distribution.das-samples</strong> provides DAS samples distribution as a ready-to-deploy war file.</p></li>
      </ol> 
                                                         <h3>DAS high level class diagram</h3> 
                                                         <img src="images/das_class_diagram.jpg" alt="DAS High level class diagram" align="middle" border="0" height="561" width="710" /> 
                                              </td>
                  <td width="8" height="4" background="images/ContentBoxRS.png" >
                  </td>
              </tr>
              <tr>
                  <td align="right" valign="bottom"><img src= "images/ContentBoxBL.png"></td>
                  <td background="images/ContentBoxB.png"></td>
                  <td align="left"><img src="images/ContentBoxBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    </table>
    </td>
    </tr>
	            	                 <tr>
    <td>
	<table class="content" border="0" width="100%" cellspacing="0" cellpadding="0" align="left">
    <tr class="title" height="17" >
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              <tr>
                  <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                  <td height="4" background="images/NavBarT.png"></td>
                  <td align="left"><img src="images/NavBarTR.png"></td>
              </tr>
              <tr>
                  <td background="images/NavBarLS.png" width="8"></td>
                  <td align="center" background="images/NavBarM.png">
                        <a name="Build Environment Setup">Build Environment Setup</a>
                  </td>
                  <td width="8" height="4" background="images/NavBarRS.png" ></td>
              </tr>
              <tr>
                  <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                  <td background="images/NavBarB.png"></td>
                  <td align="left"><img src="images/NavBarBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    
    <tr>
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              
              <tr>
                  <td background="images/ContentBoxLS.png" width="8"></td>
                  <td align="left">
                                                 <h3>Tuscany Build Environment Setup</h3> 
                                                         <p>DAS is a subproject of the Tuscany project. If you check out and
      build the whole Tuscany Java project, you will have also built the DAS
      subproject. If you want to work with the DAS project, without the rest
      of Tuscany, skip to the next section.</p> 
                                                         <p>To build the whole Tuscany project follow <a class="external" rel="nofollow" href="java-projects.html">these instructions</a>.</p> 
                                                         <h3>DAS Java Build Environment Setup</h3> 
                                                         <p>If you want to work with the DAS project alone, without the rest of Tuscany, proceed with the following steps.</p> 
                                                         <ol type="1">
         <li><p>Set up your environment using the <a class="external" rel="nofollow" href="java-projects.html"> instructions for building the whole of Tuscany</a>,
	     <strong>but</strong> only download and install Java 5, Maven and Svn</p></li>

	<li><p>Make sure 'mvn' and 'svn' commands are in your PATH environment variable.</p></li>

	<li><p>Check out the DAS open source projects from Apache.</p></li>

	<ul>
		<li style="list-style-type: none;">
		<p>Commands:</p>
		<p>md &lt;local tuscany dir&gt; <br />
		cd &lt;local tuscany dir&gt; <br />
		svn co <a rel="nofollow" href="https://svn.apache.org/repos/asf/incubator/tuscany/java">https://svn.apache.org/repos/asf/incubator/tuscany/java</a> <br />
		</p>
		</li>
	</ul>
	</ol> 
                                                         <ol start="4" type="1">
		<li><p>Run "mvn" under &lt;local tuscany dir&gt;/java directory to install
		POM files from the root project to the local repository</p></li>
	</ol> 
                                                         <ul>
		<li style="list-style-type: none;">
		<p>Commands:</p>
		<ul>
			<li style="list-style-type: none;">
			<p>cd &lt;local tuscany dir&gt;/java/das <br />
			mvn<br />
			</p>
			</li>
		</ul>
		</li>
	</ul> 
                                                         <ul>
		<li style="list-style-type: none;">
		<p><strong>Notes:</strong></p>
		<ol type="1">
			<li><p>If the mvn command completed successfully, you will see BUILD
			SUCCESSFUL in the output and tuscany-das-rdb-1.0-SNAPSHOP.jar is created under
			&lt;local tuscany dir&gt;/java/das/rdb/target directory.</p></li>
			
			<li><p>External resources are at times unavailable. It may be necessary to
			run "mvn" again at a later time.</p></li>

			<li><p>If you are taking time to reply to firewall prompts, this can cause
			some requests to time out. Set up the firewall to permit the action without prompting.</p></li>
		</ol>
		</li>
	</ul> 
                                                         <H3>Building Javadoc for DAS</H3> 
                                                         <p> In order to build DAS Javadocs, you will need to build the a specific maven profile called "javadoc" </p> 
                                                         <ul>
		<li style="list-style-type: none;">
		<p>Commands:</p>
		<ul>
			<li style="list-style-type: none;">
			<p>cd &lt;local tuscany dir&gt;/java/das <br />
			mvn -P javadoc<br />
			</p>
			</li>
		</ul>
		<p>Note: Javadoc will be available at &lt;local tuscany dir&gt;/java/das/rdb/target/apidocs/index.html.</p>
		</li>
	</ul> 
                                                         <H3>Dependency Jars</H3> 
                                                         <p> The DAS.RDB project has a dependency on SDO and requires the following SDO runtime jars to build</p> 
                                                         <ul>
	   <li><p>sdo-api-r2.0.1-1.0-SNAPSHOT.jar - SDO 2.0 Interfaces</p></li>
	   <li><p>tuscany-sdo-impl-1.0-SNAPSHOT.jar - SDO 2.0 implementation</p></li>
	</ul> 
                                                         <p>The SDO.IMPL project have dependencies on the following EMF (Eclipse Modeling
	Framework - www.eclipse.org/emf) runtime jars to build:</p> 
                                                         <ul>
		<li><p>common-2.2.1.jar - some common framework utility and base classes</p></li>
		<li><p>ecore-2.2.1.jar - the EMF core runtime implementation classes (the Ecore metamodel)</p></li>
		<li><p>ecore-change-2.2.1.jar - the EMF change recorder and framework</p></li>
		<li><p>ecore-xmi-2.2.1.jar - EMF's default XML (and XMI) serializer and loader</p></li>
		<li><p>xsd-2.2.1.jar - the XML Schema model</p></li>
		<li><p>log4j-1.2.12.jar - log4j logging framework</p></li>
	</ul> 
                                              </td>
                  <td width="8" height="4" background="images/ContentBoxRS.png" >
                  </td>
              </tr>
              <tr>
                  <td align="right" valign="bottom"><img src= "images/ContentBoxBL.png"></td>
                  <td background="images/ContentBoxB.png"></td>
                  <td align="left"><img src="images/ContentBoxBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    </table>
    </td>
    </tr>
	            	                 <tr>
    <td>
	<table class="content" border="0" width="100%" cellspacing="0" cellpadding="0" align="left">
    <tr class="title" height="17" >
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              <tr>
                  <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                  <td height="4" background="images/NavBarT.png"></td>
                  <td align="left"><img src="images/NavBarTR.png"></td>
              </tr>
              <tr>
                  <td background="images/NavBarLS.png" width="8"></td>
                  <td align="center" background="images/NavBarM.png">
                        <a name="Running DAS Samples">Running DAS Samples</a>
                  </td>
                  <td width="8" height="4" background="images/NavBarRS.png" ></td>
              </tr>
              <tr>
                  <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                  <td background="images/NavBarB.png"></td>
                  <td align="left"><img src="images/NavBarBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    
    <tr>
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              
              <tr>
                  <td background="images/ContentBoxLS.png" width="8"></td>
                  <td align="left">
                                                 <p>DAS provide sample a CompanyWeb scenario where it exposes some of the DAS Features integrated in a J2EE webapp.</p> 
                                                         <p>Follow the steps below to be able to run the samples in a J2EE webserver (in our case Apache Tomcat)</p> 
                                                         <p><strong>From the source repository</strong></p> 
                                                         <ul>
         <li><p>checkout DAS Sample from SVN repository:</p></li>
         <ul>
            <li><p>md 'local tuscany dir'</p></li>
            <li><p>cd 'local tuscany dir'</p></li>
            <li><p>svn co https://svn.apache.org/repos/asf/incubator/tuscany/java/das das</p></li>
         </ul>
         <li><p>use maven to build the CompanyWeb war file:</p></li>
         <ul>
            <li><p>cd das\samples</p></li>
            <li><p>mvn</p></li>
         </ul>
         <li><p>use maven to deploy the CompanyWeb war file to Tomcat</p></li>
         <ul>
            <li><p>mvn tomcat:deploy</p></li>
         </ul>
      </ul> 
                                                         <p>There are also some sample applications that use a mix of SCA, SDO and DAS.  See "Running the Samples" on the <a href="java-projects.html#Running the Samples">Java project page</a> for details.</p> 
                                                         <p><strong>From a DAS Sample distribution (starting with M2)</strong>:</p> 
                                                         <ul>
         <li><p>Download a das-sample distribution from http://incubator.apache.org/tuscany/downloads.html</p></li>
         <li><p>Extract the companyweb war file</p></li>
         <li><p>Follow regular deployment procedures to deploy the war file</p></li>
      </ul> 
                                              </td>
                  <td width="8" height="4" background="images/ContentBoxRS.png" >
                  </td>
              </tr>
              <tr>
                  <td align="right" valign="bottom"><img src= "images/ContentBoxBL.png"></td>
                  <td background="images/ContentBoxB.png"></td>
                  <td align="left"><img src="images/ContentBoxBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    </table>
    </td>
    </tr>
	            	                 <tr>
    <td>
	<table class="content" border="0" width="100%" cellspacing="0" cellpadding="0" align="left">
    <tr class="title" height="17" >
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              <tr>
                  <td align="right" width="8" height="4"><img src= "images/NavBarTL.png"></td>
                  <td height="4" background="images/NavBarT.png"></td>
                  <td align="left"><img src="images/NavBarTR.png"></td>
              </tr>
              <tr>
                  <td background="images/NavBarLS.png" width="8"></td>
                  <td align="center" background="images/NavBarM.png">
                        <a name="Running Tuscany DAS Unit Tests">Running Tuscany DAS Unit Tests</a>
                  </td>
                  <td width="8" height="4" background="images/NavBarRS.png" ></td>
              </tr>
              <tr>
                  <td align="right" valign="top"><img src= "images/NavBarBL.png"></td>
                  <td background="images/NavBarB.png"></td>
                  <td align="left"><img src="images/NavBarBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    
    <tr>
        <td>
          <table border="0" cellspacing="0" cellpadding="0" width="100%">
              <tbody>
              
              <tr>
                  <td background="images/ContentBoxLS.png" width="8"></td>
                  <td align="left">
                                                 <p>DAS is currently providing two sets of unit tests</p> 
                                                         <ul>
         <li><p>JUnit tests for the core DAS code</p></li>
         <li><p>HTMLUnit tests integrated with Tomcat for DAS CompanyWeb sample application</p></li>
      </ul> 
                                                         <p>Below we are going to describe how you can exercise these two sets of tests, and we recommend you running them after contributing code/patches for DAS 
      to validate that your new changes are not introducing any regressions.</p> 
                                                         <p><strong>Running DAS tests as part of the build</strong></p> 
                                                         <ul>
         <li><p>cd 'local tuscany dir'/java/das</p></li>
         <li><p>mvn test</p></li>
         
         <p>
		-------------------------------------------------------<br />
		 T E S T S<br />
		-------------------------------------------------------<br />
		Running org.apache.tuscany.das.rdb.test.suites.AllTestsDerby<br />
		Setting up for Derby run<br />
		Ending Derby run<br />
		Tests run: 137, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 33.468 sec<br />
                <br />
		Results :<br />
                <br />
		Tests run: 137, Failures: 0, Errors: 0, Skipped: 0<br />
                <br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] BUILD SUCCESSFUL<br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] Total time: 57 seconds<br />
		[INFO] Finished at: Tue Oct 03 12:06:13 PDT 2006<br />
		[INFO] Final Memory: 5M/10M<br />
		[INFO] ------------------------------------------------------------------------<br />
		<br />
         </p>
      </ul> 
                                                         <p><strong>Running DAS CompanyWeb tests in tomcat</strong></p> 
                                                         <ul>
         <li><p>Download tomcat distribution into your local filesystem : http://tomcat.apache.org/</p></li>
         <li><p>Create a build.properties in your root directory (e.g. C:\Documents and Settings\lresende in Win2K systems) with the following contents</p></li>
         <ul>
            <li><p>tuscany.acceptance.tomcat.zipped='directory where tomcat was downloaded'\\apache-tomcat-5.5.17-tuscany.zip</p></li>
         </ul>
         <li><p>checkout DAS Sample from SVN repository:</p></li>
         <ul>
            <li><p>md 'local tuscany dir'</p></li>
            <li><p>cd 'local tuscany dir'</p></li>
            <li><p>svn co https://svn.apache.org/repos/asf/incubator/tuscany/java/das das</p></li>
         </ul>
         <li><p>use maven run the DAS CompanyWeb tests in Tomcat:</p></li>
         <ul>
	    <li><p>cd das/samples/testing/tomcat</p></li>
            <li><p>mvn</p></li>
            <p>
		-------------------------------------------------------<br />
		 T E S T S<br />
		-------------------------------------------------------<br />
		Running org.apache.tuscany.test.das.DasTestCase<br />
		Running:HomePage                        SUCCESS!!!<br />
		Running:AllCompanies                    SUCCESS!!!<br />
		Running:AllCompaniesDepartments         SUCCESS!!!<br />
		Running:AddDepartmentToFirstCompany     SUCCESS!!!<br />
		Running:ChangeCompanyDepartmentNames    SUCCESS!!!<br />
		Running:DeleteCompanyOneDepartments     SUCCESS!!!<br />
		Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.911 sec<br />
                <br />
		Results :<br />
                <br />
		Tests run: 6, Failures: 0, Errors: 0, Skipped: 0<br />
                <br />
		[INFO]<br />
		[INFO]<br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] Reactor Summary:<br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] Tuscany Testing in Tomcat ............................. SUCCESS [0.251s]<br />
		[INFO] Tuscany Testing DAS Sample - Companyweb ............... SUCCESS [1:17.791s]<br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] BUILD SUCCESSFUL<br />
		[INFO] ------------------------------------------------------------------------<br />
		[INFO] Total time: 1 minute 18 seconds<br />
		[INFO] Finished at: Tue Oct 03 12:25:48 PDT 2006<br />
		[INFO] Final Memory: 7M/15M<br />
		[INFO] ------------------------------------------------------------------------<br />
            </p>
            <li><p><strong>Note: Due to a current limitation, you must run mvn clean before you can run the tests a second time</strong></p></li>
         </ul>
      </ul> 
                                              </td>
                  <td width="8" height="4" background="images/ContentBoxRS.png" >
                  </td>
              </tr>
              <tr>
                  <td align="right" valign="bottom"><img src= "images/ContentBoxBL.png"></td>
                  <td background="images/ContentBoxB.png"></td>
                  <td align="left"><img src="images/ContentBoxBR.png"></td>
              </tr>
              </tbody>
          </table>
        </td>
    </tr>
    </table>
    </td>
    </tr>
	                        </table>
            </td>
	</table>
    <div class="copyright">
	Copyright � 2006, The Apache Software Foundation
Apache Tuscany is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Web Services PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
	</div>
</body>
</html>
<!-- end the processing -->