Page 1 of 1
Accessing between two jade system
Posted: Fri Aug 07, 2009 12:51 pm
by ConvertFromOldNGs
by Justin >> Fri, 22 Jul 2005 7:10:42 GMT
Now, for interface between two system , I have to export a file form one and import to other one.
Does anyone have experience about accessing each other between two jade system directly ? Any help would be appreciated!
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:51 pm
by ConvertFromOldNGs
by
John Munro >> Fri, 22 Jul 2005 8:47:22 GMT
You could use SDS (look it up on the Jade website) iF what you need is a hot-standby.
I have successfully connected a Jade Web Service Provider to a Jade Web Service Consumer in different databases - you could use this to keep two databases synchronised.
For databases running on the same computer there's a feature on the roadmap called Native Messaging Services that should allow you to send messages between two Jade databases - you could use that to keep them synchronised. That's not going to be available until 2006 sometime though I think.
You could also just use a straight TCP/IP connection using TcpIpConnection, you'd have to do your own serialization though.
John Munro
FileVision UK Ltd.
Atlantic House
Imperial Way
Reading
RG2 0TD
Telephone: +44 (0) 118 903 6066
Fax: +44 (0) 118 903 6100
Email:
john.munro@filevision.com
Web:
http://www.filevision.com
The contents of this communication are confidential and are only intended to be read by the addressee. We apologize if you receive this communication in error and ask that you contact FileVision UK Ltd. immediately to arrange for its return. The use of any information contained in this communication by an unauthorized person is strictly prohibited. FileVision UK Ltd. cannot accept responsibility for the accuracy or completeness of this communication as it is being transmitted over a public network. If you suspect this message may have been intercepted or amended, please inform FileVision UK Ltd.
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:51 pm
by ConvertFromOldNGs
by Allistar >> Sun, 24 Jul 2005 12:24:11 GMT
You can use web services to communicate between two JADE systems. I have developed interfaces between JADE systems that use the JOMAPI (in a DCOM component). This allows you to open a JADE database from within JADE code running on a second database and then call methods on that connected database.
Regards,
Allistar.
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:51 pm
by ConvertFromOldNGs
by
Scott Sheng >> Thu, 28 Jul 2005 11:04:29 GMT
Hi Allistar,
Thanks for your information.
Could you please provide us any sample program to communicate between two Jade systems?
I'd appreciated if Jade has own program to communicate between two Jade systems.
Many Thanks,
Scott
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:51 pm
by ConvertFromOldNGs
by
Alistar >> Mon, 1 Aug 2005 11:44:54 GMT
Hi Scott,
I don't have a generic one I can supply but you can contact me via email if you would like me to put a sample DCOM component together for you.
Regards,
Allistar (
allistar@silvermoon.co.nz)
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:52 pm
by ConvertFromOldNGs
by Robert >> Sun, 24 Jul 2005 21:20:49 GMT
If you need guarantee message delivery when the other system is unavailable, then your current implementation using file transfer supports this. I think the Native Messaging Services will also provide message queueing.
Any of the 'real time' methods (tcp, web services, etc) will require that you design your own mechanism to maintain interface integrity across outages.
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:52 pm
by ConvertFromOldNGs
by Scott >> Mon, 25 Jul 2005 0:29:13 GMT
We have used the following mechanisms:
- Custom TCPIP interface
- Web Services
We have also developed a JADE replication engine (which uses TCPIP) to synchronise JADE servers or client and server.
If the interface is a query/response type, using web services would be a sound approach.
Re: Accessing between two jade system
Posted: Fri Aug 07, 2009 12:52 pm
by ConvertFromOldNGs
by
Justin >> Mon, 25 Jul 2005 0:40:11 GMT
Thank you all !