[jboss-user] [JBoss Seam] - Re: EntityManagerFactory not found in JNDI : java:/poctestEn

2007-08-23 Thread wise_guybg
You have not configured poctestEntityManagerFactory in the persistence.xml Snippet: | persistence-unit name=poctest1 transaction-type=JTA | providerorg.hibernate.ejb.HibernatePersistence/provider | jta-data-sourcejava:poctest1Datasource/jta-data-source |

[jboss-user] [JBoss Seam] - Re: When to use SessionBeans and when Pojos?

2007-08-23 Thread wise_guybg
Yesterday I was about to create a similar thread when I found this: http://docs.jboss.org/seam/2.0.0.B1/reference/en/html/concepts.html It doesn't explain all the details but is a good guide. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077140#4077140 Reply

[jboss-user] [JBoss Seam] - Re: Seam 2.0 Beta booking test

2007-08-23 Thread wise_guybg
I saw the same exception in my application. It appeared when I added transaction:ejb-transaction/ There is a JIRA report: http://jira.jboss.com/jira/browse/JBSEAM-1771 Related to this thread: http://www.jboss.com/index.html?module=bbop=viewtopicp=4071599 Seems that it is fixed in Seam

[jboss-user] [JBoss Seam] - Re: transaction:ejb-transaction/ and SeamTest

2007-08-23 Thread wise_guybg
http://jira.jboss.com/jira/browse/JBSEAM-1771 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077142#4077142 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077142 ___ jboss-user

[jboss-user] [JBoss Seam] - Failure to create and deploy a Seam project using the new st

2007-08-23 Thread tamirw
I've spent the last couple of days trying to overcome my problem, without sucess ... I've downloaded the new RedHat studio, as I'm relatively new to Seam, and wanted someone else to do all the seam setup for me. I'm trying to build a simple WebApp with EJB3 support (I want my actions to be

[jboss-user] [JBoss Tools (users)] - Re: Deploying WebApp to JBoss AS on RHDS with Maven Dependen

2007-08-23 Thread [EMAIL PROTECTED]
I'm not a maven pom file literate but is this needed because of a bug in RHDS or is this not just normal WTP behavior that you need to work around ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077144#4077144 Reply to the post :

[jboss-user] [EJB 3.0] - Re: compounded primary key with ejb 3.0

2007-08-23 Thread jfheintz
I already try, the pk field is removed from the DB (after I recreate the DB) but I still have the 3 other fields. I imagine Hibernate find the three real column of th PK and decide put another name as the 3 field already exist? Why is it not using my column? This is really strange behaviour!

[jboss-user] [Security JAAS/JBoss] - SSL and shockwave fashj animation

2007-08-23 Thread jc7442
I have an index.htm page that include a flash animation: !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; | html | head | meta http-equiv=refresh | content=3;URL=http://localhost:15080/demo/createSample.jsp; / | titleDemo

[jboss-user] [Remoting] - Is JBoss Remoting work with Spring Framework

2007-08-23 Thread katta
Dear Coligues, Can I use JBoss Remoting with Spring Framework ? Spring Framework it self it's providing remoing (RMI), but i want to use the JBoss Remoting for data syncronization between two web servers(Tomcat 5). Is it possible to use? Thanks, Katta. View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: SSL and shockwave fashj animation

2007-08-23 Thread jc7442
I have this issue only with IE with firefox it works fine ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077151#4077151 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077151

[jboss-user] [JBoss Seam] - JBOSS Seam example application, registration, doesn't work

2007-08-23 Thread bensonfungjava
Hi, I followed the example application, registration in JBOSS Seam. Unfortunately, it doesn't work. Environment : JBOSS Seam : 1.2.1 GA MyFaces 1.1.4 JBOSS AS : 4.0.5 GA the URL : http://localhost:8080/seam-registration/register.seam can be accessed. After entering the 3 parameters and

[jboss-user] [JBoss Seam] - Re: Conversion Error

2007-08-23 Thread bensonfungjava
I also got the same problem when I run the example application, registration. It is likely becasue the Seam component, ApplicationUser(in your case), doesn't get instantiated. that's why the property value cannot get set. You can try to put the following message in your jsp for little bit more

[jboss-user] [JBoss jBPM] - Re: next task/node name in processInstance

2007-08-23 Thread vtysh
You can try to use jbpm logs. But i don't know which results will you get in case of the next node is the join node. Here how it is used in TaskBean.java of jbpm-3.1.3 | LoggingInstance loggingInstance = processInstance.getLoggingInstance(); | List assignmentLogs =

[jboss-user] [JBoss Seam] - Re: Conversion Error

2007-08-23 Thread bensonfungjava
I also got the same problem when I run the example application, registration. It is likely becasue the Seam component, ApplicationUser(in your case), doesn't get instantiated. that's why the property value cannot get set. You can try to put the following message in your jsp for little bit more

[jboss-user] [JBoss Tools (users)] - Re: JBossTools and Eclipse 3.3.0 , does it work at all ?

2007-08-23 Thread [EMAIL PROTECTED]
so the log reveals you do not have the full wtp installed (datatools are missing) and that you for some reason are triggering NPE's in archive implementation ;( Please report it in jira and attach the log there. thanks View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Can descriptor read system variable?

2007-08-23 Thread Kalimero
Use dependencies on MBeans or EJBs, etc like this: | mbean code=MyMBean name=myMBean:service=MyMBean | .. | dependsjboss.j2ee:service=EJB,jndiName=MyEJB/depends | .. | dependsmyMBean:service=MyBean2/depends | /mbean | View the original post :

[jboss-user] [JBoss Seam] - Re: messages.properties are not loaded when included in a ja

2007-08-23 Thread pnorman4
Tanks By naming my message bundles differently I could get them all loaded. The only thing is that I now need to specify each bundle in components.xml, which resides in the generic web application. That means that for each new plug-in I have to update the web application. It would be better

[jboss-user] [JBoss Seam] - Re: How to correctly start pageflows

2007-08-23 Thread przemjaskier
Just for the records: there are plenty of pageflows containing start-state in Seam examples. This can make people think that it is a right way of doing things. Dvdstore, numberguess, todo. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077164#4077164 Reply to

[jboss-user] [JBoss Seam] - Re: Remoting.js error on Firefox 2

2007-08-23 Thread [EMAIL PROTECTED]
This should be fixed in CVS now, it would be great if you could test it for me. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077165#4077165 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077165

[jboss-user] [JBoss Seam] - Re: s:convertDateTime not working with oracle

2007-08-23 Thread [EMAIL PROTECTED]
Do you have a stack trace? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077166#4077166 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077166 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: release dates for 2.0.0.CR1 / 2.0.0.GA?

2007-08-23 Thread [EMAIL PROTECTED]
It's coming soon guys, sorry about the delay. I myself was sick and off work for two weeks and I think some of the other guys have been busy with other stuff too. We're working hard to get the RC ready though. View the original post :

[jboss-user] [Beginners Corner] - Help needed concerning the architecture decision

2007-08-23 Thread dkane
Dear JBoss experts, Our system communicates with some devices via low-level TCP/IP protocol (socket layer). Database and web-presentation parts of this system are implemented as JBoss application. The current version of this system has following structure : 1) Devices connects to socket

[jboss-user] [JBoss Seam] - JavaScript events on s:fileUpload?

2007-08-23 Thread EricJava
I would like to have some JavaScript happen on s:fileUpload. Namely, when the user selects his file, I want a form submit to happen so the file is uploaded. If I can get this to happen Ajax-style, I could even have a preview of the file show up when the upload is done. I've been trying to

[jboss-user] [JBoss jBPM] - Re: Is the unique process ID available in Eclipse designer

2007-08-23 Thread rossputin
ah, that sounds interesting.. where might I be able to read more about that? thanks Ross View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077171#4077171 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077171

[jboss-user] [JBoss Seam] - Re: JavaScript events on s:fileUpload?

2007-08-23 Thread EricJava
I looked at the page source in the browser and it looks like the a:support tag isn't attaching any JavaScript to the file upload input. Hmmm. I guess I could attach some JS by putting it in by hand? View the original post :

[jboss-user] [JBoss jBPM] - NoClassDefFound

2007-08-23 Thread Candersen
Hello, I am trying to integrate my own objects into jbpm, but I keep getting exceptions. I think its best to outline my problem: I created a very simple processdefiniton: | ?xml version=1.0 encoding=UTF-8? | | process-definition | xmlns= name=objectTest |start-state

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread christian.douven
Maybe this helps you: http://jboss.org/index.html?module=bbop=viewtopict=116016 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077176#4077176 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077176

[jboss-user] [JBoss Seam] - Q: Using Seam-jBpm in a MDB?

2007-08-23 Thread tnfink
Hi, I would like to use the jBPM-support in Seam from a Message Driven Bean. I naively just tried it with Seam 1.2.1 and ran into problems regarding the jBPM-context. I could get the JBPM-session and do Seam-jBpm-stuff but I could not finish/commit my operation. Then I read the documentation

[jboss-user] [JBossWS] - 2.0.1 Installation issue

2007-08-23 Thread alfred.rsa
Hi guys The ws 2.0.1GA install fails when using the deploy-jboss42-endorsed target as it does not contain stacklibs=${lib.dir} Regards Alfred View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077178#4077178 Reply to the post :

[jboss-user] [JBoss jBPM] - Sorry, wrong stack-trace

2007-08-23 Thread Candersen
Sorry, the stack-trace in my first post was not the right one. This is the one I get: | java.lang.NoClassDefFoundError | org.jbpm.context.exe.matcher.JcrNodeMatcher.class$(JcrNodeMatcher.java:33) | org.jbpm.context.exe.matcher.JcrNodeMatcher.matches(JcrNodeMatcher.java:33) |

[jboss-user] [JBoss Seam] - Re: Any way to debug why Seam isn't registering a component?

2007-08-23 Thread bensonfungjava
Mine doesn't work. If I get rid of seam jar in war file, I got the following exception. java.lang.IllegalArgumentException: Class org.jboss.seam.jsf.SeamApplicationFactory is no javax.faces.application.ApplicationFactory Please help. View the original post :

[jboss-user] [JBoss Seam] - Re: s:fileUpload error

2007-08-23 Thread demetrio812
Is there someone that can help me checking the configuration? thanks Demetrio Filocamo View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077181#4077181 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077181

[jboss-user] Jboss 4.0.3SP1 and jgroups = 2.5 | problems

2007-08-23 Thread Hartung, Christopher
Hello everybody, we've a problems using jgroups 2.5 with jboss 4.0.3SP1 in cluster mode. The two jboss will startup with the parameter -Djgroups.marshalling.compatible to get compatibility with jgroups =2.5 .Starting up the first jboss (10.100.255.26) works fine. If we startup the second jboss

[jboss-user] [JBoss jBPM] - Re: Node configuration with Maps - How to?

2007-08-23 Thread Vorsorge
Hi, I do not know what I did wrong yesterday. Today everything worked fine. The mysteries of software development! ;-) Here is my answer to my problem: | | public class SubProcessHandler extends SubProcessNode implements ActionHandler { | | private MapString, Object vars = new

[jboss-user] [JBoss Seam] - How are @In(create = true) and @Name connected?

2007-08-23 Thread wise_guybg
Hi, In the application I work on all entity beans had an @Name. I considered this unnecessary and removed it. I tested the application and on one page an NPE occured. It was complaining that a field with @Out had a null value. This field is declared like this: @In(required = false, create =

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread tamirw
Looks like I'm not the only one ... It also looks like this problem isn't 100% solved yet. Perhaps someone can offer a bypass, then. I want my Action classes to be able to use Entities (Entity beans). Is there a way to get this functionality without using Session Beans ? (right now I'm getting

[jboss-user] [JBoss Seam] - Re: How are @In(create = true) and @Name connected?

2007-08-23 Thread limousyf
Mmm, first @Out complains about nullity because you didn't specify that it wasn't required (required=false). This means the outjected value must not be null About the @Name, if I understand your question, the link is done on the var name. If you inject ExamData examData; Seam will look for

[jboss-user] [JBoss Seam] - s:validateAll PersistentClassConstraint

2007-08-23 Thread marthoff
Hello, I have a problem when using a Hibernate Validator with PersistentClassConstraint and the s:validateAll Tag. When accessing a property of a class which uses this validator within a JSF Page an error occurs due that the Validation Exception is not handled by the s:validateAll Tag. The

[jboss-user] [JBoss Seam] - Re: How are @In(create = true) and @Name connected?

2007-08-23 Thread wise_guybg
Yes, @Out needs a not-null value and this is why I added create=true. My question is why does the creation depend on whether I have @Name or not. BTW Is there a case in which problems arise from having @Name(examData) and a field @In @Out ExamData examData? View the original post :

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread wise_guybg
You can use SMPC (Seam Managed Persistence Context if I'm right) using the @In and the correct field name. Example: @In | EntityManager entityManager; View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077190#4077190 Reply to the post :

[jboss-user] [JBoss jBPM] - Drop script support and got an mapping exception

2007-08-23 Thread matthieugd
Hi, I use Spring to build the session factory with my custom object mappings and JBPM object mappings. In the bean configuration I set a configLocation to a mappingJBPM.cfg.xml file which is a copy og the hibernate.cfg.xml in the distribution (3.2.1) without datasource properties and the

[jboss-user] [JBossCache] - Re: 2.0GA and Maven2

2007-08-23 Thread FredrikJ
The jboss cache jar at: http://repository.jboss.com/maven2/jboss/jboss-cache/2.0.0.GA/ Looks like it has not been built correctly (4k?). The JBC dependency from maven does not work anyway. I'm getting the feeling that you guys are not using maven... ;) View the original post :

[jboss-user] [JBoss jBPM] - Re: jBPM 3.1 + Spring 2.0 + Tomcat 5 + TX demo app

2007-08-23 Thread jitendrasupe
Dan, Thanks for sharing this example. I have customized to deploy it on JBoss + mySQL. I have just changed database setting to pt to mySQL DB. While the application getting deployed on the server, I am getting following error. It will be great help in case you will be able to give me some

[jboss-user] [JBoss Seam] - Re: JBOSS Seam example application, registration, doesn't wo

2007-08-23 Thread lipmanp
4.0.5 is not support seam by default, Have u follow the instruction in gettingstart page within the seam doc? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077198#4077198 Reply to the post :

[jboss-user] [JBossCache] - Cache with ram storage

2007-08-23 Thread gevorg
Hi, Now I am using ehcache with my Jboss Application Server. http://ehcache.sourceforge.net/ Ehcache is a widely used java distributed cache for general purpose caching, Java EE and light-weight containers. Now ehcache is configured for RAM storage and all cached data is stored in RAM. Data

[jboss-user] [JBoss Portal] - Re: CMS Content - Navigate between pages

2007-08-23 Thread mimra
Nidhi, Maybe I am missing the problem here, but from your first topic I understood that you want' to add a window with CMS content to a page and then be able to click a link that will show another CMS document WITHIN the same window. From later topics I understand that the problem is that you

[jboss-user] [Remoting] - Can data synchronization be done between standalone applicat

2007-08-23 Thread srikanthtl
Data synchronization has to be done between a swing based standalone application DataBase and web(Tomcat) application DB, when transaction is done from both sides. Can synchronization be done on 2 different application DB's using Remoting? What remoting transport has to be used and how it can

[jboss-user] [JBoss Seam] - Re: release dates for 2.0.0.CR1 / 2.0.0.GA?

2007-08-23 Thread alanlynott
Can't wait for the release. Any chance someone could update the release dates in the roadmap on JIRA? Cheers, Al. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077207#4077207 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to correctly start pageflows

2007-08-23 Thread [EMAIL PROTECTED]
The differences between start-state and start-page are explained (perhaps not clearly?) in the docs. Both are valid ways of starting a pageflow depending on where you are. And the exception is very helpful: (note that pageflows that begin during the RENDER_RESPONSE phase should use start-page

[jboss-user] [JBoss Seam] - Re: has any function in seam EL like jstl fn:contains?

2007-08-23 Thread [EMAIL PROTECTED]
Facelets (I assume you are using facelets?) has some jstl functions, otherwise write some EL functions of your own. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077209#4077209 Reply to the post :

[jboss-user] [JBoss Seam] - Re: messages.properties are not loaded when included in a ja

2007-08-23 Thread [EMAIL PROTECTED]
You could provide your own implementation of the the resourceBundle component that implements your custom bundle name resolving strategy. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077210#4077210 Reply to the post :

[jboss-user] [JBoss Seam] - Re: JavaScript events on s:fileUpload?

2007-08-23 Thread [EMAIL PROTECTED]
Seam version? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077212#4077212 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077212 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Re: Why is injection not working in AS 4.0 and 4.2 (servlets

2007-08-23 Thread rbellia
I´m trying to do JPA Injection in a WAR module with JBoss 5 beta2. I´m configuring the persistence.xml according to http://docs.jboss.org/ejb3/app-server/reference/build/reference/en/html/entityconfig.html Here is my persistence.xml: persistence version=1.0 |

[jboss-user] [JBoss Seam] - Re: How are @In(create = true) and @Name connected?

2007-08-23 Thread [EMAIL PROTECTED]
@Name registers your class as a Seam component. If you don't put @Name on it and @In it, then you need to provide another way of instantiating e.g. a factory. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077214#4077214 Reply to the post :

[jboss-user] [JBoss jBPM] - Update

2007-08-23 Thread Candersen
Hi again, I worked on it a bit, I found out that my TestObject was not serializable. I changed the class, it implements Serializable now. That way, I got rid of the NoClassDefFoundException, but I got a new error message when I start my process. the web-console shows me an error: Failed to

[jboss-user] [JBoss Seam] - Re: Using JSF + POJO + EntityBean design

2007-08-23 Thread [EMAIL PROTECTED]
asookazian wrote : well what if you deploy to JBoss AS? JBoss AS is an EJB3 container so of course that works well. You can deploy Seam managed JavaBeans to an EJB3 container. You can then use MDBs, SFSB/SLSB etc. as needed. A number of examples do this. View the original post :

[jboss-user] [JBoss Seam] - Re: Eclipse Seam AutoDeploy

2007-08-23 Thread [EMAIL PROTECTED]
Use seam-gen, it supports hotdeploy of xhtml, and action beans View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077220#4077220 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077220

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging / Spring JMS compatibility?

2007-08-23 Thread sebdoby
Hello nkhadakk, I work in the aaubry's team. We had not enough time to understand and solve the problem (only 2 days before mount in production env.). So, we use now active MQ. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077221#4077221 Reply to the

AW: [jboss-user] Jboss 4.0.3SP1 and jgroups = 2.5 | problems

2007-08-23 Thread Hartung, Christopher
ok, starting the jboss_2 at first and then jboss_1 everything works fine :P But this can't be the solution Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Hartung, Christopher Gesendet: Donnerstag, 23. August 2007 10:23

[jboss-user] [JBoss Seam] - Re: Looking for SEAM iText Features

2007-08-23 Thread BakuZozi
Maybe my issue caused of differences s:convertDateTime tag in input-side between f:convertDateTime tag in output-side...? HLP...! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077222#4077222 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Q: Using Seam-jBpm in a MDB?

2007-08-23 Thread [EMAIL PROTECTED]
On JBoss AS 4.0.5? Post your code and related exceptions. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077223#4077223 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077223 ___

[jboss-user] [JBossWS] - WS-Security with JAX-RPC

2007-08-23 Thread FabrizioLXXIII
I've written a simple JAX-RPC Web Service to try WS-Security with JBossAS 4.2.1. In WAR module WEB-INF folder I've put jboss-wsse-server.xml and all necessary files (see http://www.driveway.com/lfpxe30590 please), but when I try to call Web Service with a client that don't support WS-Security,

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging / Spring JMS compatibility?

2007-08-23 Thread timfox
If I remember rightly, the problem was due to the Spring JMS template doing some really nasty stuff like opening a connection for each message sent (or consumed - I can't remember). So if you're using Spring template with a standard JMS connection factory you're going to get these horrible

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread tamirw
I must be missing something ... If I try what you suggest, then the EntityManager would still be : javax.persistence.EntityManager, and at runtime, it fails with : org.jboss.seam.RequiredException: In attribute requires non-null value: register.em What am I doing wrong ? View the original

[jboss-user] [JBoss Tools (users)] - Re: JBossTools and Eclipse 3.3.0 , does it work at all ?

2007-08-23 Thread davidbalazic
OK, I installed Eclipse freshly (unzipped eclipse-SDK-3.3-win32.zip , md5sum c7f5df655e5bd22190f31168b4f37c64), went straight to the update/install , added http://download.jboss.org/jbosstools/updates/development as new remote site, checked it and also the two other sites (Europa Discovery Site

[jboss-user] [JBoss Seam] - Seam Booking portlet not working?

2007-08-23 Thread dgallego
Hi all, has someone tried the seam booking portlet? I can't run it. The server (Jboss AS + Portal 2.6 bundled) throws this exception: org.jboss.portal.portlet.container.PortletInitializationException: Portlet class not found org.apache.myfaces.portlet.MyFacesGenericPortlet I've tried adding

[jboss-user] [JBoss jBPM] - process variables

2007-08-23 Thread galvino
hi, want to define process variables, into my processdefinition. have you got an tutorial or an example ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077230#4077230 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077230

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread wise_guybg
Name the field in the register component entityManager not em. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077231#4077231 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077231

[jboss-user] [JBoss Tools (users)] - Re: JBossTools and Eclipse 3.3.0 , does it work at all ?

2007-08-23 Thread [EMAIL PROTECTED]
Ok - please report this in jira. Then go download the eclipse wtp all in one download and then go to our updatesite. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077232#4077232 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread wise_guybg
I've had some configuration issues when porting my application from Seam 1.2.1.GA, where I had an entity manager named em, to Seam 2.0.0.BETA1. I decided to simply name the fields entityManager. This way no additional configuration is needed to have it bijected everywhere in the framework and

[jboss-user] [JBoss Seam] - Re: messages.properties are not loaded when included in a ja

2007-08-23 Thread pnorman4
Ok. That's a good idéa. Thanks for your time! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077237#4077237 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077237 ___ jboss-user

[jboss-user] [JBoss jBPM] - How to migrate jbpm data from 3.0 to 3.2?

2007-08-23 Thread peterpumpkin
Hi, I'm migrating an active application from jbpm 3.0 to 3.2. I have already updated the schema as described in the documentation. I get as expected errors for boolean columns (as ISASYNC_, IS_SUSPENDED, etc.) and numeric ones (as VERSION_). I can guess and set most boolean to false, but

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread tamirw
That worked !! Thanks a lot. So now that I can have entity access in my POJO actions, is there any point in insisting to use SLSB (once the Studio\Seam\AS bug is fixed) ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077240#4077240 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Why is injection not working in AS 4.0 and 4.2 (servlets

2007-08-23 Thread rbellia
JBoss 4.2.1 doen´t seem to support JPA Injection in servlets either. Trying the same WAR i have tryed with 5 beta2, I´m facing the following problems: The Persistence Unit is not considered automatically. I had to manually start the EMFactory up from a Filter.init or some

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread tamirw
One more question (I guess I'll have more, as I find more and more things that need be adjusted as a result of this change) : Previously, the container was responsible for generating the DDL and keeping the DB schema with my entity classes. Now that I've switched to using just Hibernate, how do

[jboss-user] [JBoss Seam] - Re: How are @In(create = true) and @Name connected?

2007-08-23 Thread wise_guybg
Thanks for the explanation. It has helped me turn my attention on the In annotation. Here is what the javadoc states: |/** | * Specifies that a component should be instantiated | * if the context variable is null. | */ |boolean create() default false; | and have

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread tamirw
I guess that's not the problem ... The schema does get updated by Hibernate, but still I'm getting the following exception : javax.faces.el.EvaluationException: java.lang.IllegalArgumentException: org.hibernate.hql.ast.QuerySyntaxException: User is not mapped [select u from User u where

[jboss-user] [JBoss jBPM] - Re: assigne task from outlook

2007-08-23 Thread eleman304
thanks for your replay can you explane clearly plz i dont understand much :( thanks again View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077248#4077248 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077248

[jboss-user] [JBoss Portal] - Portal 2.6 LDAP Authentication

2007-08-23 Thread engela
Is it possible to use the LDAP Authentication without synchronizing the users? My problem with the sychronization with users is that I do not want their password to be stored in the Portal database even so they are encrypted. Thanks, Anette View the original post :

[jboss-user] [JBoss Seam] - Re: Failure to create and deploy a Seam project using the ne

2007-08-23 Thread wise_guybg
Here is a thread from today on session beans and seam components: http://www.jboss.com/index.html?module=bbop=viewtopict=116783 About switching to just Hibernate I'm not OK with that. What have you changed in you configuration? You should stick to JPA with Hibernate as the persistence provider

[jboss-user] [JBoss Seam] - Re: Using JSF + POJO + EntityBean design

2007-08-23 Thread wise_guybg
I guess WebBeans will come into play to clear this up for the EJB. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077252#4077252 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077252

[jboss-user] [JBossWS] - Re: WS-Security with JAX-RPC

2007-08-23 Thread [EMAIL PROTECTED]
Did you enable the endpoint to use WSSE? http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_User_Guide#Server_side_configuration_.28jboss-wsse-server.xml.29 For JAXRPC you can set the config-name in jboss.xml or joss-web.xml View the original post :

[jboss-user] [JBossWS] - Re: 2.0.1 Installation issue

2007-08-23 Thread [EMAIL PROTECTED]
Yes. http://jira.jboss.org/jira/browse/JBWS-1791 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077255#4077255 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077255 ___

[jboss-user] [JBossWS] - Re: Applet invoking a web service

2007-08-23 Thread [EMAIL PROTECTED]
You could do | new ServiceFactoryImpl() | which would bind your client to a proprietary API call that is subject to change. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077256#4077256 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: JBossTools and Eclipse 3.3.0 , does it work at all ?

2007-08-23 Thread davidbalazic
Reported : http://jira.jboss.com/jira/browse/JBIDE-834 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077257#4077257 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077257 ___

[jboss-user] [JBossWS] - Re: 2 ejb3s exposed as web services. Can't have same methods

2007-08-23 Thread [EMAIL PROTECTED]
Is this even related to 2 ejb3s? i.e. can you deploy a single endpoint that uses authenticate(String userName, String password) ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077258#4077258 Reply to the post :

[jboss-user] [JBoss jBPM] - where is informix database script about jbpm 3.1.4 ?

2007-08-23 Thread dyw8021
Now i use informix database.Not found informix database script about informix. help me! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077261#4077261 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077261

[jboss-user] [JBoss jBPM] - Re: where is informix database script about jbpm 3.1.4 ?

2007-08-23 Thread dyw8021
dyw8021 wrote : Now i use informix database.Not found informix database script about jbpm 3.1.4. | help me! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077262#4077262 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Building tomcat6.sar

2007-08-23 Thread axismundi
Where can I find instructions how to build the sar that contains a tomcat6 distrubution? thanks. Marc View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077264#4077264 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077264

[jboss-user] [JBoss jBPM] - Re: where is informix database script about jbpm 3.1.4 ?

2007-08-23 Thread dyw8021
help me! wait for all online! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077266#4077266 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077266 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - URL parameter

2007-08-23 Thread Mpulse
hello Is it possible to get an url parameter in a web page ? Or how do that : I'd like to add an id to the url = id=123456 and for loading the page I want to execute an action with the id in parameter's fonction. any ideas? thanks View the original post :

[jboss-user] [JBossWS] - Re: JBossWS Tools Overview (wstools, wsprovide, wsconsume)

2007-08-23 Thread [EMAIL PROTECTED]
http://jira.jboss.org/jira/browse/JBWS-1793 The missing class would be in jbossws-spi.jar View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077269#4077269 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077269

[jboss-user] [JBossWS] - Re: WS-Security with JAX-RPC

2007-08-23 Thread FabrizioLXXIII
Yes, I do by jboss-wsse-server.xml... is it correct? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077270#4077270 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077270 ___

[jboss-user] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a

2007-08-23 Thread [EMAIL PROTECTED]
Please create a jira issue for that and attach a test case that allows us to reproduce what you are seeing View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077274#4077274 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077274

[jboss-user] [JBossWS] - Re: Applet invoking a web service

2007-08-23 Thread earniedyke
Thanks for the info Tom. Because of the large number of dependent jars required, I decided to create a servlet as a proxy which calls my web service from the server. This makes for a smaller applet and now I can deploy my web service anywhere not just to the server where the applet resides.

[jboss-user] [JNDI/Naming/Network] - Re: SessionFactory in java:namespace - not bound?!

2007-08-23 Thread jaikiran
This looks like just a part of the exception stacktrace. Can you post the entire exception stacktrace View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077276#4077276 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077276

[jboss-user] [JBossWS] - Re: WS-Security with JAX-RPC

2007-08-23 Thread [EMAIL PROTECTED]
Show me how you set the config-name View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077277#4077277 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077277 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: URL parameter

2007-08-23 Thread wise_guybg
To have the parameter injected in a field inside your component you can do: @RequestParameter | String id; View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077279#4077279 Reply to the post :

[jboss-user] [JBoss Seam] - @Destroy annotated method in java bean never called

2007-08-23 Thread WernerGross
Hi, I've got the following problem: allthough the end-conversation-state of the pageflow is reached the @Destroy-annotated method of the seam component (plain java bean) of the terminated conversation is never called - a new conversation however (including a @Create-annotated method) is created

[jboss-user] [JBossWS] - Re: Jboww WS problem - plz help

2007-08-23 Thread [EMAIL PROTECTED]
http://jira.jboss.org/jira/browse/JBWS-1793 Does this also work? | @echo off | | rem $Id: wsprovide.bat 2325 2007-02-09 22:14:15Z [EMAIL PROTECTED] $ | | @if not %ECHO% == echo %ECHO% | @if %OS% == Windows_NT setlocal | | set DIRNAME=.\ | if %OS% == Windows_NT set

  1   2   3   4   >