[jboss-user] [JBoss jBPM] - Re: console url changed to http://localhost:8080/jbpm-consol

2007-03-23 Thread fuligj
I think, yes. When I use it with internet connection, works fine, but when without internet, there is an error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031262#4031262 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Seam] - Re: Separate database for jBPM

2007-03-23 Thread monkeyden
So when you say "separate database" I assume you have multiple persistence units defined in persistence.xml (and components.xml if you're using Seam managed). Did you specify the unitName attribute for the EntityManager in your @PersistenceContext? Otherwise, how would the container know which

[jboss-user] [Beginners Corner] - Email Function Error when running Jboss web applicaiton with

2007-03-23 Thread xijia_chen
Greeting I have a Java web applicaiton running on jboss applicaiton server in linux environment. I also run James for mail server. The web application has an email function. When I run it, it got the following error: < MAIL FROM:<[EMAIL PROTECTED]> 250 ok RCPT TO:<[EMAIL PROTECTED]> 553 s

[jboss-user] [JBoss Seam] - Re: Compliance of the EAR of the booking demo?

2007-03-23 Thread [EMAIL PROTECTED]
It's an ugly, ugly hack to get JARs on the classpath of an EAR. The only reason to tolerate it is that doing it in the "correct" way is even uglier. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031254#4031254 Reply to the post : http://www.jboss.com/inde

[jboss-user] [JBoss jBPM] - Weird console problem

2007-03-23 Thread michea
On jboss4.0.5+EJB3+jbossws1.2 we installed jbpm3.2 console. We duplicated (copy and paste of the whole jboss dir) this instance - On a redhat : it works - On a WinXP : it works - On another WinXP (mine :( ) I get this exception | java.lang.IllegalStateException: Application was not properly i

[jboss-user] [JBoss jBPM] - Re: Scheduled TaskInstances within a ProcessInstance?

2007-03-23 Thread perrylucas
it seems like a common thing to want to be able to do... for now i have tried adding the attributes i need to Task and that seems to be working well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031251#4031251 Reply to the post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Compliance of the EAR of the booking demo?

2007-03-23 Thread svadu
Hi all, Is there a reason for application.xml in the booking demo ear to declare el-api.jar and el-ri.jar as client modules? Because those 2 jar's aren't actually client modules and they don't have a main-class entry in theirs MANIFEST.MF I am not sure if it doesn't violate the jee spec? Or is

[jboss-user] [JBoss jBPM] - Re: jBPM : Couldn't be that complicated...

2007-03-23 Thread michea
Hi We are fighting for making jbpm work on jboss4.0.5 + EJB3 RC9 patch 1 + jbossws 1.2 for weeks... And no success yet. Among things we tried we removed javassist.jar from the console (at least we can see the console) We are now struggling with the transitions in decision nodes. Whatever we p

[jboss-user] [JBoss Seam] - Separate database for jBPM

2007-03-23 Thread irVega
Could you please give a simple example of config required to run the dvd store example in a way that jBPM uses a separate database (ie NOT the orders database)? I have tried several combinations of multiple persistence-units + @PersistenceUnit and also leveraging the components.xml file (as pe

[jboss-user] [JBoss Seam] - Re: Trouble with @DataModelSelection

2007-03-23 Thread henrik.lindberg
Happy now! A manual clean up of deployment folders, rebuilding from scratch and restarting JBoss cured the problem. (And in case you have not spotted it - in the code above - the call to log in the select() method does not output anything because of a missing #0 in the template string - but th

[jboss-user] [Microcontainer] - Re: ServiceMBeanSupport in the Microcontainer world

2007-03-23 Thread alesj
Service load? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031245#4031245 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031245 ___ jboss-user mailing list jboss-user@lists

[jboss-user] [JBoss Seam] - Re: Trouble with @DataModelSelection

2007-03-23 Thread henrik.lindberg
And here is the xhtml: | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> | http://www.w3.org/1999/xhtml"; | xmlns:s="http://jboss.com/products/seam/taglib"; | xmlns:ui="http://java.sun.com/jsf/facelets"; | xmlns:f="http://java.sun.com/jsf/core"; | xmlns:h="ht

[jboss-user] [JBoss Seam] - Re: Trouble with @DataModelSelection

2007-03-23 Thread henrik.lindberg
Here is the local interface (sans imports and headers): | @Local | public interface UserSpacesLocal | { | public void destroy(); | | public void getAvailableSpaces(); | | public String getSpaceInput(); | public void setSpaceInput(String space); | publi

[jboss-user] [JBoss Seam] - Re: Trouble with @DataModelSelection

2007-03-23 Thread henrik.lindberg
Here is the action bean: | @Stateful | @Scope(SESSION) | @Name("userSpaces") | @TransactionAttribute(REQUIRED) | @Restrict("#{s:hasRole('user')}") // Forces check that user is logged in | public class UserSpacesAction implements UserSpacesLocal, Serializable | { | | private

[jboss-user] [JBoss Seam] - Re: seam-gen error

2007-03-23 Thread andyd
I've just come across something similar. I'm using fabForce DBDesigner4 to generate a model and then export to a database. If I use a many to many relationship DBD4 models it with a table representing the relationship with only two foreign keys and generate-entities then uses @ManyToMany. I a

[jboss-user] [JBoss Seam] - Trouble with @DataModelSelection

2007-03-23 Thread henrik.lindberg
I am having trouble with using @DataModelSelection - I end up with an empty object when something is selected. I am using seam 1.2GA, and Ajax4JSF + Rich Faces. (Will post code as I am stuck) Greatful for any help or suggestions... View the original post : http://www.jboss.com/index.html?modu

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread xigua
"[EMAIL PROTECTED]" wrote : nonononono! | | @In java.util.ResourceBundle resourceBundle; Oops! I will try it tonight. Thanks a lot Gavin. Have a nice weekend View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031235#4031235 Reply to the post : http://www.

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread xigua
"[EMAIL PROTECTED]" wrote : Did you try the obvious, ie: | | #{messages[keyController.keyname]} I have not, just thought about it while posting this topic. :) Will do... Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031230#4031230 Reply to the p

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread xigua
"petemuir" wrote : You are probably after the Messages component (which you access in JSF as #{messages[key]}). | | You could do Messages.instance().get(key) or @In(#{messages[key]} String value or @In Map messages; For the front end, I specify the view-id in pages.xml such as Then I have

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread [EMAIL PROTECTED]
nonononono! @In java.util.ResourceBundle resourceBundle; View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031231#4031231 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031231 _

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread xigua
"[EMAIL PROTECTED]" wrote : @In Map messages; | | or | | @In ResourceBundle resourceBundle; | I tried this actually @In private ResourceBundle resourceBundle; then resourceBundle.getBundle().getBundle("editFlight").getString("planeName"); But I got NPE at runtime and it turn

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread [EMAIL PROTECTED]
Did you try the obvious, ie: #{messages[keyController.keyname]} View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031228#4031228 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031228 __

[jboss-user] [JBoss Seam] - Re: Selectable linklist without

2007-03-23 Thread [EMAIL PROTECTED]
It must be a DataModel, not a plain List. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031227#4031227 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031227 ___ jboss-user ma

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread petemuir
You are probably after the Messages component (which you access in JSF as #{messages[key]}). You could do Messages.instance().get(key) or @In(#{messages[key]} String value or @In Map messages; View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031225#4031225 Re

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread xigua
Another question I have is, is there any way to use a dynamic keyname in the front end? For exmaple: #{messages[#{keyController.keyname}]} ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031226#4031226 Reply to the post : http://www.jboss.com/index.html?mo

[jboss-user] [JBoss Seam] - Re: How to get ResourceBundle message from backend using Sea

2007-03-23 Thread [EMAIL PROTECTED]
@In Map messages; or @In ResourceBundle resourceBundle; View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031224#4031224 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031224

[jboss-user] [JBoss Seam] - Re: seam-gen error

2007-03-23 Thread [EMAIL PROTECTED]
seam-gen does not support many-to-manys, I'm not sure exactly what conditions cause Hibernate Tools to create them, but it can probably be turned off. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031223#4031223 Reply to the post : http://www.jboss.com/inde

[jboss-user] [JBoss Seam] - How to get ResourceBundle message from backend using Seam?

2007-03-23 Thread xigua
I get it to work on facelet pages, however, no idea how to do it from java class. It might work like: String flightName = ResourceBundle.getBundle("bundleName").getString("key"); Then in the class path, I have bundleName_en.properties which has the value. Thanks View the original post : http

[jboss-user] [JBoss jBPM] - jbpm_log description/ query for information

2007-03-23 Thread X490812
I would like to be able to find the path of execution for a process instance by reading the jbpm_log table. in addition, for each entry, I want to know the processinstance, taskinstance, process node, variable names and values. Is there a field definition listing for this table someplace so that

[jboss-user] [JBoss jBPM] - Re: Deploying jbpm-enterprise.ear from jbpm-jpdl-suite-3.2.B

2007-03-23 Thread viniciuscarvalho
Hello there! Did you succeed on this procedure? I'm really getting upset with jbpm and its "documentation".. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031219#4031219 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - Re: seam-gen error

2007-03-23 Thread javalover75
It was the many to many relationship. I can duplicate this problem in all of my schemas. Simply create three tables. Table A, Table B, Table C. Table A and Table C have a many to many relationship. Table B is the link between them that just contains Table A and Table C primary keys with f

[jboss-user] [EJB/JBoss] - How to solve circular dependencies in JBoss 4.0.5GA?

2007-03-23 Thread tonylmai
Hello all, I have two stateless session beans that exchange data with each other. If I were to declare EJB injection (@EJB tag) of each other in the beans, the container would complain: anonymous wrote : 14:37:58,625 ERROR [URLDeploymentScanner] Incomplete Deployment listing: | | --- MBea

[jboss-user] [Beginners Corner] - How to solve circular dependencies in JBoss 4.0.5GA?

2007-03-23 Thread tonylmai
Hello all, I have two stateless session beans that exchange data with each other. If I were to declare EJB injection (@EJB tag) of each other in the beans, the container would complain: anonymous wrote : 14:37:58,625 ERROR [URLDeploymentScanner] Incomplete Deployment listing: | | --- MBea

[jboss-user] [JBoss Seam] - Please help: problem with running the hotel booking example

2007-03-23 Thread kingcu
Greetings, everyone! I am having a problem running the booking example: every time I typed in a username and tabbed into the next textbox "Name", the browser takes me into the seam debug page; and there are some exceptions thrown (attached below) saying "Exception while invoking expression #{re

[jboss-user] [JBossWS] - Re: Providing your own wsdl instead of the generated one.

2007-03-23 Thread PeterJ
One more thing. You can now move the wsdlLocation from the interface to the class. This way, you do not have to modify the generated files (not a big deal in this example, but a real big deal if you have many endpoints and are generating the stubs quite often). View the original post : http://

[jboss-user] [JBoss Seam] - Selectable linklist without

2007-03-23 Thread knuwu
I have a List of items stored in a session bean and i've created a link list on the page. When I click on the link, I want to transfer the underlying item to the action methode. I used enhanced EL for that purpose, but the parameter of methode selectModule() is always 'null'. | | |

[jboss-user] [JBossWS] - Re: Rpc client

2007-03-23 Thread wcydaip
you need to drop 4.0.2 as it does not support complex data types. 4.0.3SP1 works. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031212#4031212 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031212 ___

[jboss-user] [JBoss Messaging] - Re: Scoped classloaders question

2007-03-23 Thread [EMAIL PROTECTED]
If your both applications are on the same JAR... as JNDI is set to use byReference... you will get a reference to classes on messging.sar. So.. you will need these classes in your client jar if you were using callByValue. Now.. if you need callByValue on JNDI for any reason.. then you will nee

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Where is Hibernate Config?

2007-03-23 Thread EricChile
I am setting up the latest version of JBoss and trying to enable show_sql=true but I don't seem to see hibernate.cfg.xml? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031207#4031207 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[jboss-user] [Security & JAAS/JBoss] - NegotiateKerberos

2007-03-23 Thread bengao
I try to following the instruction http://wiki.jboss.org/wiki/Wiki.jsp?page=NegotiateKerberos but I got following error | 16:47:10,109 INFO [ServiceConfigurator] Problem configuring service jboss.security:service=JaasSecurityManager | org.jboss.deployment.DeploymentException: Exception

[jboss-user] [JBoss Messaging] - Re: Scoped classloaders question

2007-03-23 Thread georgesberscheid
Alrighty, but even if I get a reference to a class from a different classloader, I still need the remote interface implemented by that instance to be in the client classloader right? Which JAR would I have to include in my client application? View the original post : http://www.jboss.com/index.

[jboss-user] [JBoss Seam] - Re: Seam/hibernate search

2007-03-23 Thread epbernard
What do you mean by messy? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031202#4031202 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031202 ___ jboss-user mailing list jbos

[jboss-user] [JBoss Seam] - Re: Help: Seam PDF NPE??

2007-03-23 Thread [EMAIL PROTECTED]
That document is fine. I'd guess you have a configuration error. Are you able to use the document servlet like the itext example does? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031200#4031200 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Re: Seampay, few questions....

2007-03-23 Thread [EMAIL PROTECTED]
http://docs.jboss.com/seam/1.2.0.PATCH1/reference/en/html/framework.html#d0e5643 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031199#4031199 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031199 __

[jboss-user] [JBoss Seam] - Seampay, few questions....

2007-03-23 Thread Stateless Bean
Hi, I just look on seampay example and found somethink like this: | @Name("paymentHome") | public class PaymentController extends EntityHome { | | @RequestParameter Long paymentId; | @In PaymentProcessor processor; | | @Logger Log log; | | public String sa

[jboss-user] [JBoss Messaging] - Re: Scoped classloaders question

2007-03-23 Thread [EMAIL PROTECTED]
"georgesberscheid" wrote : Hmm, that WIKI entry confuses me a little. How would my deployed application be able to access the client libraries if they are deployed in a scoped classloader that's different from the application's? | | Indeed, I get the following exception when I try to open a

[jboss-user] [Microcontainer] - Re: ServiceMBeanSupport in the Microcontainer world

2007-03-23 Thread genman
How do you demand a service load then? I checked out the tests and it wasn't immediately clear. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031193#4031193 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031193 __

[jboss-user] [JBoss jBPM] - jBPM : Couldn't be that complicated...

2007-03-23 Thread viniciuscarvalho
Hello there! For the last 6 hours I've been fighting again jBPM and the documentation (or total lack of it) regarding customizing an installation. jBPM is an awesome product, no doubt of that, but only if you intend to use it with the starter kit. We are a Red Hat Partner, and we have a real nic

[jboss-user] [EJB 3.0] - Access services from other application

2007-03-23 Thread jflf83
Hello, I developed one application (.ear) and it has two services and some Entity Beans. Now I´m developing another application, and I want use the services of my first application. Wich the better way top access the services from the old application? Thank you! View the original post : h

[jboss-user] [JCA/JBoss] - Re: Datasource failover, sudden disconnection not working

2007-03-23 Thread sebastianlacuesta
Correct, I had to add a parameter in the connection url, I set the socketTimeout in 5000 milliseconds in this way: jdbc:mysql://192.168.10.210:3306/POK2?socketTimeout=5000|jdbc:mysql://192.168.10.219:3306/POK2?socketTimeout=5000 For anyone looking at mysql failover, take a look at here: http://d

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Associate Entity Beans from different applications

2007-03-23 Thread jflf83
Hello, I developed one application (.ear) and it has two services and some Entity Beans. Now I´m developing another application, and I want use the services of my first application and some entity beans too. Wich the better way to associate the entity beans of my first application with the entit

[jboss-user] [Security & JAAS/JBoss] - Problems with authentication

2007-03-23 Thread jflf83
Hello, I developed one application (.ear) and it has two services, both use the same security domain. Now I´m developing another application, and I want use the services of my first application. In my actual application I´m using another security domain and when I try to acess som methods of the

[jboss-user] [EJB/JBoss] - Re: Can't access session facade bean

2007-03-23 Thread EricChile
Problem solved. Even though it wasn't in the jar... it was in WEB-INF/classes Took it out of there and problem solved. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031181#4031181 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [EJB/JBoss] - Re: Can't access session facade bean

2007-03-23 Thread EricChile
Also I did make sure that the jar file that contains my SessionEJBBean, SessionEJB, SessionEJBLocal is not in the WEB-INF/lib directory of my webapp.war (it was at one time) so as not to have problems with the classloader. It is only in the ear file. But I am still having the same problem. I a

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Queue - I can send but cannot receive

2007-03-23 Thread vitor_b
With connection.start() everything works fine. Connection con = cf.createConnection(); | con.start(); //new line | Session session = con.createSession(false, Session.AUTO_ACKNOWLEDGE); I had some problems when i added connection.stop() method to my code. So i removed stop() me

[jboss-user] [JBoss jBPM] - Re: Exception when completing a task in websale example

2007-03-23 Thread khamburg
This was in the stdout log before the stack trace... 12:04:50,976 WARN ProxyWarnLog:581 - Narrowing proxy to class org.jbpm.graph.node.StartState - this operation breaks == 12:05:01,538 WARN ProxyWarnLog:581 - Narrowing proxy to class org.jbpm.graph.node.TaskNode - this operation breaks == 12:

[jboss-user] [J2EE Design Patterns] - Integrating services

2007-03-23 Thread jflf83
I have one aplication (.ear) who use two services. Now I´m developing other aplication and I want to use the services of the first aplication that I developed. Wich the best way to develop this new aplication and use the services of the previus aplication? How can I reuse the entity beans of th

[jboss-user] [JBoss jBPM] - Re: Exception when completing a task in websale example

2007-03-23 Thread khamburg
Here's the stack trace... javax.servlet.ServletException: Servlet execution threw an exception org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59) root cause java.lang.NoSuchFieldError: FORCE org.jbpm.graph.node.Join.execute(Join.java:105) org.jbpm.graph.def.Node

[jboss-user] [EJB/JBoss] - Can't access session facade bean

2007-03-23 Thread EricChile
I don't understand why I am getting a classcastexception... >From the rmx console | +- SDS_DATA (class: org.jnp.interfaces.NamingContext) | | +- SessionEJB (class: org.jnp.interfaces.NamingContext) | | | +- local (proxy: $Proxy97 implements interface org.usiis.model.SessionEJBL

[jboss-user] [JBossWS] - Re: Forcing JBossWS to use a different Java class for a QNam

2007-03-23 Thread natebowler
NM. I had an incorrect setting in jaxrpc. This works fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031167#4031167 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031167

[jboss-user] [EJB/JBoss] - Access to SLSB threadpool - throttling EJB usage

2007-03-23 Thread natebowler
I expose a public API that is backed by a SLSB. As these are publicly available in an environment where multiple tenants are accessing the application, I would like to throttle API usage for each user. My thought is if I could access a threadlocal or context setting for SLSBs in the pool, I cou

[jboss-user] [Installation, Configuration & Deployment] - Re: Log4j conflicts and classLoading nightmare in jboss 4.0.

2007-03-23 Thread genman
Did you see the isolating section here: http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration | | | com.example:loader=unique-archive-name | | java2ParentDelegation=false | | | | View the original post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Re: seam-gen error

2007-03-23 Thread javalover75
As a follow-up, I am able to run seam generate-entities against other databases, even databases with hundreds of tables, successfully. I am confident that everything is configured correctly and no stray jars are creating the problem. The only difference I can find between the schema causing

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Queue - I can send but cannot receive

2007-03-23 Thread genman
What happens with Connection.start() ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031160#4031160 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031160 ___ jboss-user maili

[jboss-user] [JBoss Seam] - Re: Help: Seam PDF NPE??

2007-03-23 Thread Premheiko
Hi., Thanks for ur response. anonymous wrote : | What does your document look like? | Actually first i tried the lists.xhtml (with binding) from itext example but then I thought that might be a problem, so i removed all tags and just left some some static elements like this | http:/

[jboss-user] [JBoss jBPM] - Re: Newbie question : Process Instances

2007-03-23 Thread viniciuscarvalho
Thanks for your reply. Sorry for the typo :P Well pessimist locking should not be an issue, we are more interested in long term process, not so much on concurrency. The cool thing we need is to have two applications (say check-in and billing) having access to the same process Best regards View

[jboss-user] [JBoss Seam] - Re: Help: Seam PDF NPE??

2007-03-23 Thread [EMAIL PROTECTED]
What does your document look like? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031155#4031155 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031155 ___ jboss-user mailing l

[jboss-user] [Clustering/JBoss] - Re: Farm Deployment with UDP not working

2007-03-23 Thread [EMAIL PROTECTED]
Try increasing ucast_recv_buf_size and mcast_recv_buf_size to more than 10MB. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031151#4031151 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031151 _

[jboss-user] [Clustering/JBoss] - Re: HASingletonDeployer

2007-03-23 Thread [EMAIL PROTECTED]
The BarrierController was only added in 3.2.8. See http://wiki.jboss.org/wiki/Wiki.jsp?page=BarrierController. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031150#4031150 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBossWS] - Re: Problem consuming web services

2007-03-23 Thread PeterJ
Further research leads me to believe that you are running JDK 6.0. Don't. Use 5.0 instead. JDK 6.0 comes with an implementation of SOAPMessage that spits out the error that you posted. JBossWS comes with its own implementation of SOAPMessage which is not being used because the one from the JDK t

[jboss-user] [JBoss jBPM] - Re: JBPM3.1 Beta2: comparing hibernate proxies against the r

2007-03-23 Thread dslevine
Using jBPM with Spring and Hibernate, I am sometimes getting: java.sql.BatchUpdateException: ORA-02291: integrity constraint (JBPMUSER.FK_LOG_TASKINST) violated - parent key not found When signalling/ending a task. Only sometimes though, and seemingly randomly. I'm using Hibernate 3.1 still.

[jboss-user] [JBoss Seam] - Help: Seam PDF NPE??

2007-03-23 Thread Premheiko
Hi., I just followed seam itext example to create and render a PDF page but unfortunately NPE. I just have a form with s:link like | | | | Please see below for stack trace: | 18:04:04,486 ERROR [PhaseListenerManager] Exception in PhaseListener RENDER_RESPONSE(6) beforePha

[jboss-user] [JBossWS] - Re: Problem consuming web services

2007-03-23 Thread PeterJ
Which JVM are you using? Try running the app server with the -verbose:class JVM option. This will print out the jar file for each loaded class, perhaps there is a web services-related jar file hiding somewhere in your classpath or in some endorsed directory that is causing this problem (look fo

[jboss-user] [JBossWS] - Re: Problem consuming web services

2007-03-23 Thread jcv
The only files on the WAR are the manifes.md, web.xml and the .class of the webservices (there are 2 web services, both of them give me the same error) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031138#4031138 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss jBPM] - Re: Help: BPEL designer

2007-03-23 Thread [EMAIL PROTECTED]
Well, there is also the NetBeans Enterprise Pack which supports BPEL, WSDL and XML Schema authoring. Looks good, although the near-term plans that Koen and I have are to integrate with the Eclipse editor first. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40

[jboss-user] [JBoss Seam] - Re: Persistence Context vs. Seam-managed persistence context

2007-03-23 Thread petemuir
It's one of the best reasons to use Seam :) It's harder to get LIEs. Everyone should use it, there's no reason not to. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031134#4031134 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[jboss-user] [JBoss Seam] - Re: Persistence Context vs. Seam-managed persistence context

2007-03-23 Thread zdaler
Thanks for your reply ! Do you advice Seam managed EntityManager because it's simpler ? more powerful ? both ? Is it an advice for a newcomer (then for me ;-)) ? Or an advanced user (then for me in a few times ;-)) ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBoss jBPM] - Re: console url changed to http://localhost:8080/jbpm-consol

2007-03-23 Thread georgiosd
Are you sure? I have Internet here and I don't think that's actually accessed... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031130#4031130 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031130 __

[jboss-user] [JBoss Seam] - Re: s:link bug?

2007-03-23 Thread waynebagguley
I tried @DataModel but this has other side effects that I don't want. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031129#4031129 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031129 _

[jboss-user] [JBossCache] - Re: JDBCCacheLoader config

2007-03-23 Thread rocken7
Ok thanks mucho. Yes my thought was the cache load would get too large without a cacheloader, hence it would offload via the jdbccacheloader into mysql, then re-get from there as needed (in a prepped state). With a large data set, I assumed there would be much to gain from that. So with h

[jboss-user] [JBoss Portal] - HOW t o get parameter (big5 code in taiwan)

2007-03-23 Thread kevnlin
my portlet class /* * oper.java * * Created on 2007?3?15?, ?? 11:42 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package org.fedora; import org.jboss.portlet.JBossActionRequest; import org.jboss.portlet.JBossActionResponse; import

[jboss-user] [JBoss Seam] - Re: s:link bug?

2007-03-23 Thread monkeyden
Correction, use @DataModel to outject it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031126#4031126 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031126 ___ jboss-user ma

[jboss-user] [JBossWS] - Re: Providing your own wsdl instead of the generated one.

2007-03-23 Thread ngtdave
Just to be clear which versions I'm using: Boss 4.2.0.CR1 jbossws-1.2.0.GA (build=200703010320) java 1.5.0_11-b03 Here are the final files. EchoService.wsdl (note the \ tag near the bottom) | | | | | | | | | | | | |

[jboss-user] [JBoss Seam] - Re: s:link bug?

2007-03-23 Thread monkeyden
Whether you understand it or not, I wouldn't expose that business method to the view. Make it an accessor for the list instead. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031120#4031120 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [Microcontainer] - Re: ServiceMBeanSupport in the Microcontainer world

2007-03-23 Thread alesj
"genman" wrote : | Does a call to ControllerContext.getTarget() demand-load the bean? | No. OnDemand has other usage. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031121#4031121 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [Microcontainer] - Re: ServiceMBeanSupport in the Microcontainer world

2007-03-23 Thread alesj
No. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031118#4031118 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031118 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - Re: seam-gen and @GeneratedValue

2007-03-23 Thread andyd
Thanks Gavin and Max. I'm looking at seeing how I can design the sight around what you generate without tweaking the generated stuff, java and xhtml. That way it should make changes to the datamodel as painless as possible. Andy. View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBossWS] - Re: Providing your own wsdl instead of the generated one.

2007-03-23 Thread ngtdave
Alright, I got it working. First I changed my web.xml to use the impl bean: echo.EchoImpl per this discussion: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=70837 where Diesler says: anonymous wrote : So this is trying to instanciate an interface. Your web.xml should contain the endpo

[jboss-user] [EJB/JBoss] - Re:

2007-03-23 Thread quietthinker
Same here. Anyone know aprox. when will the SP1 release be available? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031114#4031114 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031114

[jboss-user] [JBoss Seam] - Could not instantiate Seam component - Hibernate Session Err

2007-03-23 Thread MightyDuck
Hi, i'm using Jboss-4.2.0 and Seam 1.2, get this error, can somebody help me 11:54:10,312 WARN [lifecycle] Could not instantiate Seam component: searchContractFrontController org.jboss.seam.InstantiationException: Could not instantiate Seam component: searchContractFrontController at or

[jboss-user] [Microcontainer] - Re: ServiceMBeanSupport in the Microcontainer world

2007-03-23 Thread genman
One more question, regarding the new on demand feature .. Does a call to ControllerContext.getTarget() demand-load the bean? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=403#403 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBossWS] - Re: Providing your own wsdl instead of the generated one.

2007-03-23 Thread ngtdave
"ngtdave" wrote : | 07:39:04,886 INFO [ServiceEndpointManager] WebService started: http://127.0.0.1:8080/echo | | 08:31:07,730 ERROR [SOAPFaultHelperJAXWS] SOAP request exception | | java.lang.InstantiationException: echo.Echo | | at java.lang.Class.newInstance0(Class.java:

[jboss-user] [JBoss Seam] - Re: facesMessages.addToControl and h:message not working wit

2007-03-23 Thread waynebagguley
Fixed my own problem. I should return null from the action method when I want to stay on the same page. Oops! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031104#4031104 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[jboss-user] [JBoss Seam] - Re: security in UI

2007-03-23 Thread [EMAIL PROTECTED]
Or on s:fragment. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031103#4031103 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031103 ___ jboss-user mailing list jboss-user@li

[jboss-user] [JBoss Seam] - s:link bug?

2007-03-23 Thread waynebagguley
I've got a like this: | | Nested inside are some elements as you'd expect. I want to include an in one of the columns but before I did that I noticed that 'jobListHandler.jobList' was getting called twice to render the table only once. As it's making a database call I'm not happy abo

[jboss-user] [JBoss Seam] - Re: security in UI

2007-03-23 Thread cwash
Wow I must be blind. RTFM -- anonymous wrote : The rendered attribute can generally be used on the control itself, or on a surrounding or control. Sorry for the noise! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031101#4031101 Reply to the post : h

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Some bugs inside jboss remote jdbc adapter.

2007-03-23 Thread eblasf
I use - jboss-4.0.5 - ojdbc14.zip - Oracle9i - WindowsXP I have found some bugs inside jboss when I access datasource remotly. 1. The code bellow throws NullPointerException when the blob field is empty. failed on org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService:553 |

[jboss-user] [JBoss Portal] - Re: how to get reqest parameter [multi lang -for Big5 (ta

2007-03-23 Thread [EMAIL PROTECTED]
Please open a new topic, the first post broke this thread we cannot read anything. Always put code between [ code ] [/ code] in this forum, thanks. (without spaces in the "tags"). Use the preview button to see your topic before posting I will delete this topic. View the original post : http:

[jboss-user] [JBoss Portal] - Re: Getting user and group information from withing a portle

2007-03-23 Thread kreilly
Thanks, that answers my question. I'm wondering why there is no user object in the Portlet spec. I guess that would then lead to a group object and so on. But I think this is a question for another forum. Thanks for the help! View the original post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss Seam] - security in UI

2007-03-23 Thread cwash
Sorry, this more of a JSF than Seam question... If I've got an arbitrary block of JSF code I'd like to hide based on some security API call, what is the best component to wrap it in and slap a render attribute on? h:panelGroup works, but is there anything better? View the original post : http

  1   2   >