Re: [HAPI-devel] question regarding HAPI

2009-01-08 Thread Erik Gfesser
information is in the MFN. Erik Sent from my BlackBerry® wireless device - From: "subhajit bhadury" Date: Thu, 8 Jan 2009 17:41:27 +0530 To: Subject: Re: [HAPI-devel] question regarding HAPI Hi, Can you please tell me what event or segment I will use

Re: [HAPI-devel] question regarding HAPI

2009-01-03 Thread Nico Vannieuwenhuyze
Hi Erik, I don't know what version of HAPI you're using ... but in the most recent versions (0.5) the ADT_A01 class derives from AbstractMessage class which in turn implements the Message interface. So if you're using the HAPI provided model classes the instanceof operator will work fine.

Re: [HAPI-devel] question regarding HAPI

2009-01-02 Thread Erik Gfesser
Subhajit, While I am not sure what details are behind your comment that your program "just stopped on the line number 4 and not going to the next line", what seems to be clear is that an ADT A01 message event is assumed. A previous reply to your message that seems to recommend checking to deter

Re: [HAPI-devel] question regarding HAPI

2009-01-02 Thread Nico Vannieuwenhuyze
Hi, Do you get an exception ? Maybe add some code to verify if the incoming message is really an ADT_A01 message ? if (theIn instanceof ADT_A01) { ADT_A01 objADT_01=(ADT_A01) theIn; ... Regards Nico At 2/01/2009, subhajit bhadury wrote: >Hi, > I am d