[jboss-user] [JBossWS] - Is it valid?

2007-11-08 Thread pdepaepe
Hello, I'm very noob on WS, so, excuse me in advance. I wish to submit several Users in one soap request. Let's say that a user is : @Entity | @Name(user) | public class User implements Serializable | { | | private int id; | private String uid; | | public User(){}

[jboss-user] [JBoss Seam] - @Asynchronous @TransactionTimeout

2007-09-12 Thread pdepaepe
I wish to launch transaction that takes hours from a Quartzed Asynchronous method: | @Asynchronous | @Transactional | @TransactionTimeout(10) | public QuartzTriggerHandle scheduleAsynchronousJob(@Expiration Date expiration, AsynchronousJob asynchronousJob) |

[jboss-user] [JBoss Seam] - Mail Internationalization

2007-09-10 Thread pdepaepe
In a simple call: try { | Contexts.getEventContext().set(user, user); | Renderer.instance().render(/mail.xhtml); | } catch (Exception e) { |

[jboss-user] [JBoss Seam] - Re: Mail Internationalization

2007-09-10 Thread pdepaepe
Just a precision, Quartz send the mails. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4082522#4082522 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4082522 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - FileUpload Exception

2007-08-28 Thread pdepaepe
Any way to manage fileUpload exception? Fe Multipart request is larger than allowed size return a 500 page. This is not working too: | exception class=org.jboss.seam.web.FileUploadException | redirect view-id=/home.xhtml | messageUpload problem/message |

[jboss-user] [JBoss Seam] - Re: Quartz configuration in Seam 2.0B

2007-08-17 Thread pdepaepe
Adding import org.jboss.seam.async.QuartzDispatcher; where the Asynchronous method is set will fix you classloader error. Next step is: 11:27:15,026 ERROR [JobStoreTX] Error retrieving job, setting trigger state to ERROR. | org.quartz.JobPersistenceException: Couldn't retrieve job because a

[jboss-user] [JBoss Seam] - Re: FileUpload

2007-08-06 Thread pdepaepe
Fixed on CVS, an other thread is talking about it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071322#4071322 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071322 ___

[jboss-user] [JBoss Seam] - s:fileUpload required

2007-07-31 Thread pdepaepe
I can submit empty document (no specified path) with the following code: (data, filename, contentType have @NotNull attributes). h:form enctype=multipart/form-data | s:decorate id=documentDecorate template=layout/decorateField.xhtml |

[jboss-user] [JBoss Seam] - Re: h:selectOneListBox s:convertDateTime

2007-07-25 Thread pdepaepe
I become quite crasy about this issue. My Entity: anonymous wrote : | @Basic @Future @Temporal(TemporalType.TIMESTAMP) |public Date getStart() |{ | return start; |} | |public void setStart(Date start) |{ | this.start = start; |} |

[jboss-user] [JBoss Seam] - Re: h:selectOneListBox s:convertDateTime

2007-07-25 Thread pdepaepe
Edit code not quote. :/ I become quite crasy about this issue. My Entity: | @Basic @Future @Temporal(TemporalType.TIMESTAMP) |public Date getStart() |{ | return start; |} | |public void setStart(Date start) |{ | this.start = start; |}

[jboss-user] [JBoss Seam] - h:selectOneListBox s:convertDateTime

2007-07-24 Thread pdepaepe
Hello, I have to offer 3 dynamic dates on a selectOneListbox. This code: h:selectOneListbox id=start value=#{sV.start} styleClass=sessionInput | s:convertDateTime pattern=MM/dd// | f:selectItems value=#{sV.availableStarts} / | /h:selectOneListbox Render: select

[jboss-user] [JBoss Seam] - Re: @Asynchronous @Observer - Poll raising

2007-07-08 Thread pdepaepe
getComputeSessionVisus is not properly raised by the asynchronous method processGetComputes through events.raiseTransactionSuccessEvent(flushComputeSessionVisus); View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4061743#4061743 Reply to the post :

[jboss-user] [JBoss Seam] - @Asynchronous @Observer - Poll raising

2007-07-04 Thread pdepaepe
Hello, How raising an Event from an Asynchronous method? Basically: newSessionBean.java | ... |public String step1() |{ | sessionVisu = new SessionVisu(sessionVisu, user); | sessionVisu.setStatus(description); |