[jboss-user] [JBoss Seam] - Re: Mail sending error

2007-05-22 Thread demetrio812
Hi!
I also tried that but that the output debug:


  | 11:56:22,968 INFO  [MailSession] Creating JavaMail Session 
(out.virgilio.it:25)
  | 11:56:22,968 INFO  [STDOUT] DEBUG: setDebug: JavaMail version 1.4ea
  | 11:56:22,968 INFO  [MailSession] connected to mail server
  | 

btw I don't think it is a JavaMail problem...I also use JavaMail in another 
Java program and it works from my workstation with the same settings...

Demetrio

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047489#4047489

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047489
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Mail sending error

2007-05-22 Thread bobbarkermtl
Hi,
I also have this issue.  It used to work with seam 1.6, but now I always have 
the exception.  I don't know what to do to resolve it and I cannot return back 
to 1.6.

Patrick

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047749#4047749

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047749
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Mail sending error

2007-05-21 Thread susnet
Have you configured mail-service.xml in /jboss/.../deploy ?

Set debug = true in mail-service.xml and you will get some more debugging logs 
to help you.

Have you included jboss-seam-mail.jar in both war-module  /lib and  ejb-module 
/lib ?



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047406#4047406

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047406
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Mail sending error

2007-05-18 Thread susnet
Do you have 

 
listener-classorg.apache.myfaces.webapp.StartupServletContextListener/listener-class
 

in your web.xml ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4046938#4046938

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4046938
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Mail sending error

2007-05-18 Thread demetrio812
Hi, thanks for the answer!

Yes I have it, I generated the project using seam-gen and I'm using JBoss AS, 
this is my web.xml:


  | ?xml version=1.0?
  | web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee;
  |  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;
  |  context-param
  |   param-nameorg.ajax4jsf.VIEW_HANDLERS/param-name
  |   
param-valueorg.jboss.seam.ui.facelet.SeamFaceletViewHandler/param-value
  |  /context-param
  |  context-param
  |   param-nameorg.ajax4jsf.SKIN/param-name
  |   param-valueblack/param-value
  |  /context-param
  |  !-- Facelets development mode (disable in production) --
  |  context-param
  |   param-namefacelets.DEVELOPMENT/param-name
  |   param-valuetrue/param-value
  |  /context-param
  |  !-- JSF --
  |  context-param
  |   param-namejavax.faces.STATE_SAVING_METHOD/param-name
  |   param-valueclient/param-value
  |  /context-param
  |  context-param
  |   param-namejavax.faces.DEFAULT_SUFFIX/param-name
  |   param-value.xhtml/param-value
  |  /context-param
  |  !-- Ajax4jsf (must come first!) --
  |  filter
  |   display-nameAjax4jsf Filter/display-name
  |   filter-nameajax4jsf/filter-name
  |   filter-classorg.ajax4jsf.Filter/filter-class
  |  /filter
  |  filter
  |   filter-nameSeam Filter/filter-name
  |   filter-classorg.jboss.seam.web.SeamFilter/filter-class
  |  /filter
  |  filter-mapping
  |   filter-nameajax4jsf/filter-name
  |   url-pattern*.seam/url-pattern
  |  /filter-mapping
  |  filter-mapping
  |   filter-nameSeam Filter/filter-name
  |   url-pattern/*/url-pattern
  |  /filter-mapping
  |  !-- Seam --
  |  listener
  |   listener-classorg.jboss.seam.servlet.SeamListener/listener-class
  |  /listener
  |  !-- MyFaces --
  |  listener
  |   
listener-classorg.apache.myfaces.webapp.StartupServletContextListener/listener-class
  |  /listener
  |  servlet
  |   servlet-nameSeam Resource Servlet/servlet-name
  |   servlet-classorg.jboss.seam.servlet.ResourceServlet/servlet-class
  |  /servlet
  |  servlet
  |   servlet-nameFaces Servlet/servlet-name
  |   servlet-classjavax.faces.webapp.FacesServlet/servlet-class
  |   load-on-startup1/load-on-startup
  |  /servlet
  |  servlet-mapping
  |   servlet-nameSeam Resource Servlet/servlet-name
  |   url-pattern/seam/resource/*/url-pattern
  |  /servlet-mapping
  |  servlet-mapping
  |   servlet-nameFaces Servlet/servlet-name
  |   url-pattern*.seam/url-pattern
  |  /servlet-mapping
  |  security-constraint
  |   display-nameRestrict raw XHTML Documents/display-name
  |   web-resource-collection
  |web-resource-nameXHTML/web-resource-name
  |url-pattern*.xhtml/url-pattern
  |   /web-resource-collection
  |   auth-constraint
  |role-nameNONE/role-name
  |   /auth-constraint
  |  /security-constraint
  |  login-config
  |   auth-methodBASIC/auth-method
  |  /login-config
  | /web-app
  | 

Demetrio Filocamo

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4046944#4046944

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4046944
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user