RE: accessing cfmail functionality from java

2006-05-17 Thread Leon Oosterwijk
the coldfusion.server.ServiceFactory. It seems to work pretty well. Nathan, We're using POJO, no JSP. A webservice call seems like a good solution as well. Leon -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 16, 2006 5:37 PM To: CF-Talk Subject: RE: accessing cfmail functionality

accessing cfmail functionality from java

2006-05-16 Thread Leon Oosterwijk
All, I have come across the need to do a cfmail from a java class. We have some thirdparty software that runs on our ColdFusion server that uses the JavaMail system. It turns out JavaMail does a blocking call to send out mail. Does anyone know of an easy way to access the cfmail functionality

Re: accessing cfmail functionality from java

2006-05-16 Thread Nathan Strutz
Depends on your java implementation. If you're doing JSP, you can simply include a cfm that has an embedded cfmail call. Otherwise, you're getting into really sticky situations. I have a feeling that at some point, you may find calling a cfm page via http (or a web service) is easier than trying

RE: accessing cfmail functionality from java

2006-05-16 Thread Dave Watts
I have come across the need to do a cfmail from a java class. We have some thirdparty software that runs on our ColdFusion server that uses the JavaMail system. It turns out JavaMail does a blocking call to send out mail. Does anyone know of an easy way to access the cfmail functionality