[JBoss-user] [JBoss Messaging] - Re: Can not find a free port for use

2006-06-20 Thread timfox
Creating connections is (relatively) a very slow process, so you should avoid creating them every time you want to check a message (it's an anti-pattern creating a connection every time). Also your call to session.close() is redundant since you're calling conn.close() which will close the sessi

[JBoss-user] [JBoss Messaging] - Re: Simple message selector question

2006-06-20 Thread timfox
However you should avoid using selectors on queues that do not match most messages - it is an antipattern and they won't scale. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952232#3952232 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[JBoss-user] [Installation, Configuration & Deployment] - Re: Read-only environment setup

2006-06-20 Thread Veniamin
Problem solved; first I was stupid, and second is I'm not sure. ;-) First. As I mentioned earlier, I run JBoss with this command line: %JBOSS_HOME%\bin\run.bat -Djboss.server.base.dir=%JBOSS_PRIVATE_DIR%\jboss Investigation showed me that run.bat don't pass its arguments to JVM under the hood, and

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Console Access problem

2006-06-20 Thread visolvejboss
Hello, You can change the port number in the file server.xml in the path:/deploy/jbossweb-tomcat55.sar For example, In server.xml, | | | Now, JBoss will start in the port 8082 instead of 8080. You can change port number as your wish before that, make sure tha

[JBoss-user] [JBoss Portal] - Re: JBoss Portal i18n usage & configration

2006-06-20 Thread ericmacau
How can change the User's profile in program ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952228#3952228 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952228 ___ JBoss-

[JBoss-user] [Installation, Configuration & Deployment] - Re: 4.0.4.GA - OutOfMemoryError in CompilerThread1

2006-06-20 Thread djr667
Can avoid the error with "-server" by changing the EJB/Hibernate loading sequence, i.e. by pre-loading some reference Entity objects earlier rather than on-demand. Does JBoss do any major initialisation load testing with EJB3? I mean 20+ SQL statements on Web-App startup (i.e. in first request)

[JBoss-user] [JBoss Seam] - Re: Auto flushing

2006-06-20 Thread lcoetzee
I will give it a try without 1. Thanks L View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952225#3952225 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952225 ___ JBoss-use

[JBoss-user] [Installation, Configuration & Deployment] - JBoss Console Access problem

2006-06-20 Thread santosh_jpr
Hi All, How do i make the JBoss server listen on some other port than 8080? As i have a dedicated service running on 8080, i cannot use this for JBOss. I am running JBoss 4.0.4 GA and i have jdk 1.4.2_01-b06. Thanks, Santosh View the original post : http://www.jboss.com/index.html?module=bb

[JBoss-user] [JBossCache] - Re: Set MaxAgeSeconds for subnodes of region

2006-06-20 Thread sgielen
I read all the documentation and examples, but am still stuck. I understand your reply for scenarios where the subnodes are fixed and hence can be configured in a region. But what if the subnodes are created at run-time and can be named anything. As I understand we can't create regions at run-ti

[JBoss-user] [JBossWS] - javax.xml.transform.Source NPE when used as a mime webserv

2006-06-20 Thread rfoyle
Using JBoss 4.0.3 wsee webservice stack and webservices with attachments. When the webservice receives a request that uses a javax.xml.transform.Source as one of the method arguments a NullPointer is hit in the JavaUtils convert code. Here is the error: 2006-06-21 03:00:23,116 ERROR [org.jboss.a

[JBoss-user] [JBoss jBPM] - Re: specifying context variables through the process definit

2006-06-20 Thread [EMAIL PROTECTED]
I can get what I need by associating an action with a node-enter event on the process-state and then having that action copy properties into context variables, i.e. "" + | " " + | "" + | " " + | " " + | "" + | " " + |

[JBoss-user] [EJB/JBoss] - Entity bean method "isIdentical" do not verify a server node

2006-06-20 Thread Maxoid
In my application I connect to a different JBoss servers and take the same types of CMP entity beans with unknown primary keys. So when I check for "isIdentical" two beans from different servers, then sometimes I had an unexpected result, that this beans are IDENTICAL! I found in the sources, th

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Problem with the JBoss IDE Tutorial

2006-06-20 Thread tonyguan
I have problem too . After XDoclet configurations, I would like to run XDOCLET , but the result is below BUILD FAILE \xdoclet-build.xml:33: Unexpected error Can anybody help me? Thank you View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952215#3952215

[JBoss-user] [EJB 3.0] - Re: EJB3Trail does not work with JBoss 4.0.4 RC1

2006-06-20 Thread bseib
FYI to those following the EJB 3 Trail from their locally installed Trail -- I had the problem with 4.0.4 GA where I would get "EJB3Trail not bound". To fix, I downloaded the (latest) EJB3 code from here: http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=132063 Inside thi

[JBoss-user] [Clustering/JBoss] - Data file synchronization

2006-06-20 Thread andytsoy
Dear all, I am using JBoss 4.0.3sp1 . I have some applications that need to read some xml files in the server. In two nodes, there have 2 set of xml files. I want that if I change the file in 1 node, the other node can also change its local copy. I know I can put in "farm" directory, but the

[JBoss-user] [JBoss Seam] - Re: Client-State Saving - which technique is used?

2006-06-20 Thread [EMAIL PROTECTED]
It is stored in the JSF ViewRoot attributes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952209#3952209 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952209 ___ JBoss-us

[JBoss-user] [Beginners Corner] - Re: JBoss + JSF + persistance?

2006-06-20 Thread SmokingAPipe
Another simple question: My overall goal is to use JSF to build an application with persistence. I was going to use Hibernate (which I am familiar with) but that does not seem like a good way to go, because there isn't a natural way for JSF backing beans to deal with Hibernate Sessions. It loo

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread [EMAIL PROTECTED]
Can you send me the JBoss server output please? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952207#3952207 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952207 ___ JBoss

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread cdebracy
The base source was fine. Thanks, it compiles now. Unfortunately, I'm still getting the same exception in the consumed portlet. I've a fresh check out into Eclipse, so tomorrow I'll poke around a bit and see if I can help fix this. Thanks for getting the source in shape. View the original p

[JBoss-user] [Beginners Corner] - JBoss + JSF + persistance?

2006-06-20 Thread SmokingAPipe
I'm getting this exception with my JSF application: | 2006-06-20 16:29:02,603 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/ChargeMyMobile-war]] StandardWrapper.Throwable | java.lang.NullPointerException | at javax.faces.webapp.FacesServlet.init(FacesSer

[JBoss-user] [Security & JAAS/JBoss] - receiving null for j_username when using FormAuthValue

2006-06-20 Thread awclemen
Hello Forum Folks, I'm trying to retrieve the j_username value from the session after a user SUCCESSFULLY logs in. I have the form authenticator setup and the user is able to log in correctly, however, I am getting null for the j_username value. I'm probably missing some small detail somewhere

[JBoss-user] [JBoss Portal] - Re: How get user role

2006-06-20 Thread Silicio
I've written in web.xml these role: | | | | | Secure Content for administrators | /administrator/* | | | Administrators | | | NONE | | |

[JBoss-user] [JBoss jBPM] - Re: specifying context variables through the process definit

2006-06-20 Thread [EMAIL PROTECTED]
We do not have a syntax for automatically substituting the value of a variable while initializing an action handler field. You can, however, interpret the literal from the process definition as a variable name and retrieve the variable value from the execution context: public class MyActionHandl

[JBoss-user] [EJB 3.0] - Re: Migration 4.0.4.CR2 -> 4.0.4.GA problem

2006-06-20 Thread mooktarus
I think the answer is the same for all of us -- don't use List, unless you have a really good reason. Use SortedSet. Then you can use @Sort(type=SortType.NATURAL) if you have Comparable implemented, make your own Comparator, or leave it unsorted. I'm assuming that like me, you only used List b

[JBoss-user] [JBoss Seam] - Re: EJBNoSuchObjectException when Seam destroys a component

2006-06-20 Thread rdewell
As we discussed, I can work around this for Session scoped SFSB's by using the JBoss specific @CacheInfo annotation, setting the timeout to be the same as an HttpSession. But what about Application scoped SFSB's? We run into this same problem due to the aforementioned reasons in this thread.

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: createSession slow under load. (or createQueueSession)

2006-06-20 Thread bviveiros
Here's a code snippet: InitialContext iniCtx = new InitialContext(); | | Object tmp = iniCtx.lookup("java:/JmsXA"); | QueueConnectionFactory qcf = (QueueConnectionFactory) tmp; | QueueConnection jmsConn = qcf.createQueueConnection(); | | jmsConn.start(); | | Session sess = jmsCo

[JBoss-user] [JBossCache] - Open Source JTA Implementation for JBoss Cache

2006-06-20 Thread appterasandy
Can some provide a list of open source JTA implementations that have been tested with JBoss cache? I am looking for a JTA implementation that doesn't require a database to write transaction logs. Is that possible? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[JBoss-user] [JBoss AOP] - AOP security

2006-06-20 Thread enazareno
I don't know if this has been discussed here, but how can we secure AOP applications running standalone on a client? With this feature (byte code manipulation) how can I stop malicious coders from injecting code into my app? Lets say I have already distributed an unsigned application. A hacker m

[JBoss-user] [JBoss jBPM] - specifying context variables through the process definition

2006-06-20 Thread [EMAIL PROTECTED]
Forgive the newbie question... Looking at the jpdl schema it doesn't appear that there is a way to directly specify (inject) process context variables from the process definition itself. The nearest you can come is to specify a property on a delegation class such as an Action e.g. |

[JBoss-user] [JBoss AOP] - Re: AOP newbie question

2006-06-20 Thread enazareno
It works like a charm now. There were some minor setbacks like the .sh to build the classloader does not work in mac, but it can be compiled easily. Also when running the application, there are several warnings and harmless errors, but i think i can figure this one out. Thanks again. Regards,

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: createSession slow under load. (or createQueueSession)

2006-06-20 Thread bviveiros
Yes, I'm using the JmsXA to create a connection on each request. Any idea what the createQueueSession method might be waiting on? Is there a connection pool setting that I should play with? I tried changing the max-pool-size on the JmsXA resource but it didn't seem to have any effect. Also, no

[JBoss-user] [JBoss Portal] - Re: No ClassLoaders found for: org.jboss.portal.core.impl.us

2006-06-20 Thread raghuram11
Hi ArnieAustin, envirnoment: JBOSS4.0.3SP1 Application serve r JBoss-portal2.2 LDAP I was also getting the same error when I made the changes as per the link : http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingAnLDAPSourceForPortalAuthentication | **error message***

[JBoss-user] [JBoss Portal] - Re: Trouble installing 2.4 Beta

2006-06-20 Thread [EMAIL PROTECTED]
Indeed: http://wiki.jboss.org/wiki/Wiki.jsp?page=AvoidMySQL5DataTruncationErrors :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952187#3952187 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952187

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread [EMAIL PROTECTED]
It should be fixed now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952185#3952185 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952185 ___ JBoss-user mailing list JBoss

[JBoss-user] [Installation, Configuration & Deployment] - Re: An Error occured when runs automatic install.

2006-06-20 Thread [EMAIL PROTECTED]
Thanks for finding this issue. Submitted http://jira.jboss.com/jira/browse/JBINSTALL-54. If you are just trying to install one of the bundled profiles (default, minimal, ejb3, etc) without having to customize the packs selected, then you can run installer from command line and specify installg

[JBoss-user] [JBoss jBPM] - Re: BPEL String/XML Problem

2006-06-20 Thread [EMAIL PROTECTED]
Oh, I get what you mean now. Your string contains markup and the engine does not escape the delimiters. The BPEL spec does not require that delimiters be escaped when sending messages over the wire. That is the responsibility of the process designer. >From your stack trace, I guess the target s

[JBoss-user] [JBoss Messaging] - Can not find a free port for use

2006-06-20 Thread jksmartt
I am using a durableSubscriber with JBoss Messaging. After running for a while and publishing to topics and retrieving them with the durableSubscriber I get the following error: java.io.IOException: Can not find a free port for use. I am not sure why I am getting this, I am pretty sure I am cl

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - App blows when Database shutdown and restart

2006-06-20 Thread anicraj
Hi, I use Spring/Hibernate in my web app for data access. When the app is running and the database has been brought down and then UP after some time, the default connection pooling in jboss is not active and am getting exception. Can somebody help me how to fix this up? This is what i use in app

[JBoss-user] [JBoss Seam] - JSF Component for JBPM SEAM

2006-06-20 Thread vamsi_poondla
You can call me lazy. But neverthless I ask. Is there any JSF component that presents the JBPM process flow to the user. My idea is actor can interact with this component and trigger completion of each task. Thanks Vamsi View the original post : http://www.jboss.com/index.html?module=bb&op=vi

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: createSession slow under load. (or createQueueSession)

2006-06-20 Thread genman
Interesting. Are you using the JCA adapter, i.e. "java:/JmsXA"? You should use this to obtain a new JMS connection each time. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952178#3952178 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in deployment order

2006-06-20 Thread anicraj
| | Allows the override of the suffix order declared by subdeployers, using the syntax [order:]suffix | | EnhancedSuffixOrder | [Ljava.lang.String; | | | | | View the original post : http://www.jboss.com/index.html

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in deployment order

2006-06-20 Thread anicraj
This is what am using in the MainDeployer XML so that oracle-ds.xml gets deployed before the web app. Also if am not looking the JNDI in my app during the startup(ie in listener), everything is fine and the server gets started and app gets deployed, and if lookup the JNDI at this stage, am abl

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in deployment order

2006-06-20 Thread anicraj
actually i tried changing the order of deployment after i got the NameNotFoundException. I guess in default, the oracle-ds.xml will be deployed before the web app gets deployed, correct me if am wrong? If so why in my listener class it says NameNotException when i try to lookup the JNDI name(ja

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in deployment order

2006-06-20 Thread tefron
are you sure that the problem is the order of deployment and not some other jndi configuration problem? you can try to hot deploy your application after the sever is already running... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952171#3952171 Reply to th

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in deployment order

2006-06-20 Thread anicraj
applicationContext.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952170#3952170 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952170 ___ JBoss-user mail

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problem in deployment order

2006-06-20 Thread anicraj
This is what i use in applicationContext.xml And my oracle-ds.xml is CcpiDS {T}db.ccpi.url{/T} {T}db.driver{/T} {T}db.ccpi.user{/T} {T}db.ccpi.password{/T} org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSort

[JBoss-user] [Remoting] - Re: streaming needs

2006-06-20 Thread [EMAIL PROTECTED]
Here's what I think I need for my use case. When I call Client.invoke(InputStream, Object), I want to be able to give it my own Connector. In other words, my client will create and setup its own connector - I just want the Client to wrap my connector in the StreamServer object (the StreamServe

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Problem in deployment order

2006-06-20 Thread anicraj
Hi, I have web application which access the database reading the details from oracle-ds.xml. I want the oracle-ds.xml to be deployed first and the JNDI name be readily available so that when my application gets deployed, it can access it thru the JNDI name, but my app gets deployed first and so

[JBoss-user] [JBoss Messaging] - Re: Simple message selector question

2006-06-20 Thread ONIT
Hello, Delete this post - it was a case of stupidity. The message selector works great. Dennis View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952159#3952159 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952159

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread [EMAIL PROTECTED]
Indeed last CVS version doesn't compile... Gonna fix that. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952158#3952158 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952158 __

[JBoss-user] [Remoting] - Re: stream server not dying

2006-06-20 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBREM-519 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952156#3952156 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952156 ___ JBoss-use

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread [EMAIL PROTECTED]
You're not able to build the latest CVS version? Or Beta 1 with modified files? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952155#3952155 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952155 _

[JBoss-user] [Remoting] - Re: stream server not dying

2006-06-20 Thread [EMAIL PROTECTED]
According to the Javadocs of StreamServer: anonymous wrote : | * NOTE: That once this class receives the close() method called | * from the server, it will also stop and destroy the internal | * remoting server, since is assumed there will be no more callbacks | * (since the stream it

[JBoss-user] [JBoss Messaging] - Simple message selector question

2006-06-20 Thread ONIT
Hello, I am passing messages around in a couple queues and want to filter the messages based a session key. I have a SessionKey string property in the TextMessages and try to filter the messages with this code: String messageSelector = "SessionKey='" + sessionKey + "'";

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread cdebracy
Sorry, the size is 4474 bytes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952150#3952150 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952150 ___ JBoss-user mailing lis

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread cdebracy
Chris, I'm using the version that was in CVS as of last night. It's dated 6/11/06 and is 2442 bytes. I've banged my head against the wall with wsrp4j and uPortal and feel like I'm real close to getting JBoss to work here. I also updated the wsdl_services.wsdl based on a thread in the WSRP Dev

[JBoss-user] [JBoss Portal] - Re: How get user role

2006-06-20 Thread Silicio
I've seen this method, its return value is boolean. There is a method that return the string of the role? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952147#3952147 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952

[JBoss-user] [Installation, Configuration & Deployment] - Unable to access JBoss web console in Fedora 5

2006-06-20 Thread sanpraka
Hi, I am new to Both Fedora 5 and Jboss.I an unable to access the JBoss We console.This is the error which i am getting when running the JBoss server. i started the server by command ./run.sh & I am getting the JBoss starting window,but getting an error when accessing Web Console. Please let

[JBoss-user] [JBoss Seam] - Client-State Saving - which technique is used?

2006-06-20 Thread bambata
Hello, I am writing my master thesis about Jboss Seam/EJB3/JSF and I am looking for some information about how the client-state saving takes place. In the Seam reference documentation is written the state is saved within the client browser. But where is the information exactly, is it in the cac

[JBoss-user] [Remoting] - stream server not dying

2006-06-20 Thread [EMAIL PROTECTED]
I have a TestNG test suite that runs to test my integration with the remoting's streaming feature. The first test runs fine but the rest of the tests fail with this: | Caused by: org.jboss.remoting.InvalidConfigurationException: The invoker for locator (InvokerLocator [socket://192.168.0.2:

[JBoss-user] [JBossWS] - Re: Validation of input

2006-06-20 Thread [EMAIL PROTECTED]
XML schema allows you todo that. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952142#3952142 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952142 ___ JBoss-user mailing l

[JBoss-user] [Security & JAAS/JBoss] - LDAP/JBOSS/JAAS

2006-06-20 Thread carlosgyn
I looked for in this forum for the following message: Http Status 400 : Invalid direct reference to form login page I found some reply, but I did not obtain to decide my problem. Where I can find a skill simple to implement a security in my application being used struts and JAAS. It follows be

[JBoss-user] [JBossWS] - Re: HandlerChain

2006-06-20 Thread [EMAIL PROTECTED]
http://jira.jboss.org/jira/browse/JBWS-996 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952139#3952139 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952139 ___ JBoss-user

[JBoss-user] [JBoss Seam] - Re: ejb3 question, Compare date only for a TIMESTAMP field?

2006-06-20 Thread liudan2005
Thanks Gavin. Problem solved. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952138#3952138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952138 ___ JBoss-user mailing list

[JBoss-user] [Management, JMX/JBoss] - Using an MBean to spawn native Process with JBoss AS/4.03 an

2006-06-20 Thread [EMAIL PROTECTED]
Hi, I'm running JBoss AS 4.03 to perform some simulation work. I've got an MBean which spawns off various threads. Each thread in turn calls java.lang.Runtime.exec() to create a native process. Invocation of this works find. I can create processes all day long and interrupt my threads. However,

[JBoss-user] [JBoss Seam] - Re: About propagating a value in a conversation

2006-06-20 Thread rlhr
Of course the @Begin is what was missing. For some reason, when I read the reference doc, I got the idea that it wasn't need when starting a "Push"-style MVC page action! Now that I read it again, I must say it was written properly :) Thanks again, Richard View the original post : http://www

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread [EMAIL PROTECTED]
Which version of webservices.xml are you using? I have re-added extension stripping that had been removed at some point starting with version 1.4. That is the problem you are experiencing. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952133#3952133 Reply t

[JBoss-user] [JBossWS] - Re: jbossws-1.0.1 released

2006-06-20 Thread acxjbertr
I am running into the same issue as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952129#3952129 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952129 ___ JBoss-user

[JBoss-user] [JBoss Seam] - Re: SeamTest (TestNG), Maven 2, and Embeddable EJB3

2006-06-20 Thread bsmithjj
Aw dang! I used Confluence markup tags instead of the BBCode tags - now my post is more difficult to deciper. :( (Help still?) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952128#3952128 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[JBoss-user] [JBoss Portal] - Re: How get user role

2006-06-20 Thread [EMAIL PROTECTED]
request.isUserInRole("abc"), of course read the spec as you need to declare you role in the portlet.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952126#3952126 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=395212

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Rules Tutorial

2006-06-20 Thread carl_bray
Probably a bit late but as I was also looking for a Tutorial thought I'd post for other people. There is a demo at http://labs.jboss.com/portal/jbossrules/livetrails/index.html which shows you how to create a project and run it in Eclispe. View the original post : http://www.jboss.com/index.h

[JBoss-user] [JBoss Portal] - Re: Trouble installing 2.4 Beta

2006-06-20 Thread indyJones
after many long hours... I have come to the conclusion that JBoss Portal does not work with MySQL 5.0... This has probably already been stated... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952124#3952124 Reply to the post : http://www.jboss.com/index.

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Hibernate problem when deploying multiple .EAR files

2006-06-20 Thread leocwlam
Hi all, We are running into a problem using JBoss 4.0.2 and Hibernate 3, and we're out of ideas at the moment. Let me describe our design: we have a core EAR file which contains some core classes, used by all of our applications. So far, all the applications used JDBC to access the database, bu

[JBoss-user] [JBoss jBPM] - Re: JBPM Scalability

2006-06-20 Thread arshadnj
You can try commenting the following line inside jbpm.cfg.xml: Let me know if this doesn't work for you. Btw, are you using this in production and how is your performance? I didn't really try running any profilers or something yet to determine the performance issues but would appreciate hea

[JBoss-user] [JBossWS] - Install on JBoss 4.0.4.GA/JBossWS 1.0.1.GA

2006-06-20 Thread aboudank
Very new to JBossWS. I have JBoss 4.0.4.GA, JDK 1.5 and EJB3 installation. I deleted the existing jbossws.sar and expanded the new jbossws.SAR from JBossWS 1.0.1.GA as the user guide says. Started the server and I am getting this: | 2006-06-20 23:31:58,921 DEBUG [org.jboss.deployment.MainDepl

[JBoss-user] [Clustering/JBoss] - (another) XAConnectionFactory not bound

2006-06-20 Thread bvallade
Hello all, I am having intermittent trouble with JMS provider failover. I am setting up a number of JBoss instances (4.0.1sp1), each running the 'all' configuration, on separate boxes. They are each being deployed under the default partition. My goal is to have a uniform server configuration

[JBoss-user] [Javassist user questions] - solaris help

2006-06-20 Thread rew14
hey guys how good are hotcerts.com preps for solaris exams ? . iam going to take one soon and i need ur guys help ..please do let me know View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952116#3952116 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [JBoss Seam] - SeamTest (TestNG), Maven 2, and Embeddable EJB3

2006-06-20 Thread bsmithjj
Has anyone successfully run unit tests with a Maven 2 pom.xml for a Seam project? I am having some trouble getting this to work... here is what I have attempted to do: 1. I downloaded the latest Embeddable EJB3 (Alpha 8 - patch 2)(?) 2. installed the .jar's with this distro in my .m2 reposito

[JBoss-user] [JBoss jBPM] - Re: jBPM as SOA Best Practices?

2006-06-20 Thread bradtwurst
A request: As you answer various questions about architecture approaches, is it possible to mirror those back to this topic for the rest of us to enjoy? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952113#3952113 Reply to the post : http://www.jb

[JBoss-user] [JBoss Seam] - Re: JBossWorld Seam Lab Files

2006-06-20 Thread janel10
I'm very new to seam, jsf, ejb3... But I thought I could get the demo running with the instructions provided. I'm having trouble with the Lab 3 Step 1. I don't know where to put the @End, is this in the NewHotelAction class? View the original post : http://www.jboss.com/index.html?module=bb

[JBoss-user] [JBoss jBPM] - Re: [jBPM][3.1.1] Timer with calculated 'duedate'

2006-06-20 Thread ephemeris-lappis
Hello again. Indeed, the ExecutionContext has a getTimer method, but it seems it always returns null. Has it has no javadoc, i'm not sure this is the good way to retrieve the timer of a task. Perhaps it just works when you use it from a timer action... I'd prefer use only the jBPM API, and avo

[JBoss-user] [JBossWS] - Re: jbossws-1.0.1 released

2006-06-20 Thread matabu
same issue :( sry View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952106#3952106 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952106 ___ JBoss-user mailing list JBoss-user@

[JBoss-user] [JBossCache] - Re: org.jboss.cache.lock.TimeoutException

2006-06-20 Thread [EMAIL PROTECTED]
Yes - SP2 did fix some issues around transaction handling and this may apply to your case. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952103#3952103 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952103 ___

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread cdebracy
I can successfully build the base beta1 source and swapped out the webservices.xml and wsdl_services.wsdl. Unfortunately, I'm still getting this exception from the WebLogic consumer: | Fault: {http://schemas.xmlsoap.org/soap/envelope/}Client | javax.xml.rpc.JAXRPCException: org.jboss.ws.bin

[JBoss-user] [JBoss Seam] - Re: Help understanding Entity component lifecycle

2006-06-20 Thread rpiaggio
Thanks for considering it, Gavin. However, I don't like it either because it doesn't fully solve the problem: in the example above, the same class would be used as a Seam component in some roles but not in others. My suggestion: a "create" property in the @Role annotation (and in @Scope?). Def

[JBoss-user] [JBoss Portal] - Re: JBoss UserPortlet, ThemePortlet and WeatherPortlet

2006-06-20 Thread Silicio
I resolved. Simply add windows and ref to the instances in *-object.xml file. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952099#3952099 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952099 ___

[JBoss-user] [Beginners Corner] - Re: Unable to see a deployed JSP

2006-06-20 Thread skourangi
Thank you for your response and the link. It's working now! I had the helloworld.jsp in the Helloworld.war folder and used the http://localhost:8080\Helloworld\helloworld.jsp But, It seems I had "Helloworld.jsp" and an extra "<" in the web.xml file. View the original post : http://www.jb

[JBoss-user] [Remoting] - streaming needs

2006-06-20 Thread [EMAIL PROTECTED]
I'm looking at the streaming functionality of remoting and would like to initiate a discussion on its shortcomings and how to address. First, it looks like the client side creates its own server connector. I don't see a way to customize it other than setting System properties for the transport

[JBoss-user] [EJB 3.0] - Re: Performance for embedded alpha 8

2006-06-20 Thread fguerzoni
I noted a 10 second increasing on a total of 50 seconds when I switched from alfa6 to alfa8. DEBUG 20-06 19:35:32,937 (KernelFactory.java:assembleNewKernel:86) -Starting JBoss Kernel construction... DEBUG 20-06 19:35:33,078 (KernelFactory.java:assembleNewKernel:112) -Completed JBoss Kernel co

[JBoss-user] [JBoss Seam] - Re: Limitations of action oriented framework (pages)

2006-06-20 Thread [EMAIL PROTECTED]
Ah, I have never actually figured out how to make urls without extensions work in JSF. Not saying its impossible, it is something I don't know the answer to. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952095#3952095 Reply to the post : http://www.jboss.c

[JBoss-user] [JBoss Messaging] - Re: Oracle CreateTablesOnStartup ORA-00942: table or view do

2006-06-20 Thread jksmartt
Yes, that is what appears to have been the problem, thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952094#3952094 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952094 _

[JBoss-user] [Management, JMX/JBoss] - Re: Problem locating an MBeanServer

2006-06-20 Thread [EMAIL PROTECTED]
It seems he's trying to locate the local mbeanserver, which doesn't exist. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952093#3952093 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952093 __

[JBoss-user] [JBoss Seam] - Re: Help understanding Entity component lifecycle

2006-06-20 Thread [EMAIL PROTECTED]
I suppose I could let you write @Scope on a class with no @Name. Put it in JIRA and I'll make a decision about that later. I don't love it, but maybe I can grow to like it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952092#3952092 Reply to the post : ht

[JBoss-user] [JBossWS] - Re: when access wsdl, port# always changes to 8080

2006-06-20 Thread luan
It worked. Thanks a lot. Luan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952091#3952091 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952091 ___ JBoss-user mailing list

[JBoss-user] [JBoss Seam] - Re: Auto flushing

2006-06-20 Thread [EMAIL PROTECTED]
You should definitely NOT have to do (1). The other steps should be enough. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952090#3952090 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952090 _

[JBoss-user] [JBoss Portal] - Re: 2.40 Beta Build Issue

2006-06-20 Thread cdebracy
Would it make sense for me to just copy the webservices.xml and wsdl_services.wsdl updates to the base source and build from there? It appears as if some refactoring is going on and rolling back just a file or two isn't going to do the trick. View the original post : http://www.jboss.com/index

[JBoss-user] [JBoss Seam] - Re: About propagating a value in a conversation

2006-06-20 Thread [EMAIL PROTECTED]
I don't see where you start the conversation. Should perform() have an @Begin annotation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952088#3952088 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952088 __

[JBoss-user] [JBoss Portal] - How get user role

2006-06-20 Thread Silicio
Hi, I have to make a redirection based on user role, how can I get user role? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952087#3952087 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952087 ___

[JBoss-user] [EJB 3.0] - Re: Audit Log implementation for EJB3 persistence

2006-06-20 Thread jc7442
I've tried to do something based on the Hibernate Wiki Audit logging. My problem was to be able to get updated properties of an object. Results was this post: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=70335 I don't know if the method has been added in hibernate. For me that activi

[JBoss-user] [JBoss Portal] - Re: Deleting users

2006-06-20 Thread Silicio
I think that this isn't possible until last 2.4 release... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952084#3952084 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952084 __

  1   2   3   >