[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Declared-SQL v. Dynami-QL - Can I have my cake and eat it?

2006-06-30 Thread ihunter
[JBos 4.0.4.GA EJB2.1, using xdoclet, MySQL] I have a dyniamic query... "SELECT * FROM table WHERE (.) LIMIT 100" and I build the WHERE clause at run time - I'm happy But the (JBoss) generated SQL does not include LIMIT on the query. With large record sets it takes a long time. So, I shou

[JBoss-user] [JBossCache] - No ClassLoaders found

2006-06-30 Thread javajedi
JBoss 4.0.3 sp1 I just tried to turn on the JBoss TreeCache in Hibernate. When Hibernate tries to place an entry in the cache, I get a ClassNotFoundException. It appears that the TreeCache can't find the classes that are inside of my ear. I am using the jboss.cache:service=EJB3EntityTreeCach

[JBoss-user] [JBoss Eclipse IDE (users)] - Eclipse Platform 3.2 & JBoss-IDE?

2006-06-30 Thread clay_chang
Hi, Since Eclipse Platform 3.2 has just been released, when will the sync'd version of JBoss-IDE be out? clay View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954784#3954784 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [Beginners Corner] - MDBean Deply error

2006-06-30 Thread vvangara
Hello there, I am trying to deploy a MDBean into my Jboss version 4.0.3SP1 and getting the following error. 2006-06-30 21:16:18,975 WARN [org.jboss.ejb.EJBDeployer.verifier] EJB spec violation: Bean : RealtimeServiceMD Section: 15.7.4 Warning: The message driven bean must declare one onMessa

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread javajedi
I spoke a little too soon. The second time that I try to invoke CampaignEditorBean.select on the same campaign, I get a "reassociated object has dirty collection" HibernateException from the session.lock call. Caused by: org.hibernate.HibernateException: reassociated object has dirty collectio

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread javajedi
Awesome. That works great. Thanks so much for the help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954781#3954781 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954781 Using Tomcat but need to do more? Need to su

[JBoss-user] [Clustering/JBoss] - Re: JBoss Cluster issue

2006-06-30 Thread [EMAIL PROTECTED]
It looks like when you fail over to the other server, the failover server doesn't know the first one is dead yet and tries to replicate to it. This then fails. If you wait a few secs, the 2nd server knows the 1st is dead and doesn't try to replicate to it. Suggest you use a combination of FD

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread [EMAIL PROTECTED]
Thats what I guessed. So you need to do: | @Begin(join=true) | public String select() { | campaign = session.lock( campaignManager.getSelectedCampaign(), LockMode.NONE ); | return "editCampaign"; | } | In order to get a Campaign that is associated with the conversatio

[JBoss-user] [JBoss jBPM] - Re: How to reference elements in a sequence within a complex

2006-06-30 Thread [EMAIL PROTECTED]
To be clear: this is not an XPath problem. The JAXB deserializer complains because the resulting element is not valid according on your schema. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954778#3954778 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread javajedi
Sorry. The Campaign came from another SFSB (CampaignManager), where it came from a list using @DataModelSelection. Here's the code without the omissions: @Stateful | @Scope(ScopeType.CONVERSATION) | @Name("campaignEditor") | public class CampaignEditorBean implements CampaignEditor { |

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread [EMAIL PROTECTED]
Did you actually retrieve the Campaign from the conversational persistence context? Or is it some other object you had lying around before the conversation started? It is really not helpful when you chop out the actually intersting code in select() and update(). View the original post : http:

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread javajedi
Thanks for the reply. I modified the entity as follows: @Entity | @Name("campaign") | @Scope(ScopeType.CONVERSATION) | public class Campaign { | ... | However, I still have the same problem. Here is the debug output from Seam where it looks like it's resolving "campaign": 2006-06-3

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread [EMAIL PROTECTED]
The problem is the ScopeType.SESSION bit. This functionality is only for conversation-scoped data. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954774#3954774 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954774 Us

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread javajedi
Yes, sorry I neglected to mention that. Here is the relevant code: @Stateful | @Scope(ScopeType.CONVERSATION) | @Name("campaignEditor") | public class CampaignEditorBean implements CampaignEditor { | | @Valid @In(required=false) @Out | private Campaign campaign; | | @In(cr

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Data source lookup returns null for mysql

2006-06-30 Thread emwamba
"tefron" wrote : Do you have isolation on? Sorry, I am not an expert user of JBoss. I don't know whether or not I have isolation enabled. How do I check and what effect would that have? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954772#3954772 Reply to t

[JBoss-user] [JBoss Seam] - Re: How do I reattach entities using a ManagedHibernateSessi

2006-06-30 Thread [EMAIL PROTECTED]
Are you using a conversation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954771#3954771 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954771 Using Tomcat but need to do more? Need to support web services, security

[JBoss-user] [JBoss Seam] - How do I reattach entities using a ManagedHibernateSession?

2006-06-30 Thread javajedi
I'm using a ManagedHibernateSession with a SeamExtendedManagedPersistencePhaseListener. When Seam renders the view, it starts the 2nd transaction successfully. However, it is not attaching any of my entities to a Hibernate Session. This causes LazyInitializationExceptions whenever I try to a

[JBoss-user] [JBossCache] - Re: Weblogic 91 and POJO Cache

2006-06-30 Thread sphinxmember
Ok... I will try it and then discuss the outcome. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954769#3954769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954769 Using Tomcat but need to do more? Need to support w

[JBoss-user] [JBoss jBPM] - Re: Urgent , pb with the hibernate session

2006-06-30 Thread newbie007
Guys, Don't be so hard :-) The issue is that you are missing hibernate related jar files in your classpath. You can find list of required jar files from hibernate.org. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954768#3954768 Reply to the

[JBoss-user] [JBoss jBPM] - Re: How to reference elements in a sequence within a complex

2006-06-30 Thread kukeltje
download the orangevolt xslt plugin for Eclipse. It has a xpath 'tester'. Look at www.zvon.org for xslt/xpath tutorials View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954765#3954765 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [JBoss Seam] - Re: Can you @Filter a Seam @Entity?

2006-06-30 Thread RobJellinghaus
Yours doesn't seem down by much! I figured out the base problem (you need a @FilterDef *and* a @Filter), but am encountering some other issues, mentioned in the other thread. Nothing to do with Seam though. I guess the only subquestion worth asking here is, what's the roadmap for Hibernate 3

[JBoss-user] [JBoss jBPM] - Re: How to reference elements in a sequence within a complex

2006-06-30 Thread jiehuan_li
My knowledge on XPath limited. If you could let me know the correct xpath query syntax to access svc:firstName element, I would appreciate it very much. I tried '/EnrollmentMessageType_1[4]' and '/EnrollmentMessageType_1//svc:firstName', but no luck. View the original post : http://www.jboss

[JBoss-user] [JBoss jBPM] - Re: question about ForEachFork action handler in wiki

2006-06-30 Thread bradtwurst
Ronald, Thanks for the information. James View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954761#3954761 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954761 Using Tomcat but need to do more? Need to support web s

[JBoss-user] [EJB 3.0] - Re: How to intercept Entity Beans in EJB3.0 using the Embedd

2006-06-30 Thread alesj
Use basic EJB3 entity callback annotations. Or are they not enough? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954760#3954760 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954760 Using Tomcat but need to do more?

[JBoss-user] [JBoss Getting Started Documentation] - Re: same problem deploying the duke's bank app

2006-06-30 Thread jmcclure
"rkurra" wrote : Try changing the following flag in your ejb-deployer.xml of your server/default/deploy directory |attribute name="VerifierVerbose" FROM true TO false | That configuration update will only turn down specific verifyer nagging. You need to make the following change to you

[JBoss-user] [JBoss Portal] - Re: Problem with installing Portal

2006-06-30 Thread emphatical
I'm having the exact same problem... followed the installation instructions (http://docs.jboss.com/jbportal/v2.2/user-guide/en/html/installation.html ) and am using MySQL 4x. The schema was created properly and there is data in the tables as well, but i get the same MBEAN problem noted above,

[JBoss-user] [JBoss jBPM] - Re: question about ForEachFork action handler in wiki

2006-06-30 Thread kukeltje
you should use JbpmContext. Look at the testcases to see how it is used View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954757#3954757 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954757 Using Tomcat but need to do mo

[JBoss-user] [EJB 3.0] - Re: Creating MBeans using EJB 3.0

2006-06-30 Thread alesj
Try running against the latest JBossAS 4.0.4.GA. Or look hiw this diff's from last EJB3 embeddable. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954755#3954755 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954755 Us

[JBoss-user] [JBossWS] - About Installation

2006-06-30 Thread JObject
Hello, I have installed JBoss-4.0.4-GA on Jdk1.5, Now try install JBOSSWS for jdk1.5. I found already JBOSSWS14.sar file on server folder existing defaul install of JBOSS AS.? Should i need to remove this folder ? and install jbossws.sar of jdk1.5? C:\Program Files\jboss-4.0.4.GA\server\defaul

[JBoss-user] [JBossWS] - Problems to deploy a web service

2006-06-30 Thread amsjunior
Hi all, I'm trying to deploy a webservice, using jboss 4.0.4.GA and jbossws 1.0.1.GA. All the deployment artifacts are generated by wstools.sh, but when jboss try to deploy the service, the following error occurs: | 16:32:40,909 ERROR [JBossXSErrorHandler] [domain:http://www.w3.org/TR/xml-sc

[JBoss-user] [EJB 3.0] - Re: Creating MBeans using EJB 3.0

2006-06-30 Thread jactor
Sure I can make sure that I have the latest release... But HOW? My jar file is dated the 23 october 2005 (23:57 hours). How do I check if this is the latest? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954747#3954747 Reply to the post : http://www.jboss.

[JBoss-user] [JBoss Seam] - Re: JBoss Seam deployement problem store booking application

2006-06-30 Thread mdasif2k4
I have installed JBOSS 4.0.4 with EJB3 profile. When I try to run application, it gives me the following error. Please help me. 00:48:17,187 ERROR [MainDeployer] Could not create deployment: file:/C:/Program Files/jboss-4.0.4.GA/server/default/deploy/jboss-aop.deployer/ org.jboss.deployment.Depl

[JBoss-user] [JBoss AOP] - ClassProxyFactory problem with classes that overide methods

2006-06-30 Thread damiandiaz
I'm currently having a problem generating proxies for classes that have a structure similar to the example below. The issue comes in when a sub-class overrides a method and makes the return type more specific. | import junit.framework.TestCase; | | public class ClassProxyBugTest extends

[JBoss-user] [Security & JAAS/JBoss] - Re: Authentication not working even though it should

2006-06-30 Thread [EMAIL PROTECTED]
Looking at your authenticated subject: | 2006-06-30 19:57:35,030 TRACE [org.jboss.security.plugins.JaasSecurityManager.my-web] getUserRoles, subject: Subject: | Principal: [EMAIL PROTECTED] | Principal: Roles(members) | Principal: com(members:secure_capture_role,

[JBoss-user] [Advanced Documentation] - Re: BlockingTimeoutMillis

2006-06-30 Thread acxjbertr
I got a good answer at http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954741#3954741 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954743#3954743 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954743 Using

[JBoss-user] [JBossWS] - JBossws.sar work with jdk1.6

2006-06-30 Thread JObject
Hello, I have install JBOSS 4.0.4 AS and Now I try to install JBOSSWS on JBOSS AP. I have jdk1.6 version ? does jbossws and app work with jdk1.6? Praful View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954742#3954742 Reply to the post : http://www.jboss.co

[JBoss-user] [JCA/JBoss] - Re: BlockingTimeoutMillis

2006-06-30 Thread [EMAIL PROTECTED]
The 'permit to get a connection' is a Semaphore that manages the ability of a thread to get a ConnectionListener. It is an application server construct and has nothing to do with the underlying database. The blocking timeout milliseconds tells the container 'how long' a thread expects to wait to

[JBoss-user] [EJB 3.0] - Re: ActiveMQ Integration

2006-06-30 Thread bdecoste
Here is the JIRA task: http://jira.jboss.com/jira/browse/EJBTHREE-389 You should be able to use ActiveMQ, but you cannot currently create temporary queues. If you create the queue beforehand on ActiveMQ, then deploy the destination to JBoss, you should be fine. The problem only exists when we t

[JBoss-user] [EJB 3.0] - Re: Creating MBeans using EJB 3.0

2006-06-30 Thread bdecoste
Can you make sure you have the latest jboss-annotations.ejb3.jar? I suspect you have an old version that did not have the 'value' attribute in the annotation. In older versions, this annotation was only allowed on the interface, not on the Service class, so there was no value attribute used to s

[JBoss-user] [EJB 3.0] - Re: Deploy EJB3 without JBoss App Server

2006-06-30 Thread bdecoste
Download Embeddable-EJB3 (jboss-EJB-3.0_Embeddable_ALPHA_8-patch2). There is documentation and a tutorial there on how deploy EJB3s without the app server. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954738#3954738 Reply to the post : http://www.jboss.com

[JBoss-user] [JCA/JBoss] - BlockingTimeoutMillis

2006-06-30 Thread acxjbertr
The http://docs.jboss.org/jbossas/jboss4guide/r5/html/ch7.chapt.html says: anonymous wrote : BlockingTimeoutMillis: This attribute indicates the maximum time to block while waiting for a connection before throwing an exception. Note that this blocks only while waiting for a permit for a connectio

[JBoss-user] [Advanced Documentation] - BlockingTimeoutMillis

2006-06-30 Thread acxjbertr
The http://docs.jboss.org/jbossas/jboss4guide/r5/html/ch7.chapt.html says: anonymous wrote : BlockingTimeoutMillis: This attribute indicates the maximum time to block while waiting for a connection before throwing an exception. Note that this blocks only while waiting for a permit for a connectio

[JBoss-user] [EJB 3.0] - Re: ActiveMQ Integration

2006-06-30 Thread wconroy
Has anyone successfully deployed an mdb to consume an ActiveMQ queue on jboss 4.0.4? If not and this is just on the radar, is there any timeframe for it? is there a jira issue i can watch? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954735#3954735 Reply

[JBoss-user] [EJB 3.0] - Re: Creating MBeans using EJB 3.0

2006-06-30 Thread jactor
After a bit of jar searching, I found the classes in the jar file named jboss-annotations-ejb3.jar localed in JBOSS_SERVER\deploy\ejb3.deployer folder. However; I get a compilation error: [javac] Compiling 1 source file to C:\Data\mine\hjemme\bin | [javac] C:\Data\mine\hjemme\src\\.java

[JBoss-user] [JBossWS] - Re: Unable to access deployed webservice

2006-06-30 Thread prax_75
Thanks. That worked! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954733#3954733 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954733 Using Tomcat but need to do more? Need to support web services, security? Get stu

[JBoss-user] [EJB 3.0] - Re: ActiveMQ Integration

2006-06-30 Thread bdecoste
For what it's worth, we are currently refactoring all of the MDB and Consumer code to be exclusively RAR based and to remove the dependency on the MBean server so that we have all of the capabilitites (e.g. ability to create temporary queues) in E-EJB3. So this issue is on the radar screen. Vie

[JBoss-user] [Security & JAAS/JBoss] - Authentication not working even though it should

2006-06-30 Thread kirenpillay
Hi I need help with this one. I've configured my files correctly, I am trying to authenticate a user [EMAIL PROTECTED], but it does not seem to work. From the logging, it seems likes its authenticated, but halfway throught the process the authenticate fails. Please see log below: 06-06-30 19:

[JBoss-user] [Remoting] - Re: lease

2006-06-30 Thread [EMAIL PROTECTED]
There is no connection listeners by default. Have to be added manually by user. Leasing will be disabled until at least one connection listener is registered (and turns off after all are removed). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954729#395

[JBoss-user] [JBoss jBPM] - question about ForEachFork action handler in wiki

2006-06-30 Thread bradtwurst
Hello all, I've got a small problem with the code in the ForEachForkActionHandler in the wiki. The code has a line: | executionContext.getProcessInstance().getJbpmSession().getSession().save(newToken); | that fails in 3.1 as the ProcessInstance class no longer has a getJbpmSession() f

[JBoss-user] [Remoting] - Re: lease

2006-06-30 Thread [EMAIL PROTECTED]
Is there a standard, default listener installed that closes the connection with the client? Or is it, out of box, a no-op? If I don't have a connection listener, can I therefore ignore the lease stuff and just set it to -1 to not use it? View the original post : http://www.jboss.com/index.ht

[JBoss-user] [Remoting] - Re: lease

2006-06-30 Thread [EMAIL PROTECTED]
That's pretty much it. Right on with the client having a period in which it needs to ping the server to update its lease with the server. However, the lease period is not an exact one, meaning the actual time period is a sliding window. See http://jira.jboss.com/jira/browse/JBREM-408 for more

[JBoss-user] [JBoss jBPM] - Re: Regarding JBPM and WS-security

2006-06-30 Thread [EMAIL PROTECTED]
The WSEE configuration for the port provider handler I referenced in my previous post appears in the web services deployment descriptor section of the jBPM BPEL tutorial. That might be a good starting point. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39547

[JBoss-user] [JBossCache] - Re: Pojo Cache and annotations

2006-06-30 Thread sphinxmember
Thats what even I was assuming The example under annotated50 has aoppath element under aopc target which specifies the path for jboss-aop.xml. Is it necessary to provide this XML just as a directive to the aopc to check for the new annotation marker @org.jboss.cache.aop.annotation.PojoCacheable

[JBoss-user] [JBoss jBPM] - Re: Regarding JBPM and WS-security

2006-06-30 Thread [EMAIL PROTECTED]
jBPM BPEL uses the standard JSR-109 server deployment model to expose web services, so that you can port it to other app servers and use the same mechanism you'd use to secure "normal" web services. However, the JWSDP deployment model does not adhere to JSR-109. I am positive it is possible to

Re: [JBoss-user] [JBoss Seam] - About Breadcrumbs (Out of Office)

2006-06-30 Thread Andy Black
I'm out of the office until July 9, 2006. If you need assistance please call Dave Horton at 202-514-4944 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Serve

[JBoss-user] [JBoss Seam] - About Breadcrumbs

2006-06-30 Thread rlhr
Hello, I try to implement the following behaviour using the seam framework: Let say I need to implement an administrator module. One operation the admin can perform is the creation of user. When clicking on a "Create new user" button, a conversation is started. The creation page shows up and a

[JBoss-user] [Remoting] - lease

2006-06-30 Thread [EMAIL PROTECTED]
Can someone explain how the lease parameter is used: Connector.getLeasePeriod() ? As I understand it (which I might not), the lease period is the time in milliseconds that a client that is connected to the connector has in order to "ping" the connector in order to get a new lease. If the clien

[JBoss-user] [EJB 3.0] - Deploy EJB3 without JBoss App Server

2006-06-30 Thread awhitford
Where can I find documentation on how to deploy EJB3 on another servlet container? I understand that I don't necessarily need to run the full JBoss 4.0.4 GA application server -- I just need Hibernate and the microcontainer, then I could theoretically deploy it on Tomcat or JRun? Anybody ever

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Session persistence

2006-06-30 Thread javidjamae
[Nancy: you should start a separate thread since you are having an unrelated issue] I discovered two issues: 1) The file is only created after you shut down the server manually. This seems like a bug, because the whole reason people would want to do this is to be able to survive a machine cras

[JBoss-user] [EJB 3.0] - My @OneToMany Collection's stopped working between 4

2006-06-30 Thread sholodak
Hi all, I'm trying to upgrade from 4.0.4.CR2 to GA. I had hoped that moving my application's EAR over to the new server would just work, but it isn't. I'm getting AnnotationExceptions now stating that I'm using @OneToMany to target an unmapped class. I was under the impression that certain p

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Errors in hibernate with Sybase using 4.0.4

2006-06-30 Thread mwelch16
Hello, I am using JBOSS 4.0.4GA, Portal 2.2sp3, and JDK 1.5.0_06 with Sybase 15 and jconnect2.jar (which I believe is 5.5). The hibernate logs in and creates the user tables as expected, but fails when trying to deploy the portal. I have set the PortalDS to run with sybase, but didn't change

[JBoss-user] [Installation, Configuration & Deployment] - Virtual Directory

2006-06-30 Thread awhitford
We are trying to migrate to JBoss 4.0.4 GA (from another app server). One of the issues that we can't seem to get to work to our satisfaction is virtual directories. For WebLogic, there is the virtual-directory-mapping element in weblogic.xml like: | c:/usr/gifs | /images/* | *.j

[JBoss-user] [JBoss Portal] - Re: How to support 2 Login method

2006-06-30 Thread alesj
Read manual about security. 1. you simply set FORm auth in web.xml 2. a bit more work View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954711#3954711 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954711 Using Tomcat bu

[JBoss-user] [JBoss Portal] - Re: 2.4 installation difficulties

2006-06-30 Thread mwelch16
I'll go post my hibernate error in the hibernate forum (just noticed it). Thanks for your help. Please let me know if there is a solution that will allow wsrp to run behind a proxy. Thanks again, Mark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954710#

[JBoss-user] [Security & JAAS/JBoss] - Re: Login module which accesses an EJB?

2006-06-30 Thread [EMAIL PROTECTED]
It is better to use the Database LM because it does the job for you while managing the subject population with roles. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954709#3954709 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[JBoss-user] [JBossCache] - Re: Translate the documents to Chinese

2006-06-30 Thread [EMAIL PROTECTED]
Also, see http://fisheye.jboss.com/viewrep/~raw,r=1.1/JBoss/JBossCache/docs/i18n.txt for a guide to internationalising the docs. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954708#3954708 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[JBoss-user] [JBossCache] - Re: Translate the documents to Chinese

2006-06-30 Thread [EMAIL PROTECTED]
+1. And you get lots of kudos on the docs and the jboss cache website as a contributor. :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954707#3954707 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954707 Using To

[JBoss-user] [EJB 3.0] - Re: serialization exception with mustang

2006-06-30 Thread [EMAIL PROTECTED]
Have made the code change. I checked into remoting CVS HEAD (so will be part of 2.0.0 release). Am checking into having remoting testsuite run under jdk 1.6 with cruisecontrol to try and catch any jdk 1.6 issues. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[JBoss-user] [JBossWS] - Re: Unable to access deployed webservice

2006-06-30 Thread garethevans
Yes, if you go to http://localhost:8080/jbossws/ you can get a list of the deployed services. If you click on a service you can view the generated wsdl file View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954703#3954703 Reply to the post : http://www.jboss.

[JBoss-user] [Installation, Configuration & Deployment] - Shutting down a JBoss instance ...

2006-06-30 Thread sylobsa
Hi all, I started 2 JBoss instances on a server. To start each instance I type : run.sh -c config1 and run.sh -c config2 Now I'd like to shut down one of these instances. I didn't see how to shut down a single instance anywhere. The usual command is something like : $JAVA_HOME/bin/ja

[JBoss-user] [JBoss Seam] - Re: whew! finally, a pattern for SelectItems using generics

2006-06-30 Thread supernovasoftware.com
I would like for the list to be able pulled from a query so I that I can control which entities are selected, the description, label, and in what order they appear. I do not mind putting annotation and or making my enties implement specific interfaces. I have not tried this, but maybe this cou

[JBoss-user] [JBossWS] - Re: Unable to access deployed webservice

2006-06-30 Thread prax_75
Yes, I am using IE to see the web service list. I just followed the instructions in http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch12.html#ch12.ws4ee-view.fig. Is there no way to see the list of web services through a browser? View the original post : http://www.jboss.com/index.html?modul

[JBoss-user] [JBoss jBPM] - Re: Task Management Definition maps tasks by name

2006-06-30 Thread cpob
Nevermind my last paragarph, I realize you can just do a TaskNode.getTasks(), and that should give me tasks for each node (if I iterate over each node). It still seems like a bug that there's no restriction over task names when editing through the GPD or deploying, or... something. View the o

[JBoss-user] [JBoss jBPM] - Task Management Definition maps tasks by name

2006-06-30 Thread cpob
In our web application, we are digesting the process definition to manipulate it to our liking before we deploy it. We take the .par file from the user, we go through the ProcessDefinition object to add our events/actions/assignment handlers/etc, and then deploy that. I ran into a problem today

[JBoss-user] [JBoss Seam] - Can JBoss Seam run on resin or sun application server? Probl

2006-06-30 Thread Seto
I tried to deploy examples on resin or sun application server. But both failed. What can I do? I don't think a good framework is platform-dependent. Can anyone help me? The log is too long, so I won't list here. Is there someone else deploy it sucessfully? I just deploy the war the tomcat used. I h

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler]

2006-06-30 Thread dolsen
The degug message got chopped off a little... :( The full stack trace is: DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE java.net.SocketException: Socket closed at java.net.SocketInputStream.read(SocketInputStream.java:162) at java.io.BufferedInputStream.fi

[JBoss-user] [JBossWS] - Re: Unable to access deployed webservice

2006-06-30 Thread garethevans
You can't do a http get request to get to the webservice, you need to do a post instead. How are you trying to access the service? via a browser? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954695#3954695 Reply to the post : http://www.jboss.com/index.h

[JBoss-user] [Messaging, JMS & JBossMQ] - DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exit

2006-06-30 Thread dolsen
I know this is a DEBUG log entry and I'm tempted to igonre it (and filter it from the log). I would, however, like to know more about this "error"... Thanks Dag code use to send the message | public void jmsSend (TextMessage textMessage) throws JMSException | { |

[JBoss-user] [JBoss Seam] - Re: java.lang.NoSuchMethodError: org.jboss.seam.core.Interpo

2006-06-30 Thread kuntz
Workaround for me was to get jBPM source code and re-compile it JIRA issue says this is fixed in Seam 1.1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954691#3954691 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=395

[JBoss-user] [JBoss Seam] - @DataBinder and SelectItems Example

2006-06-30 Thread supernovasoftware.com
Is there any example of using these two together? I feel like I am jumping through hoops just to display a dropdown. Everything else in seam is a breeze. I know @DataBinder was added to give this kind of functionality, but a clear example would be greatly appreciated. This is the type of exam

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - SQLException: ORA-00972: identifier is too long with Oracle

2006-06-30 Thread carlsen
I am converting my application to run on Oracle Express edition. I know Oracle doesnt support column names/identifiers that are longer than 30 chars, so I have converted all my tables/code to make sure that is not problem. However, when I the following EJB is run, I get an error. SELECT DISTINCT

[JBoss-user] [JBoss AOP] - Re: Get annotation information from inside interceptor

2006-06-30 Thread acxjbertr
That was it! Thanks for your timely and accurate responses, Kabir. If I may, I would suggest that an example like this be added to the AOP documentation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954686#3954686 Reply to the post : http://www.jboss.com

[JBoss-user] [JBoss Seam] - Re: Jboss seam tomahaw integration of jscookmenu

2006-06-30 Thread supernovasoftware.com
I have jscook menu working with no problems. Put tomahawk in the following directory. default\deploy\jbossweb-tomcat55.sar\jsf-libs It does not need to be in the lib or ear. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954684#3954684 Reply to the post :

[JBoss-user] [JBossCache] - Re: Translate the documents to Chinese

2006-06-30 Thread [EMAIL PROTECTED]
No, I don't think so. I have had Xiaogang Cao and his team at hibernate.org.cn translating my PojoCache article. But I don't believe the whole doc is translated. Send me an email (ben dot wang at jboss dot com) if you decide to go ahead. I can do the review for you. :-) -Ben View the original

[JBoss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Data source lookup returns null for mysql

2006-06-30 Thread tefron
Do you have isolation on? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954682#3954682 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954682 Using Tomcat but need to do more? Need to support web services, security? Ge

[JBoss-user] [JCA/JBoss] - Creating Connection Pools in Jboss Application server

2006-06-30 Thread arunmanayil
How can create a SQL Server Connection pool in JBOSS Application server 4.0.4 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954681#3954681 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954681 Using Tomcat but need to

[JBoss-user] [JBoss Seam] - Re: java.lang.NoSuchMethodError: org.jboss.seam.core.Interpo

2006-06-30 Thread fady.matar
Something is as well related to EJB-3.0 make sure JBoss is updated to use the EJB-3.0 profile View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954680#3954680 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954680 Using T

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-30 Thread [EMAIL PROTECTED]
If you want to file a bug report in our jira to allows someone to evaluate the bytecode issue, use: http://jira.jboss.com/jira/browse/JBAS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954679#3954679 Reply to the post : http://www.jboss.com/index.html?modul

[JBoss-user] [Security & JAAS/JBoss] - Re: Login module which accesses an EJB?

2006-06-30 Thread j2ee_junkie
Klusi, I have a login module which does this as well. Is it good design? I am not sure. One very imporant point to note (as you will see if you search this forum) is that you can't secure the EJB that has authenticate(user,passwd) method using the same application-policy (i.e. security-domai

[JBoss-user] [EJB 3.0] - Re: ActiveMQ Integration

2006-06-30 Thread jnerd
Hi alesj, Yes, you are totally right. Sorry. I mixed up org.jboss.mx and org.jboss.jms packages. But still the "jboss.mq:service=DestinationManager" is a JBossMQ thing, isn't it? And the original question remains: Is it still possible to exchange the JMS implementation if you are using the EJB

[JBoss-user] [Beginners Corner] - Re: Problem deploying EJB to JBoss

2006-06-30 Thread [EMAIL PROTECTED]
Then file a bug report with jbuilder or sun as google shows this is a common problem with jbuilder+jdk5. Its outside of the scope of jboss. http://www.google.com/search?q=VerifyError+JBuilder View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954676#3954676 Repl

[JBoss-user] [JBossWS] - Re: Access to JBoss WS source

2006-06-30 Thread [EMAIL PROTECTED]
Branch 1.0 currently includes dependencies that are only reflected in JBossXB trunk. This means the build currently relies on a snapshot release. In order to run this build against the AS branch 4.0, you'll need manually replace the jboss-xml-binding.jar in JBOSS/client and JBOSS/lib with the on

[JBoss-user] [JBossWS] - Re: Access to JBoss WS source

2006-06-30 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQSourceRepository View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954674#3954674 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954674 Using Tomcat but need to do more? Nee

[JBoss-user] [Management, JMX/JBoss] - Re: using twiddle to get a snapshot?

2006-06-30 Thread bettina
wow, that was fast, thanks a lot!!! yes, this would really be a nice feature in twiddle... because starting a JVM for a single value every time is quite an overhead. and thank you also for the wiki link, this seems to be exactly what I was looking for! cool, keep on going like this! :) Vie

[JBoss-user] [JBoss jBPM] - Regarding JBPM and WS-security

2006-06-30 Thread saleemk
Hi All, I am new to the JBoss,so I want to ask one very basic question. I am using JWSDP 2.0.Actually I like to invoke couple of secure services running on seperate server.These services are using WS-security.So I am just wondering Whether Process engine used by JBPM uses JWSDP,as our secu

[JBoss-user] [JBoss jBPM] - Re: Urgent , pb with the hibernate session

2006-06-30 Thread cpob
"mneja82" wrote : "kukeltje" wrote : I'm not going to be nice (I think) but could the problem be that you are a beginner in Java to? | | So please a solution The problem is, this error is immediately obvious to someone with any decent Java experience. Unfortunately, this is not the place fo

[JBoss-user] [JBoss jBPM] - Re: function for print the active task and process.

2006-06-30 Thread cpob
This is something which is in the jbpm sample webapp. I suggest you dig through the webapp code and become more familiar with their code, as it has many examples. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954669#3954669 Reply to the post : http://www.j

[JBoss-user] [EJB 3.0] - Re: How to map entity bean on dynamicly created names of tab

2006-06-30 Thread kmrol
You still got no way to solve the problem? I have the same :( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954668#3954668 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954668 Using Tomcat but need to do more? Need t

[JBoss-user] [EJB 3.0] - How to intercept Entity Beans in EJB3.0 using the Embeddable

2006-06-30 Thread adrian.andrei
I want to be able to intercept methods of the Entity Beans using the latest Embeddable container (alpha 8). If I create a -aop.xml file and try to deploy it as in Code: | EJB3StandaloneBootstrap.deployXmlResource("jboss-aop.xml"); | I get an exception: Caused by: | org.jboss.xb.bindin

[JBoss-user] [JBoss jBPM] - function for print the active task and process.

2006-06-30 Thread antitrust1982
hi all, I'm trying to create my own portlet of JBPM. I have used the jbpm webapp and I would like to use a similar presentation of the active task and process. I have tried to search in the javadoc, but I can find the function which can return the active task and process. If you know these fun

  1   2   >