|
Posted by on October 23, 2007, 7:33 pm
If you were Registered and logged in, you could reply and use other advanced thread options
On Sep 25, 9:31 pm, andy.goha...@gmail.com wrote:
> We have several IVR applications (IntervoiceInvisionplatform) that
> currently use CICS screen scraping technique or DCICS calls to acquire
> backend system data for our IVR apps. Screen scraping is definitely
> something we are wanting to discontinue. DCICS calls are not bad...
> just too implementation specific.
>
> We would prefer to use XML over HTTP or Web Services (with SOAP
> message). The thing we are struggling with is how to easily parse XML
> within Intervoice'sInvisioncode. We've come up with ways to do it,
> but it's very developer intensive and long learning curve to get it
> done.
>
> Anyone know of any plug-ins or generic code libraries for being able
> to handle XML within an Intervoice application?
I read XML in InVision using the iHTTP Source Retrieve InVision form
and then parsing the result in calculate forms. The XML can come back
as an Ordered Collection - for example:
RootElement childrenAt:'Whatever' assigned to -> XmlWhatever_OC
Then use the parsing commands, such as firstChild, nextSibling,
value, ...
You need to have HTTP enabled in the INTVCODE.EXE file and have the
iHTTP.cfg and iHTTP.ldr files setup - assuming you are using an IqTalk
runtime...
|