Is there a oBix client library toolkit for Delphi?
oBix is a XML web-server/client standard.
See: http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=obix
And: http://www.niagara-central.com/ord?portal:/blog/BlogEntry/112

The version really does not matter too much, but I would prefer Delphi 2007.

I found this C code, but it links against unix libs: http://code.google.com/p/c-obix-tools/
And the java code floating around links against Java libs.
So if there's some Delphi code I could use that would be great.
Or maybe I'm just naive and there a standard Delphi component that can just be used as is with this stuff.

link|improve this question

73% accept rate
1  
How can a Delphi developer test a oBix client library, does it require an oBix enabled house (or at least a cubicle)? – mjn Nov 21 '11 at 13:47
@mjn, good question, you can test against the obix test server @ obix.tridium.com/file/obix.html – Johan Nov 21 '11 at 14:05
feedback

2 Answers

up vote 2 down vote accepted
+50

The official oBIX download at OASIS (http://www.oasis-open.org/committees/download.php/21462/obix-1.0-cs-01.zip) also includes a WSDL file and the XSD, which could be used with the Delphi Schema Binding Wizard.

The WSDL in this download differs from the one at http://obix.tridium.com/obix/wsdl - I am not sure wether there are relevant differences, but I would first try the official version. Both should work with oBIX 1.0 compliant servers, but 'the proof of the pudding is in the eating'.

However, as it seems that oBIX SOAP services use WS-* standards like WS-Security which are not supported by Delphi yet, I recommend to use simple a HTTP client library like Indy or Synapse and the HTTP binding, a REST based API described in chapter 17 of the specification. It uses the same XML structure but with less web service overhead.

To get a basic version of a oBIX client, you only need to run the Schema Binding Wizard on the XSD, to generate XML DOM classes source code. These classes can be used to populate a XML request object and to build the payload for the HTTP requests. For responses from the server, the same DOM classes can be used to parse the HTTP body paylod, and to provide the response as properties of the DOM instance.

link|improve this answer
feedback

I've read a bit about oBix and it turns out there's an WSDL: http://obix.tridium.com/obix/wsdl

And the XSD is here: http://www.oasis-open.org/committees/document.php?document_id=18985&wg_abbrev=obix-xml

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.