uddi4r 0.8 → 0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/uddi4r.rb +7 -0
- data/lib/{client.rb → uddi4r/client.rb} +121 -3
- data/lib/{connection.rb → uddi4r/connection.rb} +0 -1
- data/lib/{models.rb → uddi4r/models.rb} +94 -5
- data/lib/{soap_builder.rb → uddi4r/soap_builder.rb} +0 -0
- data/lib/uddi4r/try.rb +46 -0
- data/test/test_client.rb +5 -4
- data/test/test_connection.rb +4 -1
- data/test/test_model.rb +4 -1
- metadata +23 -78
- data/doc/classes/Uddi4r.html +0 -190
- data/doc/classes/Uddi4r/BindingDetail.html +0 -172
- data/doc/classes/Uddi4r/BindingTemplate.html +0 -187
- data/doc/classes/Uddi4r/BusinessDetail.html +0 -167
- data/doc/classes/Uddi4r/BusinessEntity.html +0 -167
- data/doc/classes/Uddi4r/BusinessInfo.html +0 -177
- data/doc/classes/Uddi4r/BusinessList.html +0 -172
- data/doc/classes/Uddi4r/BusinessService.html +0 -167
- data/doc/classes/Uddi4r/CategoryBag.html +0 -167
- data/doc/classes/Uddi4r/Client.html +0 -744
- data/doc/classes/Uddi4r/Connection.html +0 -365
- data/doc/classes/Uddi4r/DiscoveryURLs.html +0 -191
- data/doc/classes/Uddi4r/FindQualifiers.html +0 -191
- data/doc/classes/Uddi4r/IdentifierBag.html +0 -167
- data/doc/classes/Uddi4r/KeyedReference.html +0 -192
- data/doc/classes/Uddi4r/Model.html +0 -333
- data/doc/classes/Uddi4r/OverviewDoc.html +0 -154
- data/doc/classes/Uddi4r/RelatedBusinessesList.html +0 -167
- data/doc/classes/Uddi4r/ServiceDetail.html +0 -172
- data/doc/classes/Uddi4r/ServiceInfo.html +0 -172
- data/doc/classes/Uddi4r/ServiceList.html +0 -172
- data/doc/classes/Uddi4r/SoapBuilder.html +0 -390
- data/doc/classes/Uddi4r/TModel.html +0 -187
- data/doc/classes/Uddi4r/TModelBag.html +0 -189
- data/doc/classes/Uddi4r/TModelDetail.html +0 -167
- data/doc/classes/Uddi4r/TModelInfo.html +0 -167
- data/doc/classes/Uddi4r/TModelInstanceInfo.html +0 -172
- data/doc/classes/Uddi4r/TModelList.html +0 -167
- data/doc/created.rid +0 -1
- data/doc/dot/f_0.dot +0 -14
- data/doc/dot/f_0.png +0 -0
- data/doc/dot/f_1.dot +0 -386
- data/doc/dot/f_1.png +0 -0
- data/doc/dot/f_2.dot +0 -386
- data/doc/dot/f_2.png +0 -0
- data/doc/dot/f_3.dot +0 -386
- data/doc/dot/f_3.png +0 -0
- data/doc/dot/f_4.dot +0 -386
- data/doc/dot/f_4.png +0 -0
- data/doc/dot/m_1_0.dot +0 -386
- data/doc/dot/m_1_0.png +0 -0
- data/doc/dot/m_2_0.dot +0 -386
- data/doc/dot/m_2_0.png +0 -0
- data/doc/dot/m_3_0.dot +0 -386
- data/doc/dot/m_3_0.png +0 -0
- data/doc/dot/m_4_0.dot +0 -386
- data/doc/dot/m_4_0.png +0 -0
- data/doc/files/README.html +0 -152
- data/doc/files/lib/client_rb.html +0 -151
- data/doc/files/lib/connection_rb.html +0 -153
- data/doc/files/lib/models_rb.html +0 -149
- data/doc/files/lib/soap_builder_rb.html +0 -142
- data/doc/fr_class_index.html +0 -54
- data/doc/fr_file_index.html +0 -31
- data/doc/fr_method_index.html +0 -55
- data/doc/index.html +0 -24
- data/doc/rdoc-style.css +0 -208
data/doc/dot/m_4_0.png
DELETED
Binary file
|
data/doc/files/README.html
DELETED
@@ -1,152 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>File: README</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="fileHeader">
|
50
|
-
<h1>README</h1>
|
51
|
-
<table class="header-table">
|
52
|
-
<tr class="top-aligned-row">
|
53
|
-
<td><strong>Path:</strong></td>
|
54
|
-
<td>README
|
55
|
-
</td>
|
56
|
-
</tr>
|
57
|
-
<tr class="top-aligned-row">
|
58
|
-
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>Sun Jul 16 23:17:04 EDT 2006</td>
|
60
|
-
</tr>
|
61
|
-
</table>
|
62
|
-
</div>
|
63
|
-
<!-- banner header -->
|
64
|
-
|
65
|
-
<div id="bodyContent">
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
<div id="contextContent">
|
70
|
-
<div id="diagram">
|
71
|
-
<map id="map" name="map">
|
72
|
-
</map>
|
73
|
-
<img src="../dot/f_0.png" usemap="#map" border=0 alt="TopLevel">
|
74
|
-
</div>
|
75
|
-
|
76
|
-
<div id="description">
|
77
|
-
<h1><a href="../classes/Uddi4r.html">Uddi4r</a> UDDI for Ruby</h1>
|
78
|
-
<p>
|
79
|
-
<a href="http://uddi4r.rubyforge.org">uddi4r.rubyforge.org</a>
|
80
|
-
</p>
|
81
|
-
<p>
|
82
|
-
<a href="../classes/Uddi4r.html">Uddi4r</a> is an open-source pure Ruby
|
83
|
-
implementation of UDDI inquiry services. The project aims at providing
|
84
|
-
Sevice Oriented Architecture (SOA) support for Ruby and Rails applications.
|
85
|
-
UDDI stands of Universal Description, Discovery and Integration; it is an
|
86
|
-
OASIS standard commonly used for "yellow pages"-style querying
|
87
|
-
and dynamic lookup of web services.
|
88
|
-
</p>
|
89
|
-
<p>
|
90
|
-
Copyright © 2006 Zak Mandhro
|
91
|
-
</p>
|
92
|
-
<p>
|
93
|
-
Permission is hereby granted, free of charge, to any person obtaining a
|
94
|
-
copy of this software and associated documentation files (the
|
95
|
-
"Software"), to deal in the Software without restriction,
|
96
|
-
including without limitation the rights to use, copy, modify, merge,
|
97
|
-
publish, distribute, sublicense, and/or sell copies of the Software, and to
|
98
|
-
permit persons to whom the Software is furnished to do so, subject to the
|
99
|
-
following conditions:
|
100
|
-
</p>
|
101
|
-
<p>
|
102
|
-
The above copyright notice and this permission notice shall be included in
|
103
|
-
all copies or substantial portions of the Software.
|
104
|
-
</p>
|
105
|
-
<p>
|
106
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
107
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
108
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
109
|
-
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
110
|
-
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
111
|
-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
112
|
-
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
113
|
-
</p>
|
114
|
-
<p>
|
115
|
-
See <a href="../classes/Uddi4r/Client.html">Uddi4r::Client</a>, <a
|
116
|
-
href="../classes/Uddi4r/Model.html">Uddi4r::Model</a> and <a
|
117
|
-
href="../classes/Uddi4r/Connection.html">Uddi4r::Connection</a> for more
|
118
|
-
documentation.
|
119
|
-
</p>
|
120
|
-
|
121
|
-
</div>
|
122
|
-
|
123
|
-
|
124
|
-
</div>
|
125
|
-
|
126
|
-
|
127
|
-
</div>
|
128
|
-
|
129
|
-
|
130
|
-
<!-- if includes -->
|
131
|
-
|
132
|
-
<div id="section">
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
<!-- if method_list -->
|
142
|
-
|
143
|
-
|
144
|
-
</div>
|
145
|
-
|
146
|
-
|
147
|
-
<div id="validator-badges">
|
148
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
149
|
-
</div>
|
150
|
-
|
151
|
-
</body>
|
152
|
-
</html>
|
@@ -1,151 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>File: client.rb</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="fileHeader">
|
50
|
-
<h1>client.rb</h1>
|
51
|
-
<table class="header-table">
|
52
|
-
<tr class="top-aligned-row">
|
53
|
-
<td><strong>Path:</strong></td>
|
54
|
-
<td>lib/client.rb
|
55
|
-
</td>
|
56
|
-
</tr>
|
57
|
-
<tr class="top-aligned-row">
|
58
|
-
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>Sat Dec 09 20:41:55 EST 2006</td>
|
60
|
-
</tr>
|
61
|
-
</table>
|
62
|
-
</div>
|
63
|
-
<!-- banner header -->
|
64
|
-
|
65
|
-
<div id="bodyContent">
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
<div id="contextContent">
|
70
|
-
<div id="diagram">
|
71
|
-
<map id="map" name="map">
|
72
|
-
<area shape="RECT" coords="1378,135,1450,183" href="../../classes/Uddi4r/Model.html" alt="Model">
|
73
|
-
<area shape="RECT" coords="27,234,118,282" href="../../classes/Uddi4r/BindingDetail.html" alt="BindingDetail">
|
74
|
-
<area shape="RECT" coords="142,234,222,282" href="../../classes/Uddi4r/ServiceList.html" alt="ServiceList">
|
75
|
-
<area shape="RECT" coords="246,234,336,282" href="../../classes/Uddi4r/BusinessList.html" alt="BusinessList">
|
76
|
-
<area shape="RECT" coords="360,234,456,282" href="../../classes/Uddi4r/FindQualifiers.html" alt="FindQualifiers">
|
77
|
-
<area shape="RECT" coords="480,234,568,282" href="../../classes/Uddi4r/IdentifierBag.html" alt="IdentifierBag">
|
78
|
-
<area shape="RECT" coords="592,234,683,282" href="../../classes/Uddi4r/OverviewDoc.html" alt="OverviewDoc">
|
79
|
-
<area shape="RECT" coords="707,234,814,282" href="../../classes/Uddi4r/KeyedReference.html" alt="KeyedReference">
|
80
|
-
<area shape="RECT" coords="838,234,944,282" href="../../classes/Uddi4r/BindingTemplate.html" alt="BindingTemplate">
|
81
|
-
<area shape="RECT" coords="968,234,1091,282" href="../../classes/Uddi4r/TModelInstanceInfo.html" alt="TModelInstanceInfo">
|
82
|
-
<area shape="RECT" coords="1115,234,1214,282" href="../../classes/Uddi4r/BusinessEntity.html" alt="BusinessEntity">
|
83
|
-
<area shape="RECT" coords="1238,234,1344,282" href="../../classes/Uddi4r/BusinessService.html" alt="BusinessService">
|
84
|
-
<area shape="RECT" coords="1368,234,1459,282" href="../../classes/Uddi4r/BusinessInfo.html" alt="BusinessInfo">
|
85
|
-
<area shape="RECT" coords="1483,234,1566,282" href="../../classes/Uddi4r/ServiceInfo.html" alt="ServiceInfo">
|
86
|
-
<area shape="RECT" coords="1590,234,1726,282" href="../../classes/Uddi4r/RelatedBusinessesList.html" alt="RelatedBusinessesList">
|
87
|
-
<area shape="RECT" coords="1750,234,1840,282" href="../../classes/Uddi4r/ServiceDetail.html" alt="ServiceDetail">
|
88
|
-
<area shape="RECT" coords="1864,234,1955,282" href="../../classes/Uddi4r/TModelDetail.html" alt="TModelDetail">
|
89
|
-
<area shape="RECT" coords="1979,234,2062,282" href="../../classes/Uddi4r/TModelInfo.html" alt="TModelInfo">
|
90
|
-
<area shape="RECT" coords="2086,234,2168,282" href="../../classes/Uddi4r/TModelList.html" alt="TModelList">
|
91
|
-
<area shape="RECT" coords="2192,234,2275,282" href="../../classes/Uddi4r/TModelBag.html" alt="TModelBag">
|
92
|
-
<area shape="RECT" coords="2299,234,2400,282" href="../../classes/Uddi4r/DiscoveryURLs.html" alt="DiscoveryURLs">
|
93
|
-
<area shape="RECT" coords="2424,234,2496,282" href="../../classes/Uddi4r/TModel.html" alt="TModel">
|
94
|
-
<area shape="RECT" coords="2520,234,2611,282" href="../../classes/Uddi4r/CategoryBag.html" alt="CategoryBag">
|
95
|
-
<area shape="RECT" coords="2635,234,2734,282" href="../../classes/Uddi4r/BusinessDetail.html" alt="BusinessDetail">
|
96
|
-
<area shape="RECT" coords="1378,6,1450,54" href="../../classes/ROXML.html" alt="ROXML">
|
97
|
-
<area shape="RECT" coords="2758,234,2840,282" href="../../classes/Uddi4r/Connection.html" alt="Connection">
|
98
|
-
<area shape="RECT" coords="335,135,407,183" href="../../classes/Uddi4r/Client.html" alt="Client">
|
99
|
-
<area shape="RECT" coords="2747,124,2840,171" href="../../classes/Uddi4r/SoapBuilder.html" alt="SoapBuilder">
|
100
|
-
<area shape="RECT" coords="16,91,2851,292" href="../../classes/Uddi4r.html" alt="Uddi4r">
|
101
|
-
</map>
|
102
|
-
<img src="../../dot/f_3.png" usemap="#map" border=0 alt="TopLevel">
|
103
|
-
</div>
|
104
|
-
|
105
|
-
<div id="description">
|
106
|
-
<p>
|
107
|
-
uddi4r - UDDI Client for Ruby <a
|
108
|
-
href="http://rubyforge.org/projects/uddi4r">rubyforge.org/projects/uddi4r</a>/
|
109
|
-
</p>
|
110
|
-
|
111
|
-
</div>
|
112
|
-
|
113
|
-
<div id="requires-list">
|
114
|
-
<h3 class="section-bar">Required files</h3>
|
115
|
-
|
116
|
-
<div class="name-list">
|
117
|
-
rexml/element
|
118
|
-
<a href="connection_rb.html">lib/connection</a>
|
119
|
-
<a href="models_rb.html">lib/models</a>
|
120
|
-
</div>
|
121
|
-
</div>
|
122
|
-
|
123
|
-
</div>
|
124
|
-
|
125
|
-
|
126
|
-
</div>
|
127
|
-
|
128
|
-
|
129
|
-
<!-- if includes -->
|
130
|
-
|
131
|
-
<div id="section">
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
<!-- if method_list -->
|
141
|
-
|
142
|
-
|
143
|
-
</div>
|
144
|
-
|
145
|
-
|
146
|
-
<div id="validator-badges">
|
147
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
148
|
-
</div>
|
149
|
-
|
150
|
-
</body>
|
151
|
-
</html>
|
@@ -1,153 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>File: connection.rb</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="fileHeader">
|
50
|
-
<h1>connection.rb</h1>
|
51
|
-
<table class="header-table">
|
52
|
-
<tr class="top-aligned-row">
|
53
|
-
<td><strong>Path:</strong></td>
|
54
|
-
<td>lib/connection.rb
|
55
|
-
</td>
|
56
|
-
</tr>
|
57
|
-
<tr class="top-aligned-row">
|
58
|
-
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>Tue Jul 11 18:39:48 EDT 2006</td>
|
60
|
-
</tr>
|
61
|
-
</table>
|
62
|
-
</div>
|
63
|
-
<!-- banner header -->
|
64
|
-
|
65
|
-
<div id="bodyContent">
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
<div id="contextContent">
|
70
|
-
<div id="diagram">
|
71
|
-
<map id="map" name="map">
|
72
|
-
<area shape="RECT" coords="1378,135,1450,183" href="../../classes/Uddi4r/Model.html" alt="Model">
|
73
|
-
<area shape="RECT" coords="27,234,118,282" href="../../classes/Uddi4r/BindingDetail.html" alt="BindingDetail">
|
74
|
-
<area shape="RECT" coords="142,234,222,282" href="../../classes/Uddi4r/ServiceList.html" alt="ServiceList">
|
75
|
-
<area shape="RECT" coords="246,234,336,282" href="../../classes/Uddi4r/BusinessList.html" alt="BusinessList">
|
76
|
-
<area shape="RECT" coords="360,234,456,282" href="../../classes/Uddi4r/FindQualifiers.html" alt="FindQualifiers">
|
77
|
-
<area shape="RECT" coords="480,234,568,282" href="../../classes/Uddi4r/IdentifierBag.html" alt="IdentifierBag">
|
78
|
-
<area shape="RECT" coords="592,234,683,282" href="../../classes/Uddi4r/OverviewDoc.html" alt="OverviewDoc">
|
79
|
-
<area shape="RECT" coords="707,234,814,282" href="../../classes/Uddi4r/KeyedReference.html" alt="KeyedReference">
|
80
|
-
<area shape="RECT" coords="838,234,944,282" href="../../classes/Uddi4r/BindingTemplate.html" alt="BindingTemplate">
|
81
|
-
<area shape="RECT" coords="968,234,1091,282" href="../../classes/Uddi4r/TModelInstanceInfo.html" alt="TModelInstanceInfo">
|
82
|
-
<area shape="RECT" coords="1115,234,1214,282" href="../../classes/Uddi4r/BusinessEntity.html" alt="BusinessEntity">
|
83
|
-
<area shape="RECT" coords="1238,234,1344,282" href="../../classes/Uddi4r/BusinessService.html" alt="BusinessService">
|
84
|
-
<area shape="RECT" coords="1368,234,1459,282" href="../../classes/Uddi4r/BusinessInfo.html" alt="BusinessInfo">
|
85
|
-
<area shape="RECT" coords="1483,234,1566,282" href="../../classes/Uddi4r/ServiceInfo.html" alt="ServiceInfo">
|
86
|
-
<area shape="RECT" coords="1590,234,1726,282" href="../../classes/Uddi4r/RelatedBusinessesList.html" alt="RelatedBusinessesList">
|
87
|
-
<area shape="RECT" coords="1750,234,1840,282" href="../../classes/Uddi4r/ServiceDetail.html" alt="ServiceDetail">
|
88
|
-
<area shape="RECT" coords="1864,234,1955,282" href="../../classes/Uddi4r/TModelDetail.html" alt="TModelDetail">
|
89
|
-
<area shape="RECT" coords="1979,234,2062,282" href="../../classes/Uddi4r/TModelInfo.html" alt="TModelInfo">
|
90
|
-
<area shape="RECT" coords="2086,234,2168,282" href="../../classes/Uddi4r/TModelList.html" alt="TModelList">
|
91
|
-
<area shape="RECT" coords="2192,234,2275,282" href="../../classes/Uddi4r/TModelBag.html" alt="TModelBag">
|
92
|
-
<area shape="RECT" coords="2299,234,2400,282" href="../../classes/Uddi4r/DiscoveryURLs.html" alt="DiscoveryURLs">
|
93
|
-
<area shape="RECT" coords="2424,234,2496,282" href="../../classes/Uddi4r/TModel.html" alt="TModel">
|
94
|
-
<area shape="RECT" coords="2520,234,2611,282" href="../../classes/Uddi4r/CategoryBag.html" alt="CategoryBag">
|
95
|
-
<area shape="RECT" coords="2635,234,2734,282" href="../../classes/Uddi4r/BusinessDetail.html" alt="BusinessDetail">
|
96
|
-
<area shape="RECT" coords="1378,6,1450,54" href="../../classes/ROXML.html" alt="ROXML">
|
97
|
-
<area shape="RECT" coords="2758,234,2840,282" href="../../classes/Uddi4r/Connection.html" alt="Connection">
|
98
|
-
<area shape="RECT" coords="335,135,407,183" href="../../classes/Uddi4r/Client.html" alt="Client">
|
99
|
-
<area shape="RECT" coords="2747,124,2840,171" href="../../classes/Uddi4r/SoapBuilder.html" alt="SoapBuilder">
|
100
|
-
<area shape="RECT" coords="16,91,2851,292" href="../../classes/Uddi4r.html" alt="Uddi4r">
|
101
|
-
</map>
|
102
|
-
<img src="../../dot/f_4.png" usemap="#map" border=0 alt="TopLevel">
|
103
|
-
</div>
|
104
|
-
|
105
|
-
<div id="description">
|
106
|
-
<h1><a href="../../classes/Uddi4r.html">Uddi4r</a> UDDI for Ruby</h1>
|
107
|
-
<p>
|
108
|
-
<a href="http://uddi4r.rubyforge.org">uddi4r.rubyforge.org</a>
|
109
|
-
</p>
|
110
|
-
|
111
|
-
</div>
|
112
|
-
|
113
|
-
<div id="requires-list">
|
114
|
-
<h3 class="section-bar">Required files</h3>
|
115
|
-
|
116
|
-
<div class="name-list">
|
117
|
-
soap/streamHandler
|
118
|
-
soap/processor
|
119
|
-
rexml/document
|
120
|
-
rexml/element
|
121
|
-
<a href="soap_builder_rb.html">lib/soap_builder</a>
|
122
|
-
</div>
|
123
|
-
</div>
|
124
|
-
|
125
|
-
</div>
|
126
|
-
|
127
|
-
|
128
|
-
</div>
|
129
|
-
|
130
|
-
|
131
|
-
<!-- if includes -->
|
132
|
-
|
133
|
-
<div id="section">
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
<!-- if method_list -->
|
143
|
-
|
144
|
-
|
145
|
-
</div>
|
146
|
-
|
147
|
-
|
148
|
-
<div id="validator-badges">
|
149
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
150
|
-
</div>
|
151
|
-
|
152
|
-
</body>
|
153
|
-
</html>
|