Barracuda SOAP services are defined and written in Lua, in a simple text format.
These service definitions would normally be embedded in your server, but can be loaded dynamically or uploaded remotely if required, without rebuilding the server.
Barracuda will dynamically generate and publish the appropriate WSDL (Web Service Description Language) document from your installed sevice definitions. This dynamic generation means that the WSDL always reflects the currently installed services : there is no possibility of a mismatched service and WSDL.
soap_services = {
Info = {
Date = {
output = {name = "return", type = "date"},
call = function() return os.date("!%Y-%m-%d") end,
},
}
}
Note the type="date" declaration; Barracuda SOAP supports all XML Schema simple data types, with automatic conversion of double, string, decimal, and integer.
Here is a vbscript program that accesses the service defined above, assuming that Barracuda SOAP is configured to publish SOAP services on localhost/soap :
dim SOAPClient
set SOAPClient = createobject("MSSOAP.SOAPClient")
SOAPClient.mssoapinit("http://localhost/soap/info.wsdl")
wscript.echo "SOAP Server date is :", SOAPClient.Date()
Barracuda SOAP services are defined as a Lua table called soap_services. This table defines one or more services; each service can support any number of operations.
An operation is a single remote procedure call (rpc).
Each named element in the soap_services table is a SOAP service definition, and must
contain a list of operations supported by this service.
note: SOAP service, operation and parameter names
must be valid XML names, as per the W3C XML
spec.
Each operation is a table with the following defined members : input, output, call, and lifetime
note : two dashes (--) indicates a comment in Lua; strings are enclosed with quotes (" "); tables are enclosed in a pair of braces ({ }); and table entries are seperated by a comma (,). (trailing commas are permitted). For the full Lua syntax, see the Lua documentation
soap_services = {
Info = {
HTTPVersion = { -- returns the HTTP request version as a string.
output = {name = "return",type = "string"},
lifetime = 0, -- never cache
call = function() return request:version() end,
},
Header = { -- returns a string with the value of the named HTTP header.
input = {name = "name",type = "string"},
output = {name = "value",type = "string"},
lifetime = 0, -- never cache
-- return empty string if no header
call = function(s) return request:header(s) or "" end,
},
Date = { -- returns the current server date, in UTC
lifetime = 5, -- date is valid for 5 seconds
output = {name = "return",type = "date"},
call = function() return os.date("!%Y-%m-%d") end,
},
}
}
soap_services = {
Math = { -- service definition
Add = { -- operation
input = {{name = "x", type = "double"},{name = "y", type = "double"}},
output = {name = "return",type = "double"},
call = function(x,y) return x+y end
}
Subtract = { -- operation
input = {{name = "x", type = "double"},{name = "y", type = "double"}},
output = {name = "return",type = "double"},
call = function(x,y) return x-y end
}
Multiply = { -- operation
input = {{name = "x", type = "double"},{name = "y", type = "double"}},
output = {name = "return",type = "double"},
call = function(x,y) return x*y end
}
Divide = { -- operation
input = {{name = "x", type = "double"},{name = "y", type = "double"}},
output = {name = "return",type = "double"},
call = function(x,y) return x/y end
}
Sum = { -- operation to sum an array of doubles
input = {name = "t", type = "doubleArray"},
output = {name = "return",type = "double"},
call = function(t)
local tot = 0
for i,v in ipairs(t) do tot = tot+v end
return tot
end
}
RandomInt = { -- return random integer in the range 0-n
input = {name = "range", type = "integer"},
output = {name = "return",type = "integer"},
call = function(range) return rnd(0,range) end,
},
} -- end of Math service definition
} -- end of soap_services definition
SOAP is implemented in Barracuda via a directory object, constructed
by calling ba.create.soapdir(). The directory object can then be attached
to the directory tree like any other Barracuda directory, with the same
semantics and address resolution rules.
parameters
For each service defined, Barracuda will publish the a WSDL file at name/service name,
and name/service name.wsdl.
The address for soap requests will be at name/service name.rpc.
name is relative to the parent directory object.
To implement the sample services above, create a text file with the
service definitions as described above.
Then, in the Barracuda config file, create a SOAP service directory using
ba_create_soapdir("directory name", path to service config),
and attach it to the directory tree like any other Barracuda http dir.
ba_create_soapdir() will parse the supplied soap service config file,
and create a SOAP service directory.
The SOAP directory will have an an entry for each service defined in the service config file.
In the case of the above sample config, and assuming that the directory name was "soap",
Barracuda will publish the a WSDL file at "soap/Math" and "soap/Math.wsdl",
and the address for soap requests will be at "soap/Math.rpc".
note :Barracuda SOAP rpc and wsdl requests are handled the same regardless
of case, ie soap/Math and soap/math will return the same reponse.
You can test for the existance of the soap service by pointing a web browser at the WSDL url.
Excel, MSWord, VB Script and .NET are copyright(C) Microsoft Corporation.