[jboss-user] [JBoss jBPM] - Re: Deleting data from jbpm tables in database

2006-11-05 Thread kukeltje
Bytearraysnothing odd, by design. The processdefinition and all accompanying data is stored that way in blocks of configurable size. The other rows are always related to a 'first row'. There are kind of sequencenumbers in there (cannot tell you the details now since I do not have access to

[jboss-user] [JBoss jBPM] - Re: creating a new user

2006-11-05 Thread kukeltje
or directly in the database. Search the forum. More info on adding users is there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983278#3983278 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983278

[jboss-user] [JNDI/Naming/Network] - Re: The JNDI problem when deploying the JPetStore with jboss

2006-11-05 Thread jzhuqlfeixia
I'm so sorry that the network in my office is so bad that I'can get on the JBoss's website recetly. ?? The entire exception stacktrace is as follow: | eanSupport.java:245) | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | at

[jboss-user] [JBoss Seam] - Re: Very strange exception

2006-11-05 Thread conanchan
Me 2 have this similar problem, my env is: JBoss 4.05 GA JSF (MyFace 1.1.1) @Remote public interface HelloWord { public String getHello(); } HelloWordBean:- @Stateless public class HelloWordBean implements HelloWord { public static final String RemoteJNDIName =

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Generating EJB 3 with life-cycle methods using hibernate

2006-11-05 Thread A_titov82
:-( Hibernate code generation can transform MyClass... | public class MyClass { | private String name; | public String getName() { | return name; | } | public void setName(String name) { | this.name = name; | } | } | to this...

[jboss-user] [Installation, Configuration Deployment] - [b] can't read arabic language

2006-11-05 Thread Mohab
hi everyone i had deployed Project on JBOSS AS, when i run the project i call it from url the problem occurse when i send arabic language parameters in the url, it couldnt encode it and convert it into ??, does any body know how to configure the JBOSS to read arabic language, and sorry if this

[jboss-user] [Security JAAS/JBoss] - Re: Error 403 when using DatabaseServerLoginModule

2006-11-05 Thread jaikiran
I tried your example and it did not work even in my case. Did some changes and it started working. Here's what i did: 1) Change the schema of the tables: User table: | | CREATE TABLE `users` ( | `userid` varchar(255) NOT NULL default '', | `Password` varchar(255) NOT NULL default

[jboss-user] [JBoss Seam] - Re: Combination of JBoss and Seam release that works

2006-11-05 Thread rajeshv7
Since, there is a restriction in the number of lines that could posted I am just list the error portion of the message. The following are the errors in the log. 16:38:46,336 ERROR [[/seam-booking]] Exception sending context initialized event to listener instance of class

[jboss-user] [JNDI/Naming/Network] - Re: The JNDI problem when deploying the JPetStore with jboss

2006-11-05 Thread jaikiran
You will have to map the resource ref with the jndi name of your datasource. Here's the jboss-web.xml file that you will have to create(if its not already there in your JPetStore's WEB-INF folder): | ?xml version=1.0 encoding=UTF-8? | !DOCTYPE jboss-web PUBLIC -//JBoss//DTD Web Application

[jboss-user] [JBoss Seam] - Re: Combination of JBoss and Seam release that works

2006-11-05 Thread rajeshv7
Ok, I downloaded jboss-seam-1.1.0.BETA1 and deployed the examples in the same installation of JBoss 4.0.5 GA and it works. Though I don't have the answer for the ssues that faced with the samples from jboss-seam-1.0.1.GA, atleast something works for me to get started. Thanks Peter Muir. View

[jboss-user] [Security JAAS/JBoss] - How do you secure static content?

2006-11-05 Thread jfrankman
I have created a context in the jbossweb-tomcat55.asr for sharing documents. However, I want to protect this context with a security constraint. To the best of my knowlege I have everything set up correctly, but a user is not prompted for a username/password and the context is still accessible

[jboss-user] [JBoss Seam] - Re: using links with themeSelector instead of selectOneMenu

2006-11-05 Thread Basel
I am lost Gavin. Are you suggesting that I used a page parameter for every page in my web application? It would be nice to have the following in components.xml: | component name=themeSelector | property name=availableThemes | valueoriginal/value |

[jboss-user] [EJB 3.0] - Re: EJB3 WebServices

2006-11-05 Thread dasariprasad
I had tested one webservice example in jboss4.0.5GA ejb3(version RC9, i suppose) the following are files SimpleWS.java package com.htc.htcws; import javax.ejb.Remote; @Remote public interface SimpleWS extends java.rmi.Remote { public String greet(String person) throws

[jboss-user] [JBossWS] - Re: Consuming a web service from an EJB3 stateless sb

2006-11-05 Thread aboudank
Sorry...it seems that the my last post got chopped off...here is the complete stack trace: | 2006-11-05 17:50:44,953 DEBUG [org.jboss.ws.jaxrpc.ServiceObjectFactory] Create jaxrpc service from wsdl | 2006-11-05 17:50:44,953 DEBUG [org.jboss.ws.deployment.JSR109ClientMetaDataBuilder] START

[jboss-user] [JBoss Seam] - Re: Very strange exception

2006-11-05 Thread gus888
I guess that the exception listed in first thread was from Tomahawk tree2 component. When using tree2 with facelets, it needs a Tree2TagHandler. The code is listed as follows(from myfaces wiki), but I haven't got chance to test it. import java.util.Map; | | import

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread nittm
we're using ant version 1.7 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983310#3983310 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983310 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: using links with themeSelector instead of selectOneMenu

2006-11-05 Thread [EMAIL PROTECTED]
OK, if you want to do it that way, just use: component name=themeSelector | property name=availableThemes | valueoriginal/value | valuedark/value | valuecustom/value | /property | property name=cookieEnabledtrue/property | property

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread [EMAIL PROTECTED]
Notice that the getting started guide tells you to use Ant 1.6, not some beta release of Ant. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983312#3983312 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983312

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread nittm
oh! so that was the problem with the build. ok, that fixed it.. now i can build all of the examples BUT i still have the same problem with all of them.. i get this error in the console (on the server startup): org.jboss.deployment.DeploymentException: ejb-jar.xml must either obey the

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread [EMAIL PROTECTED]
The getting started guide also tells you to install JBoss with the ejb3 profile. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983315#3983315 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983315

[jboss-user] [JBoss Seam] - Frameset Seam

2006-11-05 Thread bluetrade
Hi, I have a frameset and I would like to define the lower frame on the fly, so I have in my template | frameset rows=45,* frameborder=NO border=0 framespacing=0 | frame src=top.seam noresize=-1 name=top scrolling=NO/ | frame src=lower.seam name=main/ | /frameset however, If I use

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread nittm
right you are again, but i did that well, actually, when i installed the jboss as i selected the 'all' button instea,d of the ejb3, that's not good? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983317#3983317 Reply to the post :

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread [EMAIL PROTECTED]
No thats not good. We have very carefully written instructions that tell people *exactly* what to do to get started, so that we don't have to waste their time and ours with forum threads like these. Please follow the instructions exactly! Sheesh! View the original post :

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread nittm
sorry about that.. my bad. we just thought that by 'all' we get all of the options now everything works great!!! again, i'm sorry for wasting everyones time. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983320#3983320 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Memory leak in PermGen space in 4.0.4

2006-11-05 Thread modoc
I'm seeing the same memory issues with Jboss 4.0.5 EJB3 profile running seam. I have a VERY small/simple app. It uses a timer to run a method on a Seam component which is application scoped. After 10-12 hours it starts throwing the permgen memory errors. Is there any solution other than

[jboss-user] [JBoss Seam] - Re: problems using jboss/seam

2006-11-05 Thread nittm
good, at least we might of saved other people some time... thanks again for everything, you're doing a great job! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983324#3983324 Reply to the post :

[jboss-user] [EJB 3.0] - jboss.xml is ignored?

2006-11-05 Thread jan_bar
Hi, I am trying to configure my EJB3 MDB, but the configuration-name in jboss.xml seems to be skipped (at least in JBossDDObjectFactory). It is also not clear to me when the server/default/conf/standardjboss.xml is read by JBoss, it seems it is ignored too. The only class that seems to load it

[jboss-user] [EJB 3.0] - Re: Column name clash with SQL keyword

2006-11-05 Thread jan_bar
I don't know if this question is so trivial so nobody bothers to answer or I breaked some nettique or simply everybody lives with it and use artifficial property names to avoid column name clashes? Or am I simply ignored by this forum? Thanks, Jan View the original post :

[jboss-user] [JBoss Seam] - Re: Seam 1.1 beta 1

2006-11-05 Thread [EMAIL PROTECTED]
bpatters wrote : HUGE kudo's for the facelet support of parameters in action expressions! | | Being able to do: #{contact.addContact(c)} has really simplified some the things I'm trying to do. | | | One thing, I don't know if this is a bug or I'm misunderstanding something but:

[jboss-user] [Management, JMX/JBoss] - JConsole integration

2006-11-05 Thread johnmm1997
Hello, I'm trying to attach JConsole to JBoss messaging standalone. running jdk 1.5.06, jboss 4.05 I put the java opts as instructed in the wiki faq, but when i try to connect with the JConsole, i get an exception - java.lang.IllegalArgumentException: java.lang:type=Runtime not found in the

[jboss-user] [Messaging, JMS JBossMQ] - Jboss messaging install- table not found?

2006-11-05 Thread johnmm1997
Hello, I'm trying to install the jboss messaging standalone. The default was fine... then i tried to switch to oracle: removed the default ds... put the oracle-ds from the examples... changed the relevant parameters there. when i start the jboss messaging, there is an oracle exception table not

[jboss-user] [Beginners Corner] - Re: Wanted: Web based Application for System Analysis - Is

2006-11-05 Thread genman
You're looking for free systems advice? Seems like you need a consultant. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983331#3983331 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983331

[jboss-user] [Security JAAS/JBoss] - Re: Custom Password encryption on authentication

2006-11-05 Thread VAkuthota
Hi, I have the same requirement. I tried as you said. but it seems that it is not invoked. everytime user login failing. I just did what you said.. I even enabled the trace logging, There it shows my custom login module is loaded. But it is failing. Do i need do anything else to make it

[jboss-user] [Clustering/JBoss] - Re: RoundRobin, new cluster member SFSB == NPE

2006-11-05 Thread [EMAIL PROTECTED]
Sorry to get back to you late. I have finally got a chance to try to reproduce your problem. I am using the latest jboss-4.0 src (of which should be very close to 4.0.5.GA). But I can't reproduce your problem. I have the current cluster counter test running and then have a new node startup to

[jboss-user] [JBoss Seam] - The value of seam cannot be acquired with JSF.

2006-11-05 Thread kumachan
Hello. I have my first simple program of ejb3 by using Seam and JSF. Though I tried ajax by this program The value acquired from the entity bean cannot be displayed as an element of JSF. The parameter passed by ajax in the session bean can be acquired, and DB can be accessed. The value of the

[jboss-user] [EJB/JBoss] - EJB making a remote call to another EJB

2006-11-05 Thread sevenoaksis1
We need EJBs on one JBoss machine to call other EJBs (mostly MDBs but also stateless session beans) on another JBoss machine. I can only find references to using the usual client code to call a remote EJB, which obviously we can encapsulate in a stateless session bean which will do the job

[jboss-user] [Beginners Corner] - Re: JBoss Ceritification

2006-11-05 Thread rameshkumar132
Nope. The URL is having the details about the Exams, fees and many things but not the sample questions or something like that. - RK View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983348#3983348 Reply to the post :

[jboss-user] [JBoss Seam] - Re: The value of seam cannot be acquired with JSF.

2006-11-05 Thread kumachan
Hello johnurban! Thank you for the reply. No error has gone out. Contents of the text box write and it doesn't change though the message of Already that has been registered is displayed though it is a program that registers ID, the name, and the password though I want to make the value

[jboss-user] [Installation, Configuration Deployment] - Re: How to stop Jboss Schedular programatically

2006-11-05 Thread harshi
Thank you very much :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983350#3983350 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983350 ___ jboss-user mailing list

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JBoss 3.2.5/MySQL 4.0 ejbCreate throws NullPointer excep

2006-11-05 Thread pintovc
Here is my ejb-jar.xml file ?xml version=1.0 encoding=UTF-8? !DOCTYPE ejb-jar PUBLIC -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN http://java.sun.com/dtd/ejb-jar_2_0.dtd; ejb-jar ![CDATA[No Description.]] display-nameGenerated by XDoclet/display-name enterprise-beans

[jboss-user] [JBoss Portal] - Re: Portal 2.4 + JSF + IPC Navigation not properly navigatin

2006-11-05 Thread frankr
I'm also working on IPC using JSF and experience the same behavior as you mentioned: the target portlet shows the source view instead of the destination view. Changing the STATE SAVING to client makes it work in Fire Fox but then Internet Explorer 7 does not accept the URL anymore... When I

[jboss-user] [JBossWS] - Does jboss-4.0.4 with jbossws-1.0.2 fully support soap12 bin

2006-11-05 Thread Adeel
I see some code related to soap12 binding in jbossws-1.0.2 code. Is it a complete implementation. If not, then which version of jbossws has the complete support for soap12? Does jbossws also depend on wsdl4j-1.6 soap12 soap extensions? If yes then when will jboss upgrade its wsdl4j to support

[jboss-user] [Clustering/JBoss] - httpsession replication

2006-11-05 Thread littlefish
Can we form more the two server to run session replication in same partition?THX View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983358#3983358 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983358

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JBoss 3.2.5/MySQL 4.0 ejbCreate throws NullPointer excep

2006-11-05 Thread pintovc
I performed a Select * from userprofile from the MySQL query browser and it worked fine. The mysql check shows that the database is running fine. The JBoss log indicates that it is able to locate and connect to mySQL datasource. View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JBoss 3.2.5 MySQL 4.0 finder Method gives a Finder Excep

2006-11-05 Thread pintovc
I performed a Select * from userprofile from the MySQL query browser and it worked fine. The mysql check shows that the database is running fine. The JBoss log indicates that it is able to locate and connect to mySQL datasource. View the original post :

[jboss-user] [JBoss Seam] - Re: Does anyone use @Rollback?

2006-11-05 Thread paulie!
[EMAIL PROTECTED] wrote : This is NOT the right way to implement atomic conversations! You are supposed to either do your work outside a transaction, or use @Begin(flushMode=FlushMode.MANUAL). | Wow I got an exclamation mark! AND capitals! We have been using Seam for a year now and have

[jboss-user] [JBossCache] - How to configure Jboss cache in to Jboss server

2006-11-05 Thread crr
hi, Please tell me how to configure JBossCache-1.2.3 in to jboss-4.0.2 server. Thanks crr View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983362#3983362 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983362

[jboss-user] [JBoss Seam] - Re: The value of seam cannot be acquired with JSF.

2006-11-05 Thread sbryzak2
Turn debug on in Seam remoting so that you can see that the request and response xml is valid. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983367#3983367 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3983367

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Unable to Connect to C3P0 Connection Pool with JPA under 4.0

2006-11-05 Thread jantzen
Hi All, I'm attempting to connect to a PostgreSQL database via a database pool and seeing some odd behavior: JBoss 4.0.5 c3p0-0.9.1-pre6.jar PostgreSQL 8.1 It looks to me that the pool is starting correctly, as I see it in the logs | 22:26:16,920 INFO [C3P0PooledDataSource] Bound C3P0

[jboss-user] [Management, JMX/JBoss] - Re: auto redeploy dynamic mbean on JBoss restart

2006-11-05 Thread cnsxxx09
Hi, Three final problems before I have this working 100%. 1. Classloader. I have all my code neatly contained in a .war package. Now, when I use the Deployment Service it creates an independent XML service file in the deploy/ directory. JBoss cannot then find my MBean class file to load it.

[jboss-user] [JNDI/Naming/Network] - Re: RMI requests fails when a jboss server is starting

2006-11-05 Thread avandenabeele
I search a JNDI filter, like a web filter perhaps ... ? testing if the application has been fully deployed ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3983370#3983370 Reply to the post :

[jboss-user] [Management, JMX/JBoss] - Re: auto redeploy dynamic mbean on JBoss restart

2006-11-05 Thread cnsxxx09
(ok, the XML in my post wasn't escaped, so I'll try that bit again ... the default value I pass in like this lt;attribute access='read-only' getMethod='getId' setMethod='setId'gt; lt;descriptiongt;MBean Attribute.lt;/descriptiongt; lt;namegt;Idlt;/namegt;