Xignite data interface

Hey Guys

Has anyone developed an interface to Xignite data?

I am specifically interested in their GlobalHistorical feed for close of day share prices.

I need to build an interface but am a bit (read totally) lost on how to go about it...

So I'm hoping that one of you good people out there has done it already and can help me out :)

Cheers
Chris
 
I'm not familiar with that particular web service, but the WSDL Analyser automatically generates good sample code based on the providers WSDL document. (WSDL = Web Service Definition Language)

Stick this into proenv:


Code:
proenv>bprowsdldoc http://www.xignite.com/xGlobalHistorical.asmx?WSDL C:\temp\xignite



Open the resulting index.html for code samples of how to call the webservice:


Code:
DEFINE VARIABLE hWebService AS HANDLE NO-UNDO.
DEFINE VARIABLE hXigniteGlobalHistoricalSoap AS HANDLE NO-UNDO.


CREATE SERVER hWebService.


hWebService:CONNECT("-WSDL 'http://www.xignite.com/xGlobalHistorical.asmx?WSDL'").

RUN XigniteGlobalHistoricalSoap SET hXigniteGlobalHistoricalSoap ON hWebService.


And how to execute a method within it:

Code:
DEFINE VARIABLE Identifier AS CHARACTER NO-UNDO.
DEFINE VARIABLE IdentifierType AS CHARACTER NO-UNDO.
DEFINE VARIABLE AdjustmentMethod AS LONGCHAR NO-UNDO.
DEFINE VARIABLE EndDate AS CHARACTER NO-UNDO.
DEFINE VARIABLE PeriodType AS CHARACTER NO-UNDO.
DEFINE VARIABLE Periods AS INTEGER NO-UNDO.
DEFINE VARIABLE GetGlobalHistoricalQuotesAsOfResult AS LONGCHAR NO-UNDO.

/* Procedure invocation of GetGlobalHistoricalQuotesAsOf operation. */
RUN GetGlobalHistoricalQuotesAsOf IN hXigniteGlobalHistoricalSoap(INPUT Identifier, INPUT IdentifierType, INPUT AdjustmentMethod, INPUT EndDate, INPUT PeriodType, INPUT Periods, OUTPUT GetGlobalHistoricalQuotesAsOfResult).
 

xignite.jason

New Member
Chris,

My name is Jason Montgomery and I a Sale Representative Xignite. It looks like Tony covered your question pretty well. Thank you Tony

If you require any further assistance please fee free to contact either myself or our support team:

Jason Montgomery
jmontgomery@xignite.com
650-288-0620

Support
support@xignite.com
650-288-1202

Thank you for your time and consideration.

We look forward to working with you.
 
Thanks Tony/Jason, this is fantastic help.

I will try it out as soon as have upgraded from 9.1E to OE10!!

I will post another message when this has been done.

Thanks again!!
 

surendir

New Member
Hello Sir

I am using the Xignite trail version

I am having a certain problem that i want that Xignite sample code for currency convertor to integrate with my ERP

I am using Compiere as my ERP

So how should i Run the WSDL source code in Eclipse or

Is that any way that i should able to create a class file to call them

Regards
Surendirane.B
 
Top