summaryrefslogtreecommitdiff
path: root/lib/opentox.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/opentox.rb')
-rw-r--r--lib/opentox.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/opentox.rb b/lib/opentox.rb
index 80644db..faa7b58 100644
--- a/lib/opentox.rb
+++ b/lib/opentox.rb
@@ -95,9 +95,9 @@ module OpenTox
end
# Post object to webservice
- def post service_uri, wait=true
+ def post params=nil, wait=true
# TODO: RDFXML
- uri = RestClientWrapper.post service_uri, to_ntriples, { :content_type => "text/plain", :subjectid => @subjectid}
+ uri = RestClientWrapper.post @uri.to_s, params, { :content_type => "text/plain", :subjectid => @subjectid}
wait_for_task uri if wait
end