[MOBY-guts] biomoby commit
Mark Wilkinson
mwilkinson at pub.open-bio.org
Wed Aug 6 14:31:21 UTC 2003
mwilkinson
Wed Aug 6 10:31:21 EDT 2003
Update of /home/repository/moby/moby-live/Perl/MOBY/Client
In directory pub.open-bio.org:/tmp/cvs-serv20066
Modified Files:
Service.html Service.pm
Log Message:
fixed documentation error with input object XML tags not being closed
moby-live/Perl/MOBY/Client Service.html,1.2,1.3 Service.pm,1.4,1.5
===================================================================
RCS file: /home/repository/moby/moby-live/Perl/MOBY/Client/Service.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- /home/repository/moby/moby-live/Perl/MOBY/Client/Service.html 2003/06/11 20:36:59 1.2
+++ /home/repository/moby/moby-live/Perl/MOBY/Client/Service.html 2003/08/06 14:31:21 1.3
@@ -86,9 +86,9 @@
Each element of @data is itself a listref of [articleName, $XML].
articleName may be undef if it isn't required.
$XML is the actual XML of the Input object
- Examples : $Service->execute(XMLinputlist => [
- ['object1', '<Object namespace="blah" id="123">'],
- ['object1', '<Object namespace="blah" id="234">']
+ Examples : $Service->execute(XMLinputlist => [
+ ['object1', '<Object namespace="blah" id="123"/>'],
+ ['object1', '<Object namespace="blah" id="234"/>']
]);
This would invoke the service twice (in a single message)
the first time with an object "123" and the second time with object "234". the
@@ -96,8 +96,8 @@
$Service->execute(XMLinputlist => [
['collection1', [
- '<Object namespace="blah" id="123">',
- '<Object namespace="blah" id="234">']
+ '<Object namespace="blah" id="123"/>',
+ '<Object namespace="blah" id="234"/>']
]);
This would invoke the service once with a collection of sequence inputs
called "collection1"</pre>
===================================================================
RCS file: /home/repository/moby/moby-live/Perl/MOBY/Client/Service.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- /home/repository/moby/moby-live/Perl/MOBY/Client/Service.pm 2003/06/11 20:36:59 1.4
+++ /home/repository/moby/moby-live/Perl/MOBY/Client/Service.pm 2003/08/06 14:31:21 1.5
@@ -151,9 +151,9 @@
Each element of @data is itself a listref of [articleName, $XML].
articleName may be undef if it isn't required.
$XML is the actual XML of the Input object
- Examples : $Service->execute(XMLinputlist => [
- ['object1', '<Object namespace="blah" id="123">'],
- ['object1', '<Object namespace="blah" id="234">']
+ Examples : $Service->execute(XMLinputlist => [
+ ['object1', '<Object namespace="blah" id="123"/>'],
+ ['object1', '<Object namespace="blah" id="234"/>']
]);
This would invoke the service twice (in a single message)
the first time with an object "123" and the second time with object "234". the
@@ -161,8 +161,8 @@
$Service->execute(XMLinputlist => [
['collection1', [
- '<Object namespace="blah" id="123">',
- '<Object namespace="blah" id="234">']
+ '<Object namespace="blah" id="123"/>',
+ '<Object namespace="blah" id="234"/>']
]);
This would invoke the service once with a collection of sequence inputs
called "collection1"
More information about the MOBY-guts
mailing list