[jboss-user] [EJB 3.0] - Re: Problem with LAZY relations and SerializableProxy

2006-12-19 Thread Rhodan76
JIRA issue opened. See http://jira.jboss.com/jira/browse/JBAS-3952 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995222#3995222 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995222 ___

[jboss-user] [JBoss Seam] - Re: Basic Seam questions

2006-12-19 Thread lightbulb432
I have been looking into the whole issue of Exceptions and have several questions about how to choose and design Exceptions for a Seam application. There's quite a few questions below, but hopefully somebody could address them. (I imagine all these dumb beginner questions must be getting irritat

[jboss-user] [JBoss Seam] - Re: Seam & Maven2

2006-12-19 Thread [EMAIL PROTECTED]
The above is the answer from Gavin ;) To get a more complete list we simply just need to go through the thirdparty-all.jar and figure out what is in there precisly; I could do that, but you could do it too (hint hint ;) If you generate the list then I can verify it for you. I think that will be

[jboss-user] [EJB/JBoss] - Re: Executing Outside Transaction

2006-12-19 Thread murtuza52
I have resolved this problem with @Version attribute. Those who are interested in knowing here is how i did it: The counter entity bean is modified as follows: | @Entity | @Table(name = "counter") | public class Counter implements Serializable{ | | private String counterName;

[jboss-user] [JBoss Seam] - Re: Conversation timeout and pageflow

2006-12-19 Thread kevin.genie
Thanks for the reply, Gavin. >>Are you sure there are two conversations? Do you see two different >>conversation ids Yes, the converstation ids are different. >>If so, are you sure that one is not a nested conversation of the other. I have not used nested = true at the Begin annotat

[jboss-user] [Installation, Configuration & Deployment] - read in packaged properties file

2006-12-19 Thread siddharthags
looking at previous posts I see this has been posted without much help. so I am trying my luck here again.. I have an existing class that reads in a props file packaged as org/foo/syprops.properties as ClassLoader.getSystemResourceAsStream("org/foo/syprops.properties"); as expected and stated i

[jboss-user] [JBoss Seam] - Re: Problem in writing own annotation in seam

2006-12-19 Thread [EMAIL PROTECTED]
You need to use required="true" on the JSF page. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995216#3995216 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995216 ___ jboss-

[jboss-user] [EJB 3.0] - TABLE [[TABLE_NAME]] NOT MAPPED.

2006-12-19 Thread varunnarang
Hello all, I am facing a problem which extracting data thro' EJBQL, when ever I try this, I get an exception TABLE NOT MAPPED. Can anyone tell me what exactly is not mapped. Although I am able to store the data in the database thro' EntityManager.persist(Object) method. I am using jboss-4.0.5 (Hi

[jboss-user] [EJB 3.0] - Where is javax.persistence.AccessType

2006-12-19 Thread varunnarang
Hello all, I am not able to fine the Enum AccessType , neither in the api-doc nor in the lib. Can anyone help me to find out that which library shall I look for the same. Thanks a lot for the help. Regards, Varun Narang. View the original post : http://www.jboss.com/index.html?module=bb&op=vi

[jboss-user] [Messaging, JMS & JBossMQ] - Re: How to speed up JMS bus

2006-12-19 Thread MuhammedRafi
Hey Mr. genman, Thanx for your kind response. I am running jboss 4.0.5 on Mandrake Linux. I am using all the default configurations available in the jboss. I am publishing a text message to a topic with one listener. I am able to publish around 1800 messages per second. I would like to know if

[jboss-user] [JBoss Eclipse IDE (users)] - Launching the Bundle on OSX

2006-12-19 Thread kasim
Might be something trivial. But when i download and unzip the bundle on my Mac and try to launch it, it asks me to choose the application to launch it with. What am i doing wrong? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995211#3995211 Reply to the

[jboss-user] [JBoss Messaging] - How to start only JMS

2006-12-19 Thread MuhammedRafi
I am a beginner in JMS technology, please tell me how to start only jms using Jboss 4.0.3. thank you, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995210#3995210 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995

[jboss-user] [EJB 3.0] - Re: Context Lookup

2006-12-19 Thread ALRubinger
Glad to hear it. As an aside, you might want to look at centralizing your JNDI calls outside of your servlets. Check out the Service Locator Pattern: http://java.sun.com/blueprints/corej2eepatterns/Patterns/ServiceLocator.html Word. S, ALR View the original post : http://www.jboss.com/inde

[jboss-user] [EJB 3.0] - Re: Help on EjB 3 Packaging

2006-12-19 Thread ALRubinger
It's probably a good practice to separate out your Entity beans into their own JAR; each persistence unit is scoped to that JAR alone per the spec. I generally like to give each of my "services" (which may be JMX, Stateful, or Stateless EJBs) its own JAR, each unique collection of Entity Beans p

[jboss-user] [JBoss Seam] - Re: Problem in writing own annotation in seam

2006-12-19 Thread waheed.murad
is it possible to perform validation on empty fields (fields which have "" String) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995206#3995206 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995206 _

[jboss-user] [JBoss Seam] - Re: Problem in writing own annotation in seam

2006-12-19 Thread waheed.murad
No it do not have any value when form is submited and it POJO mapped attribute contains "" (empty String) in it. i want to perform validation for this empty String. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995205#3995205 Reply to the post : http://w

[jboss-user] [EJB 3.0] - Re: Help With EJB 3 & JBoss 4.0.5

2006-12-19 Thread ALRubinger
Try enclosing "/ats-EJB.jar" in : ats-EJB.jar Also, I don't recognize the schema definition you're using...was expecting to see: http://java.sun.com/xml/ns/j2ee"; version="1.4" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://java.sun.com /xml/n

[jboss-user] [Messaging, JMS & JBossMQ] - Could not restore ejb timers

2006-12-19 Thread prabir.ghosh
hi all, i am new i jboss 4.0.4. i am getting this error while start my server.I am not able to debug this because i am new in jboss.so please help me out as soon as possbile. 2006-12-18 17:22:39,890 WARN [org.jboss.ejb.StatelessSessionContainer] Could not restore ejb timers javax.managem

[jboss-user] [Messaging, JMS & JBossMQ] - java.io.IOException: Client is not connected

2006-12-19 Thread prabir.ghosh
hi i am getting this error . i have configured mail service in the mail service.xml file. i don't know what is the problem plz help me out. 2006-12-18 13:08:59,312 DEBUG [org.jboss.mq.il.uil2.SocketManager] Failed to handle: org.jboss.mq.il.uil2.msgs.CloseMsg20358912[msgType: m_connectionClosi

[jboss-user] [Remoting] - Re: HTTP Invoker overwrites Content-Type

2006-12-19 Thread [EMAIL PROTECTED]
Nope, the remoting code currently checks the type of response and makes a best guess at the content type. I have created a jira issue (http://jira.jboss.com/jira/browse/JBREM-653) to allow for exactly what you have posted above. View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss jBPM] - Process Deployment Error

2006-12-19 Thread venugopal.l
I create a simple process which is given by the guide. After creation of the process while deploying it returns the Error "An exception happened during the deployment." Reason:An unexpected exception caused the deployment to fail" Can any one tell me about how to resolve the problem. Thank you

[jboss-user] [JBoss Getting Started Documentation] - Re: Reserve Jboss port in window OS during startup

2006-12-19 Thread kianheng88
I do know this two way, but is there anyway to enforce the window not using this two ports? sometime window update during startup may use this two ports accidentally, then how to "educate" window this two ports is reserved? View the original post : http://www.jboss.com/index.html?module=bb&op=v

[jboss-user] [JBoss Seam] - Re: Getting error when binding a dataTable to a backbean com

2006-12-19 Thread [EMAIL PROTECTED]
Don't use binding="" for session-scope components. Actually I very much prefer not to use binding at all. Its much less transparent. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995195#3995195 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Getting Started Documentation] - Re: Reserve Jboss port in window OS during startup

2006-12-19 Thread visolvejboss
Hello, Check whether any of the windows process using the ports 1098 and 1099 using the following command at the command prompt. >netstat -b It will display all the process which are running under windows with their port numbers. If any of the process, using the above ports and if that process

[jboss-user] [JBoss Seam] - Getting error when binding a dataTable to a backbean compone

2006-12-19 Thread lle
Hi, I have a t:dataTable that binds to a backbean's component as follows: Here is part of the backing bean's code: @Name("alertssearch") | @Scope(ScopeType.SESSION) | @GALoggedIn | public class GASessionSearchAction { | | @In | private Session gadb; | @In(create=t

[jboss-user] [JBoss Getting Started Documentation] - Reserve Jboss port in window OS during startup

2006-12-19 Thread kianheng88
When start JBoss that time, normally it will use 1099 (JNP),1098(RMI) ports. Sometime during windows start up, all this port is used by other windows program. How to allocate this port to be used by JBoss program only? View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [Installation, Configuration & Deployment] - Re: Deploy a web application on JBoss

2006-12-19 Thread inderjeet
Thanks Peter I understood your explanation partially Actually my exact requirement is to deploy an application on JBoos server which is on my machine and the WAR file or the exploded war file which is there on some other machine on my network. Now How to achieve this? Please help me out. T

[jboss-user] [JBoss Seam] - Re: Basic Seam questions

2006-12-19 Thread [EMAIL PROTECTED]
There are several related problems: (1) you want the user to be able to freely navigate backward during a conversation (2) but you don't want them to be able to navigate backward once the conversation ends - or rather, its ok to navigate back, but if they try to submit a form, you want to stop

[jboss-user] [JBoss Seam] - Re: Seam And ICEFaces menubar

2006-12-19 Thread jdestef
Did you declare public String getMainMenu() in your MainMenu interface? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995188#3995188 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995188 ___

[jboss-user] [EJB 3.0] - MapKey, JoinColumn and referencedColumnName

2006-12-19 Thread jazir1979
Hi all, I'm trying to use a map-based relationship on a non-PK, provided below. The EJB3 spec states that "when used for relationship mappings, the referenced column is in the table of the target entity". However, when I do this, I get "Unable to find column with logical name" errors from Ejb

[jboss-user] [Beginners Corner] - Re: java.util.zip.ZipException

2006-12-19 Thread PeterJ
Zip file errors often happen when the hot deployer attempts to deploy an application before it is fully copied to the deploy directory. This is fairly common if it takes several seconds to copy the file. The solution is to copy the file to a temporary directory on the same disk partition as th

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: jboss-hibernate.deployer not found

2006-12-19 Thread sundarvc
Found my answer here http://www.jboss.com/index.html?module=bb&op=viewtopic&t=81363 Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995185#3995185 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995185 _

[jboss-user] [JBoss Messaging] - Re: Are there performance numbers available comparing MQ vs

2006-12-19 Thread [EMAIL PROTECTED]
We have a framework you could use for that: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossJMSNewPerformanceBenchmark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995184#3995184 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [JBoss Seam] - Seam And ICEFaces menubar

2006-12-19 Thread david.alves
Hi I'm trying to build a menu using a Seam action as a backing bean for ICEFaces menuBar component. I goes something like this: MainMenuAction | @Stateless | @Name("mainMenuAction") | @Scope(ScopeType.SESSION) | public class MainMenuAction implements MainMenu { | | @In(required

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - jboss-hibernate.deployer not found

2006-12-19 Thread sundarvc
HI, I just installed Jboss-4.0.5.GA on Linux and realize that there is no jboss-hibernate.deployer directory under $JBOSS_HOME/server/default/deploy. Is it something I am supposed to install myself ? Thanks, Sundar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[jboss-user] [EJB 3.0] - Calling a web service via soap

2006-12-19 Thread aslocal
Hello. I'm trying to call a webservice via SOAP. I keep getting this exception: javax.xml.rpc.JAXRPCException: Cannot create SOAPFault message for: javax.xml.rpc.soap.SOAPFaultException: setProperty must be overridden by all subclasses of SOAPMessage My class looks like this: @Stateless @We

[jboss-user] [JBoss Portal] - Re: Tomahawk tree2 tag doesn't display correctly in portlets

2006-12-19 Thread seidler2547
Have you tried using the most recent version of tomahawk (like 1.1.5-SNAPSHOT)? Remember that JBoss Portal and JBoss AS both have several version of MyFaces+Tomahawk lying in several subdirectories of server/.../deploy which you need to delete in order to have the new version up and running. Pla

[jboss-user] [JBoss Seam] - Re: Basic Seam questions

2006-12-19 Thread lightbulb432
Sorry, I'm having a tough time understanding conversations, but I'd like to know a bit about them... How do they solve the back button issue? I'm really confused on this whole back-button issue...in some cases, it's the thing that gets solved by not caching pages...in other cases, it's the thing

[jboss-user] [JBoss Portal] - Re: Order in NavigationPortlet

2006-12-19 Thread seidler2547
Hi, we used a custom property called height, similar to the "height" within Windows and then wrote our own NavigationPortlet which reads it from the PortalObjectContainer. Quite quick to implement, if you have a little experience. Stefan View the original post : http://www.jboss.com/index.ht

[jboss-user] [EJB 3.0] - Help on EjB 3 Packaging

2006-12-19 Thread bustanil
Hi all, I' ve been working my project using EJB 3 since September and I enjoy working with it. But one thing that still confuses me is how EJB 3 component should be packaged. Should I seperate Entity Classes from Session Beans in different jars? How about the directory structure? Can anyone sh

[jboss-user] [EJB 3.0] - Help on EjB 3 Packaging

2006-12-19 Thread bustanil
Hi all, I' ve been working my project using EJB 3 since September and I enjoy working with it. But one thing that still confuses me is how EJB 3 component should be packaged. Should I seperate Entity Classes from Session Beans in different jars? How about the directory structure? View the ori

[jboss-user] [Security & JAAS/JBoss] - EJB3 Endpoint Authentication Problems

2006-12-19 Thread elcapitan
G'day all, I'm trying to expose an EJB3 stateless session bean as a webservice, and I'm running into problems with authentication. If I leave all security considerations out, the bean exposes nicely, and I can interact with it using soapUI or a standalone Java client. However, when I start tryi

[jboss-user] [Beginners Corner] - Re: java.util.zip.ZipException

2006-12-19 Thread liudan2005
I'm having the same problem as well. Have you managed to solve the problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995173#3995173 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995173 ___

[jboss-user] [EJB 3.0] - Problems deploying to JBoss

2006-12-19 Thread akhtara7
Hi, I am having some difficulty deploying the Sun's "Converter" example to the JBoss server. (A local stateless EJB) I am using the following code to do the lookup HelloWorld helloWorld=null; InitialContext ic = new InitialContext(); helloWorld= (HelloWorld) ic.lookup("conv/MyHelloWorldBean/l

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread [EMAIL PROTECTED]
OK, now I know what changed. The bijected variables of the outer class *only* have well-defined values during a method call to the outer class! They do not have well-defined values after the invocation ends. To enforce this, Seam now nullifies injected variables at the end of the invocations.

[jboss-user] [Installation, Configuration & Deployment] - classloading and deployment

2006-12-19 Thread Yueh2k6
Hi, I tried to use the jboss-app.xml under \META-INF\ to turn off parent delegation and to load specific JARs.I got the following error upon deployment: Only the root deployment can set the loader repository, ignoring config=LoaderRepositoryConfig Tried to google on this error, but

[jboss-user] [JBoss AOP] - Re: Netbeans - AOP

2006-12-19 Thread ykrishnaprasad
Using JBoss-AOP in NetBeans: Netbeans work bench ? go to Files(next to Projects) In your project(regular java app) under ?src? create a folder ?META-INF? Put your jboss-aop.xml in that folder with the interceptor information included Comeback to ?Projects? ? in the project properties (right cli

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread andrew.rw.robinson
An inner class is part of the outer class. If the outer class as @In variables, they should be visible from the inner class. Inner classes are not independant of their outer classes. It worked just fine in 1.0.1. Are you saying that this is no longer supported? View the original post : http://

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread [EMAIL PROTECTED]
So, in some *beta* versions of Seam, @Name was (wrongly) declared @Inherited, but not in any GA version View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995165#3995165 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread [EMAIL PROTECTED]
Wait, hold on, what is this stuff about an inner class?? It has no @Name annotation? Why should it be proxied? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995164#3995164 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread andrew.rw.robinson
Here is the stack from the inner-class constructor: 16:26:38,374 INFO [STDOUT] java.lang.Exception: Stack trace | 16:26:38,375 INFO [STDOUT] at java.lang.Thread.dumpStack(Thread.java:1158) | 16:26:38,375 INFO [STDOUT] at com.outlooksoft.cpm.livereport.LiveReportBean$ReportApplicati

[jboss-user] [JBoss Seam] - Re: Conversion Error on Registration example

2006-12-19 Thread fabricio.lemos
Now it works :). Thank you. I removed these jars and other things that I didn´t knew what was for and now it´s running. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995159#3995159 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Seam] - Re: Basic Seam questions

2006-12-19 Thread [EMAIL PROTECTED]
anonymous wrote : I keep hearing that Seam solves the "back button issue", whatever that is...does Seam do this through conversations? Yes. anonymous wrote : Regarding the persist(), it actually is for a brand new entity, which is why I seemed so amazed. Ahem, this would "amaze" me too :) a

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Where ist the class net.sf.cglib.transform.impl.InterceptFie

2006-12-19 Thread urswag
Where ist this class net.sf.cglib.transform.impl.InterceptFieldEnabled | Exception in thread "main" java.lang.NoClassDefFoundError | at org.hibernate.tuple.EntityMetamodel.class$(EntityMetamodel.java:41) | at org.hibernate.tuple.EntityMetamodel.(EntityMetamodel.java:122) | at

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread [EMAIL PROTECTED]
How is the object being instantiated? Put a breakpoint in the constructor, and show me the stack. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995155#3995155 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995155

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread [EMAIL PROTECTED]
Also show the ejb-jar.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995156#3995156 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995156 ___ jboss-user mailing list jboss

[jboss-user] [JBoss Seam] - @DataModel without dataTable

2006-12-19 Thread bluetrade
Hi, I would like to use the @DM annotation without having a table - i.e. in a Select Box - how can this be done? Thanks joey View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995153#3995153 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss Seam] - Re: SeamSecurityFilter

2006-12-19 Thread sbryzak2
This filter is part of the new security API, which will be included in the Seam 1.1.5 GA release. It should be ok to use now, but it may change further before the release is complete. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995151#3995151 Reply to th

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread andrew.rw.robinson
It looks like Seam is no longer intercepting all of my calls. Normally the stack would be full of "proxy" class names. Below, there are no proxies, only the "real" classes. So it seams something has changed that seam is no longer createing the proxy. here is the stack: at com.outlooksof

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread andrew.rw.robinson
More information: I tried changing the scope and that didn't work. Here is more information on this new problem with In: Bean: @Name("liveReportBean") | @LoggedIn | @Scope(ScopeType.CONVERSATION) | public class LiveReportBean | { | ... | @In(create=true) | private DimensionIn

[jboss-user] [JBoss Seam] - Re: Conversion Error on Registration example

2006-12-19 Thread petemuir
If you are deploying to JBoss AS you don't need myfaces-* or thirdparty-all in your archive. jboss-seam.jar needs to be on the ear classpath not the war classpath, the standard way to do this is reference it in application.xml. Alternatively use seam-gen View the original post : http://www.j

[jboss-user] [Installation, Configuration & Deployment] - Re: location for DLL's

2006-12-19 Thread PeterJ
The jboss.native.load and jboss.native.dir system properties come into play if you deploy an archive (such as a jar file) with an embedded native library. In other words, if I have foobar.jar which contains: org/stuff/Main.class org/stuff/Other.class other.dll then when JBoss deploys the jar,

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread [EMAIL PROTECTED]
Sounds like some kind of mis-configuration / packaging problem. Are you sure all your components are being scanned and installed at startup? Are you sure the object that you are injecting into is an object instantiated by Seam, and that the BijectoinInterceptor is being processed? @In(create=tr

[jboss-user] [JBoss Seam] - Re: Value injection not always working with Seam 1.1

2006-12-19 Thread andrew.rw.robinson
Well, I fixed this issue, but I am once again into many more of the same type. It seems the "@In(create=true)" is not finding my session beans. It is possibly due to the scope change. If I use @In(create=true) on a bean that is session scoped, shouldn't it create the bean in the session regardl

[jboss-user] [JBossWS] - Re: Single Client, Multiple Service Endpoints

2006-12-19 Thread elcapitan
Bump. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995145#3995145 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995145 ___ jboss-user mailing list jboss-user@lists.jboss.or

[jboss-user] [Messaging, JMS & JBossMQ] - Re: MDB and connection to a remote queue with transaction

2006-12-19 Thread genman
BTW, if you close the connection it closes the session and sender as well. Anyway, what does getConnection() do? Are you using the pooled connections at java:/JmsXA ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995144#3995144 Reply to the post : http://w

[jboss-user] [EJB 3.0] - Re: Help With EJB 3 & JBoss 4.0.5

2006-12-19 Thread abhinav19
the element encloses the value /ats-EJB.jar Somehow the CMS ate up the keyword java View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995143#3995143 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995143

[jboss-user] [EJB/JBoss] - Filter Injection

2006-12-19 Thread fabio.ita04
Does resource injection in Servlet Filters works with JBoss AS 4.0.5? I'm trying to inject an EntityManagerFactory in a authentication filter, but the reference isn't set via injection, and a NullPointerException occurs. I can successfully get the required EntityManagerFactory via Initial Contex

[jboss-user] [Messaging, JMS & JBossMQ] - Re: ServerSessionPool from within MDB

2006-12-19 Thread genman
The JMS connection pool at java:/JmsXA already caches connections for you. Use this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995141#3995141 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995141 _

[jboss-user] [J2EE Design Patterns] - Re: boss is not creating pool for stateless session bean

2006-12-19 Thread nkale
Hi, Did you find a solution for this behavior? Our application dies after working for 4 weeks, and we've narrowed it down to the ejbCreates being called, but no ejbRemoves being done. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995140#3995140

[jboss-user] [Installation, Configuration & Deployment] - Re: location for DLL's

2006-12-19 Thread PeterJ
The JBoss deployment scanner does not look for DLLs. It is the JVM that needs to locate and load DLLs. The JVM uses the PATH environment variable to determine where to load DLLs from. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995133#3995133 Reply to th

[jboss-user] [EJB 3.0] - Re: Context Lookup

2006-12-19 Thread aslocal
Awesome, worked like a charm. Thanks much! - Graeme. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995134#3995134 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995134 ___

[jboss-user] [JBoss jBPM] - Re: Problems starting process from MDB (EJB3, JBPm 3.2 alpha

2006-12-19 Thread NiB
Solved that one! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995138#3995138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995138 ___ jboss-user mailing list jboss-user@lis

[jboss-user] [Remoting] - Re: Transport Compression with JBossWS

2006-12-19 Thread mo_ctaylor
Tom, Last week I looked at the code and it looks like JBoss Web Services would require Remoting 2.0.0 with the JBREM-425 http://jira.jboss.com/jira/browse/JBREM-425;jsessionid=506E94EEC425428E9D0B647DBCB56E7C fix. The JBoss Web Services client would need to make the proper invoke call to add

[jboss-user] [JBoss Seam] - Think I found the problem

2006-12-19 Thread chris.morrisette
Ok. I think I found the problem in the class: org.jboss.seam.interceptors.RemoveInterceptor The line (77): getComponent().getScope().getContext().remove( getComponent().getName() ); Will remove a bean with the specified name from the conversation associated with the current thread. The proble

[jboss-user] [JBoss Seam] - Re: Seam remoting conversation - possible problem?

2006-12-19 Thread chris.morrisette
Just some more clarification. The method that is cleaning up timed out conversations is: org.jboss.seam.core.Manager.endRequest(ContextAdaptor session) Specifically the line: Manager.instance().conversationTimeout(session); Line number 347 View the original post : http://www.jboss.com/index

[jboss-user] [Remoting] - Re: SSL Connection: load a new keystore at runtime

2006-12-19 Thread [EMAIL PROTECTED]
Can you add a new jira issue for the NullPointerException? Thanks. -Tom View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995122#3995122 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995122

[jboss-user] [JBoss Seam] - Re: Seam remoting conversation - possible problem?

2006-12-19 Thread [EMAIL PROTECTED]
Whoah! That looks like a *really* bad bugplease add a JIRA issue, priority "Blocker". View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995125#3995125 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995125

[jboss-user] [JBoss Seam] - Re: Request for feedback

2006-12-19 Thread [EMAIL PROTECTED]
OK, so after much to and fro, I settled on the following: anonymous wrote : | | | | | | | | | | | | | | | | | | | | |

[jboss-user] [EJB/JBoss] - Re: Unit Testing Practices

2006-12-19 Thread tarantula
I found a solution to my problem. It looks like the EJB3Configuration class in hibernate-all.jar in Seam 1.1 GA is outdated - I replaced this with the latest Hibernate 3.2.1 and Hibernate EntityManager 3.2.1 JARs and no more fatal messages. Next up is the Microcontainer version warning... View

[jboss-user] [EJB/JBoss] - Re: Unit Testing Practices

2006-12-19 Thread tarantula
This is done too. I changed the xmlns value to "urn:jboss:bean-deployer:2.0" in the following XML files: embedded-ejb/conf/embedded-jboss-beans.xml embedded-ejb/conf/jboss-jmx-beans.xml embedded-ejb/conf/security-beans.xml resources/META-INF/jboss-beans.xml Good to go! View the original post :

[jboss-user] [JBoss Seam] - Re: Seam remoting conversation - possible problem?

2006-12-19 Thread chris.morrisette
Thanks for the quick response. Created Jira 618 http://jira.jboss.org/jira/browse/JBSEAM-618 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995128#3995128 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995128

[jboss-user] [JBoss Seam] - Remoting

2006-12-19 Thread KoniKoni
| [EMAIL PROTECTED] url=null ,addedOrder=0} | 2006-12-19 22:41:06,757 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, [EMAIL PROTECTED], [EMAIL PROTECTED] url=null ,addedOrder=0} | 2006-12-19 22:41:06,757 ERROR [org.jboss.seam.remoting.ExecutionHandler] Error during remot

[jboss-user] [JBoss Seam] - Re: Seam remoting conversation - possible problem?

2006-12-19 Thread [EMAIL PROTECTED]
BTW, congratulations, that was the first serious bug found in 1.1 GA! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995132#3995132 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995132 _

[jboss-user] [JBoss Seam] - Re: Seam remoting conversation - possible problem?

2006-12-19 Thread [EMAIL PROTECTED]
OK, I just committed a fix. Please test it for me. thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995131#3995131 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995131

[jboss-user] [JBoss Seam] - Conversion Error on Registration example

2006-12-19 Thread fabricio.lemos
Hello, I´m having trouble running the Registration example. The application seems to be deployed ok but when I submit the form, I´m getting "Conversion Error" 3 times. I am using maven to package the example on a ear. Here is the Jboss log: | 17:46:27,470 INFO [EARDeployer] Init J2EE appli

[jboss-user] [JBoss Seam] - Value injection not always working with Seam 1.1

2006-12-19 Thread andrew.rw.robinson
I needed some functionality from seam 1.1 compared to 1.0.1, so I just tried to upgrade and I'm having some really bad luck. The worst is problems with the "@In(create=true)" annotation. Exception: java.lang.NullPointerException | at com.outlooksoft.cpm.usercontext.UserApplicationVie

[jboss-user] [Installation, Configuration & Deployment] - Re: location for DLL's

2006-12-19 Thread siddharthags
well I tried the java.library.path setting to set to the location that the DLL;s are located, but still got the unsatisfied link error. Not sure of the intention of the -Djboss.native.load=true but tried that too but not sure where jboss looks for to get the DLL's from..I know it extracts to tmp

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Memory Leak in JBoss IDE?

2006-12-19 Thread jantzen
Hmm, PermGen space ... Looking at my workspace/.metadata/.log file I see: | !ENTRY org.eclipse.core.jobs 4 2 2006-12-18 18:48:46.390 | !MESSAGE An internal error occurred during: "EL Syntax Validator". | !STACK 0 | java.lang.OutOfMemoryError: PermGen space | | !ENTRY org.eclipse.core

[jboss-user] [Installation, Configuration & Deployment] - location for DLL's

2006-12-19 Thread siddharthags
Hi I have a few DLL's that I need to be loaded into the JBoss Env for some codebase in my app to read in. I ahve tried everything from placing it in %JBOSS_HOME%/bin to setting the java.library.path (set it to the directory where the libraries exist.). I still get an unsatisfied link error for

[jboss-user] [JBoss Seam] - Re: transaction killed

2006-12-19 Thread atzbert
What was your problem? I'm getting this [SeamExceptionFilter] killing transaction constantly. I have no idea where it comes from... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995115#3995115 Reply to the post : http://www.jboss.com/index.html?module=bb&o

[jboss-user] [Messaging, JMS & JBossMQ] - ServerSessionPool from within MDB

2006-12-19 Thread rmunjuluri
Have a basic question on request/response mechanism with an MDB... I need to send a response back to a JMSReplyTo queue in an MDB. The standard approach to send the response is to lookup the connectionfactory from jndi, create a connection, create a session and using the JMSReplyTo destination

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.4

2006-12-19 Thread nataleja
I hope that this is more informative for you: 2006-12-18 16:14:28,361 ERROR [org.jboss.portal.core.portlet.cms.CMSPortlet] The portlet threw an exception java.lang.RuntimeException: java.lang.NullPointerException at org.jboss.portal.cms.impl.jcr.JCRCMS.execute(JCRCMS.java:394) at

[jboss-user] [JBossWS] - Re: ClassLoadingConfiguration

2006-12-19 Thread Yueh2k6
I realized I got the following error upon deploying with this classloading config file: Only the root deployment can set the loader repository, ignoring config=LoaderRepositoryConfig(repositoryName: com.example:loader=crm.ear, repositoryClassName: org.jboss.mx.loading.HeirarchicalLoaderReposito

[jboss-user] [EJB 3.0] - Re: Help With EJB 3 & JBoss 4.0.5

2006-12-19 Thread abhinav19
Hi the application.xml is http://java.sun.com/xml/ns/javaee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd";> ats

[jboss-user] [EJB 3.0] - How to get EntityManager on the fly for custom DB?Hi,

2006-12-19 Thread artemgolubev
Hi, all! Our client wishes the next way of working for our application: On some user input (we have web application + EJB3), we must create new database from a template and use it in our EJB3 environment. I do not know how to implement it in JBoss :( Usually for single datasource we create -ds.

[jboss-user] [EJB 3.0] - Re: Help With EJB 3 & JBoss 4.0.5

2006-12-19 Thread ALRubinger
Can you provide your packaging structure and application.xml? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995111#3995111 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995111 _

[jboss-user] [EJB 3.0] - Re: MDB & EntityManager

2006-12-19 Thread S0d0
Even if em is injected to class level? -Juha- View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995103#3995103 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995103 ___ jboss-u

[jboss-user] [Remoting] - Re: No connection possible after an illegitimate attempt

2006-12-19 Thread [EMAIL PROTECTED]
The problem lies in our use of javax.net.ssl.SSLSocketFactory.getDefault() internally when explicit ssl config is missing (more on this in a min), which can be found within org.jboss.remoting.security.SSLSocketBuilder (line 421). The jdk (at least Sun's implementation) will cache this factory o

[jboss-user] [JBoss Seam] - Re: Problem in writing own annotation in seam

2006-12-19 Thread [EMAIL PROTECTED]
Do you have a value in the field to validate? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995101#3995101 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995101 ___ jboss-u

  1   2   3   >