[JBoss-user] [JBossWS] - Re: How to get default namespace URI from SOAP Message

2006-05-18 Thread shuchan
Hi, I found that changing a setting of "http://xml.org/sax/features/namespace-prefixes"; to "true" (was "false") in org.jboss.axis.utils.XMLUtils.java of JBossAS 4.0.3SP1 can make the following codes work(I mean I can get "x" instead of null). | String XML_SCHEMA_NS = "xmlns" | String

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate tools installation trouble

2006-05-18 Thread [EMAIL PROTECTED]
Dude! You are using a nightly build and thus don't expect everything to work flawlessly! We just released JBossIDE 1.6 - go and download that and be happy. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944832#3944832 Reply to the post : http://www.jboss.co

[JBoss-user] [Clustering/JBoss] - NakReceiverWindow, AckSenderWindow, RequestCorrelator, AckRe

2006-05-18 Thread sks4jboss
Hi, I have four servers running in cluster (Jboss version 3.2.7). Under an unknown scenario, I am getting lots of following traces (These traces are not seen under normal operations of the system) . What can be the potential reason for this and what does this traces mean? These traces are v

[JBoss-user] [JBoss jBPM] - Re: Narrowing proxy to class org.jbpm.graph.node.TaskNode

2006-05-18 Thread trisko
Thanks saviola! I will try these links... and yes next time I will also try the search funtionality too ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944830#3944830 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39

[JBoss-user] [EJB 3.0] - Re: @AttirbuteOverride and unique contraints

2006-05-18 Thread phon
i'm been trying to solve this some more and it seems that the @AttributeOverride annotation is ignored altogether.. I've tried to put it on various classes in the class hierarchy including both @MappedSuperclass and @Entity , both leave and non-leave classes. I tried overriding the name of the

[JBoss-user] [JBossCache] - restrict number of elements

2006-05-18 Thread babuchelat
I have 2 regions configartion in my application.How can I restrict number of elements (not nodes) in one Region/FQN? and how to get current number of elements in a Region/FQN? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944828#3944828 Reply to the post :

[JBoss-user] [Beginners Corner] - property file outside jar

2006-05-18 Thread cristalleke
Hi, I want to locate my property files outside the jar. Can I confgure JBOSS to specify the location of these property files? What is required in my code (Java), is it enough to provide the name of the property file and because of the configuration on the JBOSS server the file is found? Like:

[JBoss-user] [JBossCache] - Re: Hanging on startup

2006-05-18 Thread [EMAIL PROTECTED]
I realized that we will probably remove the JBoss JMX dependency in the 2.0 series, where we do heavy refactoring anyway. But, looking at your issue, now I don't think this is related to JMX. Are you using the TreeCacheMarshaller (set it to true) ? This is described in the docs, I suggest (a) us

[JBoss-user] [JBoss jBPM] - Re: Timer Issue

2006-05-18 Thread pganesh81
I solved the problem. I used a node whose actionhandler will create a timer. Below is the code for actionhandler and the process definition. | This is the actionHandler creating Timer | | public void execute(ExecutionContext executionContext){ | //executionContext.getJbpm

[JBoss-user] [JBoss Eclipse IDE (users)] - Hibernate tools installation trouble

2006-05-18 Thread hurzeler
Hello there, For the love of GOD!!! we can not install JBossIDE-200605141632-nightly-ALL on Eclipse Version: 3.1.2 Build id: M20060118-1600 with the Hibernate Tools properly! We also use: emf-sdo-xsd-SDK-2.1.2 GEF-SDK-3.1.1 JEM-SDK-1.1.0.1 wtp-R-1.0.1-200602171228 as described on http://downlo

[JBoss-user] [JBoss jBPM] - Re: Problem in required field attribute in default form cont

2006-05-18 Thread pganesh81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | |

[JBoss-user] [JBoss jBPM] - couldn't commit hibernate session (java.lang.OutOfMemoryErro

2006-05-18 Thread patrickvanamstel
I'm tring to commit the JbpmContext at the end with context1.close(); It seems to be a problem of having to many variables in my workflow. Question: Is there a way of flushing or nulling variables in the workflow. I've tried to delete the variables or null them but that did not seem to work.

[JBoss-user] [JBoss jBPM] - Re: Fork Join (Newbie)

2006-05-18 Thread patrickvanamstel
I've solved it. Read the ForEachFork.java in the wike. There is a sample class that forks the process in the correct way. thx Patrick View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944820#3944820 Reply to the post : http://www.jboss.com/index.html?module=

[JBoss-user] [JCA/JBoss] - Re: ?jboss java.sql.SQLException

2006-05-18 Thread wmprice
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944818#3944818 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944818 -

[JBoss-user] [EJB/JBoss] - java.lang.ClassCastException javax.rmi.PortableRemoteObject.

2006-05-18 Thread layveen
I want to get EJB Home object, the exception occurred! | client code: | Object objref = new InitialContext().lookup("java:comp/env/ejb/User"); | Class[] c = objref.getClass().getInterfaces(); | for (int i=0; iUser | cn.edu.jlu.ejb.UserHome | cn.edu.jlu.ejb.User | cn.edu.jlu.ejb.UserB

[JBoss-user] [JCA/JBoss] - Re: Restricting access to datasources

2006-05-18 Thread wmprice
In your EJB, you can do a user-role mapping that only allows particular users from your AD to invoke those EJB(s). This is the caller identity that will be used when invoking your DS. Take a look at the J2EE security section in the spec for more information. View the original post : http:/

[JBoss-user] [EJB 3.0] - Re: EJB3Trail not bound

2006-05-18 Thread gko2k
maybe it needs the good ol ctx.lookup( EJB3Trail.getClass().getName() ); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944815#3944815 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944815

[JBoss-user] [EJB 3.0] - Re: EJB3Trail not bound

2006-05-18 Thread gko2k
huh? can you be more specific. My java_home setting is correct but still no go. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944814#3944814 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944814

[JBoss-user] [JBossCache] - Re: Hibernate, JBoss Cache 1.3 and OPTIMISTIC LOCKING

2006-05-18 Thread JakaJaksic
We are having severe problems using JBossCache 1.3's optimistic locking with Hibernate. We tried with Hibernate 3.2 CR2 as well as backporting the optimistic provider to 3.1.3 -- problems are the same. The first problem was with cache invalidation within a JTA transaction. Namely, cache invalid

[JBoss-user] [JBoss Seam] - Re: @Observer does not work in booking example

2006-05-18 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSEAM View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944812#3944812 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944812 --- Usin

[JBoss-user] [JBoss Seam] - Re: Jboss 4.0.4 production realese with seam 1.0.0 cr2 doesn

2006-05-18 Thread [EMAIL PROTECTED]
You need to use a CVS build of Seam with 4.0.4.GA. I will release a new CR of Seam next week. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944811#3944811 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944811 --

[JBoss-user] [JBoss Seam] - Re: WebRemote method serialization with interfaces

2006-05-18 Thread sbryzak2
I'll have a look at this over the next few days, it shouldn't be difficult to traverse the inheritence chain and include inherited fields. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944810#3944810 Reply to the post : http://www.jboss.com/index.html?modul

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - postgresql config

2006-05-18 Thread wizumwalt
When I start up jboss, is the following message stating that my postgresql configuration is correct and available? | 21:44:46,181 INFO [WrapperDataSourceService] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=DataSourceBinding,name=PostgresDS to JNDI

[JBoss-user] [JBossCache] - JMX dependencies

2006-05-18 Thread mraccola
I am having some issues with using JBoss TreeCache in WebSphere due to the JBoss TreeCache dependency on JBoss JMX. I know this isn't a WebSphere support group, but I though I would bring it up since you are targeting this library for portable use. WebSphere heavily uses JMX for administratio

[JBoss-user] [JBossWS] - Re: does not contain port: null

2006-05-18 Thread gigsvoo
anyone care to know what is this problem? i am stucked here. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944807#3944807 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944807

[JBoss-user] [JBoss Portal] - Re: root folder of CMS (what is that)

2006-05-18 Thread conkan
I know that you could download files with webdav. (WebDav is in portal 2.0 and portal 2.4, but not in portal 2.2.) I do not know of any way to download from CMS. You need to modify the CMS portlet under org.jboss.portal.core.portlet.cms.admin.CMSAdminPortlet in order to make this work. Otherwis

[JBoss-user] [JBossCache] - Re: Hanging on startup

2006-05-18 Thread mraccola
Thank you for the quick responses. Yes, in my opinion, removing the JMX dependency would be a big deal for mulitple reasons. I can do a separate post on that so as not to clutter this one. I still don't understand what could be causing the server to hang. Can you think of anything which coul

[JBoss-user] [Security & JAAS/JBoss] - help w/ DatabaseServerLoginModule

2006-05-18 Thread wizumwalt
Hey all, I'm still trying to get my users to login to my web app. I followed the directions here ... http://wiki.jboss.org/wiki/Wiki.jsp?page=SecureAWebApplicationUsingACustomForm but so far, not having much luck. I've tried to modify for the DatabaseServerLoginModule. So if anyone sees anything

[JBoss-user] [JBossCache] - Re: Using JBoss cache to replicate object between machines

2006-05-18 Thread [EMAIL PROTECTED]
Did you get it to run under commnad line first? If yo want to run it under Eclipse, you will need to either 1) use the aop classloader (see the ant target), or 2) use aopc first to instrument the pojo (also ant target). View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - spring/hibernate setup question

2006-05-18 Thread quentincompson
posted here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=83239 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944799#3944799 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944799 ---

[JBoss-user] [EJB 3.0] - Re: how to catch the OptimisticLockException in ejb3

2006-05-18 Thread kindy_wu
Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944798#3944798 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944798 --- Using Tomcat but need to do m

[JBoss-user] [Installation, Configuration & Deployment] - best way to install on fedora core 5

2006-05-18 Thread zzztimbo
i've read you're supposed to use yum to do all your installations. what is the best way to install the latest version of the jboss app server on fedora core 5? thanks for any tips. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944796#3944796 Reply to the

[JBoss-user] [JBoss Portal] - Setting Page Title for new files in CMS

2006-05-18 Thread sandeeppujar
Hello, I have some files in the default CMS folder. Is there a way to specify the title for these pages(other than modifying them through CMSADMIN UI). Right now the default title "JBoss Portal "appears for these files when rendered by the CMS. Thanks Sandeep View the original post : http:/

[JBoss-user] [Remoting] - Re: Error connecting to ejb3 cluster

2006-05-18 Thread ablevine1
After trying several more permutations I finally got it to work with the ejbs by changing the line socket://${jboss.bind.address}:3873 to socket://my_ip:3873 in ejb3.deployer/META-INF/jboss-service.xml. Then similary for jms, I had to update it in the file: jms/uil2-service.xml I noticed tha

[JBoss-user] [JBossWS] - Re: Problem creating WS with an deployed EAR file

2006-05-18 Thread matabu
Only packing the stuff into the war file und using wstools etc. like described at the api that works :) http://labs.jboss.com/portal/jbossws/user-guide/en/html/endpoints.html#jsr181-ejb3-endpoint Nice. Greets Andreas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-18 Thread josey
Just to be clear, in deploy/jms/uil2-service.xml I set BindAddress to the actual IP address (it was set to ${jboss.bind.address}). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944792#3944792 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS user authentication error (remote) when requesting a

2006-05-18 Thread josey
I found out the issue. In the file deploy/jms/uil2-service.xml, the parameter ${jboss.bind.address} resolves to the loopback address; by setting this to the actual IP address of the server the problem disappears (meaning I can now access the Queue/TopicConnection remotely so the message produce

[JBoss-user] [JBoss jBPM] - Re: decision node condition

2006-05-18 Thread greg823
This is just a follow-up. I got the decision node behave correctly by using DecisionHandler class. | | | | | | | I tried various forms of EL expressions to no avail... View the ori

[JBoss-user] [JBoss jBPM] - Re: Pausing JBPM process execution (JBPM Newbie)

2006-05-18 Thread jorell
Thanx for your reply. Actually I want to have the pause/resume occur in response to some preprocessing before node execution (which checks for availibility of resources). The process is paused if required resources are unavailable, and resumed when the resources do become available. Since this i

[JBoss-user] [JBoss Messaging] - Re: Fails to commit transaction

2006-05-18 Thread edc
Here is the console output, just in case any developers are online: log4j:WARN No appenders could be found for logger (org.jboss.remoting.transport.PortUtil). log4j:WARN Please initialize the log4j system properly. Total sent messages = 10 Exception occurred : org.jboss.jms.util.MessagingTransac

[JBoss-user] [JBoss Messaging] - Fails to commit transaction

2006-05-18 Thread edc
Playing around with the default example queue, I thought I would try to commit a transaction of sends. I decided to break it with Ctrl-C, and it has never worked since. Tried server reboot, still no luck. Does anybody know the status of transactional support? import java.util.ResourceBundle

[JBoss-user] [JBoss Seam] - WebRemote method serialization with interfaces

2006-05-18 Thread knaas
We have a Remoting method in a Service that returns an interface A. Interface A extends Interface B. When the javascript interface is generated by the InterfaceGenerator, it does not generate metadata for Interface B. This means that the object is not fully serialized/deserialized. Is there

[JBoss-user] [EJB 3.0] - Re: Why was this

2006-05-18 Thread epbernard
ahem Do you read the javadoc of the methods you use? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944785#3944785 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944785

[JBoss-user] [JBoss jBPM] - Re: jBPM Scheduler and JUnit testing in Eclipse

2006-05-18 Thread kukeltje
did you look at the jbpm testcases. Almost everything is unittested, so you should see some more there (unless the scheduler is not db tested) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944784#3944784 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [EJB 3.0] - Re: Problems with EntityManagerFactory

2006-05-18 Thread epbernard
these properties are not overridable at all, where did you see that it's possible? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944783#3944783 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944783 -

[JBoss-user] [JBoss jBPM] - Re: jbpm 3.0 on tomcat

2006-05-18 Thread kukeltje
not missing, but more likely an older version... strange that it does not mention which class, but I suspect hibernate. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944782#3944782 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[JBoss-user] [EJB 3.0] - Re: Cascade problem

2006-05-18 Thread epbernard
true by the very definition of mappedBy View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944781#3944781 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944781 --- Using

[JBoss-user] [EJB 3.0] - Re: Problems compiling with annotations

2006-05-18 Thread lewisd
Is there an earlier version of 4.0 that is known-good? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944780#3944780 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944780 --

[JBoss-user] [EJB 3.0] - Re: lazy initialization leads to org.hibernate.LazyInitializ

2006-05-18 Thread epbernard
The framework you're looking for is JBoss Seam View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944779#3944779 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944779 --

[JBoss-user] [EJB 3.0] - Re: executeUpdate problem- (bug?)

2006-05-18 Thread epbernard
I'm not able to reproduce (except that I don't know what 'ne' is). If you can reproduce then write down a minimal test case and post it to JIRA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944778#3944778 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [JBoss jBPM] - Re: Changing HomeBean.getLatestProcessDefinitions()

2006-05-18 Thread kukeltje
the assignment can also have an actor-id attribute or a pooled-actorid (see the docs) these two are accessible via the api. The expression seems not to be accessible. Maybe you should file a jira issue for this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[JBoss-user] [JBoss Seam] - Re: Configurating seam for facelets and myfaces-tomahawk

2006-05-18 Thread cfranky
Thank you for your help. The facelet screen that fails with is the following (note that with only dataTable runs fine but with dataList fails): --- http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";

[JBoss-user] [JBoss jBPM] - Re: GPD upload servlet

2006-05-18 Thread kukeltje
I have no idea. I'll have a at it look over the weekend. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944774#3944774 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944774 ---

[JBoss-user] [JBoss jBPM] - Re: Pausing JBPM process execution (JBPM Newbie)

2006-05-18 Thread kukeltje
the correct way is by using the api as you did, just not from within actionhandlers. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944773#3944773 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944773 ---

[JBoss-user] [JBoss jBPM] - Re: How to use variable types within process definition

2006-05-18 Thread kukeltje
fast response: search the forum faster response: you can't even faster response: .. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944772#3944772 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944772

[JBoss-user] [JBoss jBPM] - Re: Narrowing proxy to class org.jbpm.graph.node.TaskNode

2006-05-18 Thread kukeltje
Thanks saviola. I asume you found these links by using searchfunctionality (this forum, google, hibernate forum?) ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944771#3944771 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[JBoss-user] [JBoss Seam] - Re: @Observer does not work in booking example

2006-05-18 Thread cfranky
Excuse me: I do not what is JIRA and how to post a problem in JIRA. Can you give me a link to JIRA ? Thanks Maria Consuelo Franky View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944770#3944770 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [JBoss jBPM] - Re: Process deployment error

2006-05-18 Thread kukeltje
Search the forum. answer is in there View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944769#3944769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944769 --- Usin

[JBoss-user] [JBossWS] - error while running tests-- jbossws-samples-1.0.0.GA ---docs

2006-05-18 Thread sharmanils
trying to run (only using build) running -- jbossws-samples-1.0.0.GA ---docstyle ---wrapped when i run the tests i get this error: Call invocation failed: Could not transmit message; nested exception is: javax.xml.soap.SOAPException: Could not transmit message java.rmi.RemoteException: Call in

[JBoss-user] [JBossWS] - Using JSR181 - problem with value types and arrays

2006-05-18 Thread matabu
Hi all. I am trying to create a webservice. Spezifying the Webmethods with JSR-181. With primitive data types the service runs fine. But as I try to use a data object (value type) of a simple structure (only having types like int, boolean, String... default contructor etc... like the api says)

[JBoss-user] [JBoss jBPM] - decision node condition

2006-05-18 Thread greg823
I am having a problem executing a condition tag in a decision node and would appreciate an insight from anyone. A task is ended as follows, which creates a process instance variable and sets the return value in it. | taskInstance.getContextInstance().setVariable("approved", "yes"); | task

[JBoss-user] [Security & JAAS/JBoss] - Re: saving j_username as session/request parameter

2006-05-18 Thread ricardoarguello
You should check the ExtendedFormAuthenticator, available in JBoss 4.0.3+ http://wiki.jboss.org/wiki/Wiki.jsp?page=ExtendedFormAuthenticator View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944764#3944764 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [Security & JAAS/JBoss] - Re: Login Status and Failure Messages with Form Based securi

2006-05-18 Thread ricardoarguello
You should check the ExtendedFormAuthenticator, available in JBoss 4.0.3+: http://wiki.jboss.org/wiki/Wiki.jsp?page=ExtendedFormAuthenticator It's more flexible than the FormAuthValve trick. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944763#3944763 Reply

[JBoss-user] [EJB/JBoss] - Bind or deploy local interfaces in JBoss 4.0.2

2006-05-18 Thread n-hoyos
Hi, I am trying to use local interfaces in jboss4.02 and they don't work, they can be deployed, there is no errors when i deploy the local interfaces but when i try to bind them, it is not possible to do it. In jboss3.2 they work perfect! i realize that when i deploy them in jboss4.02 the jndi

[JBoss-user] [JBoss jBPM] - How to use variable types within process definition

2006-05-18 Thread jainer
Hi, I wanted to know how to define variable types like String, boolean, int, etc? to use them within process definition and the Handlers. If you can respond to me fast, I would thank for much! REGARDS!!! ___ jainer eduardo View the original post : http://www.jboss.com/index.html?mo

[JBoss-user] [EJB 3.0] - Re: EJB3 on database views

2006-05-18 Thread epbernard
this is just like a table View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944758#3944758 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944758 --- Using Tomcat but n

[JBoss-user] [JBoss Portal] - Custom Login

2006-05-18 Thread loveneesh
Hi, I am new to JBoss Portal. Can anyone please tell me whether we can use Windows Login/authentication to login to JBoss Portal server. Also can we create different work spaces for different users for the Content Management System (CMS Portlet). I would appreciate quick help in this. Thank

[JBoss-user] [JBoss Seam] - Jboss 4.0.4 production realese with seam 1.0.0 cr2 doesn't w

2006-05-18 Thread ravichams
I am trying to run a seam example seam-registration. This eaxmple was running properly with CR release of Jboss. But now it seems to be failing to run with following errors showing up during deployment. Can anybody help me in solving this. Is there any patch available for this. Please let me know

[JBoss-user] [JBoss Seam] - Re: @Observer does not work in booking example

2006-05-18 Thread [EMAIL PROTECTED]
Please report this in JIRA. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944754#3944754 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944754 --- Using Tom

[JBoss-user] [JBoss Seam] - Re: Possible to list all sessions currently active and then

2006-05-18 Thread [EMAIL PROTECTED]
I'm almost certain that is not possible. Would be a massive security flaw ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944753#3944753 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944753 ---

[JBoss-user] [JBoss Seam] - Re: Interceptors sort order

2006-05-18 Thread [EMAIL PROTECTED]
thankyou, appreciated. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944752#3944752 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944752 --- Using Tomcat but need

[JBoss-user] [JBoss Seam] - Re: Exception after upgrading to JBoss 4.0.4.GA

2006-05-18 Thread [EMAIL PROTECTED]
The reveng tool is not up to date with current Seam releases. I will work on this next week. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944751#3944751 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944751 ---

[JBoss-user] [JBossWS] - Re: Can't build jbossws samples

2006-05-18 Thread adrian.andrei
The reason is due to usage of jbossws14.jar instead of the jbossws.jar found in jbossws14.sar that comes with the example. The difference is that the latter has annotations extended from org.jboss.lang.Annotation instead of the java.jang one. After I modified the JBOSS configuration with the ws

[JBoss-user] [JBossCache] - Re: TransactionManager Name not bound?

2006-05-18 Thread ablevine1
yes. exactly like that. -Alex View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944749#3944749 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944749 --- Using Tomcat b

[JBoss-user] [JBoss Messaging] - Re: Simple Contained JMS example with JBoss?

2006-05-18 Thread edc
OK, Finally got one working usign the default installed example: Passed the following as JVM arguments: -Djava.naming.factory.initial=org.jnp.interfaces.NamingContextFactory -Djava.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces -Djava.naming.provider.url=jnp://localhost:1099 Sourc

[JBoss-user] [JBoss Seam] - Re: Resources.getResourceAsStream not multiple war safe

2006-05-18 Thread [EMAIL PROTECTED]
Right, which is why I just log a warn instead of throwing an exception. Sorry, best I can do. I _need_ that warning, it has tripped a lot of people. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944747#3944747 Reply to the post : http://www.jboss.com/index.

[JBoss-user] [JBossCache] - Re: TransactionManager Name not bound?

2006-05-18 Thread [EMAIL PROTECTED]
Does your deploy/ejb3-entity-cache-service.xml file look like this at the beginning? | | jboss:service=Naming | jboss:service=TransactionManager | | | org.jboss.cache.JBossTransactionManagerLookup | View the original post : http://www.jboss.com/index.html?modu

[JBoss-user] [JBoss Seam] - Re: Nullpointerexceptions when upgrading software

2006-05-18 Thread [EMAIL PROTECTED]
There were several changes to the spec, please check Bill's migration notes, all the changes are documented, I'm sure. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944745#3944745 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[JBoss-user] [JCA/JBoss] - Re: Restricting access to datasources

2006-05-18 Thread schuller007
Inside your EJB you can do something like: | @Resource | SessionContext ctx; | public void getPrincipal () { | ... | Principal p = ctx.getCallerPrincipal(); | .. | } View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944744#3944744 Reply to th

[JBoss-user] [EJB 3.0] - persistence.xml / EJBTHREE-560

2006-05-18 Thread ghilling
Hello, We recently ran into problems because the ejb3-deployer still is buggy in 4.0.4-GA (bug http://jira.jboss.com/jira/browse/EJBTHREE-560). Will this be fixed in the next ejb3-release? How much work would it be to fix the bug myself? For now it, it seems to work to put "persistence.xml" into

[JBoss-user] [JBoss Seam] - Re: Transition out of pageflow

2006-05-18 Thread [EMAIL PROTECTED]
Sorry, you'll need to post your Java and jPDL code. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944742#3944742 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944742 -

[JBoss-user] [EJB 3.0] - Re: Open Session in View in EJB3

2006-05-18 Thread epbernard
if you can wrap that in a minimal reproducable test case, please post a JIRA issue View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944741#3944741 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944741 -

[JBoss-user] [JBossWS] - I need to replace JBossWS by JAXWS

2006-05-18 Thread korg
Hi, we are developing WS with JAXWS for a couple of months already and since JBossWS is introduced to JBsoss AS, there are problem using our web services and still using JAXWS. With JBoss 4.0.3, we followed the instructions that can be found at this site : http://forums.java.net/jive/thread.js

[JBoss-user] [JBoss Portal] - Re: Where does Descriptor file go after it is deployed

2006-05-18 Thread Silicio
Ok Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944739#3944739 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944739 --- Using Tomcat but need to do more?

[JBoss-user] [JBoss Portal] - Different users but same files in CMS

2006-05-18 Thread Silicio
JBoss 2.2.1 bundled with AS. Windows XP Sp2 I've to make a web application, using JBoss Portal and JSR-168 standard for portlets, in which different users have different virtual disk spaces. I hoped to use CMS Management provided by JBoss, but seem that it's not possible to separate virtual dis

[JBoss-user] [JBoss Seam] - Re: JTA transaction problems on 404GA ?

2006-05-18 Thread [EMAIL PROTECTED]
Do you have the SeamExceptionFilter? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944737#3944737 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944737 --- Using To

[JBoss-user] [JCA/JBoss] - Re: Restricting access to datasources

2006-05-18 Thread blasph
I have same problem: Check if user (authenticated from AD) can lookup the datasource... I tried make use of many modules but can't get informations like what user is accessing the application server. Anyone can tell me the way? View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [EJB 3.0] - release 4.0.4CR2 stateful clustering not reliable

2006-05-18 Thread lazybeans
i have 2 load balanced, clustered machines with 1 stateful session bean whose clustering is turned on. Experimenting between the machines, about 1 out 7 times the stateful session bean will fail to cluster properly. It loses the sateful session bean when i shutdown the jboss app server on one ma

[JBoss-user] [Remoting] - Error connecting to ejb3 cluster

2006-05-18 Thread ablevine1
I am currently using jboss-4.0.4.GA on debian linux with the ejb3-clustered configuration. Whenever I try and get a remote client to use a session ben running in my server it fails. It first successfully connects to the JNDI port and receives a session stub back, but then when a mehtod call is

[JBoss-user] [JBoss Portal] - Re: JBoss AS 4.04.GA and Portal 2.2.1 deployment

2006-05-18 Thread [EMAIL PROTECTED]
This is an issue we are currently looking at View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944733#3944733 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944733 ---

[JBoss-user] [EJB 3.0] - Re: Open Session in View in EJB3

2006-05-18 Thread franconian_dude
session bean @TransactionAttribute(TransactionAttributeType.MANDATORY) | public Event findEventById(long id) throws EJBException { | return entityManager.find(Event.class, id); | } Does anyone know why this is not running properly, of course with the FAMOUS LazyInitializationExcepti

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

2006-05-18 Thread ricardoarguello
There is an easier way to acomplish this with JBoss 4.0.3+: http://wiki.jboss.org/wiki/Wiki.jsp?page=ExtendedFormAuthenticator View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944731#3944731 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[JBoss-user] [JBoss Messaging] - Re: Non-persistent destinations

2006-05-18 Thread toddjtidwell
That's fantastic! I feel a bit like an idiot for not marking the messages as non-persistant in the producer, though ;) Thank you yet again for the quick responses. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944730#3944730 Reply to the post : http://www

[JBoss-user] [EJB 3.0] - Re: Open Session in View in EJB3

2006-05-18 Thread franconian_dude
I got the same problem an spinning my head around but can't find any proper or running solution ... my code is struts action InitialContext initialContext = ServiceLocator.getInitialContext(); | usertransaction = (UserTransaction)initialContext.lookup("UserTransaction"); | |

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

2006-05-18 Thread ricardoarguello
There is an easier way to acomplish this with JBoss 4.0.3+: http://wiki.jboss.org/wiki/Wiki.jsp?page=ExtendedFormAuthenticator View the original post : http://staging.jboss.com/index.html?module=bb&op=viewtopic&p=3890810#3890810 Reply to the post : http://staging.jboss.com/index.html?module=b

[JBoss-user] [JBoss Seam] - Seam unable to work with JBoss 4.0.4 production release

2006-05-18 Thread ravichams
Hi I am facing a problem with working on seam with latest production release Jboss. The CR release of Jboss worked with seam without any problems. Can somebody give me a path to amke it work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944728#3944728 Repl

[JBoss-user] [JBoss Messaging] - Re: Non-persistent destinations

2006-05-18 Thread timfox
There is a task for this http://jira.jboss.com/jira/browse/JBMESSAGING-381 currently scheduled for 1.2. This is an easy one to do so if you vote for it, it increases it's chances of being promoted to an earlier release. (No promises). For now, if you are programmatically able to send your messa

[JBoss-user] [Security & JAAS/JBoss] - Re: Principal does not get pass to JBoss server

2006-05-18 Thread j2ee_junkie
Read the JBoss server guide chapter 8 at http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch8.chapter.html[/url] and Java's JAAS stuff at [url]http://java.sun.com/j2se/1.5.0/docs/guide/security/index.html. The short answer is you ask the CallbackHandler to handle (for example) the NameCallbac

[JBoss-user] [JBoss Messaging] - Re: Programatically Creating Destinations

2006-05-18 Thread timfox
Glad to hear it :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944725#3944725 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3944725 --- Using Tomcat but need to d

[JBoss-user] [JBoss Messaging] - Non-persistent destinations

2006-05-18 Thread toddjtidwell
Is there anyway (or planned way) to turn of persistence for a destination? I've got several queues that I just have no reason to have persistence and would rather just not waste the resources on. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944722#3944722

  1   2   3   4   >