[jboss-user] [JBoss AOP] - dynamique AOP

2008-01-05 Thread belabed
hi, 
I wante to use Dynamique AOP with EJB 3 , it's possible.
please I need some help.

thanks

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117357#4117357

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117357
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - BindException on Ubuntu

2008-01-05 Thread hubaghdadi
Hi.
I installed JBoss4.2.2 on Ubuntu 7.10
Upon starting the server, I got java.net.BindException
as the port 8009 is already in use.
Any ideas?
Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117356#4117356

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117356
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - For BMP entity beans, ejbStore() is not called after commit.

2008-01-05 Thread reckless_jack
I am using a session bean as session facade with bean managed transaction. It 
is performing transaction on two customer entity bean.

The session bean withdraw money from one customer's account and deposit in 
other customer's account.It successfully withdrawing and depositing in 
customers accounts.For customer entity bean i have set transaction attribute is 
Required.

But the problem is---the changes in customers account are not reflected in 
database.

Doing some introspection i found that ejbStore() is not called after commit.
further ejbPassivate() is called directly.

can any one tell me why ?
plz help me out.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117355#4117355

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117355
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Method call 1000 times slow in object using @In than new

2008-01-05 Thread zaya
A test case:

 
  | @Name("test")
  | @Scope(ScopeType.CONVERSATION)
  | @AutoCreate
  | public class Test {
  | 
  | TestMethod testMethodNew = new TestMethod();
  | 
  | @In("testMethod")
  | TestMethod testMethodIn;
  | 
  | public void test(){
  | System.out.println("start,In:" + System.currentTimeMillis());
  | for(int i=0; i<1000; i++) {
  | testMethodIn.dummy();
  | }
  | System.out.println("end  ,In:" + System.currentTimeMillis());
  | 
  | System.out.println("start,New:" + System.currentTimeMillis());
  | for(int i=0; i<1000; i++) {
  | testMethodNew.dummy();
  | }
  | System.out.println("end  ,New:" + System.currentTimeMillis());
  | }
  | 
  | }
  | 
  | 
  | @Name("testMethod")
  | @Scope(ScopeType.CONVERSATION)
  | @AutoCreate
  | public class TestMethod {
  | public void dummy() {};
  | }
  | 

The output is like:

  | 12:33:08,414 INFO  [STDOUT] start,In:1199593988414
  | 12:33:10,198 INFO  [STDOUT] end  ,In:1199593990198
  | 12:33:10,198 INFO  [STDOUT] start,New:1199593990198
  | 12:33:10,199 INFO  [STDOUT] end  ,New:1199593990199
  | 

Could anyone explain this?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117354#4117354

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117354
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Problem Uisng richfaces Tag library with Seam. ( no tag

2008-01-05 Thread linux.enthusiast768
Thanks for your help Pete.

As suggested, I copied over the latest Richfaces 3.1.3 jar files and the issue 
was resolved.

-vinoo

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117353#4117353

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117353
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: Ejb 3 in Jboss 5 Beta 3

2008-01-05 Thread ragavgomatam
Hi Andy,

Sorry for the delayI was fixing my spring deployer with ejb 3. That is now 
fixed. Yes, what Nilesh posts is repeatable with Jboss 5 Beta 3. I have the 
following :- 

 Ejb3.ear with ejb3.war (web-module) and ejb3.jar ( ejb3 archive) and a 
META-INF/application.xml.

Step to reproduce the error

(1) The above EAR file was first copied over to 
$JBOSS_HOME/server/default/deploy.

(2) The server was then started . This causes the deployment errors (mentioned 
previously) to appear.

(3) The server was then stopped.

(4) EAR was removed from deploy directory.

(5) Server was started without EAR file. After server is running, EAR is now 
copied over to deploy directory. 

(6) EAR is now successfully deployed & application is available.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117352#4117352

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117352
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: How can I get the session id?

2008-01-05 Thread chicochen
Identity.instance.login will call "authenticate" method that config in 
component.xml, isn't it?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117351#4117351

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117351
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: How do I get google bot indexing all the codebase?

2008-01-05 Thread [EMAIL PROTECTED]
I removed the debug jar that stopped em!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117350#4117350

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117350
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: SeamFramework.org Alpha Test

2008-01-05 Thread [EMAIL PROTECTED]
I need a BB system too and if this isn't plugable then I will have to write my 
own. And that sounds silly.
Probably the right thing to do anyhow as I want to use my own users 
credentials...
Ho Hum.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117347#4117347

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117347
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - How do I get google bot indexing all the codebase?

2008-01-05 Thread [EMAIL PROTECTED]
How do I get google bot indexing all the codebase? 


  | 66.249.70.178 - - [06/Jan/2008:11:35:37 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.validators&cid=397 HTTP/1.1" 200 
21717 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:41:23 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.ConversationIdGenerator.component&cid=90
 HTTP/1.1" 200 23864 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:41:40 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.validators&cid=330 HTTP/1.1" 200 
21717 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:41:44 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.validators&cid=386 HTTP/1.1" 200 
21717 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:41:48 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.validators&cid=370 HTTP/1.1" 200 
21717 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:41:53 +1300] "GET 
/site/debug.seam?name=com.sun.faces.sunJsfJs&cid=19 HTTP/1.1" 200 21842 "-" 
"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:43:40 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.validators&cid=377 HTTP/1.1" 200 
21717 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 66.249.70.178 - - [06/Jan/2008:11:46:17 +1300] "GET 
/site/debug.seam?name=org.jboss.seam.core.validators&cid=381 HTTP/1.1" 200 
21717 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; 
+http://www.google.com/bot.html)"
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117346#4117346

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117346
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: how can I create a simple database aplication?

2008-01-05 Thread anewton
I'm no Seam expert.  In fact, I'm very new to it.  But I've been quite a bit of 
time trying to convert the registration example to use Maven.  And I'm pretty 
sure it uses a database.

There are two things to look for:
1) If you downloaded JBoss AS, the registration example is probably using the 
built-in HSQL in-memory database.  You can either reconfigure JBoss to use HSQL 
as a disk-based database, or point it to some other database.
2) The persistence.xml in the registration example has "create-drop" under the 
hibernate.hbm2ddl.auto property.  That will drop and the create your database 
tables every time the app comes up, I think.  Another setting, such as "update" 
might be in order.  You'll probably have to look at the Hibernate docs to find 
the right answer.

I hope that helps.

-andy

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117345#4117345

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117345
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - charset problem with jbossws 2.0.2 and .net clients

2008-01-05 Thread EverlastX1
Good evening ladies and gentleman,

I am struggling sending special character like the German üö from the .net 
client to the jboss server.

I have the following reproducible scenario:

jboss 4.22
jbossws 2.0.2GA
.Net Client

.net is  pinging the following String to jboss:
""from .NET with ü -- ö""

Jboss is receiving this string and post back an array with following to values
"from .NET with ü -- ö" the String .net sended just post it back
"Greetings from J with ü -- ö" 

.net output is:
Sending: from .NET with ü -- ö
Recived from Jboss Value 1: Greetings from J with ü -- ö
Recived from Jboss Value 2: from .NET with ü -- ö

the jboss output is:

2008-01-05 21:54:36,921 DEBUG 
[de.Company.test.WebSevices.ServerAgentEndpointBean] from .Net recived: from 
.NET with ü -- ö

The interesting thing is happening when the protocol sniffer is on:
 in the Sniffer: .NET is Sending 
POST /SKMS_Server-SKMS_Server/ServerAgentEndpointBean HTTP/1.1
  | User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client 
Protocol 2.0.50727.1433)
  | Content-Type: text/xml; charset=utf-8
  | SOAPAction: ""
  | Host: 127.0.0.1:8080
  | Content-Length: 359
  | Expect: 100-continue
  | Connection: Keep-Alive
  | 
  | http://schemas.xmlsoap.org/soap/envelope/"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
 xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
  | 
  | http://WebSevices.test.company.de/";>
  | from .NET with ü -- ö
  | 
  | 
  | 
  | 
  | 

in the Sniffer: Jboss Server is sending back!

  | HTTP/1.1 200 OK
  | Server: Apache-Coyote/1.1
  | X-Powered-By: Servlet 2.4; JBoss-4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA 
date=200710221139)/Tomcat-5.5
  | Content-Type: text/xml;charset=UTF-8
  | Transfer-Encoding: chunked
  | Date: Sat, 05 Jan 2008 20:54:36 GMT
  | 
  | 
  | 
  | http://WebSevices.test.company.de/";>
  | Greetings from J with �¼ -- �¶from .NET with 
�¼ -- 
  | �¶
  | 
  | 


The .NET Client Code

  | test test_remote =  new WebReference.test();
  | String tesString = "from .NET with ü -- ö";
  | test_remote.TestString = tesString;
  | 
  | string[] result = new WebReference.ServerAgentEndpoint().test(test_remote);
  | 
  | Console.WriteLine("Sending: " + tesString);
  | Console.WriteLine("Recived from Jboss Value 1: " + result[0]);
  | Console.WriteLine("Recived from Jboss Value 2: " + result[1]);
  | 


The Java Code is:


  | @WebMethod
  | public String[] test (@WebParam(name="TestString") String str){
  | String[] result = new String[]{"Greetings from J with ü -- 
ö",str};
  | log.debug("from .Net recived: " + str);
  | log.debug("This will be the result by Jboss to .Net" + 
result.toString());
  | return result;
  | }
  | 
  | 
  | 

As I see it from the sniffer the .Net client is sendig the data right to jboss 
encoding the content with utf-8 and jboss is decoding it right. 

When jboss is sending data to .net the data are encoded twice with utf-8 
you can see it in the sniffer. 
.net is sending: from .NET with ü -- ö" <<-- sniffer: encoded once with utf-8
The line "from J with �¼ -- �¶" <<-- sniffer: utf-8 over utf-8
.net did it right  and encoded it to "from J with ü -- ö" <<-- decoded the 
string but still one utf-8 encoding is left.

so i guess something is wrong with the utf-8 encoding in jboss or jbossws?

can anybody verify my problem?

greetings 

V.




View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117341#4117341

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117341

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - EntityHome and Hibernate Filters

2008-01-05 Thread jmatters
Hello,

I've got some unexpected behaviour with a hibernate filter in my seam 
application.

As long as the application is used normally the filter acts as expected. It 
seems as though all queries conducted through EntityQuery objects (for lists 
etc.) get the where clause set correctly by the filter. Therefore only elements 
that match the filter criteria are displayed to the user.

But for queries triggered by EntityHome objects the filter where clause is not 
set!

This means, by simply changing a request parameter id for an EntityHome object 
manually in the URL, the user gets a view of the object even though the filter 
parameter would not allow that.

I would have expected the filter to be more rigorous... I would actually 
consider that as a serious security flaw as I've read that quite a few 
applications use filters for separating data in multi tenant applications.

Is there any way to restrict these queries to the filter values? Or is this 
really a bug?

- Chris


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117340#4117340

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117340
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: OWASP / New Session after Login

2008-01-05 Thread ahus1
There's now 

http://jira.jboss.org/jira/browse/JBSEAM-2450

Everybody is free to WATCH this ticket and to VOTE for it.

Thanks, Alexander. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117338#4117338

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117338
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: How to create layered Seam application

2008-01-05 Thread kukeltje
I'm not an expert (and did not read the document in detail since most was a 
plain intro to seam), but wasn't (isn't) one of the goals of seam to get rid to 
this overly layered designs?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117337#4117337

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117337
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: OWASP / New Session after Login

2008-01-05 Thread ahus1
I found the following workaround to assure that there is a new session after a 
login: by destroying the original session before the login using a small 
filter. 

This is only a workaround as it destroys the previous session completly -- 
anything i.e. in a shopping basket will be lost (as my application doesn't have 
a shopping basket this is not a problem for me). 

A "nice" implementation in seam shouldn't have this limitation. 

I will open a ticket shortly.

Alexander. 

The Java Class:


  | /**
  |  * This filter enforces a new session whenever there is a POST, should be 
mapped
  |  * to the URL of the login page in your web.xml
  |  * @author Alexander Schwartz 2007
  |  */
  | public class NewSessionFilter implements Filter {
  |   private Log log = LogFactory.getLog(NewSessionFilter.class);
  |   
  |   private String url;
  |   
  |   public void destroy() {
  | // empty.
  |   }
  |   
  |   public void doFilter(ServletRequest request, ServletResponse response,
  |   FilterChain chain) throws IOException, ServletException {
  | if (request instanceof HttpServletRequest) {
  |   HttpServletRequest httpRequest = (HttpServletRequest) request;
  |   if (httpRequest.getMethod().equals("POST")
  |   && httpRequest.getSession() != null
  |   && !httpRequest.getSession().isNew()
  |   && httpRequest.getRequestURI().endsWith(url)) {
  | httpRequest.getSession().invalidate();
  | httpRequest.getSession(true);
  | log.info("new Session:" + httpRequest.getSession().getId());
  |   }
  | }
  | chain.doFilter(request, response);
  |   }
  |   
  |   public void init(FilterConfig filterConfig) throws ServletException {
  | url = filterConfig.getInitParameter("url");
  | if (url == null) {
  |   throw new ServletException(
  |   "please specify parameter 'url' with login URL");
  | }
  |   }
  |   
  | }
  | 

The web.xml:


  | 
  | NewSessionFilter
  | NewSessionFilter
  | 
  | NewSessionFilter
  | 
  | 
  | url
  | /iss/login.jsf
  | 
  | 
  | 
  | NewSessionFilter
  | Faces Servlet
  | /iss/login.jsf
  | REQUEST
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117335#4117335

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117335
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Invoking JBPM-3.2.2 Process from standalone java client

2008-01-05 Thread kukeltje
the JBPMContext is the one you want to use... 

btw.. .these basics are in the docs as well: 

http://docs.jboss.com/jbpm/v3.2/userguide/html/tutorial.html#databaseexample

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117333#4117333

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117333
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Jboss 4.2.2 starting problem

2008-01-05 Thread NSchweig
Hello,

I´m new to Jboss and Jboss Tools.

I hope, anybody can help me cause I spent a lot of time in trying to run JBoss 
AS!

I tried to start Jboss (4.2.2 GA) with Eclipse and Jboss Tools.
I tried starting without any application, only JBoss and I wanted to look at 
the jmx-console. (how it is descriped in the getting started documentation)

The last INFO message in the server log is that the server started successfully:

..
2008-01-05 20:48:43,781 INFO  [org.jboss.system.server.Server] JBoss (MX 
MicroKernel) [4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)] 
Started in 14s:891ms
...

But I can´t see the server under http://localhost:8080 or the jmx-console 
http://localhost:8080/jmx-console.
The event log in the jboss tools in eclipse says: "startup succeeded" but if I 
cklick at "JMX-Console" the state is always "loading..." 

In the server.log there appears following exception:

...
2008-01-05 20:48:43,281 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Could 
not create table with SQL: CREATE CACHED TABLE JMS_MESSAGES ( MESSAGEID INTEGER 
NOT NULL, DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, TXOP CHAR(1), 
MESSAGEBLOB OBJECT, PRIMARY KEY (MESSAGEID, DESTINATION) )
java.sql.SQLException: Table already exists: JMS_MESSAGES in statement [CREATE 
CACHED TABLE JMS_MESSAGES]
at org.hsqldb.jdbc.Util.throwError(Unknown Source)
at org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate(Unknown Source)
at 
org.jboss.resource.adapter.jdbc.CachedPreparedStatement.executeUpdate(CachedPreparedStatement.java:95)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.createSchema(PersistenceManager.java:273)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.startService(PersistenceManager.java:1789)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
at $Proxy0.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:417)
at org.jboss.system.ServiceController.start(ServiceController.java:435)
at org.jboss.system.ServiceController.start(ServiceController.java:435)
at org.jboss.system.ServiceController.start(ServiceController.java:435)
at org.jboss.system.ServiceController.start(ServiceController.java:435)
at org.jboss.system.ServiceController.start(ServiceController.java:435)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss

[jboss-user] [JBoss Seam] - Re: query object question...

2008-01-05 Thread minamti
come back by redirect defined in pages.xml.


  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

listFoo is not updated with latest entry. Is there a way I can make it hapen ? 

Thanks, 

M



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117330#4117330

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117330
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - how can I create a simple database aplication?

2008-01-05 Thread Mussie
Hello forum,
I'm trying to build an aplication where users can register with name, password 
and e-mail. I tried the examples in the seam reference in particular the 
registration example but that example just stores the name and password as long 
as the server is running. When restarting the server name and password are 
lost. So how can I store username and password?

I also tried seam gen chapter "2.5 Generating an application from an existing 
database" I followed the steps there but I don't know how to do following: "You 
can browse the database, edit existing
objects, and create new objects."  

I'm quite sure you'll find my questions silly but I'm totaly new to this and a 
little advice in the begining would help a lot.

thanks and best regards,
Mussie

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117329#4117329

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117329
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Help, problem

2008-01-05 Thread odedia
I'm stuck on the exact same problem, if anyone has the answer, it would be 
great.

Thanks :).

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117327#4117327

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117327
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Invoking JBPM-3.2.2 Process from standalone java client

2008-01-05 Thread soumya_in
can u name one of them or a certain portion of code-snippet that u want to 
stress

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117326#4117326

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117326
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jbpm 3.2 Session Is Closed exception in JobSession

2008-01-05 Thread zibi101
Hi,

I encountered the same problem in spring-managed transactions environment (on 
jboss 4.2.2)
Here is the solution: 
I register DeleteJobsSynchronization within TransactionSynchronizationManager 
and extend 
DeleteJobsSynchronization to support Ordered interface. It allows 
TransactionSynchronizationManager
to execute DeleteJobsSynchronization before SpringSessionSynchronization which 
closes hibernate session.


  | public class SpringJobSession extends JobSession {   
  | 
  | Log log = LogFactory.getLog(SpringJobSession.class);
  | 
  | protected Session session;
  | 
  | public SpringJobSession(Session pSession) {
  | super(pSession);
  | // super.session is private... 
  | session = pSession;
  | }
  | 
  | public void deleteJobsForProcessInstance(ProcessInstance 
processInstance) {
  | try {
  | // we register synchronization within 
TransactionSynchronizationManager!
  | TransactionSynchronizationManager.registerSynchronization(
  | new DeleteJobsSynchronization(processInstance));
  | } catch (Exception e) {
  |   log.error(e);
  |   throw new JbpmException("couldn't delete jobs for 
'"+processInstance+"'", e);
  | }
  |   }
  | 
  | // The very important issue here is that 
TransactionSynchronizationManager, 
  | // within DeleteJobsSynchronization is registered, uses particular 
order 
  | // while performing registered synchronizations. The order is specified 
by 
  | // 'Ordered' interface.  We have to set lower value than is specified 
for 
  | // SpringSessionSynchronization to force execution of this 
synchronization 
  | // before SpringSessionSynchronization will close the hibernate 
session. 
  | private class DeleteJobsSynchronization extends 
TransactionSynchronizationAdapter implements Serializable {
  | private static final long serialVersionUID = 1L;
  | ProcessInstance processInstance;
  | public DeleteJobsSynchronization(ProcessInstance processInstance) {
  |   this.processInstance = processInstance;
  | }
  | public void beforeCompletion() {
  |   log.debug("deleting timers for process instance 
"+processInstance);
  |   Query query = 
session.getNamedQuery("JobSession.deleteTimersForProcessInstance");
  |   query.setParameter("processInstance", processInstance);
  |   int result = query.executeUpdate();
  |   log.debug(Integer.toString(result)+" remaining timers for 
'"+processInstance+"' are deleted");
  |   System.out.println(" -> 2 < --");
  |   log.debug("deleting execute-node-jobs for process instance 
"+processInstance);
  |   query = 
session.getNamedQuery("JobSession.deleteExecuteNodeJobsForProcessInstance");
  |   query.setParameter("processInstance", processInstance);
  |   result = query.executeUpdate();
  |   log.debug(Integer.toString(result)+" remaining execute-node-jobs 
for '"+processInstance+"' are deleted");
  |   System.out.println(" -> 3 < --");
  | }
  | 
  | @Override
  | public int getOrder() {
  | // SpringSessionSynchronization.getOrder() returns 
SessionFactoryUtils.SESSION_SYNCHRONIZATION_ORDER.
  | return SessionFactoryUtils.SESSION_SYNCHRONIZATION_ORDER - 50;  

  | }
  |   }
  | }  
  | 


  | public class SpringPersistenceService extends DbPersistenceService {
  | 
  | public SpringPersistenceService(SpringPersistenceServiceFactory 
pPersistentServiceFactory) {
  | super(pPersistentServiceFactory);
  | }
  | 
  | public JobSession getJobSession() {
  | if (jobSession==null) {
  |   Session session = getSession();
  |   if (session!=null) {
  | jobSession = new SpringJobSession(session);
  |   }
  | }
  | return jobSession;
  | }
  | 
  | }
  | 


  | 
  |   
  |   
  | 
  |   
  |   
  |  

Should I create a jira bug for it or rather inform spring guys about this issue 
?

regards
  
  

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117325#4117325

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117325
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Javassist user questions] - JA seems inactive, is it?

2008-01-05 Thread PaulKeeble
Based on the lack of responses to users queries and general lack of developer 
involvement here would it be fair to say that this project is pretty much dead?

I note that this is a JBoss "acquired" technology rather than home grown, is 
there a better place to get answers to queries and find an actual community? 


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117322#4117322

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117322
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - How to create layered Seam application

2008-01-05 Thread jagin
Hi,

I found very interesting presentation at 
http://www.jugpadova.it/files/IntroductionJBossSeam.pdf about  how to create 
Seam application with layers like domain, persistence, application (aka 
service) and controller.
Example can be found here 
http://www.jugpadova.it/files/IntroJBossSeam_ExampleProject.zip

I would like to know what do you think about this concept.

Regards

Jarek

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117321#4117321

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117321
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Uni testing and datasource problem

2008-01-05 Thread jagin
Hi to all,

I generate simple application with seam-gen. I didn't touch any existing code. 
I add simple UserDaoSeam class wich I want to test.
I have some problem with simple unit testing. I want to do something like in 
the Seam Reference book on page 293-294.
The code of the test is like this:


  | public class UserDaoTest extends SeamTest {
  | 
  | private EntityManagerFactory emf;
  | 
  | public EntityManagerFactory getEntityManagerFactory() {
  | return emf;
  | }
  | 
  | @BeforeClass
  | public void init() {
  | emf = Persistence.createEntityManagerFactory("ezapp");
  | }
  | 
  | @AfterClass
  | public void destroy() {
  | emf.close();
  | }
  | 
  | @Test
  | public void testFindByUsername() {
  | EntityManager em = emf.createEntityManager();
  | em.getTransaction().begin();
  | 
  | UserDaoSeam userDao = new UserDaoSeam();
  | userDao.setEntityManager(em);
  | 
  | User user = userDao.findByUsername("jkowalski");
  | 
  | assert user != null;
  | 
  | em.getTransaction().rollback();
  | em.close();
  | }
  | }
  | 

after ant test i get


  | D:\dev\ezapp>ant test
  | Buildfile: build.xml
  | 
  | compiletest:
  | 
  | copytestclasses:
  | 
  | buildtest:
  |  [copy] Copying 1 file to D:\dev\ezapp\test-build\META-INF
  |  [copy] Copying 1 file to D:\dev\ezapp\test-build
  | 
  | test:
  |[testng] [Parser] Running:
  |[testng]   D:\dev\ezapp\test-build\PersistenceTest.xml
  |[testng]
  |[testng] FATAL [org.hibernate.connection.DatasourceConnectionProvider] 
Could not find datasource: java:/DefaultDS
  |[testng] java.lang.RuntimeException: PROVIDER_URL not provided in 
jndi.properties.  Automatic discovery not implemented yet.
  |[testng] at 
org.jboss.naming.JBossRemotingContextFactory.getInitialContext(JBossRemotingContextFactory.java:158)
  |[testng] at 
javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
  |[testng] at 
javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
  |[testng] at javax.naming.InitialContext.init(InitialContext.java:223)
  |[testng] at 
javax.naming.InitialContext.(InitialContext.java:175)
  |[testng] at 
org.hibernate.util.NamingHelper.getInitialContext(NamingHelper.java:28)
  |[testng] at 
org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvider.java:52)
  |[testng] at 
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
  |[testng] at 
org.hibernate.ejb.InjectionSettingsFactory.createConnectionProvider(InjectionSettingsFactory.java:29)
  |[testng] at 
org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)
  |[testng] at 
org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2009)
  |[testng] at 
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1292)
  |[testng] at 
org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:918)
  |[testng] at 
org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:656)
  |[testng] at 
org.hibernate.ejb.HibernatePersistence.createEntityManagerFactory(HibernatePersistence.java:121)
  |[testng] at 
javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:52)
  |[testng] at 
javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:34)
  |[testng] at 
pl.unizeto.ezapp.persistence.UserDaoTest.init(UserDaoTest.java:24)
  |[testng] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native 
Method)
  |[testng] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  |[testng] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  |[testng] at java.lang.reflect.Method.invoke(Method.java:585)
  |[testng] at 
org.testng.internal.MethodHelper.invokeMethod(MethodHelper.java:604)
  |[testng] at 
org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:394)
  |[testng] at 
org.testng.internal.Invoker.invokeConfigurations(Invoker.java:142)
  |[testng] at 
org.testng.internal.Invoker.invokeConfigurations(Invoker.java:79)
  |[testng] at 
org.testng.internal.TestMethodWorker.invokeBeforeClassMethods(TestMethodWorker.java:165)
  |[testng] at 
org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:103)
  |[testng] at org.testng.TestRunner.runWorkers(TestRunner.java:678)
  |[testng] at org.testng.TestRunner.privateRun(TestRunner.java:624)
  |[testng] at org.testng.TestRunner.run(TestRunner.java:495)
  |  

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Show/hide the Jboss screen!

2008-01-05 Thread PeterJ
So you want to hide the command prompt window that is running JBossAS. The best 
way to do this is to run JBossAS as a service. Or you could minimize the 
command prompt window.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117319#4117319

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117319
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Calling the same method on different beans from the same

2008-01-05 Thread [EMAIL PROTECTED]
Post the template and the fragment so we can clearly see what is going on.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117318#4117318

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117318
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Calling the same method on different beans from the same

2008-01-05 Thread kummer
I followed your suggestion except that I changed the name of the param from 
manager to orderManager in the both the param tag and the included file. The 
page displays correctly but invoking an action via


  | 
  | 

triggers the following exception


  | Exception during request processing:
  | Caused by javax.el.PropertyNotFoundException with message: "Target 
Unreachable, identifier 'orderManager' resolved to null"
  | 
  | org.jboss.el.parser.AstValue.getTarget(AstValue.java:38)
  | org.jboss.el.parser.AstValue.invoke(AstValue.java:95)
  | org.jboss.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
  | org.jboss.seam.core.Expressions$2.invoke(Expressions.java:174)
  | org.jboss.seam.navigation.Pages.callAction(Pages.java:634)
  | org.jboss.seam.navigation.Pages.preRender(Pages.java:289)
  | 
org.jboss.seam.jsf.SeamPhaseListener.preRenderPage(SeamPhaseListener.java:544)
  | 
org.jboss.seam.jsf.SeamPhaseListener.beforeRenderResponse(SeamPhaseListener.java:455)
  | 
org.jboss.seam.jsf.SeamPhaseListener.beforeServletPhase(SeamPhaseListener.java:146)
  | org.jboss.seam.jsf.SeamPhaseListener.beforePhase(SeamPhaseListener.java:116)
  | com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:222)
  | com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
  | javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
  | 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
  | 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
  | org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:85)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
  | org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
  | org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:44)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
  | org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
  | org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
  | org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:60)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
  | org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
  | org.jboss.seam.debug.hot.HotDeployFilter.doFilter(HotDeployFilter.java:68)
  | 
org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
  | org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
  | 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
  | 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
  | lu.deka.servlets.LoggedInFilter.doFilter(LoggedInFilter.java:56)
  | 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
  | 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
  | 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
  | 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
  | 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
  | 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
  | 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
  | 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
  | 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:433)
  | 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
  | 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
  | 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
  | 
org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
  | 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
  | org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
  | org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
  | 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580)
  | org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
  | java.lang.Thread.run(Thread.java:619)
  | 


Any ides?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117317#4117317

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117317

[jboss-user] [JBoss Seam] - Re: TestNG problems

2008-01-05 Thread DiegoCoronel
i looked in all my project, and i didnt find any stale (jboss-seam.jar) jars, 
its all imported by maven, and my project works fine, just test is not working. 
Is there any other jar i should look? 

ty

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117314#4117314

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117314
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: TestNG problems

2008-01-05 Thread [EMAIL PROTECTED]
Make sure you don't have any stale (jboss-seam.jar) jars lying about.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117313#4117313

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117313
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: TestNG problems

2008-01-05 Thread DiegoCoronel
* Seam 2.0.1 RC1
* JBoss 4.2.2
* Java 1.6_02 (with jboss-embebbed-all fixed to run test with java 6)


ty for your reply.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117312#4117312

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117312
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: 2nd level cache management

2008-01-05 Thread kukeltje
The reason is that it just grew like that, but here is a jira issue to make the 
2nd-level cache more configurable. 

I have no detailed knowledge about this caching so unfortunately I cannot give 
you an answer on your last 2 questions

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117310#4117310

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117310
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: GPD Missing Features

2008-01-05 Thread kukeltje
you have to press enter... that is the default eclipse behaviour for table 
cells. There is a jira issue to change this somewhere in the future.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117311#4117311

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117311
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - relative vs absolute urls (problem with proxy)

2008-01-05 Thread sztank
Hi,
I trying to deploy jboss seam application in the following configuration:

Apache as a front server and jboss as as my application server. The users 
connects to the server through the VPN or SSH tunnels. The apache sever work as 
a proxy. 

(user request) https://foo/bar -> apache proxy -> (jboss) 127.0.0.1:8080/bar

In pages.xml I'm using redirection like this:

 





I have the following problems with urls:

Problematic scenario:

1. User started the application using url https://foo/bar/page1

2.User click the action button (h:comandButton) 

3. The form is submited

4. User gets a WRONG url in the responce: http://127.0.0.1:8080/bar/page2

So it looks that jboss used absolute url. Is it possible to enforce using the 
relative url in the above scenario?

In places when the a4j:commandButton is used there is no problem like that. 
Currently a replace all commandButtons with a4j:buttons and redirect  to the 
proper page in pages.xml but It is awkward.

My jboss administrator is saing that this is jboss/releative/absolute url's 
configuration issue.

It is my first development using Jboss Seam. I would be very grateful for some 
advice. 

(I using seam 2.0.0.GA) 
Best regards!

Stoigniew Sztank






View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117309#4117309

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117309
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Decision node has problem with the handler class.

2008-01-05 Thread kukeltje
might be interesting for others to know what you did 'wrong' so they can learn 
from it.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117308#4117308

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117308
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM success stories?

2008-01-05 Thread kukeltje
I might not be 'unprejudiced' but I've head less problems with jBPM then I had 
with one or two commercial ones. How mature is it? Well, I've seen commercial 
vendors change there complete bpm engine by buying a competitor 2 times in 5 
years... How mature/stable/... is that. 

There are some major (fortune 500) companies that use it, but I'm not in a 
position to disclose that (NDA). There are some (big) open source projects that 
also use it, so that might be a reference.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117306#4117306

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117306
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Caching Workflow templates so that they dont have to be

2008-01-05 Thread kukeltje
afaik ,the processdefinitions are cached

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117307#4117307

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117307
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: WEB-INF Structure not defined in JBPM-JPDL

2008-01-05 Thread kukeltje
1: the project is jbpm.3 which also contains the webapp
2: use seam then instead of the jbpm admin/demo/rad webapp
3: you can't that is up to your webapp. The designer is for the process

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117305#4117305

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117305
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Invoking JBPM-3.2.2 Process from standalone java client

2008-01-05 Thread kukeltje
no...  it is not aplicable anymore. There are lots of testcases in the jbpm 
source that show what to do instead.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117304#4117304

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117304
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How to add custom node?

2008-01-05 Thread kukeltje
adding a custom node like that takes a lot more to do.. the parser should be 
adapted etc... it's beyond my limited time to descibe that. 

If you do not mind having to use the 'node' element, you can make a custom 
action on that node that does practically the same

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117303#4117303

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117303
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Error in variables list intaskform.xhtml

2008-01-05 Thread kukeltje
afaik, c:foreach does not play nice with jsf so that might be the case. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117302#4117302

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117302
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Maven2 example application for Seam2

2008-01-05 Thread anewton
I'll find a Linux box to give this a whirl on.

Version of what from the 4th?  If Maven 2.0.8, then yes.  I would assume 
everything else is being pulled from the Maven repositories, but I'll try with 
a -U anyway.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117300#4117300

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117300
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Log retrieval

2008-01-05 Thread kukeltje
log retrieval will not ber supported via the ws interface, at least not 
initially. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117298#4117298

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117298
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Workflow without DB/Service-Invocations? Is there a simp

2008-01-05 Thread kukeltje
your decisiongraph sounds more like you need a businessrule (drools?)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117299#4117299

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117299
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: A new task has been assigned to 'null'

2008-01-05 Thread kukeltje
in 3.1 you have to fix it yourself, in 3.2 there is a totally different 
console, so take your pick

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117297#4117297

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117297
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss/Spring Integration] - Re: Jboss 5 Beta 2 and Spring Deployer

2008-01-05 Thread alesj
"ragavgomatam" wrote : 
  | Yeah that was a small bug in my ant buildFixed it...Works 
fineThanks...I think this should be documented in Jboss-spring 
documentation
  | Spring Injection works fine with Ejb 3. with Spring Deployer in Jboss 5 
Beta 3.
  | 
Cool.
I totally forgot about the legacy usage. :-)
But I think the new default name is more flexible. More fine grained.

"ragavgomatam" wrote : 
  | As an aside, how does Pitchfork fit in ? Can we try injecting POJO's into 
ejb3 with PitchFork M2 release ? They have a JeeEjbBeanFactoryPostProcessor in 
pitchfork which recognizes @EJB anotation. Can we use this too in Jboss 5 ? 
Your thoughts.
  | 
Uf, never really looked into Pitchfork. So no idea what can be done.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117296#4117296

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117296
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: @DataModel makes me go nuts or it's a bug ?

2008-01-05 Thread [EMAIL PROTECTED]
Does the @Factory get called in the doesn't work scenario?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117295#4117295

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117295
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: List within a list

2008-01-05 Thread [EMAIL PROTECTED]
s:selectItems populates a drop down box, you use it inside a h:selectXXX.

Try using a datatable or ui:repeat for the outer loop, and putting your answers 
into a dropdown.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117294#4117294

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117294
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: List within a list

2008-01-05 Thread odedia
Just to be clear: I tried it with the inner tag being "s:selectItems" as well 
instead of "ui:repeat", still the same result.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117292#4117292

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117292
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - List within a list

2008-01-05 Thread odedia
Hi,

I'm trying to create a simple JSF page where there's a list of questions, and 
in each question, there's a list of possible answers. I manage to get the 
questions list, but the "inner" list of possible answers is not presented at 
all.


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
  | http://www.w3.org/1999/xhtml";
  | xmlns:ui="http://java.sun.com/jsf/facelets";
  | xmlns:h="http://java.sun.com/jsf/html";
  | xmlns:f="http://java.sun.com/jsf/core";
  | xmlns:s="http://jboss.com/products/seam/taglib";>
  | 
  | 
  | Quiz
  | 
  | 
  | Please select your answers
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

What am I missing here? The object does have the list of possible answers 
inside, but it is not displayed.

Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117291#4117291

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117291
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Does facesMessages.clear() work for conversion errors?

2008-01-05 Thread [EMAIL PROTECTED]
This doesn't sound right to me. You shouldn't loose your entered values or see 
messages not being cleared. Can you post a simple example of what doesn't work 
(I suspect something is getting rerendered wrongly).

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117290#4117290

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117290
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Newbie conversation question

2008-01-05 Thread [EMAIL PROTECTED]
See for example this discussion

http://www.jboss.com/index.html?module=bb&op=viewtopic&t=126562

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117289#4117289

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117289
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: TestNG problems

2008-01-05 Thread [EMAIL PROTECTED]
Which version of Seam?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117288#4117288

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117288
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: restful action

2008-01-05 Thread [EMAIL PROTECTED]
seam-gen produces restful search screens. Try reverse engineering some entities 
or a database to see how it does it.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117287#4117287

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117287
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss/Spring Integration] - Re: Jboss 5 Beta 2 and Spring Deployer

2008-01-05 Thread ragavgomatam
Ales,

Yeah that was a small bug in my ant buildFixed it...Works 
fineThanks...I think this should be documented in Jboss-spring 
documentation
Spring Injection works fine with Ejb 3. with Spring Deployer in Jboss 5 Beta 3.

As an aside, how does Pitchfork fit in ? Can we try injecting POJO's into ejb3 
with PitchFork M2 release ? They have a JeeEjbBeanFactoryPostProcessor in 
pitchfork which recognizes @EJB anotation. Can we use this too in Jboss 5 ? 
Your thoughts.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117286#4117286

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117286
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Problem Uisng richfaces Tag library with Seam. ( no tag

2008-01-05 Thread [EMAIL PROTECTED]
Which version of RichFaces are you using? Make sure you are using 3.1.3 or 
later (the version in Seam 2.0.1.CR1 was 3.1.2.SP1)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117285#4117285

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117285
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: How can I get the session id?

2008-01-05 Thread [EMAIL PROTECTED]
How are you calling authenticateAction.authenticate()?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117284#4117284

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117284
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Server push

2008-01-05 Thread Cloud
In the context of Ajax related things of course

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117283#4117283

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117283
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Server push

2008-01-05 Thread Cloud
I suppose you were thinking something precise when you suggested JMS. DO you 
have a link on an exact information or even example ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117282#4117282

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117282
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: query object question...

2008-01-05 Thread [EMAIL PROTECTED]
Come back? How?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117281#4117281

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117281
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2008-01-05 Thread [EMAIL PROTECTED]
http://docs.jboss.org/seam/2.0.1.CR1/reference/en/html/persistence.html#persistence.seam-managed-transactions

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117279#4117279

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117279
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: How to control end of conversations/state of stateful be

2008-01-05 Thread trouby
"gus888" wrote : "[EMAIL PROTECTED]" wrote : Have you taken a look at the way 
seam-gen does it? It produces a pageable, bookmarkable search screen that saves 
the search criteria without using a conversation. 
  | I went through all seam examples, and I found the following search beans:
  |   |   1. booking - HotelSearchingAction: Session bean
  |   |   2. blog - SearchService: default bean 
  |   |   3. dvdstore - FullTextSearchAction: Conversation bean with 
@Begin(join=true)
  |   |   4. wiki - WikiSearch: Conversation bean with begin (join=true) in 
pages.xml
  |   | 
  |   | It seams that the blog-SearchService has bookmarkable but not pagable, 
but the SearchService only has one searchPattern criteria. The dvdstore and 
wiki search pages have pageable. Thanks.


SeamGen makes a usage of Seam framework, you should take a look at it, it has 
all the features you asked for and the implementation is very clean,



Asaf.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117276#4117276

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117276
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: SeamFramework.org Alpha Test

2008-01-05 Thread thejavafreak
I can't figure out whether it uses Richfaces or Icefaces? Does anyone know?

Thanks in advance

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117274#4117274

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117274
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Action components are not hot deployable with Seam 2.0.0.GA

2008-01-05 Thread thejavafreak
Dear all,

Has anything changed since Seam 2.0.0.GA ? Somehow my action component are not 
hot deployable anymore. I also used JBoss AS 4.2.2.GA for deploying it.

I used to use Seam 2.0.0.CR1 and JBoss AS 4.2.1.GA and it works. I still use 
the 'dev' configuration and still have the WEB-INF/dev folder for deploying my 
JavaBean actions, but it doesn't work anymore. Perhaps I missed something here, 
could anyone guide me through this?

Thanks in advance.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117273#4117273

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117273
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: does seam-gen support tomcat?

2008-01-05 Thread [EMAIL PROTECTED]
OC4J and Weblogic should hopefully be in 2.0.1, and then Websphere in perhaps a 
month, and Tomcat a few weeks after that.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117272#4117272

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117272
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: does seam-gen support tomcat?

2008-01-05 Thread thejavafreak
"[EMAIL PROTECTED]" wrote : Jay is working on some top notch documentation for 
Seam on different servers at the moment. He's currently updated oc4j, just 
finishing off weblogic, and will do Websphere and then Tomcat. This will 
include both how to deploy an app to the server, and how to convert over a 
seam-gen app.

That's great. That's something we've been waiting for. When exactly will this 
be available? Will it be on 2.0.1.GA release?

Thanks in advance

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117268#4117268

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117268
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Restrict result graph of a Web Method

2008-01-05 Thread mcanaleta
No, it is a web service. I found @WebMethod also has an exclude atribute bud it 
is boolean and it's definition is "Marks a method to NOT be exposed as a web 
method.", so it's not what I'm looking for. Any idea? Thank you!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117266#4117266

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117266
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Re: JBossCache + Hibernate + Spring

2008-01-05 Thread narendrakg
Hi Manik,

Previously there were 3 to 4 deployments os same application were there on 
different machines but with same JBoss xml configurations.

But after getting these problems, I changed multicast address & cluster name in 
all deployments.

I have also tried JGroups Demo Program and it is working fine.

Do you think I am missing anything now anything in configuration and steps to 
use with hibernate? 

Thanks & Regards,
Narendra Gupta

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117265#4117265

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117265
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


AW: [jboss-user] [Installation, Configuration & DEPLOYMENT] - JBoss 4.2.2:JMXException when starting JBoss withJBossTools

2008-01-05 Thread Nicole Schweighardt
Hello anybody there,

I tried it now on my notebook without eclipse.
I only downloaded JBoss AS 4.2.2GA, unzipped it and started it with the
console with run.bat. The server starts.
But I can´t see the server under http://localhost:8080 or the jmx-console
http://localhost:8080/jmx-console.
The state is always "loading..." in my browser.
What do I wrong??
I tried it with JDK 1.6_0_1  and 1.5.0.14.

Do I have to make any configuration bevor I start the server?

Please, I need some help it is so frustrating.

Thank you very much for a little answer.
N.Schweig

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Im Auftrag von NSchweig
Gesendet: Mittwoch, 2. Januar 2008 14:27
An: jboss-user@lists.jboss.org
Betreff: [jboss-user] [Installation,Configuration & DEPLOYMENT] - JBoss
4.2.2:JMXException when starting JBoss withJBossTools

Hello,

I´m new to Jboss and Jboss Tools and the mailing-list.
Following problem I posted 2 days ago to the mailing list but received no
answer; I don´t know if I took the right address?
(jboss-user@lists.jboss.org)

I hope, anybody can help me!! Thanks for that.

I tried to start Jboss (4.2.2 GA) with Eclipse and Jboss Tools.
I tried starting without any application, only JBoss and I wanted to look at
the jmx-console.

In the console there appears the message that the server started
successfully.

Output: 

13:43:16,613 INFO  [Server] Starting JBoss (MX MicroKernel)...
13:43:16,613 INFO  [Server] Release ID: JBoss [Trinity] 4.2.2.GA (build:
SVNTag=JBoss_4_2_2_GA date=200710221139)
13:43:16,613 INFO  [Server] Home Dir: C:\Programme\jboss-4.2.2.GA
13:43:16,628 INFO  [Server] Home URL: file:/C:/Programme/jboss-4.2.2.GA/
13:43:16,628 INFO  [Server] Patch URL: null
13:43:16,628 INFO  [Server] Server Name: default
13:43:16,628 INFO  [Server] Server Home Dir:
C:\Programme\jboss-4.2.2.GA\server\default
13:43:16,628 INFO  [Server] Server Home URL:
file:/C:/Programme/jboss-4.2.2.GA/server/default/
13:43:16,628 INFO  [Server] Server Log Dir:
C:\Programme\jboss-4.2.2.GA\server\default\log
13:43:16,628 INFO  [Server] Server Temp Dir:
C:\Programme\jboss-4.2.2.GA\server\default\tmp
13:43:16,628 INFO  [Server] Root Deployment Filename: jboss-service.xml
13:43:17,082 INFO  [ServerInfo] Java version: 1.6.0_03,Sun Microsystems Inc.
13:43:17,082 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM
1.6.0_03-b05,Sun Microsystems Inc.
13:43:17,082 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86
13:43:17,550 INFO  [Server] Core system initialized
13:43:20,175 INFO  [WebService] Using RMI server codebase:
http://127.0.0.1:8083/
13:43:20,175 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL:
resource:jboss-log4j.xml
13:43:20,738 INFO  [TransactionManagerService] JBossTS Transaction Service
(JTA version) - JBoss Inc.
13:43:20,738 INFO  [TransactionManagerService] Setting up property manager
MBean and JMX layer
13:43:20,910 INFO  [TransactionManagerService] Starting recovery manager
13:43:20,988 INFO  [TransactionManagerService] Recovery manager started
13:43:20,988 INFO  [TransactionManagerService] Binding TransactionManager
JNDI Reference
13:43:23,816 INFO  [EJB3Deployer] Starting java:comp multiplexer
13:43:24,207 INFO  [STDOUT] no object for null
13:43:24,207 INFO  [STDOUT] no object for null
13:43:24,238 INFO  [STDOUT] no object for null
13:43:24,253 INFO  [STDOUT] no object for
{urn:jboss:bean-deployer}supplyType
13:43:24,253 INFO  [STDOUT] no object for
{urn:jboss:bean-deployer}dependsType
13:43:26,410 INFO  [NativeServerConfig] JBoss Web Services - Native
13:43:26,410 INFO  [NativeServerConfig] jbossws-native-2.0.1.SP2
(build=200710210837)
13:43:27,566 INFO  [Embedded] Catalina naming disabled
13:43:27,722 INFO  [AprLifecycleListener] The Apache Tomcat Native library
which allows optimal performance in production environments was not found on
the java.library.path:
C:\Programme\Java\jre1.6.0_03\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\syste
m32;C:\WINDOWS;C:\Programme\Java\jre1.6.0_03\bin\client;C:\Programme\Java\jr
e1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Sun
\AppServer\bin;;;øûýËå?|Kæ?|
13:43:27,785 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on
http-127.0.0.1-8080
13:43:27,785 INFO  [AjpProtocol] Initializing Coyote AJP/1.3 on
ajp-127.0.0.1-8009
13:43:27,785 INFO  [Catalina] Initialization processed in 224 ms
13:43:27,785 INFO  [StandardService] Starting service jboss.web
13:43:27,785 INFO  [StandardEngine] Starting Servlet Engine:
JBossWeb/2.0.1.GA
13:43:27,832 INFO  [Catalina] Server startup in 46 ms
13:43:27,941 INFO  [TomcatDeployer] deploy, ctxPath=/,
warUrl=.../deploy/jboss-web.deployer/ROOT.war/
13:43:28,722 INFO  [TomcatDeployer] deploy, ctxPath=/invoker,
warUrl=.../deploy/http-invoker.sar/invoker.war/
13:43:28,847 INFO  [TomcatDeployer] deploy, ctxPath=/jbossws,
warUrl=.../deploy/jbossws.sar/jbossws-context.war/
13:43:28,957 INFO  [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil,
warUrl=.../deploy/jms/jboss