[jboss-user] [JBossWS] - Re: Sample application

2007-09-12 Thread oskar.carlstedt
Hello! There are several examples in the JBossWS-distribution. Just download the normal distribution (src distribution is not required). The distribution zip file contains another zip file with lots of examples about how to do what in what situation. Build the examples, deploy them into JBoss

[jboss-user] [Security JAAS/JBoss] - @RolesAllowed ignored?

2007-09-12 Thread jjonphl
I am using jboss 4.2.1.GA. I have the ff session bean | @RolesAllowed({authenticated}) | @Stateless | @Remote({AccountRDAO.class}) | public class AccountRDAOAction extends RDAOAction | implements AccountRDAO, Serializable | { | | ... | | } | I defined the ff policy

[jboss-user] [Security JAAS/JBoss] - Re: @RolesAllowed ignored?

2007-09-12 Thread jaikiran
Did you specify the security domain either as a annotation or in the jboss.xml? You can do that either through an annotation | @SecurityDomain(mypolicy) | @RolesAllowed({authenticated}) | @Stateless | @Remote({AccountRDAO.class}) | public class AccountRDAOAction extends RDAOAction |

[jboss-user] [JNDI/Naming/Network] - DataSource look up failed

2007-09-12 Thread lakshmansai
Hi, I have created a dataSource with jndi name KernelDataSource and it successfully bounded in jboss 4.2 version. When i am trying to look up from my client program i am getting name not bound exception. Can any body look at this problem: mysql-ds.xml: local-tx-datasource

[jboss-user] [EJB 3.0] - Re: java.lang.ClassCastException: org.jnp.interfaces.NamingC

2007-09-12 Thread jaikiran
anonymous wrote : in application-client.xml, ejb/TestRunner is the ejb-ref-name Did you try looking up using ctx.lookup(ejb/TestRunner); View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083283#4083283 Reply to the post :

[jboss-user] [Management, JMX/JBoss] - no response from an application with quartz schedular in jbo

2007-09-12 Thread SantoshKumar
Hi, I deployed my web application with Quartz scheduler by putting my quartz-service.xml inside deploy. the application is getting deployed properly but after some time I don't get any response page when I try to browse my web application (even the index.jsp) and even no error. I find the below

[jboss-user] [JNDI/Naming/Network] - Re: DataSource look up failed

2007-09-12 Thread jaikiran
Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=HowCanIAccessADataSourceFromAClient View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083286#4083286 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083286

[jboss-user] [EJB 3.0] - Re: mapping generic entities

2007-09-12 Thread saxon747
Sorry, if I was not clear. Of course all the four classes (UserEntity, UserRightEntity, UserRight, User ) are all annoted as @Entity classes. I just did not copy the whole code of them. Of course they also implement Serializable. View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: @RolesAllowed ignored?

2007-09-12 Thread jjonphl
Forgot to mention, but I did the latter jaikiran wrote : Did you specify the security domain either as a annotation or in the jboss.xml? You can do that either through an annotation | | snipped | | jboss | | security-domainmypolicy/security-domain | | | | /jboss View

[jboss-user] [JBoss Seam] - Re: When would SEAM 2.0.0 GA and SEAM 2.0.1 GA be released a

2007-09-12 Thread [EMAIL PROTECTED]
anonymous wrote : I think I would be less willing to put my vote in for Seam-specific support after watching the 1.3.0 Alpha disappear - just too much volatility in how it evolves. EOD for me. Take your threats somewhere else. View the original post :

[jboss-user] [JBoss Messaging] - Re: JMSMessageID in Messaging cluster

2007-09-12 Thread beve
Hi Clebert, anonymous wrote : | One thing we could do easily (it is implemented this way now on trunk) is set the CorrelationID when the message is transfered over the cluster. Would that be okay for you? | I think that the JMSCorrelationID should always travel with the Message over the

[jboss-user] [Installation, Configuration DEPLOYMENT] - setup jboss as server on LAN

2007-09-12 Thread sparshaadi
I have the following configuration running successfully on my PC. JBoss Server : JBoss [Zion] 4.0.5.GA (with ejb3.0 profile) JBoss Seam 1.2.1 JBoss Portal 2.6.1 My problem is that eclipse and jboss (together or even jboss alone) eat up a lot of memory and working with it becomes too

[jboss-user] [JBoss Seam] - Re: New User Lazy Load Question

2007-09-12 Thread pwoj
Read this: [url] http://www.jboss.com/index.html?module=bbop=viewtopict=118326[/url] probably will be helpful ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083295#4083295 Reply to the post :

[jboss-user] [JBoss Seam] - internationalization question

2007-09-12 Thread [EMAIL PROTECTED]
hi... i'm new to seam i've read the tutorial about seam internationalization but the only way i found to set the locale was using combobox and then invoke #{localeSelector.select} from seam link/button in my app, i intend to save preferred language for each user in a database, so when a user

[jboss-user] [Beginners Corner] - jboss-acl.jar

2007-09-12 Thread SuePermann
Hi All, Could you please let me know what is the exact functionality of jboss-acl.jar? Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083294#4083294 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083294

[jboss-user] [EJB 3.0] - Sequence generators in Embedded PK

2007-09-12 Thread krudz
Is it possible to use sequence generetors in embedded primary keys? Example We want to use: @Id @GeneratedValue(strategy=GenerationType.AUTO, generator=NotHeadSeq) @Column(name = nhd_id) in class with @Embeddable annotation. The class with @Embeddable annotation contains few

[jboss-user] [JBoss Portal] - Re: Creating a CMS interceptor

2007-09-12 Thread frontline
I tried a different approach to this by dynamically adding interceptors to the stack. I can get a reference to the InterceptorFactory object and list the two default interceptors in it. But how can I add interceptors? The addInterceptor() method is located in the class

[jboss-user] [JBoss Seam] - Re: New User Lazy Load Question

2007-09-12 Thread [EMAIL PROTECTED]
If you load a User instance into the Session context it becomes _detached_ from the persistence context, by definition (the persistence context has a smaller scope, Conversation or Event). So if you want to access unloaded associations or collections on that User instance you need to

[jboss-user] [JBoss Seam] - Re: New User Lazy Load Question

2007-09-12 Thread [EMAIL PROTECTED]
Well, or you do this: http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamEntityHomeForLongRunningContexts View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083300#4083300 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083300

[jboss-user] [JBoss Portal] - cms and Filestystem

2007-09-12 Thread shilpak
Hi, I am new to work on cms. I am using jboss portal 2.6 bundle version. I am Configuring the Content Store Location. By default storage is 100% database. As told in documetation, to change it to 100% file system, i need to comment out database related, HibernateStore(3 places)

[jboss-user] [Beginners Corner] - ServletContextLisetner and Class Loading

2007-09-12 Thread nehagp
Hi, I have a certain piece of code in the contextInitialized method of a ServletContextListener. When I deploy my app on JBOSS, it gives me a NoClassDefFoundError. If I change the code in the contextInitialized method to run 10 seconds after the context is initialized, it runs fine. So, I

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: CVE-2007-3382/3385 + JBoss 4.0.3SP1

2007-09-12 Thread [EMAIL PROTECTED]
4.0.3 SP1 was shipped with 5.5.9 (See http://wiki.jboss.org/wiki/Wiki.jsp?page=VersionOfTomcatInJBossAS). Use http://repository.jboss.com/apache-tomcat/5.5.9.patch03-brew/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083303#4083303 Reply to the post :

[jboss-user] [JBoss jBPM] - Problem deploying jbpm-console

2007-09-12 Thread lvonk
Hi all, I recently tried to deploy the jbpm-console (jbpm-enterprise.ear) packaged in the jbpm-jpdl-suite-3.2.GA.zip. And came across the following problems, I use JBOSS 4.0.5 GA and JDK 1.5.0_11: - The readme.html in the jbpm-jpdl-suite-3.2.GA/deploy is very summier. It promises an

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-09-12 Thread wise_guybg
Hi, You can have the localeSelector component injected in your authenticator component: @In | LocaleSelector localeSelector; And in the authenticate method: localeSelector.setLocaleString(l); | localeSelector.select(); There are other setters available, too. I use setLocaleString() because

[jboss-user] [JBoss Portal] - Re: JBoss Portal why not support chinese?

2007-09-12 Thread [EMAIL PROTECTED]
What page, where and how you got this ? If the page encoding in the layout, and database are correctly set this should work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083307#4083307 Reply to the post :

[jboss-user] [JBoss Seam] - Re: servlet accessing seam components

2007-09-12 Thread jamesjmp
thank you very much! getInstance was what I needed and that example is a really useful one for this! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083308#4083308 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083308

[jboss-user] [JBoss/Spring Integration] - Re: JBoss, Spring and AspectJ integration

2007-09-12 Thread Erwin35
Hello, I have the same problem with a Jonas application server. Could you say if you found a solution and what is ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083310#4083310 Reply to the post :

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-09-12 Thread [EMAIL PROTECTED]
awesome... thank's for the answer wise_guybg now i can finally finish my job cheers View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083311#4083311 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083311

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Problem with Jboss(Tomcat) caching from my file system

2007-09-12 Thread Boris_Br
Thank you for your reply. Our application hold the different document in html or pdf form in database. So after user request I only copy/replace the existing file in the deploy\..\docs\ directory and want to show to the user everytime only the actuall file - is is very importent. I think you

[jboss-user] [JBoss Seam] - ClassNotFoundException: org.jboss.seam.async.package-info

2007-09-12 Thread wise_guybg
Hi, I'm using Seam 2.0.0.B1 on JBoss AS 4.2.1.GA. Application built with IntelliJ IDEA 6.0.5. Recently my application decided it doesn't want to deploy anymore. I would really appreciate if someone can give me an idea what can be wrong. Thanks. Note: I have removed all cache files I could

[jboss-user] [JBoss jBPM] - Super State

2007-09-12 Thread petia
Hi, I am trying to use the Super State construct in jBPM 3.1.4 and I have problems with it. As I am not able to define the components of a super state in the graphical editor (which only provides support for defining activities for a super state), I am directly editing in the xml definition of

[jboss-user] [JBoss Seam] - SeamTest.FacesRequest: question

2007-09-12 Thread amashtakov
Hi All, While writting integration tests I noticed the following behavour SeamTest mock. In order to update user's profile I have to log-in first. So, we need two requests: 1) new FacesRequest(/login.xhtml) { @Override protected void updateModelValues() throws Exception {

[jboss-user] [Installation, Configuration DEPLOYMENT] - JBoss5 JMXConnectorServer

2007-09-12 Thread an4253
Hello, I get the following trace snippet when I start JBoss AS5 with JDK1.6 or 1.5.11. 09:35:05,618 ERROR [AbstractKernelController] Error installing to Start: name=jboss.remoting:protocol=rmi,service=JMXConnectorServer state=C reate mode=Manual requiredState=Installed

[jboss-user] [JBoss jBPM] - Re: Problem deploying jbpm-console

2007-09-12 Thread jbaxter
jbpm-jpdl-suite-3.2.1 was released in June and is much more stable, so Id try that next time you come up against any problems! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083324#4083324 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem deploying jbpm-console

2007-09-12 Thread lvonk
Hi I can only find 3.2 on the download page: http://www.jboss.com/products/jbpm/downloads. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083325#4083325 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083325

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

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

[jboss-user] [JBoss Portal] - Re: JBoss Portal why not support chinese?

2007-09-12 Thread [EMAIL PROTECTED]
I found the same problem in CMS. I just change the code a little bit. hope there is nothing more. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083330#4083330 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083330

[jboss-user] [JBossCache] - JBCACHE-118

2007-09-12 Thread BruceSpringfield
using JBC 1.4.1 on JBoss 4.2.1.GA encountered following messages on what appears as every get() : 10:15:00,639 INFO [CacheLoaderInterceptor] CacheLoader.get(Fqn) returned a null; assuming the node does not exist. 10:15:00,639 INFO [CacheLoaderInterceptor] The CacheLoader interface has

[jboss-user] [JBoss Seam] - SeamTest and JSF validation

2007-09-12 Thread amashtakov
Hi All, I have a web page with the following code: h:inputSecret id=login value=#{pcUserProfile.login} validator=#{pcUserProfile.loginValidate} / I noticed that loginValidate() method of pcUserProfile doesn't invoked in my testcase: new FacesRequest(/profile.xhtml)

[jboss-user] [Installation, Configuration DEPLOYMENT] - Need some helps !!!

2007-09-12 Thread changemylife
Hi all! I were posted my problem but not solved! I read article: http://wiki.jboss.org/wiki/Wiki.jsp?page=Log4jSocketServer I were configured JBoss Server inside conf/jboss-service.xml. So, on the client side, I not need add log4j.xml and I can edit file log4j.xml inside conf/log4j.xml ?

[jboss-user] [JBoss Seam] - Re: SeamTest and JSF validation

2007-09-12 Thread amashtakov
just checked ... JSF value change listeners also do not invoked View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083337#4083337 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083337

[jboss-user] [JBoss Seam] - s:conversationPropagation type=end/ usage

2007-09-12 Thread harpritt
Hi ya i was just wondering what you guys thought of my usage of s:conversationPropagation type=end/. Ive looked at the documentation and am 80% sure that im using it correctly, but would appreciate your comments just incase im having a senior momment. Below is the menu display on my app home

[jboss-user] [JBoss Portal] - Could not initialise deployment: file:/C:/jboss-4.0.5.GA/ser

2007-09-12 Thread [EMAIL PROTECTED]
Hi Guys, I am new to portlets. I am trying to run a portlet using JBoss 4.0.5. But while starting the server i am getting the following lines..Can u plz help me to run the portlet using JBoss 4.0.5... 11:11:23,830 WARN [ServiceController] Problem starting service

[jboss-user] [JBoss Portal] - Re: JBoss Portal why not support chinese?

2007-09-12 Thread [EMAIL PROTECTED]
Do you mind providing a patch that would help the others ? AFAIK, the CMS is now fully supporting any language (after several bug fixes) maybe we left something out. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083340#4083340 Reply to the post :

[jboss-user] [JBossWS] - Cannot find port type for binding

2007-09-12 Thread ZazzaZ
Hi, I'm having this problem deploying a web service under jboss 4.0.5 11:04:21,749 ERROR [MainDeployer] Could not create deployment: file:/home/zazzaz/Tesi_Workflow/jboss-4.0.5.GA/server/default/deploy/processo.war org.jboss.ws.WSException: Cannot find port type for binding:

[jboss-user] [Clustering/JBoss] - Wierd trouble while deploying application to clustere JBoss

2007-09-12 Thread inksystems
Hi everyone, i am attempting to move an existing application to the clustered environment. Application consists of one ejb module and one web frontend application packed into .ear file. It works fine on single instance of JBoss 4.2 but when it is deployed to clustered Jboss 4.2 deployment goes

[jboss-user] [JBoss jBPM] - Re: Problem deploying jbpm-console

2007-09-12 Thread kukeltje
@Ivonk: You should not have to configure the login policy in the suite. The suite IS ready to run out of the box INCLUDING the JBoss AS server it has in it. At least it does for me each time I test a release. If you use your own JBOss AS, your milage may indeed vary and you have to do more

[jboss-user] [JBoss jBPM] - Re: Problem deploying jbpm-console

2007-09-12 Thread [EMAIL PROTECTED]
Indeed, go to our labs pages for downloads: http://labs.jboss.org/jbossjbpm/downloads. The website is being completely restructured and the labs pages will be the place to download files, find docs, etc. The jboss.com site will be used purely for marketing purposes in the future. Sorry for

[jboss-user] [JBoss Seam] - JSF commandButton not rendering whole page

2007-09-12 Thread alex_enache
Hi! I'm having troubles with the JSF commandButton. When I create an input form, at the end of the form I put a JSF commandButton which should persist my data entered into the form. The problem is that all the controls that are in the form(including the JSF button) are not rendered. And even

[jboss-user] [JBoss Seam] - Re: ClassNotFoundException: org.jboss.seam.async.package-inf

2007-09-12 Thread wise_guybg
OK, I found it. A colleague has recompiled jboss-seam.jar using Java 1.6 I'm sorry about the unnecessary topic... Fortunately the problem pushed me to dig into Seam's inner-workings thus better understand the framework. View the original post :

[jboss-user] [JBoss Seam] - Re: JSF commandButton not rendering whole page

2007-09-12 Thread stephen.friedrich
show some code View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083357#4083357 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083357 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: JSF commandButton not rendering whole page

2007-09-12 Thread alex_enache
?xml version=1.0? | jsp:root xmlns:jsp=http://java.sun.com/JSP/Page; | xmlns:ui=http://java.sun.com/jsf/facelets; | xmlns:h=http://java.sun.com/jsf/html; | xmlns:f=http://java.sun.com/jsf/core; | xmlns:s=http://jboss.com/products/seam/taglib; |

[jboss-user] [JBoss Portal] - Portal performance over 1000 portals

2007-09-12 Thread andiXT
I have an application which generates in portal 1000 subportals. After this operation performance of Portal went down siginificantly. As I understand, its because of growing of dbase? Are there a chance to reduce these drops of performance on a single machine (I mean without clustering)? Maybe

[jboss-user] [JBoss Portal] - Re: configurate jboss potal service for jsf portlet

2007-09-12 Thread NilsOEdstrom
From the war file generated by Java Studio Creator 2, remove jsf-api.jar and portlet.jar. Make sure you have the JBoss specific deployment descriptors in the WEB-INF directory (portlet-instances.xml and portlet name-object.xml). View the original post :

[jboss-user] [JBoss Seam] - query restrictions with id primary key element

2007-09-12 Thread jamesjmp
Hello, by means of seam-gen I have a POJO with an id attribute. The id is in fact another POJO. All is ok according to the database. I´ve defined a query in componentes.xml. It works properly: | framework:entity-query name=POJOView | ejbql=select pojo from

[jboss-user] [JBoss Seam] - FlushModeType not working in Seam 1.2.1 GA?

2007-09-12 Thread kotlusa
Environment: I have tried this in serveral environments... Seam 1.2.1 JBoss 4.0.5 and 4.2.1 Myfaces (JSF 1.1) and JSF 1.2 RI Windows XP and Solaris 10 HSQLDB and Oracle Scenario: I have a basic situation where I want to edit an entity (and it's related entities on an edit page), go to a

[jboss-user] [JBossWS] - Re: Cannot find port in wsdl (need help)

2007-09-12 Thread ZazzaZ
Hi, I'm having the same problem and I've just found out that a solution is in thw webservices.xml file. But I'm sorry to say that I don't know how to make it works. I hope I was helpful. Bye View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083368#4083368

[jboss-user] [Management, JMX/JBoss] - Expose MBeans from another domain

2007-09-12 Thread alex_55
Hi guys, I've deployed WAR application into JBoss-4.0.4GA (actually 3rd party application). This application has few MBeans, which can be seen through the application itself (using browser). However these MBeans are not visible through standard /jmx-console. I'd like to see them also in

[jboss-user] [JBoss Seam] - Re: JSF commandButton not rendering whole page

2007-09-12 Thread alex_enache
Hey Stephen. Thank you very much for asking for the code! After I posted the code, I started thinking that maybe it's not the code of the form that has bugs. So I looked through the rest of the code. And I've done two things: 1. I've modified the version attribute of the jsp:root tag to 1.2 2.

[jboss-user] [JBoss Seam] - Suggestion about seam-gen

2007-09-12 Thread limousyf
I don't know if I can make this modification by myself so I ask here. I want my entities to be generated with | implements ComparableEntityName | with a very simple comparator, something like this: | @Transient | public int compareTo(EntityName o) { | return

[jboss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - shutdown.sh not working in Unix and Solaris

2007-09-12 Thread suneelchetty
When I user shutdown.bat it works fine but when I user ./shutdown.sh in HP RISC or solaris it shows error log4j:ERROR failed to create directory structure: /log log4j:ERROR setFile(null,False) call failed java.io.FileNotFountException: /log/boot.log (No such file or directory) this is b'coz I

[jboss-user] [JBoss Seam] - faces messages not displayed

2007-09-12 Thread kgoedert
Hi, I´m having a problems showing faces messages on the screen. My messages.properties file is in my WEB-INF/classes and all my messages are displayed on the console. In my page, I have this: h:form id=formEntity h:messages/

[jboss-user] [JBoss Seam] - Right Click Contextual Menu

2007-09-12 Thread yj4jboss
Hi, Does anyone know an implementation of a Right Click Contextual Menu with RichFaces or IceFaces ? Thnx, Jankee Yogesh View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083381#4083381 Reply to the post :

[jboss-user] [JBoss Seam] - Re: FlushModeType not working in Seam 1.2.1 GA?

2007-09-12 Thread amitev
I think that @Begin(join=true, flushMode=FlushModeType.MANUAL) works only for seam managed persistence context View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083383#4083383 Reply to the post :

[jboss-user] [JBossWS] - Ant task for wsconume, wsprovide ??

2007-09-12 Thread vashistvishal
Since new wiki is not up and running. Would someone please tell me what is the ant task for wsconsume and wsprovide commands for Jbosws2.0.1 GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083389#4083389 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problem executing an action

2007-09-12 Thread Johan.Parent
If I understand it well from the stack trace you associated an action with a transition (correct?). Something goes wrong in your action handler. Did you debug that? Regards, Johan View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083391#4083391 Reply to the

[jboss-user] [JBoss Tools (users)] - Re: Why

2007-09-12 Thread [EMAIL PROTECTED]
report this in jira please. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083401#4083401 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083401 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Can't commit because transaction is in aborted state excepti

2007-09-12 Thread guiltyxsin
Hi, I got this exception when I am doing a query for some data. I have no idea what it means. I have done the same kind of query in one page and when I come to a new page which does another query it throws me the exception. | java.lang.RuntimeException: javax.transaction.RollbackException:

[jboss-user] [JBoss Tools (users)] - Re: to Max--why JBoss tools(Seam module) does not work

2007-09-12 Thread [EMAIL PROTECTED]
I haven't had time yet (just got back from holiday) to look into how much of the ear support is completed - but I can see a couple of jira issues have been closed and still some opened. The jira you point to is just one of these, the rest remains to be closed. View the original post :

[jboss-user] [JBoss jBPM] - Re: java.lang.OutOfMemoryError

2007-09-12 Thread estaub
How are you observing that the old jbpmConfig is staying in memory? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083405#4083405 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083405

[jboss-user] [JBoss Tools (users)] - Re: missing Hibernate Entity Model

2007-09-12 Thread [EMAIL PROTECTED]
it was removed since it overlapped with the new diagram view - which unfortunately had to be disabled because of last minute found bugs. My bad that i did not reenable the entity view for the release ;( View the original post :

[jboss-user] [EJB 3.0] - @Enumerated with @ID Usage Issue

2007-09-12 Thread fkifle
I have an entity associated with an Oracle database table that has one column of type VarChar2(20) as the Primary Key which is used to store Java 1.5 enum values. The env. I am using is Jboss 4.1.2-GA as app server. I am getting an exception whenever I try to retrieve and store the values to

[jboss-user] [Management, JMX/JBoss] - Re: Scheduler Delay

2007-09-12 Thread ctormo
you can check the solution here http://jira.jboss.org/jira/browse/JBAS-3282 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083414#4083414 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083414

[jboss-user] [EJB 3.0] - Re: Cannot get my first EJB 3.0 to work!!!

2007-09-12 Thread kpiis
Hello all, I have the same question: After deploying my statefull bean I get the ClassCastException In JNDI view it's binded in such way +- StatefullBean (class: org.jnp.interfaces.NamingContext) | +- localStatefulProxyFactory (class: org.jboss.ejb3.stateful.StatefulLocalProxyFactory) |

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Problem with Jboss(Tomcat) caching from my file system

2007-09-12 Thread Raist_Majere
How do you show to the user the available files? What are the URLs like to get these files? Maybe your problem is with this second thing. If you give URLs directly to the files, they may be cached by the browser. View the original post :

[jboss-user] [JBoss jBPM] - Re: How do I end an existing process instance immediately?

2007-09-12 Thread estaub
In normal execution, when the subprocess completes, the parent process needs to be signaled to continue. You may want to use variables and a parent-process decision node after the ProcessState. -Ed Staub View the original post :

[jboss-user] [EJB 3.0] - Re: Cannot get my first EJB 3.0 to work!!!

2007-09-12 Thread kpiis
O, my bad - IStatefullBean b = (IStatefullBean)con.lookup(StatefullBean/local) it's correct. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083423#4083423 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083423

[jboss-user] [JBoss jBPM] - jBPM ... confused...

2007-09-12 Thread vncoder
Hello all, I am relatively new and naive on jBPM. I am able to get the jbpm-console to work and have successfully modified and deploy the websale example. I understand the jBPM can be embedded in another application for workflow. However, can we use jBPM by itself as a standalone web

[jboss-user] [JBoss jBPM] - Re: transitions

2007-09-12 Thread Razieh
public void cancel(long id) { User user = (User) em.createQuery(select u from User u where u.id= + id).getSingleResult(); TaskInstance ti = taskInfo.findTaskInstance(taskId); ti.start(); this.dossierAssignee = user; ti.end(treatment); } public void

[jboss-user] [JBoss jBPM] - Re: Decision node always taking first option

2007-09-12 Thread Razieh
public void approve(long id) { User user = (User) em.createQuery(select u from User u where u.id= + id).getSingleResult(); TaskInstance ti = taskInfo.findTaskInstance(taskId); ti.start(); this.dossierAssignee = user; ti.end(taskCreatePetition); }

[jboss-user] [JBoss Tools (users)] - Re: Why not valid faces-config

2007-09-12 Thread ova
reported - http://jira.jboss.com/jira/browse/JBIDE-898 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083431#4083431 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083431 ___

[jboss-user] [JBoss jBPM] - Re: Decision node always taking first option

2007-09-12 Thread Razieh
sorry.actually this code can help you. public void approve(long id) { TaskInstance ti = taskInfo.findTaskInstance(taskId); ti.start(); this.dossierAssignee = user; ti.end(ForwardResult1); } public void cancel(long id) { TaskInstance ti =

[jboss-user] [EJB 3.0] - Re: java.lang.ClassCastException: org.jnp.interfaces.NamingC

2007-09-12 Thread toplink
I tried it already, if i look up like ctx.loopup(ejb/TestRunner), I will get: javax.naming.NameNotFoundException: ejb not bound View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083433#4083433 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Problem with Jboss(Tomcat) caching from my file system

2007-09-12 Thread Boris_Br
Hi, my URL looks like that: * /applicationname/docs1/1001.html?dsessionId=4B4F042B3CCD78F6DC4A5381FBA09D2Enow=10171444Uuid=da6e6f4d-d78b-43a1-a031-65312a63b69e ** You can see that I send unique UUID with every request. I think it is not a caching from

[jboss-user] [Clustering/JBoss] - Clustered Socket Server

2007-09-12 Thread p.dario
Hi, I have a socket server that starts on two clustered Jboss servers. A load balancer dispatches clients to either server. These sockets stay open and available to be used to send commands. A web application is used to send commands to one of the clients: I need a way to find the cluster

[jboss-user] [Clustering/JBoss] - Re: why is session clustered when load balancing or failover

2007-09-12 Thread [EMAIL PROTECTED]
The JBoss AS src dist used to include a webapp that could be deployed that would function as a load balancer. It was never intended to be used in any kind of production setting; could only be used for testing. Hence it was never included in the 'all' config; it had to be built from the src

[jboss-user] [JBoss jBPM] - Asynchronous Continuation

2007-09-12 Thread jgreiner
Reading Chapter 14 on Asynchronous Continuation there is mention of a JBPM_MESSAGE Table. I am using jbpm 3.2 and I do not see this table. Am I missing something or is this a newer feature than 3.2. I am reading 14.4 and that is exactly the way I want exceptions to be handled, however I am

[jboss-user] [JBoss Seam] - Re: FlushModeType not working in Seam 1.2.1 GA?

2007-09-12 Thread kotlusa
I believe that I am using a seam managed persistence context... From my components.xml |core:managed-persistence-context name=entityManager | auto-create=true |persistence-unit-jndi-name=java:/myEntityManagerFactory/ | From my

[jboss-user] [Clustering/JBoss] - Re: why is session clustered when load balancing or failover

2007-09-12 Thread [EMAIL PROTECTED]
Note that you should be able to test session replication with 2 JBoss instances on one box if you use the ServiceBindingManager to ensure both processes use different ports. See http://wiki.jboss.org/wiki/Wiki.jsp?page=ReplicatedCounter . Key point is the hostname portion of the URL must be

[jboss-user] [JBoss Seam] - Absolute text position with itext and Seam

2007-09-12 Thread goku2
Hi people, i would like to know how to place a text in a absolute position. For example: p:text positionx=123 positiony=45 value=#{product.price} f:convertNumber type=currency currencySymbol=$/ /p:text The positionx and positiony are invented but it´s just to have an idea of the

[jboss-user] [EJB/JBoss] - detached entity passed to persist

2007-09-12 Thread kaviarasu
hi im using two tables where Table1 refers Table2 by manytoOne annotation here im using the following code to insert in primary and secondry table when the register() is called it insert in the database when the String edit() method is called it edit the particular review and update the

[jboss-user] [EJB 3.0] - Returning an EJB from other

2007-09-12 Thread francesquini
Hi! I'd like to return an stateful EJB from another EJB to a client. Nothing new to it, but, I'd like to have it initialized before hand. In earlier versions of EJB (as in 2.1) I could do that by declaring a create method with some parameters in a Home interface. Now, in EJB 3.0 I couldn't

[jboss-user] [Clustering/JBoss] - Re: why is session clustered when load balancing or failover

2007-09-12 Thread mermaid
Thanks for the reply. It helped . View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083446#4083446 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083446 ___ jboss-user

[jboss-user] [JBossWS] - Re: Ant task for wsconume, wsprovide ??

2007-09-12 Thread richard_opalka
org/jboss/wsf/spi/tools/ant/WSConsumeTask.java org/jboss/wsf/spi/tools/ant/WSProvideTask.java View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083451#4083451 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083451

[jboss-user] [JBoss Seam] - Converter behavior PROBLEM

2007-09-12 Thread urosmil
Hi, I'm having problem with jsf converter behavior. This is converter code: public class OfferPriceConvertor implements Converter{ | | public Object getAsObject(FacesContext arg0, UIComponent arg1, String string) { | BigDecimal price = null; | try { |

[jboss-user] [Clustering/JBoss] - Re: why is session clustered when load balancing or failover

2007-09-12 Thread [EMAIL PROTECTED]
One last bit -- if you're talking about automated testing, you can use a library like Apache HttpClient and programatically switch the client and session cookie from one server to the other to test failover. In that case you don't need to use ServiceBindingManager; you can start your AS

[jboss-user] [JBossCache] - ClusteredCacheLoader asks all servers in a cluster? faster?

2007-09-12 Thread BruceSpringfield
When looking for data does the ClusteredCacheLoader query all servers in a cluster? Is there any way to limit this search just to a Buddy or a particular server? Also, is data access via ClusteredCacheLoader faster than JDBCCacheLoader? View the original post :

[jboss-user] [JBoss Seam] - Re: Converter behavior PROBLEM

2007-09-12 Thread stephen.friedrich
First assumption whenever the same page gets redisplayed: Validation failed and your page is missing h:message(s) tags to actually display the validation error messages. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083458#4083458 Reply to the post :

[jboss-user] [JBossWS] - Re: Sample application

2007-09-12 Thread rukus
i have the same question, but i still can't find this .zip file :( i've tried in jbossws-native-2.0.0.GA and jbossws-native-2.0.1.GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083459#4083459 Reply to the post :

[jboss-user] [JBoss Seam] - Button pressed - Javascript - Session bean - Facelets (re

2007-09-12 Thread rcherchi
Hi guys, I'm trying to do the following thing with Seam : 1. The user press a button 2. A Javascript function is called and gets data from a third party API (Google Maps) 3. A Session bean's method is called (using seam remoting and query the database. 4. A results list is initialized and

  1   2   3   >