How to incorporate Fax into an application

1999-10-07 Thread Chandrasekhar Naidu
to send fax to all the numbers present in database. I came to know that we can do this using TAPI (Telephonic API). or JTAPI (Java Telephonic API) How to do this? Any help is appreciable. Thanks in advance. Chandrasekhar Naidu,Sr. Software Engineer,Oasys Technologies,Bangalore, IndiaPhone : 91 80

Re: java.sql.SQLException: Error !!!!

1999-09-02 Thread Chandrasekhar Naidu
tem.out.println("excep st:"+e); out.println("error st:"+e); } out.println("/body/html"); }//service }//class Yours, Chandrasekhar Naidu, Sr. Software Engineer, Oasys Technologies, Bangalore, India. Phone : 91 80 2280523/4/5/6 - Original Message

Re: Bean Database connection

1999-08-25 Thread Chandrasekhar Naidu
Hi, Servlet need not be a Bean, Create the connection object in init() and then pass the same toBean. and disconnect the connection in destroy() method. Yours, Chandrasekhar Naidu - Original Message - From: Ben Dudley To: [EMAIL PROTECTED] Sent: Wednesday, August

Which browsers will support XML?

1999-08-25 Thread Chandrasekhar Naidu
Hi friends,I would like to use XML with servlets. Which browsers will support the XML? I came to know that only Internet Explorer 5.0 will supprt XML, Is it true? if so what is the solution for other browsers like Netscape.Yours,Chandrasekhar Naidu

Re: Need Help Implementing...!!

1999-08-23 Thread Chandrasekhar Naidu Gorantla
Hi, You can show the result in an excel file with tab delemited format. Change the content type to excel, Use the following syntax: res.setContentType("application/vnd.ms-excel");//("Text/Html"); Everything else will be same. I tested the same, and working perfect. Yours