Initial commit

This commit is contained in:
Will Bradley 2012-11-06 01:33:14 -07:00
commit f850f0fbbf
2 changed files with 34 additions and 0 deletions

11
README.txt Normal file
View File

@ -0,0 +1,11 @@
eDex API Example (For Infor / AMSI / eSite)
This code is released to the public domain and is
provided by Will Bradley, unaffiliated with Infor or AMSI
and with no warranty whatsoever.
To use, you'll need the savon and nokogiri gems installed,
and you'll need to get the appropriate YOUR_X_HERE variables
from your account representative and put them in edex.rb.
You can then run 'ruby edex.rb' from the command line (assuming
you have Ruby installed.)

23
edex.rb Normal file
View File

@ -0,0 +1,23 @@
# eDex API Example (For Infor / AMSI / eSite)
# This code is released to the public domain and is
# provided by Will Bradley, unaffiliated with Infor or AMSI
# and with no warranty whatsoever.
# See README for usage info.
class UnitsController < ApplicationController
require 'savon'
require 'nokogiri'
# GET /units
def index
client = Savon::Client.new "http://amsi.saas.infor.com/AMSIWEBG003/edexweb/esite/leasing.asmx?wsdl"
response = client.get_property_units do |soap|
soap.xml = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetPropertyUnits xmlns="http://tempuri.org/"> <UserID>YOUR_EDEX_USERID_HERE</UserID> <Password>YOUR_EDEX_PASSWORD_HERE</Password> <PortfolioName>YOUR_COMPANY_NAME_HERE|YOUR_PORTAL_NAME_HERE</PortfolioName> <XMLData><![CDATA[<edex><propertyid>YOUR_PROPERTY_ID_HERE</propertyid><includeamenities>0</includeamenities></edex>]]></XMLData> </GetPropertyUnits> </soap:Body></soap:Envelope>'
end
property_data = response.to_hash[:get_property_units_response][:get_property_units_result]
doc = Nokogiri::XML(property_data)
@view = doc.css('Unit')[0]['UnitId']
end
end