uddi4r 0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README +19 -0
- data/doc/classes/Uddi4r/BindingDetail.html +120 -0
- data/doc/classes/Uddi4r/BindingTemplate.html +120 -0
- data/doc/classes/Uddi4r/BusinessDetail.html +120 -0
- data/doc/classes/Uddi4r/BusinessEntity.html +120 -0
- data/doc/classes/Uddi4r/BusinessInfo.html +120 -0
- data/doc/classes/Uddi4r/BusinessList.html +120 -0
- data/doc/classes/Uddi4r/BusinessService.html +120 -0
- data/doc/classes/Uddi4r/CategoryBag.html +120 -0
- data/doc/classes/Uddi4r/Client.html +651 -0
- data/doc/classes/Uddi4r/Connection.html +331 -0
- data/doc/classes/Uddi4r/DiscoveryURLs.html +157 -0
- data/doc/classes/Uddi4r/FindQualifiers.html +157 -0
- data/doc/classes/Uddi4r/IdentifierBag.html +120 -0
- data/doc/classes/Uddi4r/KeyedReference.html +120 -0
- data/doc/classes/Uddi4r/Model.html +296 -0
- data/doc/classes/Uddi4r/OverviewDoc.html +120 -0
- data/doc/classes/Uddi4r/RelatedBusinessesList.html +120 -0
- data/doc/classes/Uddi4r/ServiceDetail.html +120 -0
- data/doc/classes/Uddi4r/ServiceInfo.html +120 -0
- data/doc/classes/Uddi4r/ServiceList.html +120 -0
- data/doc/classes/Uddi4r/SoapBuilder.html +356 -0
- data/doc/classes/Uddi4r/TModel.html +120 -0
- data/doc/classes/Uddi4r/TModelBag.html +155 -0
- data/doc/classes/Uddi4r/TModelDetail.html +120 -0
- data/doc/classes/Uddi4r/TModelInstanceInfo.html +120 -0
- data/doc/classes/Uddi4r.html +154 -0
- data/doc/created.rid +1 -0
- data/doc/files/README.html +147 -0
- data/doc/files/lib/client_rb.html +117 -0
- data/doc/files/lib/connection_rb.html +119 -0
- data/doc/files/lib/models_rb.html +115 -0
- data/doc/files/lib/soap_builder_rb.html +108 -0
- data/doc/fr_class_index.html +52 -0
- data/doc/fr_file_index.html +31 -0
- data/doc/fr_method_index.html +54 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/client.rb +203 -0
- data/lib/connection.rb +74 -0
- data/lib/models.rb +207 -0
- data/lib/soap_builder.rb +89 -0
- data/test/fixtures/business_service.xml +40 -0
- data/test/fixtures/test_uddi_servers.rb +31 -0
- data/test/test_client.rb +141 -0
- data/test/test_connection.rb +34 -0
- data/test/test_model.rb +34 -0
- metadata +97 -0
@@ -0,0 +1,119 @@
|
|
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
|
+
|
71
|
+
<div id="description">
|
72
|
+
<h1><a href="../../classes/Uddi4r.html">Uddi4r</a> UDDI for Ruby</h1>
|
73
|
+
<p>
|
74
|
+
<a href="http://uddi4r.rubyforge.org">uddi4r.rubyforge.org</a>
|
75
|
+
</p>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div id="requires-list">
|
80
|
+
<h3 class="section-bar">Required files</h3>
|
81
|
+
|
82
|
+
<div class="name-list">
|
83
|
+
soap/streamHandler
|
84
|
+
soap/processor
|
85
|
+
rexml/document
|
86
|
+
rexml/element
|
87
|
+
<a href="soap_builder_rb.html">lib/soap_builder</a>
|
88
|
+
</div>
|
89
|
+
</div>
|
90
|
+
|
91
|
+
</div>
|
92
|
+
|
93
|
+
|
94
|
+
</div>
|
95
|
+
|
96
|
+
|
97
|
+
<!-- if includes -->
|
98
|
+
|
99
|
+
<div id="section">
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
<!-- if method_list -->
|
109
|
+
|
110
|
+
|
111
|
+
</div>
|
112
|
+
|
113
|
+
|
114
|
+
<div id="validator-badges">
|
115
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
116
|
+
</div>
|
117
|
+
|
118
|
+
</body>
|
119
|
+
</html>
|
@@ -0,0 +1,115 @@
|
|
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: models.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>models.rb</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>lib/models.rb
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Sun Jul 16 23:12:09 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
|
+
|
71
|
+
<div id="description">
|
72
|
+
<p>
|
73
|
+
uddi4r - UDDI Client for Ruby <a
|
74
|
+
href="http://rubyforge.org/projects/uddi4r">rubyforge.org/projects/uddi4r</a>/
|
75
|
+
</p>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div id="requires-list">
|
80
|
+
<h3 class="section-bar">Required files</h3>
|
81
|
+
|
82
|
+
<div class="name-list">
|
83
|
+
rubygems
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
|
87
|
+
</div>
|
88
|
+
|
89
|
+
|
90
|
+
</div>
|
91
|
+
|
92
|
+
|
93
|
+
<!-- if includes -->
|
94
|
+
|
95
|
+
<div id="section">
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
<!-- if method_list -->
|
105
|
+
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
|
110
|
+
<div id="validator-badges">
|
111
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
112
|
+
</div>
|
113
|
+
|
114
|
+
</body>
|
115
|
+
</html>
|
@@ -0,0 +1,108 @@
|
|
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: soap_builder.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>soap_builder.rb</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>lib/soap_builder.rb
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Tue Jul 11 19:55:31 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
|
+
|
71
|
+
<div id="description">
|
72
|
+
<p>
|
73
|
+
uddi4r - UDDI Client for Ruby <a
|
74
|
+
href="http://rubyforge.org/projects/uddi4r">rubyforge.org/projects/uddi4r</a>/
|
75
|
+
</p>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
|
80
|
+
</div>
|
81
|
+
|
82
|
+
|
83
|
+
</div>
|
84
|
+
|
85
|
+
|
86
|
+
<!-- if includes -->
|
87
|
+
|
88
|
+
<div id="section">
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<!-- if method_list -->
|
98
|
+
|
99
|
+
|
100
|
+
</div>
|
101
|
+
|
102
|
+
|
103
|
+
<div id="validator-badges">
|
104
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</body>
|
108
|
+
</html>
|
@@ -0,0 +1,52 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Classes
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Classes</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Classes</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="classes/Uddi4r.html">Uddi4r</a><br />
|
24
|
+
<a href="classes/Uddi4r/BindingDetail.html">Uddi4r::BindingDetail</a><br />
|
25
|
+
<a href="classes/Uddi4r/BindingTemplate.html">Uddi4r::BindingTemplate</a><br />
|
26
|
+
<a href="classes/Uddi4r/BusinessDetail.html">Uddi4r::BusinessDetail</a><br />
|
27
|
+
<a href="classes/Uddi4r/BusinessEntity.html">Uddi4r::BusinessEntity</a><br />
|
28
|
+
<a href="classes/Uddi4r/BusinessInfo.html">Uddi4r::BusinessInfo</a><br />
|
29
|
+
<a href="classes/Uddi4r/BusinessList.html">Uddi4r::BusinessList</a><br />
|
30
|
+
<a href="classes/Uddi4r/BusinessService.html">Uddi4r::BusinessService</a><br />
|
31
|
+
<a href="classes/Uddi4r/CategoryBag.html">Uddi4r::CategoryBag</a><br />
|
32
|
+
<a href="classes/Uddi4r/Client.html">Uddi4r::Client</a><br />
|
33
|
+
<a href="classes/Uddi4r/Connection.html">Uddi4r::Connection</a><br />
|
34
|
+
<a href="classes/Uddi4r/DiscoveryURLs.html">Uddi4r::DiscoveryURLs</a><br />
|
35
|
+
<a href="classes/Uddi4r/FindQualifiers.html">Uddi4r::FindQualifiers</a><br />
|
36
|
+
<a href="classes/Uddi4r/IdentifierBag.html">Uddi4r::IdentifierBag</a><br />
|
37
|
+
<a href="classes/Uddi4r/KeyedReference.html">Uddi4r::KeyedReference</a><br />
|
38
|
+
<a href="classes/Uddi4r/Model.html">Uddi4r::Model</a><br />
|
39
|
+
<a href="classes/Uddi4r/OverviewDoc.html">Uddi4r::OverviewDoc</a><br />
|
40
|
+
<a href="classes/Uddi4r/RelatedBusinessesList.html">Uddi4r::RelatedBusinessesList</a><br />
|
41
|
+
<a href="classes/Uddi4r/ServiceDetail.html">Uddi4r::ServiceDetail</a><br />
|
42
|
+
<a href="classes/Uddi4r/ServiceInfo.html">Uddi4r::ServiceInfo</a><br />
|
43
|
+
<a href="classes/Uddi4r/ServiceList.html">Uddi4r::ServiceList</a><br />
|
44
|
+
<a href="classes/Uddi4r/SoapBuilder.html">Uddi4r::SoapBuilder</a><br />
|
45
|
+
<a href="classes/Uddi4r/TModel.html">Uddi4r::TModel</a><br />
|
46
|
+
<a href="classes/Uddi4r/TModelBag.html">Uddi4r::TModelBag</a><br />
|
47
|
+
<a href="classes/Uddi4r/TModelDetail.html">Uddi4r::TModelDetail</a><br />
|
48
|
+
<a href="classes/Uddi4r/TModelInstanceInfo.html">Uddi4r::TModelInstanceInfo</a><br />
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
</body>
|
52
|
+
</html>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Files
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Files</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Files</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="files/README.html">README</a><br />
|
24
|
+
<a href="files/lib/client_rb.html">lib/client.rb</a><br />
|
25
|
+
<a href="files/lib/connection_rb.html">lib/connection.rb</a><br />
|
26
|
+
<a href="files/lib/models_rb.html">lib/models.rb</a><br />
|
27
|
+
<a href="files/lib/soap_builder_rb.html">lib/soap_builder.rb</a><br />
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</body>
|
31
|
+
</html>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Methods
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Methods</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Methods</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000004">create_body (Uddi4r::SoapBuilder)</a><br />
|
24
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000006">create_element (Uddi4r::SoapBuilder)</a><br />
|
25
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000003">create_elements (Uddi4r::SoapBuilder)</a><br />
|
26
|
+
<a href="classes/Uddi4r/Model.html#M000010">create_from (Uddi4r::Model)</a><br />
|
27
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000007">create_operation (Uddi4r::SoapBuilder)</a><br />
|
28
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000001">create_payload (Uddi4r::SoapBuilder)</a><br />
|
29
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000002">create_t_model_bag (Uddi4r::SoapBuilder)</a><br />
|
30
|
+
<a href="classes/Uddi4r/SoapBuilder.html#M000005">create_uddi_operation (Uddi4r::SoapBuilder)</a><br />
|
31
|
+
<a href="classes/Uddi4r/Client.html#M000013">find_binding (Uddi4r::Client)</a><br />
|
32
|
+
<a href="classes/Uddi4r/Client.html#M000014">find_business (Uddi4r::Client)</a><br />
|
33
|
+
<a href="classes/Uddi4r/Client.html#M000015">find_related_businesses (Uddi4r::Client)</a><br />
|
34
|
+
<a href="classes/Uddi4r/Client.html#M000016">find_service (Uddi4r::Client)</a><br />
|
35
|
+
<a href="classes/Uddi4r/Client.html#M000017">get_binding_detail (Uddi4r::Client)</a><br />
|
36
|
+
<a href="classes/Uddi4r/Client.html#M000018">get_business_detail (Uddi4r::Client)</a><br />
|
37
|
+
<a href="classes/Uddi4r/Client.html#M000020">get_service_detail (Uddi4r::Client)</a><br />
|
38
|
+
<a href="classes/Uddi4r/Client.html#M000019">get_t_model_detail (Uddi4r::Client)</a><br />
|
39
|
+
<a href="classes/Uddi4r/Connection.html#M000025">invoke (Uddi4r::Connection)</a><br />
|
40
|
+
<a href="classes/Uddi4r/Connection.html#M000024">invoke_operation (Uddi4r::Connection)</a><br />
|
41
|
+
<a href="classes/Uddi4r/Connection.html#M000023">max_rows= (Uddi4r::Connection)</a><br />
|
42
|
+
<a href="classes/Uddi4r/Connection.html#M000022">namespace_for (Uddi4r::Connection)</a><br />
|
43
|
+
<a href="classes/Uddi4r/Client.html#M000012">new (Uddi4r::Client)</a><br />
|
44
|
+
<a href="classes/Uddi4r/Connection.html#M000021">new (Uddi4r::Connection)</a><br />
|
45
|
+
<a href="classes/Uddi4r/FindQualifiers.html#M000008">new (Uddi4r::FindQualifiers)</a><br />
|
46
|
+
<a href="classes/Uddi4r/DiscoveryURLs.html#M000028">new (Uddi4r::DiscoveryURLs)</a><br />
|
47
|
+
<a href="classes/Uddi4r/TModelBag.html#M000027">new (Uddi4r::TModelBag)</a><br />
|
48
|
+
<a href="classes/Uddi4r/Model.html#M000011">new (Uddi4r::Model)</a><br />
|
49
|
+
<a href="classes/Uddi4r/Model.html#M000009">tag_name (Uddi4r::Model)</a><br />
|
50
|
+
<a href="classes/Uddi4r/Connection.html#M000026">to_s (Uddi4r::Connection)</a><br />
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
</body>
|
54
|
+
</html>
|
data/doc/index.html
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
5
|
+
|
6
|
+
<!--
|
7
|
+
|
8
|
+
RDoc Documentation
|
9
|
+
|
10
|
+
-->
|
11
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
12
|
+
<head>
|
13
|
+
<title>RDoc Documentation</title>
|
14
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
15
|
+
</head>
|
16
|
+
<frameset rows="20%, 80%">
|
17
|
+
<frameset cols="25%,35%,45%">
|
18
|
+
<frame src="fr_file_index.html" title="Files" name="Files" />
|
19
|
+
<frame src="fr_class_index.html" name="Classes" />
|
20
|
+
<frame src="fr_method_index.html" name="Methods" />
|
21
|
+
</frameset>
|
22
|
+
<frame src="files/README.html" name="docwin" />
|
23
|
+
</frameset>
|
24
|
+
</html>
|