Re: How can i send a Fax through my JSP Page !

2000-11-10 Thread Jitesh Gangwani

Hi,
Its available at java.sun.com  just check the site below

http://java.sun.com/products/javacomm/


Regards

Jitesh


- Original Message -
From: Bhuvaneswari Palanivel [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, November 10, 2000 12:45 PM
Subject: How can i send a Fax through my JSP Page !


 Hi,

 For my project, one of the functionality is we need to send a fax through
 Email from my JSP. I searched in java.sun.com site. But i am not able to
 find any material. Please suggest some API or tool which will do this OR
 Please refer some URL where i can get some info regarding this.

 Thanks,

 Bhuvana


===
 To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
 Some relevant FAQs on JSP/Servlets can be found at:

  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.html
  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Working with JavaMail JSp

2000-11-07 Thread Jitesh Gangwani

Thanks Every one
The programe worked after downloading Java Activation framework for sun java
web Site

Have a nice Day

Nitin

- Original Message -
From: Jitesh Gangwani [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, November 06, 2000 12:03 PM
Subject: Working with JavaMail  JSp


 When i run jsp file which include MessageMain bean(Created by me using
 SMTPClient Class) than i got this message.
 I have import both "javax.mail.*, javax.internet.*" package.

 Error is given as
 Error: 500
 Location: /examples/jsp/beanjsp/carporate/vscinews.jsp
 javax/activation/DataSource



 nitin


===
 To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
 Some relevant FAQs on JSP/Servlets can be found at:

  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.html
  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Working with JavaMail JSp

2000-11-05 Thread Jitesh Gangwani

When i run jsp file which include MessageMain bean(Created by me using
SMTPClient Class) than i got this message.
I have import both "javax.mail.*, javax.internet.*" package.

Error is given as
Error: 500
Location: /examples/jsp/beanjsp/carporate/vscinews.jsp
javax/activation/DataSource



nitin

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: errorpage.jsp

2000-10-30 Thread Jitesh Gangwani

Hi Chin
Try out this  jsp page as  your  error page


%@ page import="java.util.Enumeration" isErrorPage="true" %
html
head
titleError Page/title
/head
body

h1Our Error Page/h1

!-- Print Exception --

We got ourselves an exception:BR
nbsp;nbsp;nbsp; %= exception %

!-- Print Application Attributes --
p

table border="1"
  tr
th colspan="2"Application Attributes/th
  /tr
%
  Enumeration appAttributeEnum = application.getAttributeNames();
  while (appAttributeEnum.hasMoreElements()) {
String name = (String)appAttributeEnum.nextElement();
%

  tr
th%= name % /th
td%= application.getAttribute(name) % /td
  /tr

%
  }
%
/table

!-- Print Request Attributes --

p

table border="1"
  tr
th colspan="2"Request Attributes/th
  /tr
%
  Enumeration attributeEnum = request.getAttributeNames();
  while (attributeEnum.hasMoreElements()) {
String name = (String)attributeEnum.nextElement();
%

  tr
th%= name % /th
td%= request.getAttribute(name) % /td
  /tr

%
  }
%
/table

!-- Print Parameters --

p

table border="1"
  tr
th colspan="2"Parameters/th
  /tr
%
  Enumeration parameterEnum = request.getParameterNames();
  while (parameterEnum.hasMoreElements()) {
String name = (String)parameterEnum.nextElement();
%

  tr
th%= name % /th
td%= request.getParameter(name) % /td
  /tr

%
  }
%
/table

p
/body
/html


Regards

Jitesh Gangwani



- Original Message -
From: Chin Sung Kit [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 30, 2000 12:59 PM
Subject: errorpage.jsp


 hi all,

 how do i use an errorpage which catches all the exception?

 thanks.

 regards,
 ced

 "Never let yesterday's disappointments overshadow  tomorrow's dreams"


===
 To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
 Some relevant FAQs on JSP/Servlets can be found at:

  http://java.sun.com/products/jsp/faq.html
  http://www.esperanto.org.nz/jsp/jspfaq.html
  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets


===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Happy Diwali Greetings

2000-10-25 Thread Jitesh Gangwani

Hello EveryOne

Hope this diwali will light up your dreams and show you the way to make them
true..

Diwali is more than a religious celebration...

It is the only time in the year when you can find every nook and corner
lighted up.. So you should look out for all the new opportunities which are
shining there for you...


Enjoy and put some sparkle in life of everyone around you...

HAPP e-DIWALI...


Your Friend

Jitesh

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets