KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > juddi > datastore > jdbc > TestFindBusinessByDiscoveryURLQuery


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.juddi.datastore.jdbc;
17
18 import java.sql.Connection JavaDoc;
19 import java.util.Vector JavaDoc;
20
21 import org.apache.juddi.datatype.DiscoveryURL;
22 import org.apache.juddi.datatype.DiscoveryURLs;
23 import org.apache.juddi.util.Config;
24 import org.apache.juddi.util.jdbc.Transaction;
25
26 /**
27  * @author Steve Viens (sviens@apache.org)
28  */

29 class TestFindBusinessByDiscoveryURLQuery
30 {
31   public static void main(String JavaDoc[] args)
32     throws Exception JavaDoc
33   {
34     // make sure we're using a DBCP DataSource and
35
// not trying to use JNDI to aquire one.
36
Config.setStringProperty("juddi.useConnectionPool","true");
37
38     Connection JavaDoc conn = null;
39     try {
40       conn = Database.aquireConnection();
41       test(conn);
42     }
43     finally {
44       if (conn != null)
45         conn.close();
46     }
47   }
48
49   public static void test(Connection JavaDoc connection)
50     throws Exception JavaDoc
51   {
52
53     DiscoveryURLs discoveryURLs = new DiscoveryURLs();
54     Vector JavaDoc urls = new Vector JavaDoc();
55     urls.add(new DiscoveryURL("http://www.uddi.org/","wsdl"));
56     urls.add(new DiscoveryURL("http://www.sviens.com/","soap"));
57     urls.add(new DiscoveryURL("http://www.juddi.org/","wsdl"));
58     discoveryURLs.setDiscoveryURLVector(urls);
59
60     Vector JavaDoc keysIn = new Vector JavaDoc();
61     keysIn.add("d77170a5-cf1e-45e8-bbf3-5b0756b29199");
62     keysIn.add("c311085b-3277-470d-8ce9-07b81c484e4b");
63     keysIn.add("e2805dbe-3957-4490-9230-5f06d85fd50d");
64     keysIn.add("45994713-d3c3-40d6-87b5-6ce51f36001c");
65     keysIn.add("901b15c5-799c-4387-8337-a1a35fceb791");
66     keysIn.add("80fdae14-0e5d-4ea6-8eb8-50fde422056d");
67     keysIn.add("e1996c33-c436-4004-9e3e-14de191bcc6b");
68     keysIn.add("36f5d745-3be5-4e8f-8c1a-5f59a4c69070");
69
70     Transaction txn = new Transaction();
71
72     if (connection != null)
73     {
74       try
75       {
76         // begin a new transaction
77
txn.begin(connection);
78
79         FindBusinessByDiscoveryURLQuery.select(discoveryURLs,keysIn,null,connection);
80         FindBusinessByDiscoveryURLQuery.select(discoveryURLs,null,null,connection);
81
82         // commit the transaction
83
txn.commit();
84       }
85       catch(Exception JavaDoc ex)
86       {
87         try { txn.rollback(); }
88         catch(java.sql.SQLException JavaDoc sqlex) { sqlex.printStackTrace(); }
89         throw ex;
90       }
91     }
92   }
93 }
94
Popular Tags