[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-09 Thread nickarls
Umm, never mind previous post. Does it find *any* EJBs or is just a new one that isn't found? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072861#4072861 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072861

[jboss-user] [JNDI/Naming/Network] - UserTransaction JNDI name

2007-08-09 Thread bgonline
Hello, I have a question about the UserTransaction object. Indeed, when I deploy a webapp using the following JNDI name java:comp/UserTransaction for the UserTransaction, it works, although when I go in the JNDIView bean of the JMX console, and I invoke the list, I can't see this name in the j

[jboss-user] [JBoss Seam] - Re: EJB 3.0 Seam Component Not Found

2007-08-09 Thread nickarls
Has the build script filtered your components.xml incorrectly? | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072857#4072857 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072857 ___

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-09 Thread brain101
thanks about your quick reply. so, if i can´t set the processing order, how can i take influence on the ordering/sorting in the database (e.g. via the name of the window (aaaWindow has a lower id than zzzWindow), the length of the name, etc.)? unfortunately for our application it is very importa

[jboss-user] [JBoss Seam] - Re: Using EntityManager in Hibernate Validator

2007-08-09 Thread nickarls
Just guessing here but can you get the EntityManagerFactory from JNDI? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072855#4072855 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072855

[jboss-user] [Messaging, JMS & JBossMQ] - spcace in directory name of the jboss

2007-08-09 Thread milind.uc
suppose if I put the space in the jboss directory name like jboss-4.0.0 to jboss-4.0.0 s then it will not run and gives the error like | === | . | JBoss Bootstrap Environment | . | JBOSS_HOME: C:\jbo

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-09 Thread [EMAIL PROTECTED]
I implicitly thought you were talking about ordering the windows to order them in the layout. If you were really talking about processing (or computing), no you cannot give an order, you should not depend on the ordering. Each window could in theory could be rendered in parallel. View the orig

[jboss-user] [JBoss Portal] - Re: processing order of windows within page

2007-08-09 Thread [EMAIL PROTECTED]
Forgot about 2.2 but don't you have a "height" tag in -object.xml ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072852#4072852 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072852 __

[jboss-user] [JBoss Seam] - Re: Where abouts should I change if I change the ds.xml insi

2007-08-09 Thread nickarls
Without looking too much at the example in question, I would guess that changing the DS should be enough since I recall that it does normal searches to the DB. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072851#4072851 Reply to the post : http://www.jbos

[jboss-user] [JBoss Seam] - Using EntityManager in Hibernate Validator

2007-08-09 Thread csl
I try to use the EntityManager in a Hibernate Validator, for I'd like to ensure the uniqueness of a username. This should get reported to the user using ajax4jsf. I implemented it using a JSF Validator and it worked, but the Hibernate Validator approach would be preferable, I guess. How can I i

[jboss-user] [JBoss Portal] - Re: java.lang.NullPointerException @ InternalContentProvider

2007-08-09 Thread [EMAIL PROTECTED]
I fixed it yesterday in Branch_2_6 but your post reminded me to do it in trunk ;) I just did, thanks. It's good to see someone looking into the code, try to fix things and report how to fix :) By the way, branches/JBoss_Portal_2_6 (Bug fixes, little enhancements) should be more stable than tru

[jboss-user] [Security & JAAS/JBoss] - Re: The neverending logout topic

2007-08-09 Thread chakotey07
Hi, Please post your config file and the location of the prop-files, too! Cheers, chakotey07 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072848#4072848 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072848

[jboss-user] [JBoss Seam] - Re: validation & selectManyListbox

2007-08-09 Thread wiberto
I was able to trace the calls until I found where the error was coming from. Basically it comes because the entityManager is null, and it tries to create one by name. Since I didn't have "entityManager" defined in my components.xml it never created one. Since you mentioned that Seam 2.0 had red

[jboss-user] [JBoss Portal] - Re: Use Edit/Help modes with JSF based portlet

2007-08-09 Thread [EMAIL PROTECTED]
FOr myFaces you would have to extend the existing portlet bridge. The Sun RI lets you define pages for the 3 modes of the spec. (Note: you cannot change the window state when using a JSF app) There is room for a Portlet framework that would support this ;) View the original post : http://www.j

[jboss-user] [JBoss Seam] - Re: How to modify booking example login?(newbie question)

2007-08-09 Thread nickarls
Put some debug code before the if-statement that displays the identity.getUsername() and identity.getPassword() to see that they are populated OK... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072844#4072844 Reply to the post : http://www.jboss.com/index

[jboss-user] [EJB 3.0] - Re: Joined Inheritance Strategy Problem

2007-08-09 Thread grdzeli_kaci
"waynebaylor" wrote : The InheritanceType.JOINED is a "table per subclass" strategy. So you don't need a discriminator, which is probably why it was null. i did what you say, but problem not resolved. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072843#4072

[jboss-user] [JBoss Seam] - Where abouts should I change if I change the ds.xml inside b

2007-08-09 Thread guiltyxsin
Hi, I am a newbie in seam, and I was trying to change the ds.xml inside booking example so that I can use it to connect to the database I wanted. However, I am not sure if there's other part of the booking example I need to modify in order for the search function to work. So if anyone has been

[jboss-user] [JBoss Portal] - processing order of windows within page

2007-08-09 Thread brain101
in my page (defined in an *-object.xml file), i have 4 windows: metaWindow headWindow menuWindow contentWindow these objects are stored in jbp_object_node as follows: pk;path;name;parent_key; 122542;"myportal.mypage";"sprechtagsanmeldung";122535 122543;"myportal.mypage.metaWindow";"metaWindow";12

[jboss-user] [JBoss Seam] - Re: [SEAM 2.0 BETA 1] Embedded ejb container fails at test s

2007-08-09 Thread urswag
I also got this error. What I did was to download embedded-jboss-beta2. I copied then the bootstrap directory into the jboss Seam boostrap directroy. Then I should work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072840#4072840 Reply to the post : http:/

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-09 Thread monkeyden
Incidentally, why are you using an aggregate function in your test SQL statement? Doesn't MySQL have a dummy table like Oracle "dual", where you can write a simple query like: SELECT 1 FROM dual View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072839#4072839

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-09 Thread monkeyden
Check the manifest file in the hibernate3.jar file. If it's 3.2.0 GA, upgrade it to 3.2.5GA. I just had this problem the other day. reference: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2206 download: http://www.hibernate.org/6.html View the original post : http://www.jbo

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-09 Thread monkeyden
anonymous wrote : I upgraded the hibernate versions in Seam 1.2.1 to the latest hibernate which definitely reduced the frequency however they are still there. Any suggestions welcome. Oops, sorry. It's 2:00AM here. Sleepy. View the original post : http://www.jboss.com/index.html?module=bb&o

[jboss-user] [JBoss Portal] - Re: Giving Admin Priviledges to another Role

2007-08-09 Thread roth
No problem, I'm glad it worked for you. Thanks, Tobias View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072833#4072833 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072833 ___

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-09 Thread alanlynott
I'm getting the same problem. I'm wondering whether it's mySql because I've been told it's concurrent transaction handling is poor. I'm going to move to Postgres today to see if there are any improvements. Thanks, AL. View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBoss Portal] - Re: How integrate portlets

2007-08-09 Thread ram_java
thanks for ur reply, things working fine now View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072834#4072834 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072834 ___ jbo

[jboss-user] [Remoting] - Re: Closing the socket connection and sending multiple respo

2007-08-09 Thread [EMAIL PROTECTED]
Response posted on page 2 of "Simple Socket Server (TEXT)?" thread (http://www.jboss.com/index.html?module=bb&op=viewtopic&t=112344). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072832#4072832 Reply to the post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Seam] - 2.0.0BETA1 jboss-seam-ui.jar doesn't match source

2007-08-09 Thread wiberto
I was debugging some code and the debugger couldn't match the line, when I checked the source for EntityConverter I saw that the source and what's in the jar is not the same. This is from the jar which I decompiled: | public class EntityConverter | implements Converter, Serializable |

[jboss-user] [Remoting] - Re: ClassCast Exception while recieving the OrderedMap from

2007-08-09 Thread [EMAIL PROTECTED]
Hmm, according to the Common Collections javadoc, org.apache.commons.collections.map.LinkedMap implements org.apache.commons.collections.OrderedMap. Maybe your copies of common-collections.jar on the server and client sides are incompatible. Note that common-collections.jar comes with the JBo

[jboss-user] [JBoss Messaging] - Re: Bridge - Foreign Message (ActiveMQ -> JbossMessaging)

2007-08-09 Thread aslak
"timfox" wrote : "aslak" wrote : | | | | INSERT_MESSAGE_REF is inserted before INSERT_MESSAGE. | | | | I guess you must be using CR1, this is fixed in CR2 Is the database fix not commited? I can't see it in: https://svn.jboss.org/repos/messaging/trunk View the original post

[jboss-user] [JBoss Seam] - How to modify booking example login?(newbie question)

2007-08-09 Thread guiltyxsin
Hi I am a newbie, Because I need to connect to university database so the booking example's login has to be changed/deleted. However I want modify it to a simple login page such as having username and password as "administrator" or something like that. The following code is what I did in authen

[jboss-user] [JBoss Seam] - Re: Empty pages using Facelets

2007-08-09 Thread monkeyden
Sorry, bad example. One uses an action attribute, the other a child tag. | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072823#4072823 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBoss Portal] - How to integrate NTLM authentication with JBoss portal

2007-08-09 Thread prassana
hi all, I have a portal application where i want to use ntlm authentication to authenticate and later authorize the user based on roles defined in jbp_role_membership table. The user details are available in jbp_users table and roles are defined in jbp_roles table. I am using jcifs-1.2.6 .ja

[jboss-user] [JBoss Seam] - Re: how to

2007-08-09 Thread pdpantages
Hi henrik, Maybe the Conversation and/or ConversationStack classes could help with this? http://docs.jboss.com/seam/1.2.1.GA/api/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072819#4072819 Reply to the post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Seam] - Re: Empty pages using Facelets

2007-08-09 Thread monkeyden
As it turns out, the pages relied on page actions. Somehow these weren't being called before value binding methods when tested under a heavy load. Is there a guarantee that they will be called right after @Create? Also, is there any functional difference between: | | and |

[jboss-user] [JBoss Seam] - Re: how to

2007-08-09 Thread henrik.lindberg
I am using a combination of page parameters and ui:param to pass the viewid of the caller around. I then use a s:link where the view is set with a #{param['backLinkId']} which works great, but I would prefer something less hardwired. In fact, I pass two parameters around (as I support two leve

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: What URL should I be using to access JBoss ?

2007-08-09 Thread Cogito-Ergo-Sum
Thank you, jaikiran ! It really helps. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072816#4072816 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072816 ___ jboss-user maili

[jboss-user] [EJB 3.0] - Error with EJB3 application deployment

2007-08-09 Thread snagar
Hi All I have been trying to deploy one of my application that works perfect on JBOSS 4.0.5 while on JBOSS 4.2.0 GA version it is not deployed with the ROOT CAUSE being as shown below... What I was keen to understand is what the error " Reason: java.lang.NoClassDefFoundError: org.hibernate.cfg

[jboss-user] [JBoss Seam] - Re: How to build action parameter expression for s:button wi

2007-08-09 Thread matt.drees
You usually have to use a datamodel to back your dataTable. Look at the Booking example for how to set it up right. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072813#4072813 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [JBoss jBPM] - Re: Where to route obsolete parent token in token multiplica

2007-08-09 Thread karmen38
Hi J! Here is the code for the custom fork. The code is a little bit too tailored to our specific needs and we are still thinking how to do it better. I hope it helps. You comments are appreciated. Thank you, Mark | import java.util.LinkedList; | import java.util.List; | | import org

[jboss-user] [JBoss Portal] - java.lang.NullPointerException @ InternalContentProvider.jav

2007-08-09 Thread rharari
Hi, I´ve synchronized the source with trunk branch and i´m getting this exception when running the portal: java.lang.NullPointerException org.jboss.portal.core.impl.model.content.InternalContentProvider.renderWindow(InternalContentProvider.java:258) org.jboss.portal.core.impl.model.content.gener

[jboss-user] [EJB 3.0] - EJB3 Interceptor never called - how to debug?

2007-08-09 Thread tynor
I am trying to add an ejb3 interceptor, but can't even get a simple one to run. From my reading of the docs, I should be able to just add the Interceptor annotations and be off and running, but my interceptor functions never run. Here's the interceptor class: public class MyInterceptor { |

[jboss-user] [Remoting] - Re: RMI over HTTP performance

2007-08-09 Thread [EMAIL PROTECTED]
The RMI and HTTP invokers discussed in that wiki page are built into the Application Server and predate the Remoting invokers. Now, EJB3 uses an invoker based on Remoting, and, if I'm not mistaken, EJB2 now uses the same. However, I have to admit that I'm not very familiar with their configura

[jboss-user] [JBoss jBPM] - Re: problem while saving taskform varibles

2007-08-09 Thread gsccnu
I can use selectItem,but selectItems have something wrong. Anyone has any ideas? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072808#4072808 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072808

[jboss-user] [JBoss Seam] - Re: entityManager goes null on form submit?

2007-08-09 Thread wesleyhales
Yes, It's very strange in the fact that hibernate is executing queries and showing me fresh data after this stack trace occurs... but a form submit throws it??? Is there anything I can do with context management for custom servlets (and or filters)? Although this is a servlet filter, I am wonde

[jboss-user] [Remoting] - Re: Config for EJB3 over servlet-invoker with compression

2007-08-09 Thread [EMAIL PROTECTED]
Based on your July 23 note, I guess you worked out the configuration problems, but just in case, here a couple of comments. anonymous wrote : | ... | 14:41:07,203 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference | | 14:41:08,562 WARN [MarshalFactory] Found m

[jboss-user] [JBoss Portal] - Re: please give me a hand, thank you

2007-08-09 Thread linpan
thank you all. i have study the layout, but i see very few, so i must go to study it again . you are all kind. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072804#4072804 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss jBPM] - Re: problem while deleting processInstance

2007-08-09 Thread iseyfi
Anyone has any ideas? I gotta fix this! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072803#4072803 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072803 ___ jboss-user mail

[jboss-user] [JBoss Seam] - Re: seam s:link fetchs list multiple times. big error !

2007-08-09 Thread bulloncito
Tried it. Won't work. Changed for h:command as follows: | | | | ... witch now need forms (or links are disabled with an ugly warning in seam2) for tiny navigation links. That, by the way, does not fail, however should not be the solution. Please be patient, I'

[jboss-user] [JBoss Seam] - selectItems strange behavior

2007-08-09 Thread rodrigotico
Hello all, I am trying to get a object from a component and getting a strange behavior. My entities are: Client >1:1> Address >n:1> CityState In my user interface I have a selectMenu with the states registered on the database and another selectMenu with the cities of the state select

[jboss-user] [JBoss Seam] - Re: Seam and (or vs) Tapestry 5

2007-08-09 Thread [EMAIL PROTECTED]
That is not typical. There's not enough to tell exactly what is wrong, but it's definitely not indicative of normal JSF performance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072800#4072800 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Seam] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBoss jBPM] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBoss Portal] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBossWS] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [Messaging, JMS & JBossMQ] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBoss Messaging] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBossCache] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBoss Seam] - Re: [SEAM 2.0 BETA 1] Embedded ejb container fails at test s

2007-08-09 Thread jdbastin
I too get this error. My environment is identical to littlewing's. To verify, I downloaded a clean copy of Seam 2.0 Beta, changed to the examples/booking directory and tried "ant testexample". The stacktrace is also identical to littlewing's and refers to two missing rars: jboss.jca:name='jm

[jboss-user] [Security & JAAS/JBoss] - update ejb permission/role using jacc

2007-08-09 Thread ematillano
Hello JBoss Users/Developers, My use case is that the the ejb3 services that we have developed need to be dynamically updated of its roles. Our product which consists of ejb3 services need to be managed of role/permission mapping at runtime via some user interface. We need a security system t

[jboss-user] [EJB 3.0] - Re: Interrupting a stateful session bean in use

2007-08-09 Thread waynebaylor
if you have access to the sfsb code you could try adding a "stop processing" flag. when the client wants to cancel you can set the flag, which the sfsb would be checking periodically. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072790#4072790 Reply to the

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [EJB/JBoss] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [EJB 3.0] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JCA/JBoss] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JNDI/Naming/Network] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [Installation, Configuration & DEPLOYMENT] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [Beginners Corner] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [Advanced Documentation] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBoss Seam] - Re: entityManager goes null on form submit?

2007-08-09 Thread [EMAIL PROTECTED]
Odd. I *guess* you are killing the em/transaction somehow in your servlet filter, but I dunno. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072779#4072779 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072779 __

[jboss-user] [JBoss Seam] - Re: validation & selectManyListbox

2007-08-09 Thread [EMAIL PROTECTED]
I'm not sure where that error comes from. You'll need to use your debugger/the source to find what exception is being thrown (and caught, to give that error messages). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072778#4072778 Reply to the post : http:/

[jboss-user] [JBoss Seam] - EJB 3.0 Seam Component Not Found

2007-08-09 Thread birwin
I have an EJB 3.0 Stateful Session Bean that I am unable to see from my web page (JSP at the moment). From the log files it is apparent the bean is not being detected by the seam deployment scanner. My EJB: @Stateful | @Scope(CONVERSATION) | @Name("divisionListener") | public class Divisio

[jboss-user] [JBoss Getting Started Documentation] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [J2EE Design Patterns] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [Testimonials] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [Testimonials] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [The Lizzard's corner] - !! FTP !! Cheap softwares at www.allsoftwarezz.com

2007-08-09 Thread allsoftwarez
WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalo

[jboss-user] [JBoss Seam] - Version 2.0.0.BETA1 and JBoss 4.0.5 Issue

2007-08-09 Thread mhaubrich
Hi, I am trying to migrate our project to the new Seam Version 2.0 and I am having trouble doing so on our JBoss 4.0.5. I upgraded to the RI JSF 1.2 and made the changes to the source code as described in the migration guide. When I attempt to deploy I get the following exception: 16:09:46,09

[jboss-user] [JBoss Seam] - Re: seam s:link fetchs list multiple times. big error !

2007-08-09 Thread [EMAIL PROTECTED]
Felix, yes, good point. Perhaps we can work around it. Anyway I can't even replicate so... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072768#4072768 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072768 _

[jboss-user] [JBoss Seam] - is it possible to complete JBPM task and update entity as an

2007-08-09 Thread vladimir.kovalyuk
is it possible to start a JBPM process and update entity as an atomic operation? SFSB creates a process and saves its id as a property of an entity. I see changes in jbpm tables when entity hasn't been changed yet. How can I make jbpm use transactions while seam says: jBPM transaction management

[jboss-user] [JBoss Seam] - Re: seam s:link fetchs list multiple times. big error !

2007-08-09 Thread fhh
I can guess what happens: is trying to find out the datamodel selection and is acessing the list behing the value of its UIData parent. I would say this behaviour is expected. Something similiar should happen if the poster uses instead of the ... hack. Regards Felix View the original post :

[jboss-user] [Security & JAAS/JBoss] - Re: The neverending logout topic

2007-08-09 Thread nollie
Dear unauthenticators Thanks to chakotey07 and everyone else for their posts. Using smi-smith's code I have gotten a hold of a LoginContext, but calling the logout method leads to this error: anonymous wrote : 18:53:28,234 ERROR [UsersRolesLoginModule] Failed to load users/passwords/role file

[jboss-user] [JBoss Seam] - Re: Seam and (or vs) Tapestry 5

2007-08-09 Thread mgrouch
AFAIR "Apply request values" JSF phase on big JSF form for whatever reason was the longest. Even longer than DB access. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072764#4072764 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [JBossCache] - Re: How to store an object in POJOCache under multiple keys?

2007-08-09 Thread [EMAIL PROTECTED]
POJO Cache adds information to instrumented objects that allows it to determine if it has already been stored. On attach, if the object already exists, just a reference is created. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072763#4072763 Reply to the p

[jboss-user] [JBoss Seam] - Re: Seam and (or vs) Tapestry 5

2007-08-09 Thread mgrouch
Unfortunately 200ms * 5 times = 1 sec :( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072762#4072762 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072762 ___ jboss-user mai

[jboss-user] [JBoss Seam] - Re: validation & selectManyListbox

2007-08-09 Thread wiberto
I had a similar issue but not with validating. My equals() method was wrong and always returning false. Blame it on autoboxing!! anyway, I fixed the equals() and now my checkbox list is selected appropriately based on the objects in the list. Which is a good sign. But still when I try to submit

[jboss-user] [JBoss Seam] - Re: Seam and (or vs) Tapestry 5

2007-08-09 Thread epbernard
"mgrouch" wrote : All of it makes it (in my experience) 5 times slower than same tasks with JSP. | Do you mean your 200ms task involving html, ejb, database access now takes 1s, or do you mean your 200ms now takes 220ms? View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Portal] - Re: How to define additional context for JBoss Portal 2.6

2007-08-09 Thread mcclainc
I've since updated to jboss-portal2.6.1.GA and can add a context by making the same changes to jboss-web.deployer/server.xml. But I'd like to be able to identify additional contexts by adding an xml file rather than having to edit a jboss file (as is done with Tomcat): TOMCAT_HOME/conf/Cata

[jboss-user] [Remoting] - Re: Multiplex socket exmaple with SSL?

2007-08-09 Thread [EMAIL PROTECTED]
Good choice. It's a new transport, and we're still working out some wrinkles, so keep an eye out for updated releases at http://repository.jboss.com/jboss/remoting/. The most recent jboss-remoting.jar there is in the 2.2.0.SP4_CP02-brew/ directory, though it's not an official release. It shou

[jboss-user] [JBoss Seam] - Re: Seam and (or vs) Tapestry 5

2007-08-09 Thread mgrouch
BTW in tapestry 5 they are building brand new IoC controller based on annotations and javassist byte code manipulation. Might be you guys could convince them to stop doing it and just use Seam for it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072756#4072

[jboss-user] [JBoss Seam] - Re: Seam and (or vs) Tapestry 5

2007-08-09 Thread mgrouch
My current work schedule makes it impossible. Might be someone from tapestry developers team would be interested in doing it... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072754#4072754 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBoss Seam] - Re: Problem restoring view after timeout

2007-08-09 Thread [EMAIL PROTECTED]
"supernovasoftware.com" wrote : How can I catch this error and redirect without having the popup appear? Bug the richfaces/ajax4jsf guys to introduce a config option for this (preferably off by default!). We had that stacktrace before, I think Gavin has fixed it in Seam2. View the original po

[jboss-user] [Remoting] - Re: Bad password

2007-08-09 Thread [EMAIL PROTECTED]
Hi Martin, Your question is outside the scope of Remoting. I would suggest you try the "EJB 3.0" forum (http://www.jboss.com/index.html?module=bb&op=viewforum&f=221) . View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072752#4072752 Reply to the post : http:/

[jboss-user] [JBoss Seam] - entityManager goes null on form submit?

2007-08-09 Thread wesleyhales
have no idea what's going on here: I am using a custom servlet filter that renders my xhtml to pdf. After the PDF is created I can hit the back button and refresh the page (or go to another page) and still view data from the database on the other seam pages. But, when I submit a search or any f

[jboss-user] [Remoting] - Re: Multiplex socket exmaple with SSL?

2007-08-09 Thread TheNelson
Thank you very much. I'll start migrating my code to bisocket. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072750#4072750 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072750 ___

[jboss-user] [Remoting] - Re: JBOSS RMI OBJECT ACCESSING - IN A CLUSTERED ENVIRONMENT

2007-08-09 Thread [EMAIL PROTECTED]
I can't really help you with this. There's no Remoting code involved. Sorry. You might try the "Clustering/JBoss" forum at http://www.jboss.com/index.html?module=bb&op=viewforum&f=64. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072749#4072749 Reply to t

[jboss-user] [Remoting] - Re: RTSP and JBoss Remoting

2007-08-09 Thread [EMAIL PROTECTED]
I'm not aware of anyone working on such a transport. I don't know anything about RTSP, but offhand, I don't see how it would fit with the Remoting API, which is based on an RPC model. However, stay tuned for Remoting 3, which should be more message oriented. Of course, anyone is welcome to co

[jboss-user] [Remoting] - Re: Socket client with JBoss Remoting

2007-08-09 Thread [EMAIL PROTECTED]
Yeah, that's not going to work. SocketClientInvoker wants to talk to a SocketServerInvoker. For example, in Remoting versions 2.0.0 and above, each invocation and each response is preceded by a version byte. For another, the client will try to create an ObjectInputStream, which means the serv

[jboss-user] [JBoss Seam] - Re: Problem restoring view after timeout

2007-08-09 Thread supernovasoftware.com
I have not solved this problem. Is this caused by session timeout, conversation timeout, or both? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072743#4072743 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072743 ___

[jboss-user] [JBoss Seam] - Re: how to

2007-08-09 Thread pdpantages
Hi henrik, I have been doing this by passing a parameter when the nested conversation is started. The backing bean (SFSB in the nested conv. context ) grabs the parameter and keeps it in a String var for later use. I am hard coding the outcomes, If you find a better way, please lmk. |

  1   2   3   4   >