[jboss-user] [EJB 3.0] - Re: no jboss-service.xml with POJO service bean ...?

2006-09-20 Thread wolfc
Please take a look at the service_deployment_descriptor tutorial. Although it doesn't use attributes it should be no problem to add them. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972812#3972812 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Remote JMS server

2006-09-20 Thread [EMAIL PROTECTED]
I've amended http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingUser_Enabling_access_to_remote_JBoss_Messaging_instance so it's not more general now (it doesn't apply to JBoss 4.0.4 anymore) I also created a completely separated document that explains how to deploy a scoped MDB:

[jboss-user] [EJB 3.0] - Re: EJb 3.0 primary key loose ?

2006-09-20 Thread stephan.opitz
the call for my ejbs from my application is local but at this point i'm in the ejbs and have access only access to injected ejbs private @EJB OrdersFacade ordersFacade; all are stateless, except sessionFacade which i set in my application to get the correct on and have access

[jboss-user] [JBoss Messaging] - Re: Cannot find free port - problem

2006-09-20 Thread [EMAIL PROTECTED]
Well, if the problem is fixed, I don't those log entries anymore :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972816#3972816 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972816

[jboss-user] [EJB 3.0] - Re: EJb 3.0 primary key loose ?

2006-09-20 Thread stephan.opitz
and interface defined hier import java.util.Date; import de.Test.entity.Orders; public interface OrdersFacade { /** * Makes a Orders object persistent * * @param order *Orders object */ public void save(Orders order);

[jboss-user] [JBoss Eclipse IDE (users)] - Generate hbm.xml problem ?

2006-09-20 Thread ericmacau
Hello, How can I generate Hibernate mapping file (hbm.xml) with JBoss-IDE ? I am using Hibernate Annotation, I just want to generate the hbm.xml depends on those annotated class. Can the Hibernate Tools do this ? Best regards, Eric View the original post :

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Generate hbm.xml problem ?

2006-09-20 Thread [EMAIL PROTECTED]
yes (to the extent that the mapping conversions are implemented) note that a bug in the current release prevent it from working in the IDE and only work in the Ant version. The nightly build should work though. View the original post :

[jboss-user] [JBoss Seam] - Re: Integrating Seam and Icefaces

2006-09-20 Thread jerome_082006
Hello, It seems that Seam and Icefaces are not ready for integration yet. See this post: http://www.jboss.com/index.html?module=bbop=viewtopict=90059 Regards, Jerome. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972820#3972820 Reply to the post :

[jboss-user] [JBossCache] - Is it possible that JbossCache can use Jboss Transaction for

2006-09-20 Thread velpandian
Is it possible that JbossCache can use Jboss Transaction for transaction? Doesn any one has any idea how to use Jboss Transaction for JbossCache... Thnx VelPandian View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972821#3972821 Reply to the post :

[jboss-user] [EJB 3.0] - Re: SLSB Local Interface Exception - EjB 3.0 with jboss-4.0.

2006-09-20 Thread vashistvishal
Thanks for yr prompty reply:) that clarifies something. When i say i'm accesing remote ejb interface and local ejb interface from a same cleint. I mean i have the same (only one) JVM on my pc and i'm accesing this from my pc. What i think is different is that my jboss is running inside

[jboss-user] [JBoss Seam] - Integrating Seam and Trinidad

2006-09-20 Thread mrohad
I tried to integrate Trinidad with my current application that already using SEAM/Facelets/Tomohowak/AJAX4JSF it doesn't work , I get a warning (Unsupported component-family/renderer-type) for each trinidad tag I put in my JSFs... anyone done such a thing before(maybe even ADF)? can you please

[jboss-user] [JBoss Seam] - Create component from pageflow

2006-09-20 Thread dgallego
I can't create a component within a seam pageflow: The following code works if the 'contactAction' seam component has already been created, for example when viewing a facelet using it. | start-page name=contactPage view-id=/pages/contacto/index.seam | redirect/ |

[jboss-user] [JBoss Seam] - Re: When a component is not found should Seam warn or fail?

2006-09-20 Thread [EMAIL PROTECTED]
I would agree that some improved kind of debugging of this is needed, it is definitely an important issue when you are starting to use Seam. Also, I know how and why the current code spits out dozens of lines of looking for, found, and not found messages for variable resolution, but I also

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
First iI modify my code in order to delete the jbpmsession, I use now just the jbpmcontext. For creating an processInstance I try to put just after a creation of process instance Collection processinstances=graphSession.findProcessInstances(pd.getId()); but I have an error of transient

[jboss-user] [JBoss Seam] - Re: When a component is not found should Seam warn or fail?

2006-09-20 Thread [EMAIL PROTECTED]
Is there anything in EL that allows you to force existence of a variable ? This is similar to the struggles i had with velocity vs freemarker. Velocity assumes non-existence is ok and just output null where as FreeMarker takes the opposite stance and complains if it does not exist plus having

[jboss-user] [JBoss Seam] - Re: Create component from pageflow

2006-09-20 Thread [EMAIL PROTECTED]
This should work fine: public class SeamVariableResolver implements VariableResolver { | | public Object resolveVariable(String name) throws ELException { |name = name.replace('$', '.'); |return Component.getInstance(name, true); | } | | } View the

[jboss-user] [JBoss Seam] - Re: When a component is not found should Seam warn or fail?

2006-09-20 Thread [EMAIL PROTECTED]
Just write a JSP custom tag: my:assert expression=#{not empty foo}/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972847#3972847 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972847

[jboss-user] [JBoss Seam] - Re: Seam Object in JSP Scriptlet

2006-09-20 Thread [EMAIL PROTECTED]
create a component which holds the constants as properties, and use EL: h:outputText value=#{constants.someValue}/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972859#3972859 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread jits_1998
Post the console log and code for us to see. Try and get only the relevant portion. Also, are all the three instances actually saved in db? Can you do a select * from jbpm_processinstance. If this does not return anything, you can try closing the jbpmContext after saving the process instance

[jboss-user] [JBoss Portal] - Re: JSP changes with live0in support

2006-09-20 Thread [EMAIL PROTECTED]
Those files are not manageable by the CMS. Your files need to be in the CMS server. If you want to display files that are inside your war file, you need to write a portlet that will include the JSP/HTML. The same way User portlet is made. View the original post :

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
This is my file code: public class CreateProcessInstanceAction extends ActionSupport{ | | | | | private String nameProcess; | private String currentNode; | TaskInstance taskinstance=null; | | static

[jboss-user] [JBossWS] - Re: WS-Eventing and subscription expiration time

2006-09-20 Thread [EMAIL PROTECTED]
Well, the idea was that event sinks periodically call 'Renew'. But i'd happily accept that patch in order to make it configreable. Could you create a JIRA for that and attach the diff to it? -- Heiko View the original post :

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread jits_1998
Looking at the code it appears, as alex pointed out, you have not deployed the process definition. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972865#3972865 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972865

[jboss-user] [EJB 3.0] - ejb entity beans need implements

2006-09-20 Thread stephan.opitz
in jboss i get exception if i want to access while not implements Serializable in the ejbs why? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972866#3972866 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972866

[jboss-user] [EJB 3.0] - remote access: save stateful ejb ref in stateful ejb

2006-09-20 Thread stephan.opitz
i have a stateful ejb called session which reference i save in the httpSession of my application in the session i have the object private ActProductInfo actProductInfo = new ActProductInfo(); actual if i use remote access to my ejb this object is never filled so i had the idea to make

[jboss-user] [Security JAAS/JBoss] - Re: unable to secure jmx invoker

2006-09-20 Thread carlabramsson
I see the same exception in my 4.0.4GA, but the adaptor seems to be secured. I can't use shutdown.bat without setting the correct username and password. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972870#3972870 Reply to the post :

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Generate hbm.xml problem ?

2006-09-20 Thread ericmacau
Could you please to give me a simple example for calling the Ant task to generate the hbm.xml from annotated classes? Best regards, Eric View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972871#3972871 Reply to the post :

[jboss-user] [JBossCache] - Re: Minimizing POJOCache impact on existing codebases

2006-09-20 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : | I am working on that very thing. Actually putting together a whitepaper that speaks to JBossCache specifically. | Good! The example POJOs are located under examples distro. There is actually a loodtime directory that is using the special classloader (except it

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Generate hbm.xml problem ?

2006-09-20 Thread [EMAIL PROTECTED]
you mean like this example in the documentation ? http://www.hibernate.org/hib_docs/tools/reference/en/html_single/#d0e1038 :) (note, there is a typo in the spelling of annotationconfiguration but otherwise it should be fine) View the original post :

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
How can I deploy it?? when I do pi = new ProcessInstance(pd); I create an instance of my porcess definition so I thought that I deployed it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972876#3972876 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
ok I found the function jbpmContext.deployProcessDefinition(pd);, but It no resolve my problem because I create a processdefinition for each instance of my portlet but I want just one Instance of my porcess definition instance. In order to have all the porcessInstance View the original post :

[jboss-user] [JBoss Seam] - Re: Create component from pageflow

2006-09-20 Thread dgallego
Thanks Gavin for the response, but where do I need to put that VariableResolver? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972878#3972878 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972878

[jboss-user] [EJB 3.0] - Re: org.jboss.remoting.CannotConnectException: Can not get c

2006-09-20 Thread romanchr
Hi all, With updating to EJB3.0 RC9 our problem has been solved. JBoss handles the ports settings correctly now and we can run it with others then just ports-default. I truly hope the guys from JBoss make it this time to keep the faulty code out and not merge it in again in a later

[jboss-user] [JBoss Seam] - .seam files

2006-09-20 Thread jimcarrey
HI, When I try to access my application I get the following error message? (/myapp/pages/login/login.seam) is not available. when I navigate through my exploded directory structure I cannot see it. What are these seam files? When are they generated? Any clues as to why it is not being generated?

[jboss-user] [JBossWS] - SOAPElement as IN OUT parameters in Web service

2006-09-20 Thread amit_sri
I am developing Document-literal style webservice using wscompile tool bottom-up approach. I have defined an interface in which I am using SOAPElement as in/out parameter. While compilation it gives following error- Type javax.xml.soap.SOAPElement implements more than one interface,

[jboss-user] [JBoss Seam] - Re: .seam files

2006-09-20 Thread bfo81
That's just a mapping. Usually you have .xhtml files, but in the web.xml you say that the web server shall simulate another extension. In traditional JSF it's often like that: Original file: whatever.jsp Acessible via: whatever.faces or faces/whatever (those are two often used ways) Got the

[jboss-user] [EJB 3.0] - Very Silly But Valid Question : Annotation Compiler error

2006-09-20 Thread mandarjboss
Hi All I am developing an application with EJB 3.0. Now I don' t have any IDE. I have written a Simple Stateless session bean may be a bean that simply returns you the Hello message.Sice it is EJB3.0 compliant it contains Annotations. But When I compile the class ,I get an error

[jboss-user] [JBoss Portal] - Re: Facing problem in getting the portal

2006-09-20 Thread raj.shanmug
There is no prerequiste as such. The basic thing i need to install the JBoss As and Portal from Binary and i need to develop a portlet and using JSR 168 i need to interface the same with an external system. In 4.04 GA there is run.bat file in the root/bin. Since am using a Windows xp OS i

[jboss-user] [JBoss Seam] - Increase logging in Seam

2006-09-20 Thread jimcarrey
Hi, I am using Seam, the Embeddable EJB container and Tomcat. Simple question, how do I increase the logging in Seam? Many thanks Jim View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972888#3972888 Reply to the post :

[jboss-user] [JBoss Seam] - Problem outjecting a field

2006-09-20 Thread taprogge
Hi! I have a problem here which I have been unable to solve... I have here two statufel Seam session beans. One uses the DataModel and DataModelSelection mechanism to fetch some data rows. The other is used to edit an item from that list. What I have done is this: I added a getter for the

[jboss-user] [JBoss Portal] - Problem with the portal display

2006-09-20 Thread raj.shanmug
I am unable to see the CMS login portlet in the admin page. and also the default page is missing the JBoss portal portlet. What could be the reason for things are not been focused here. Is there any problem with my installation. Please advise. ---Raj [/img] View the original post :

[jboss-user] [JBoss Seam] - Re: PAGE scope DataModel's selection not correct

2006-09-20 Thread Holy Joe
I made a cheap hack in outjectDataModelList() in Component.java that made things work as I expected (for a page-scoped DataModel in a session-scoped bean). I changed this: | context.set( name, wrapper.wrap(dataModelAnn, list)); | to this: | if(existingDataModel != null) {

[jboss-user] [JBoss Messaging] - Re: Remote JMS server

2006-09-20 Thread mskonda
I have scoped an MDB with four jars mentioned in the doc and deployed. It complains about ClassNotFoundException on JBossConnectionFactory. | Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: org.jboss.jms.client.JBossConnectionFactory (no security manager: RMI class

[jboss-user] [JCA/JBoss] - InUseConnectionCount continously increasing...

2006-09-20 Thread oguz.dag
Hi, I am watching one of my connection pool (most used) using JMX-Console for a while... Eveything goes fine except InUseConnectionCount is increasing nearly by 1 per hour... I know it should be increased and decreased according to the usage of system... I can see that movement... But per

[jboss-user] [JBoss Seam] - Re: Problem outjecting a field

2006-09-20 Thread taprogge
Well, I found the answer, but that raises even further questions... It turned out, I had different names for my Charge entity and the fields in my session beans. So the field was not correctly outjected and thus overwritten with null when being injected again on the next method call. After

[jboss-user] [JBoss Messaging] - Re: Remote JMS server

2006-09-20 Thread timfox
I know you are not using 4.0.4 in your project, but can you try it on 4.0.4 then we can isolate whether the problem is related to 4.0.3? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972896#3972896 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - TLS connection established even though X509 cert expiry date

2006-09-20 Thread seanduddy
Hi, I have configured my JBOSS 4.03SP1 to use TLS for its EJB stateless bean connections. I have verified that TLS is infact inplace and once I remove my truststore from my client I can no longer communicate with the JBOSS server(No cert found exception). However my self signed cert which is

[jboss-user] [EJB 3.0] - Re: entityManager.find() returns null

2006-09-20 Thread tboswell
It turns out our friend wolfc is correct. Oracle will return either a CHAR(8) or VARCHAR2(8) value padded out with spaces till the end. Only a search for: entityManager.find(Language.class, en ); will return the correct row. This works fine when you are following relationships etc as

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread jits_1998
Well if the process definition is different for each of the portlets then you cannot get the instances. Ideally, you should deploy the process definition and each of your portlets should be creating an instace of the definition, then after saving the process instances created by the portlets,

[jboss-user] [Security JAAS/JBoss] - Re: How to marshall principal/credentials from client login

2006-09-20 Thread daviddpark
I originally did not use @ as my UNIQUETOKEN because logins can be email addresses, but there's surely nothing wrong with splitting on lastIndexOf(@) rather than String.split()... Although a good idea, this doesn't help me with my particular problem. It matters not how the two strings are

[jboss-user] [EJB 3.0] - Re: entityManager.find() returns null

2006-09-20 Thread tboswell
Sorry for the confusion but I have successfuly got it working with a VARCHAR2() column. First of all I set the table up like this: CREATE TABLE CURRENCY | ( | CURRENCY VARCHAR2(8 CHAR) NOT NULL, | ... | ) This yielded the same sorry result of padding chars.

[jboss-user] [JBoss jBPM] - org.hibernate.TransactionException: Transaction not success

2006-09-20 Thread jacobo
Hi there, i am having the exception above mentioned, I would appreciate very much if someone could help me. I have this methods: public class GexpRequestProcessor extends TilesRequestProcessor { public void process(HttpServletRequest request,HttpServletResponse response) throws IOException,

[jboss-user] [EJB 3.0] - Re: using GenerationType.TABLE - ERROR [MultipleHiLoPerTable

2006-09-20 Thread fbadt
Right. Use FOR UPDATE to get a row lock. The hibernate code appears to do this so it can udpate the counter in an atomic transaction. That seems fine. Not sure what you are trying trying to convey. Can you restate or email me in private? View the original post :

[jboss-user] [JBoss Seam] - Re: Problem outjecting a field

2006-09-20 Thread msteiner
Look at value attribute of @Out and @In annotations. It lets you specify name of the component. So you can do something like this: | @Out(value=charge1) | private Charge chargeItem1; | | @Out(value=charge2) | private Charge chargeItem2; | | View the original post :

[jboss-user] [EJB 3.0] - Re: Very Silly But Valid Question : Annotation Compiler err

2006-09-20 Thread ScottDawson
The @Stateless annotation is in the javax.ejb package so you need this import: import javax.ejb.Stateless; In the JBoss EJB3 implementation, the Stateless class is located in jboss-ejb3x.jar. Regards, Scott View the original post :

[jboss-user] [JBossCache] - Re: JBoss Cache (PojoCache) with Hibernate Collections (Pers

2006-09-20 Thread nniv
The simple way to overcome the Hibernate collections' problem is to copy the contents of the collection in your object to a standard Java collection property before putting the object in the cache (e.g., in each setter method which Hibernate uses, replace the incoming Hibernate collection with

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
yes but i must execute my process by lot of poeple who are very differnete client of a compagny, then a secretary, a manager and I will not take each person in order to do each work on the same computer. So I want to create an isntance of process and execute by different instances of portlets.

[jboss-user] [JBoss Seam] - Re: Problem outjecting a field

2006-09-20 Thread taprogge
Thanks, that was exactly what I was looking for :) Regards, Phil View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972916#3972916 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972916

[jboss-user] [JBoss Seam] - About the Plugins using in between the Eclipse and JBoss

2006-09-20 Thread m_kiran_s
Hai, I am new to the environment of Jboss and Eclipse, Right now my project is going on in Linux environment and i want to know that what is the need of plugins in this environment, any one can assist me on this please View the original post :

[jboss-user] [EJB 3.0] - Re: Oracle insert with SELECT missing

2006-09-20 Thread srbox
Epilog: By accident, I finally found out what caused the error - Incorrect mapping of class field/method to a column (in my later case it was filed comment on the column comments). It has nothing to do with batch support and alike. tnx to everyone who tried to help out a noob ;) View the

[jboss-user] [JBoss Portal] - Re: Facing problem in getting the portal

2006-09-20 Thread [EMAIL PROTECTED]
4.0.4.GA is out, please use this one instead of the candidate for release. 2.4.GA is out as well, don't use the alpha version. If you don't understand release names, please refer to: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossProductVersioning View the original post :

[jboss-user] [JBoss Eclipse IDE (users)] - Error when i stop an different server configuration director

2006-09-20 Thread chrisabovo
I started 2 server configuration directory, default and test. default use a binding port 1099 (default port). test use a binding port 2099. i'm using JBoss AS 4.0.4.GA and JBoss-IDE 2.0.0.beta1 but when call stop test server, he call shutdown on port 1099... how can i configure a port for test

[jboss-user] [EJB/JBoss] - alter-table with mysql possible?

2006-09-20 Thread stefanraabe
I have a problem with alter-table it does not work. Everytime if i use that it will be ignored or callback only Failure. Is there any solution. Background is for example to make the update process during development and work easier. I work Jboss 4.0.3 and MySQL 5.0. Thanks for answer. *

[jboss-user] [JBoss Seam] - Re: Problem outjecting a field

2006-09-20 Thread texan
Or, you can use the @Roles annotation in the bean itself to indicate that it has more than one name (and possibly different scope for each name) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972927#3972927 Reply to the post :

[jboss-user] [JBoss AOP] - Problem with hot deployment and ClassLoader functionalities

2006-09-20 Thread robotics
I read Jboss AOP framework documentation, about hot deployment and run time aspects because I want to be able to activate/deactivate aspects during execution of my applications. I use the AspectManager class and AspectXmlLoader class to load xml tags during runtime and I saw that it works well;

[jboss-user] [JBoss Seam] - Re: Interceptor error

2006-09-20 Thread mikeeprice
What was the help? I think I need the same help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972928#3972928 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972928 ___ jboss-user

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging locked up

2006-09-20 Thread etolson
If it sheds any light, I get the following error when running the test ant script (section 5.3 of http://labs.jboss.com/file-access/default/members/jbossmessaging/freezone/docs/guide-1.0.1.CR4/html_single/index.html#installation): /u/etolson/downloads/jboss-messaging-1.0.0.GA/examples/queue ant

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
I found the error: that is I missed to collse the context : jbpmContext.close();. Now I have my porcess definition instance View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972930#3972930 Reply to the post :

[jboss-user] [JBoss AOP] - Re: Problem with hot deployment and ClassLoader functionalit

2006-09-20 Thread [EMAIL PROTECTED]
For it to be possible to attach aspects to a particular method/field, you need to prepare those joinpoints as you mention. In effect this means weaving of the class, and this can only take place at compile-time (aopc) or when the class is first loaded (using the classloader hooks). Once the

[jboss-user] [JBoss AOP] - Re: Call to Stateless Session Bean within interceptor ends t

2006-09-20 Thread [EMAIL PROTECTED]
If one of you can create a small sample app and attach it to a jira issue I can take a look View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972932#3972932 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972932

[jboss-user] [JBoss Seam] - Re: Create component from pageflow

2006-09-20 Thread [EMAIL PROTECTED]
You shouldn't need to do anything, that is built in to Seam. What I'm trying to say is that any Seam component should be auto-instantiated by the jBPM variable resolver. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972933#3972933 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging locked up

2006-09-20 Thread timfox
Your environment sounds pretty messed up. You get this error when you attempt to run JDK1.5 compiled classes using JDK1.4 The actual class is java.lang.Object (!), so you probably have the JDK1.5 rt.jar on your classpath. View the original post :

[jboss-user] [JBoss jBPM] - Database description

2006-09-20 Thread mduarte
Hi all, I am using jBPM in my project and for my company I need to describe each table and column used by jBPM. Is there any documentation about that, without need look the source code? tks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972935#3972935

[jboss-user] [JBoss AOP] - Re: aop and eclipse rcp

2006-09-20 Thread [EMAIL PROTECTED]
I'm not sure I understand the question, please provide more detail. Typically what you would do would be to initialise the AspectManager with an -aop.xml file using the AspectXmlLoader so that all the bindings are available, and then from within your classloader call AspectManager.translate()

[jboss-user] [JBossCache] - Re: Distributed Transactions in Standalone Mode

2006-09-20 Thread velpandian
Any luck in trying JbossCache as stand alone and running under distributed transaction? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972938#3972938 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972938

[jboss-user] [JBoss Seam] - Re: PAGE scope DataModel's selection not correct

2006-09-20 Thread [EMAIL PROTECTED]
I still don't understand the problem, but is it similar to this JIRA issue: http://jira.jboss.com/jira/browse/JBSEAM-308 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972937#3972937 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - list all active HTTP-Sessions

2006-09-20 Thread thomas78
Hi, I tried to view all acitve HTTP-Sessions. but I get an very strange error: here is the code i used: MBeanServer server = MBeanServerLocator.locateJBoss(); | ObjectName oname = new ObjectName(jboss.web:type=Manager,path=/,host=localhost); | | String sessionids =

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Error deploying JSP in a WAR file

2006-09-20 Thread xinwan2000
Hi, I am new to JBoss 4. I created a war file with all jsp files in root dir and all supporting classes in /WEB-INF/classes/ dir. However, when I tried to load the jsp page, the JBoss server could not find the classes. Thank you very for help Joe View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: Strange: access rights lost

2006-09-20 Thread Annegret
Hi again, I found out that not the access rights were lost but only the username has been overwritten (which we use to get additional information from a database). I've added support for an unauthenticated identity in our selfwritten ServerLoginModule the same way it's done in the sample

[jboss-user] [JBoss Messaging] - Re: Remote JMS server

2006-09-20 Thread mskonda
I tested on 4.0.4, looks like the problem still exists! When I scope the MDB jar and deployed to server, I get NCFE on JBossConnectionFactory!! | javax.naming.CommunicationException [Root exception is java.lang.ClassNotFoundException: No ClassLoaders found for:

[jboss-user] [JBoss Portal] - Re: How can I set the language for all portlets in the porta

2006-09-20 Thread Red Eagle
Hi @ all, i have a similiar problem like rkiesi. I want to change the localization of the whole portal without userlogin! I have build up a jsf portlet which contains a combo box where you can select your language and i store the selected language in the session: Code inside my managed bean:

[jboss-user] [JBoss jBPM] - Re: Database description

2006-09-20 Thread kukeltje
Come on.. PLEASE. there is a link just above THIS post in THIS forum. It is even sticky. guess what is says I hope this is not going to be sympomatic... sigh... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972945#3972945 Reply to

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Need to tell Tomcat not to create a new session for a subdom

2006-09-20 Thread jeff_hickey
We have a requirement to use a different URL for SSL and non-SSL sections of our website. The problem we run into is that Tomcat recognizes this as a new request and creates a new session ... which is correct according to the spec but does not help us. Anyone know how to config Tomcat/JBoss

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Need to tell Tomcat not to create a new session for a su

2006-09-20 Thread jeff_hickey
I should of clarified that the SSL domain is a subdomain (secure.mydomain.com) of the non-SSL (www.mydomain.com) domain. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972947#3972947 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Remote JMS server

2006-09-20 Thread timfox
jboss-aop.jar, jboss-remoting.jar, jboss-serialization.jar need to be in the lib directory, mdb.jar doesn't. Have you followed the instructions Ovidiu created on http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingUser_Deploying_a_scoped_MDB_containe Can you send me and Ovidiu your ear

[jboss-user] [Installation, Configuration Deployment] - Re: Net-SNMP, community !~ public, JBOSS-4.0.4.GA

2006-09-20 Thread pako
I solved the problem by changing perl module. The perl module to be used is SNMP. As CPAN states: SNMP - The Perl5 'SNMP' Extension Module for the Net-SNMP SNMP package. The core of my perl script now is: | my %snmp_server = ( | hostname = $host, | communit

[jboss-user] [JBoss jBPM] - Re: Multiinstances of the same process

2006-09-20 Thread antitrust1982
how can I delete after using a porcessdefinition deployement. Because I have a creation of a processdefinition deployement for each instance of a processInstance. But When it is finished I have always the old processdefinition deployement. thank you for you help antitrust1982 View the

[jboss-user] [Installation, Configuration Deployment] - Re: java.lang.NoClassDefFoundError: org/jaxen/JaxenException

2006-09-20 Thread jiwils
Try scoping your EAR. Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration which describes how to do this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972951#3972951 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - Publish on internet

2006-09-20 Thread vgarcia
First of all, i'm sorry for my english, i'm spanish. We have a jboss application server with an application running without problems, and now we want to publish this application in internet, how we have to configure the jboss to achieve this? Thanks in advance. View the original post :

[jboss-user] [JBoss Messaging] - Re: Remote JMS server

2006-09-20 Thread mskonda
The structure of my ear is as follows: +-META-INF || |+-- MANIFEST.MF |+-- application.xml |+-- jboss-app.xml | +---lib || |+-- jboss-messaging.jar |+-- jboss-aop.jar |+-- jboss-remoting.jar |+-- jboss-serialization.jar

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging locked up

2006-09-20 Thread etolson
We use 1.5, so yes I have the JDK 1.5 rt.jar on my classpath - does JBoss messaging require Java 1.4? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972954#3972954 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972954

[jboss-user] [JBoss Seam] - Re: PAGE scope DataModel's selection not correct

2006-09-20 Thread cmrudd
The core of the problem is that even though the actual list instance that is being wrapped did not change, the code outjects a new wrapper. If the code is updated to preserve the existing wrapper if the underlying wrapped data is not changed then the problem goes away. (This is the fix proposed

[jboss-user] [JBoss Seam] - Re: PAGE scope DataModel's selection not correct

2006-09-20 Thread cmrudd
Ignore that last paragraph, I rewrote the message and didnt realize I had that at the bottom =) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972956#3972956 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972956

[jboss-user] [JBoss Seam] - Seam magic on non-seam-components?

2006-09-20 Thread Eekboom
I haven't found it in the reference: Does bijection, context demarcation, and validation work on SLSBs and SFSBs even if those beans are not Seam components (i.e. have no @Name annotation)? My understanding is that it could work, because the seam interceptor defined in ejb-jar.xml applies to

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Cannot start JBoss4 Server from IDE2

2006-09-20 Thread vmnokso1
I wonder, if you have defined your server successfully. This happens by opening first the JBoss Server View Windows = Show view = Other.. = Server = JBoss Server View Then by right-clicking Jboss Server View = New = Server = Server window with name and home directory information When you have

[jboss-user] [JBossWS] - Re: Handling anyType

2006-09-20 Thread c_eric_ray
I to am affected by this problem. Where can I find instructions on how to get the src and build it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972959#3972959 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972959

[jboss-user] [JBoss Seam] - Re: PAGE scope DataModel's selection not correct

2006-09-20 Thread Holy Joe
Thanks! I didn't see that issue when I searched for DataModelSelection incorrect (and a few others). Next time I'll do a more general search (like just DataModelSelection) and browse through all the results. Is this something I can volunteer to fix? I've never contributed before, but I'll

[jboss-user] [Messaging, JMS JBossMQ] - Re: JMS Interface

2006-09-20 Thread soussou97
Hi; How JBoss does not provide an interface of communication between JBossMQ and MicroSoft plateforme ? If I have an application (dll ou exe) under MS which want send/receive event to JBossMQ in mode async = which is the solution ? Regards; View the original post :

[jboss-user] [JBoss/Spring Integration] - Jndi lookup on spring factory return 'null'

2006-09-20 Thread jissma
hello, I'm trying to deploy a spring application (no EJB inside only POJO class) with deployer ( Jboss 4.0.2 : the one packaged with jbpm) i export a jar(test3.spring) from eclipse and place it in deploy folder, when i watch the log everything seam to be ok : i get the following message : Bean

[jboss-user] [EJB 3.0] - Re: no jboss-service.xml with POJO service bean ...?

2006-09-20 Thread wenbozhu
Thanks for the response. However, that's where I noticed the problem: in this tutorial, and the service bean tutorials, the jboss-service.xml obviously is not used - even it's left there (only with the following content): ?xml version=1.0 encoding=UTF-8? I also tested with some my own

  1   2   3   >