> The Application / Data-Store I am talking about is a legacy - very large > EDI transport engine (thousands of connected nodes). We are attempting to > add an SMTP transport to the existing product. The product behaves very much > like a mail system
Would it be better to do integration by having synchronization daemon working on standard protocols. It could - add/modify users in James to match your app. - read mail inboxes via POP3 client and put them into your app, - take your EDI msgs and send them to Mail server via SMTP. This daemon could poll the inboxes. There would be some latency but there would be latency in any mail based solution. Javamail samples as well as FetchPOP code in James could be reused if you want to do this. It may be a lot easier to have this synchronization than replacing James repositories. It would also continue to work as James versions repository interfaces evolve. Harmeet ----- Original Message ----- From: "Zeldes, Rick" <[EMAIL PROTECTED]> To: "'James Users List'" <[EMAIL PROTECTED]> Sent: Monday, March 03, 2003 5:02 PM Subject: RE: How do I Implement a Proprietary User and Data Store > Noel, > > The Application / Data-Store I am talking about is a legacy - very large > EDI transport engine (thousands of connected nodes). We are attempting to > add an SMTP transport to the existing product. The product behaves very much > like a mail system - users authenticate and send EDI documents to other > trading partners on the system (these may in fact be anywhere in our network > - we do the store and forward internally) - and retrieve EDI documents from > their mailbox. > > -----Original Message----- > From: Noel J. Bergman [mailto:[EMAIL PROTECTED] > Sent: Monday, March 03, 2003 4:39 PM > To: James Users List > Subject: RE: How do I Implement a Proprietary User and Data Store > > > Rick, > > The interfaces are going to change. Why do you need a proprietary store? > That is not clear, at all, from your description. Just turn on SMTP AUTH > for your incoming users, and use passwords for your POP users, and you have > what you described. > > If you already have this proprietary store, that's another matter. It would > help to know more details. > > --- Noel > > -----Original Message----- > From: Zeldes, Rick [mailto:[EMAIL PROTECTED] > Sent: Monday, March 03, 2003 14:41 > To: '[EMAIL PROTECTED]' > Subject: How do I Implement a Proprietary User and Data Store > > > Hello, > > I have a Proprietary application User and Data store that I would like to > have an SMTP/POP3 interface to. In other words, my application receives data > from authenticated users and allows authenticated users to retrieve data > that is destined for them. I would like to use James to provide a SMTP/POP3 > interface. What is the best way to do this ? Is it possible to develop > Mailets to redirect all incoming data and retrieval requests to my data > store ? I see that there are interfaces to file based repositories and > database repositories. Is there a generalized interface to connect to a non > JDBC proprietary database for authentication and data store ? Looking for > some direction - Thanks.... > > Rick Zeldes > EDS - ELIT Engineering > * phone: +01-248-265-8388 (8-365) > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
