class IFD_WS
Public Class Methods
send_XML_post_webservice(host,type,data)
click to toggle source
# File lib/anhpham/methods/IFD_webservice.rb, line 3 def self.send_XML_post_webservice(host,type,data) url = "#{host}/#{type}" puts url WebServiceMethods.send_XML_post_request(url,data) end
send_get_MYM_webservice(host,type,data)
click to toggle source
# File lib/anhpham/methods/IFD_webservice.rb, line 9 def self.send_get_MYM_webservice(host,type,data) url = "#{host}/#{type}?#{data}" WebServiceMethods.send_get_request(url) end