[JBoss-user] [Beginners Corner] - Re: whats wrong?

2005-11-03 Thread dargoth
thx alot gous^^

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905081#3905081

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905081


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Could you advice me in File Persistence Manager?

2005-11-03 Thread beamargar
Hi everybody,

Like many other users, I was trying to configure JBoss 4.x (my case 4.0.3) to 
use File PM. 
The explanations in the Administration Guide and in the Wiki were really 
difficult to understand... all this things related to the Null Persistence 
Manager and delegate in a real persistence manager besides, this 
warnings about if there is no persistence manager delegate, the messages WON'T 
be stored to persistent storage...
everything makes you think that there is a way to get File PM, although a 
complicated way.

Can you imagine my surprise when after searching and searching I finally 
arrived to a page that says that JBoss 4.x is not supporting File PM anymore? 
(let me say here, that this information is not easy to find)

Don't you think that such a big change should be in What's new in Jboss 4.0? 
It must also be included in this beautiful Product Datasheet document that 
you have for announcing the JBoss AS (in capital letters will be the ideal)...

We wouldn't take into account JBoss for our project if we had known that File 
PM in not possible, because, why should we install a DB where we don't have, 
just for keeping some messages? A DB is much more complex for maintaining than 
a file system (adminstration, upgrading, backups, etc...)

Could you recommend any persistence manager for use like a delegate for a Null 
Persistence Manager?

If File PM is completely impossible with JBoss we will have to give up JBoss, 
throw into the basket all the work and time spend for taking into consideration 
JBoss and finally go for one of the NON-free JMS providers, but at least with 
the feature we are interested in.

Thanks fore read the email in any case,
  Beatriz

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905082#3905082

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905082


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - DatabaseServerLoginModule with PostgreSQL Datasource

2005-11-03 Thread blacky
Hello everybody

I'm struggling with following problem - given configurations:
web.xml:

  | web-app 
  | security-constraint
  | web-resource-collection
  | web-resource-nameTest realm/web-resource-name
  | url-pattern/*/url-pattern
  | /web-resource-collection
  | auth-constraint
  | role-nameBoss/role-name
  | /auth-constraint
  | /security-constraint
  | login-conf
  | auth-methodFORM/auth-method
  | form-login-config
  | form-login-page/login.html/form-login-page
  | form-error-page/error.html/form-error-page
  | /form-login-config 
  | realm-nameMyRealm/realm-name
  | /login-conf
  | 
  |  security-role
  | role-nameBoss/role-name
  | /security-role
  | 
  | /web-app
  | 

jboss-web.xml

  | jboss-web
  | security-domain java:/jaas/MyRealm/security-domain
  | /jboss-web
  | 

login-config.xml

  | ...
  |  application-policy name = MyRealm
  |authentication
  |   login-module code = 
org.jboss.security.auth.spi.DatabaseServerLoginModule
  |  flag = required
  |  module-option name = 
unauthenticatedIdentityguest/module-option
  |  module-option name = 
dsJndiNamejava:/RealmDS/module-option
  |  module-option name = principalsQuerySELECT user_pass FROM 
users WHERE user_name=?/module-option
  |  module-option name = rolesQuerySELECT role_name , 'Roles' 
FROM user_roles WHERE user_name=?/module-option
  |   /login-module
  |/authentication
  | /application-policy
  | ...
  | 


  | ...
  | local-tx-datasource
  | jndi-nameRealmDS/jndi-name
  | 
connection-urljdbc:postgresql://localhost:5432/TomcatRealm/connection-url
  | driver-classorg.postgresql.Driver/driver-class
  | server-namelocalhost/server-name
  | database-nameTomcatRealm/database-name
  | port-number5432/port-number
  | default-autocommittrue/default-autocommit
  | user-nametomcat_realm/user-name
  | passwordtomcat_realm/password
  |  security-domainMyRealm/security-domain
  |  metadata
  |  type-mappingPostgreSQL/type-mapping
  |   /metadata
  | /local-tx-datasource
  | ...
  | 

Have following db schema:


  | CREATE TABLE users
  | (
  |   user_name text NOT NULL,
  |   user_pass text NOT NULL,
  |   user_id text
  | ) 
  | 
  | CREATE TABLE user_roles
  | (
  |   user_name text NOT NULL,
  |   role_name text NOT NULL,
  |   user_id text
  | ) 

I'm using JBoss-4.0.3 and Postgres8.0. When trying to access secured page
http://localhost:8080/TestAuth/ (where TestAuth is my war context) i got:

  | HTTP Status 403 - Configuration error: Cannot perform access control 
without an authenticated principal
  | 
  | type Status report
  | 
  | message Configuration error: Cannot perform access control without an 
authenticated principal
  | 
  | description Access to the specified resource (Configuration error: Cannot 
perform access control without an authenticated principal) has been forbidden.
instead of login html content. What might be the problem? Is my dbschema 
correct and query ok? I based it on 
http://www.thepaxson5.org/Members/Aaron/JBoss/jboss-jaas-intro

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905084#3905084

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905084


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Problem with JBoss 4.0.3

2005-11-03 Thread giordano
Dear All,

at this point my question is:

can I deploy and run an EAR application (with a web module and an ejb module as 
I wrote above) without problems with the UseJBossWebLoader flag set to false? 
Or this flag has always to be set to true?

Thanks and bye,
Giordano

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905085#3905085

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905085


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Artificially delaying messages

2005-11-03 Thread hargitt
Maybe a better way to view this questions is:

Is there a way to schedule the delivery of a message? For example, can you 
insert a message in a queue and say, delivery to the consumer after 2 hours?

I have searched around and I have not found any selector variable that can 
indicate the current time. 

I was thinking of a selector like:
JMSTimestamp currentTimeMillis - 6

where currentTimeMillis is a variable replaced by the current system time in 
miliseconds (i.e. like sysdate in Oracle). This selector would schedule 
delivery of every message to consumers one minute after the message has been 
inserted in the queue. 

Is there such a variable as currentTimeMillis? If not, I have to continually 
recreate the selector and update currentTimeMillis!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905087#3905087

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905087


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Microcontainer] - Re: How to access beans created by the bootstrap

2005-11-03 Thread belaran
[EMAIL PROTECTED] wrote : 
  | Don't tie yourself to a spec defined locator, use our proprietary api 
instead? :-)
  | 

: D 

Thanks ! I'll watch the code, the two link your provided me should be enough if 
i'm not too dumb...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905089#3905089

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905089


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: JBoss Cache using Multicast.

2005-11-03 Thread [EMAIL PROTECTED]
I know this may sound simplistic, but does multicast work in the first place?  
I.e., have you been successful in running tests like Draw?

http://www.jgroups.org/javagroupsnew/docs/newuser/node13.html

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905093#3905093

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905093


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Which version of the J2EE tutorial and where to find it?

2005-11-03 Thread heinz500
Hello,
I'm trying to run the Duke's bank application of Sun's J2EE Tutorial as 
described in the getting-started guide. 
Can anybody tell which version of the tutorial is working with Jboss' aditional 
example source files?
I read somewhere in this forum that Sun has changed a lot in the tutorial's 
code and that I have to take the right 
version of the tutorial.
However at Sun's download site there are no old versions for the tutorial.

I tried following combination:
J2EE Tutorial for Sun Java System Application Server Platform Edition 8.1 
2005Q2 UR2
boss Server 4.0.0RC1

Or are there any other versions of the Jboss example files? At this site I 
couldn't find any files at all. I used a direct link that was posted in this 
forum.

I hope somebody can help me, so I can start with learning Jboss and J2EE 
instead of reading the server's error logfile.
Thanks in advance,
best regards,
Philip

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905095#3905095

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905095


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Logs are flooded with RpcDispatcher Exceptions

2005-11-03 Thread [EMAIL PROTECTED]
What version of JBossCache do you use?  You can tell by running 

java -cp jboss-cache.jar org.jboss.cache.Version 



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905098#3905098

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905098


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBossMQ AUTO_ACKNOWLEDGE not working ?

2005-11-03 Thread aioaneid
I'm using the default cofiguration for jboss 4.0.3 and I have two standalone 
clients: one sends a single persistent message to a queue and that one works 
properly. After that I start the second standalone client which looks pretty 
much like this:

Session s = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageConsumer consumer = s.createConsumer(destination);
consumer.setMessageListener(new MessageListener() {
public void onMessage(Message message) {
System.out.println(message);
throw new RuntimeException(please retry me);
}
});

The first time I start the consumer application it receives the message 
properly but the second time and so on the message is no longer received and 
the web console shows the queue size to be zero.

The behavior I see is not consistent with this excerpt from the jms 1.1 javadoc:

public static final int AUTO_ACKNOWLEDGE

With this acknowledgment mode, the session automatically acknowledges a 
client's receipt of a message either when the session has successfully returned 
from a call to receive or when the message listener the session has called to 
process the message successfully returns. 

Is it a (known) bug ?


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905101#3905101

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905101


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - NullpointerException with large content

2005-11-03 Thread Dafolo
I have made a JSP from where it's possible to upload files to the server. Once 
the file is uploaded it is base64 encoded and the resulting string is inserted 
in a textarea in the JSP. The page is then submited to the server.

My problem is that when I try to get the content of the field using 
request.getParameter(base64file) I get the following error:


  | java.lang.NullPointerException
  | org.apache.catalina.connector.Request.parseParameters(Request.java:2340)
  | 
org.apache.catalina.connector.Request.getParameterNames(Request.java:1038)
  | 
org.apache.catalina.connector.RequestFacade.getParameterNames(RequestFacade.java:359)
  | org.apache.jsp.SendMail_jsp._jspService(org.apache.jsp.SendMail_jsp:122)
  | org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
  | javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
  | org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  | org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  | javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
  | 

I only get the problem if I upload a large file (2mb+). I think that it has 
something to do with size of the request, as it now contains the base64 encoded 
file. Does anyone know what to do?


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905103#3905103

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905103


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Logs are flooded with RpcDispatcher Exceptions

2005-11-03 Thread [EMAIL PROTECTED]
Have you tried making com.*.*.util.hibernate.UUIDVarcharType  Serializable?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905109#3905109

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905109


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Incorrect DataSource lookup

2005-11-03 Thread eet_kreef
I am creating two datasources in a file named mssql-ds.xml as follows. The 
databases are on different servers, and have different names.

?xml version=1.0 encoding=UTF-8?
  | datasources
  | local-tx-datasource
  | jndi-namejdbc/one/jndi-name
  | 
connection-urljdbc:microsoft:sqlserver://myserver1:1433;DatabaseName=one/connection-url
  | 
driver-classcom.microsoft.jdbc.sqlserver.SQLServerDriver/driver-class
  | user-nameuser/user-name
  | passwordpassword/password
  | /local-tx-datasource
  | local-tx-datasource
  | jndi-namejdbc/two/jndi-name
  | 
connection-urljdbc:microsoft:sqlserver://myserver2:1433;DatabaseName=two/connection-url
  | 
driver-classcom.microsoft.jdbc.sqlserver.SQLServerDriver/driver-class
  | user-nameuser/user-name
  | passwordpassword/password
  | /local-tx-datasource
  | /datasources
  | 

When I lookup jdbc/one, the connection I get from the datasource is connected 
to jdbc/two. When I remove the second data source definition from the 
mssql-ds.xml file, the connection is made to the correct database.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905108#3905108

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905108


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBossMQ AUTO_ACKNOWLEDGE not working ?

2005-11-03 Thread aioaneid
And the message does not appear in the dead letter queue either.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905110#3905110

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905110


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Verify failed Error with JBOSS

2005-11-03 Thread cuspide
Hi, I'm Cuspide.
I have a problem with JBOSS and the deployment.
I installed JBOSS 4.0.3SP1, I wrote a EJB (a class and two interfaces named 
AdderBean.java, Adder.java and AdderHome.java respectively) and I saved it into 
myProject directory. I also wrote the ejb-jar.xml and jboss.xml files and I 
saved it into META-INF. I compiled the java files and I created the jar file 
(on the files java and xml).
I copied this file (jar) into $JBOSS_HOME/server/all/deploy and I exported this 
path into $CLASSPATH var.
Then I started JBOSS (run -c all) but this message appears:

12:35:23,479 WARN  [EJBDeployer] Verify failed; continuing
java.lang.NoClassDefFoundError: IllegalName: myProject/AdderBean
at java.lang.ClassLoader.preDefineClass(ClassLoader.java:476)
at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at 
org.jboss.mx.loading.RepositoryClassLoader.findClassLocally(RepositoryClassLoader.java:633)
at 
org.jboss.mx.loading.RepositoryClassLoader.findClass(RepositoryClassLoader.java:613)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at 
org.jboss.mx.loading.RepositoryClassLoader.loadClassLocally(RepositoryClassLoader.java:162)
at 
org.jboss.mx.loading.UnifiedLoaderRepository3.loadClassFromClassLoader(UnifiedLoaderRepository3.java:263)
at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:270)
at 
org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:475)
at 
org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:377)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at 
org.jboss.verifier.strategy.EJBVerifier20.verifyBean(EJBVerifier20.java:205)
at 
org.jboss.verifier.strategy.EJBVerifier20.checkSession(EJBVerifier20.java:61)
at org.jboss.verifier.BeanVerifier.verify(BeanVerifier.java:166)
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:559)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
at 
org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy35.create(Unknown Source)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:935)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:789)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:753)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy6.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:319)
at 

[JBoss-user] [JBossCache] - Re: Logs are flooded with RpcDispatcher Exceptions

2005-11-03 Thread [EMAIL PROTECTED]
An alternative to making the mapped class Serializable would be to provide a 
different impl of Hibernate's UserType.assemble()/UserType.disassemble().

disassemble() is meant to return the cacheable representation of the mapped 
class (assemble is then the inverse).

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905112#3905112

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905112


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: InstantiationException during TreeCacheAop.findObjects()

2005-11-03 Thread Motormind
[EMAIL PROTECTED] wrote : ic. And which version this is? If it is not 1.2.4, 
can you try it out? I have junit test case for FileCacheLoader that is working 
under TreeCacheAop.
  | 
  | -Ben

Well, it is version 1.2.4 ... 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905120#3905120

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905120


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - How do I make sure .SAR files are undeployed first

2005-11-03 Thread raimreddy
 Hi --

 I am new to JBOSS MBeans. I created a MBean (my_mbean.sar) and I can 
deploy and undeploy the MBean successfully. But the problem is how to make sure 
that my_mbean.sar is undeployed first at the time jboss shutdown.

   Right now, my_mbean.sar is depending upon the datasource, and when I copy my 
.sar file into /deploy/ folder and start the jboss. First the datasource is 
deployed and then my_mbean.sar is deployed and then all other EJB of my 
application are deployed. But when I shut down JBOSS, the EJB are undeployed, 
the my_mbean.sar is undeployed and then the datasource is undeployed. 

   But I want my_mbean.sar need to undeployed before the EJB are undeployed. 
How would I do that ? I tried making EBJDeployer as the dependency for 
my_mbean.sar to see if it makes any undeployment order change, but no use its 
still doing the same thing.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905122#3905122

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905122


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Does jboss-portal 2.0 support LDAP?

2005-11-03 Thread david.calvente
I've sent my mail to your address [EMAIL PROTECTED]

It´s the same on my profile..

Thanks

David

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905123#3905123

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905123


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - JBoss Port

2005-11-03 Thread mribeiro
Hi,

How can change the jboss port??

Thanks in advance

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905124#3905124

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905124


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Automatic Login to web app

2005-11-03 Thread cmiles123
Just to wrap this topic up for the benefit of other people that may need to 
know this sort of thing. Here's how I solved my issues:

1) For authenticating via a Java client using commons httpclient you attempt to 
access a secured resource first and then post to the j_security_check servlet. 
You then follow the redirect that is returned at this point.

2) For authenticating via Javascript or in my case some JSP page you follow the 
same path as #1, whereby you attempt to access a secured resource before 
posting to j_security_check. bstansberry's comment about the AJAX stuff got me 
past the point that to complete the process you have to make sure the 
JSESSIONID cookie is retrieved and added to your current session (thank you for 
that)

Now works like a charm, thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905128#3905128

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905128


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Jboss 3.2.7 allocation 1 connection at a time...

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905130#3905130

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905130


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: ERROR [BeanLock] Saw rolled back tx=TransactionImpl:XidI

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905131#3905131

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905131


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: JBoss4 Hibernate Datasource Hot deployment

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905132#3905132

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905132


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - ClassCastException: AttachmentsImpl

2005-11-03 Thread Francesco
I'm deploying an application on Jboss 4.0.3. This application constructs a 
SOAPMessage with an attachment using SAAJ api. The message seems to be correct, 
but when I do a 

SOAPConnection.call(SOAPMessage, url) 

I get the following error:

 FATAL [org.jboss.axis.Message] InvocationTargetException:
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
at org.jboss.axis.Message.setup(Message.java:333)
at org.jboss.axis.Message.(Message.java:212)
at org.jboss.axis.client.Call.invoke(Call.java:2054)
at 
org.jboss.axis.soap.SOAPConnectionImpl.call(SOAPConnectionImpl.java:125)



Caused by: java.lang.ClassCastException: 
org.jboss.axis.message.SOAPEnvelopeAxisImpl
at org.jboss.axis.attachments.AttachmentsImpl.(AttachmentsImpl.java:134)
... 93 more

I noticed that there is no error If I send the message without any attachment:  

AttachmentPart att = message.createAttachmentPart(
mimeMultipart, mimeMultipart.getContentType());
att.setContentId(multipart-content-id);

soapMessage.addAttachmentPart(att);




Previously I had deployed this application on Jboss 4.0.1 add everything worked 
fine

Can anyone help me?

View the original post : 
http://staging.jboss.com/index.html?module=bbop=viewtopicp=3890738#3890738

Reply to the post : 
http://staging.jboss.com/index.html?module=bbop=postingmode=replyp=3890738


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Adding 'x' to Beginning of Table Names

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905129#3905129

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905129


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Could you advice me in File Persistence Manager?

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905139#3905139

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905139


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - low cpu utilization

2005-11-03 Thread xavieraa2
Hi,

My application is running with Jboss 3.2 under windows.
I have a heavy load treatment module in my application server.

If I run this module out of my application server, it take 100% of a 3.2Ghz CPU 
box and takes 8 minutes.

If I run the same module with the same input data in my application server, it 
takes between 20 and 50 % of a dual CPU box and takes 12 minutes.

Ok, it's a good thing that an application server load is not 100% when 
running this king of heavy load module so that it is able to take into account 
new input demand.

But I wondering if this good thing could be disable or tune so that the dual 
CPU could be used more intensively.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905127#3905127

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905127


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Artificially delaying messages

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905138#3905138

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905138


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: BMT, EJBException and redelivery

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905144#3905144

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905144


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: JCA and Legacy Systems

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905133#3905133

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905133


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: scaling of MDB instance pools

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905142#3905142

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905142


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: getBinaryStream method can't get image from MSSQLServer

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum and JBoss code isn't even involved in the result set processing in 
3.2.3.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905134#3905134

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905134


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBossMQ AUTO_ACKNOWLEDGE not working ?

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905137#3905137

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905137


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss JMSReplyTo Not Sending to Specified Queue

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
No logging

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905140#3905140

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905140


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Standalone Client (POJO)

2005-11-03 Thread [EMAIL PROTECTED]
You don't have 2PC in a POJO environment.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905141#3905141

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905141


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Messages redelivered even if acked

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905145#3905145

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905145


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Use the forums not JIRA to ask for help

2005-11-03 Thread [EMAIL PROTECTED]
oglueck wrote : see here for what it takes to solve the problem: 
http://www.odi.ch/weblog/posting.php?posting=210

You mean read the docs/faq rather than post a bug report?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905146#3905146

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905146


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portlets and EJB3

2005-11-03 Thread gruenewa
Is it possible to call EJB3 beans from my portlet which is running on jboss 
portal? Has anyone here in the forum tried that? Are there any pitfalls known?

Best regards, 
Alexander

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905149#3905149

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905149


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBP 2.2 on 4.0.3 SP1

2005-11-03 Thread dunks
Whoa I am using JBoss As from the installer too. I'll try the binary zip and 
let you know. Thanks!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905148#3905148

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905148


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Problem with EJB timer perssistance

2005-11-03 Thread borje.jonsson
Hello,

I don't get timerbean persistance to work at all.
I have created a stateless sessionbean that implements TimedObject. When i call 
the business metod initializeTimer(...) ejbTimeout(Timer) is called as expected 
and the call is repeated every other minute.

The problem is that the timer is not persisted and never restored if Jboss is 
shutdown and restarted. Is there anything i have missed?

I use Jboss 4.0.2.


  | public class CurrencyReaderBean implements SessionBean, TimedObject
  | 
  | private TimerHandle timerHandle = null;
  | 
  | public void initializeTimer(Date startTime, long timeout, String id)
  | {
  | TimerService timerService = ctx.getTimerService();
  | Timer timer = timerService.createTimer(startTime, timeout, id);
  | this.timerHandle = timer.getHandle();
  | }
  | 
  | public void ejbTimeout(Timer timer) 
  | {
  | String id = (String)timer.getInfo();
  | logManager.info(ejbTimeout, id is:  + id);
  | }
  | }

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905153#3905153

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905153


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: Incorrect DataSource lookup

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Works for me. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905155#3905155

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905155


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: Failed native method call when using JBoss 4

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905158#3905158

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905158


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: How do I make sure .SAR files are undeployed first

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905159#3905159

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905159


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: JNDI - StreamCorruptedException [unexpected block data]

2005-11-03 Thread [EMAIL PROTECTED]
JDK bug in error message.
Stream Corrupted - ClassNotFoundException

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905157#3905157

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905157


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: JBoss service in linux not working correctly

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum. Try a Linux forum where you can ask about permissions and paths.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905163#3905163

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905163


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: XIndice deployment in JBoss 4.02

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Use the Xindice forums.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905164#3905164

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905164


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Verify failed Error with JBOSS

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Not a JBoss issue. Verify Error - class file broken

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905161#3905161

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905161


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Portlets and EJB3

2005-11-03 Thread [EMAIL PROTECTED]
the JBoss Wiki does that as far as I know 
http://labs.jboss.com/portal/?ctrl:id=page.default.infoproject=jbosswiki

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905167#3905167

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905167


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Class Loading problem with EJB 2

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905165#3905165

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905165


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: How to turn off XML validation of Spring documents on 4.

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Use the Spring forums.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905172#3905172

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905172


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Placement of properties files in Enterprise Archive

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Read the spec.

Nothing in the root of an ear is ever added to the classpath.
It is just a holder/consolidator for other deployments.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905168#3905168

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905168


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - READ THIS FIRST

2005-11-03 Thread [EMAIL PROTECTED]
This forum is for user questions on installation and configuration.

Help on asking questions to get an answer:
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp

The FAQ
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFAQ

If you are a beginner installing JBoss for the first time go here:
http://www.jboss.com/index.html?module=bbop=viewforumf=141

If you are upgrading, make sure you have read and understand the release notes. 
We are not going to repeat them here just because you are too lazy to read 
them! :-)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905175#3905175

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905175


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: 3.2.5 MS-SQL Problems on Fedora

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Wrong forum, unless you can show something other than an MSSQL error message.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905177#3905177

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905177


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: jboss.deployment.DeploymentException: Invalid XML:

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Not a JBoss issue.


  | ?xml
  | 

MUST be the first characters in an xml document. Any spaces preceding it means 
it is invalid.
Read the spec.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905178#3905178

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905178


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Custom cacheloader ignores get method implementation?

2005-11-03 Thread jimcross
I'm basically having the same problem. 

During get(), the exists is called on CacheLoader but not the actually get() so 
the object is never loaded unless it was preloaded. During preload, the logic 
is to call exists then get.

Even if this worked correctly, the way it works would be problematic.

Let's say that there is a large amount of overhead in determining something 
exists - for example, we have to actually load it.

If we have to load it to be able to say it exists, we will then have to load it 
again to actually return it. A double load for every object.

Am I missing something with this?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905176#3905176

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905176


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss MDB to Webshpere MQSeries

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Use the WSMQ forums.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905182#3905182

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905182


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: CMP Table creation error

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
CMP Forum

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905183#3905183

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905183


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: setRollbackOnly problem

2005-11-03 Thread [EMAIL PROTECTED]
eldavio wrote : Just wondering,  if any of the JBoss team are monitoring, 
should I add this into JIRA
  | to escalate the problem ?
  | 
  | Cheers

http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
No you should read the spec, even if it is buried in the referenced JTA/OTS 
specs.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905181#3905181

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905181


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: setRollbackOnly problem

2005-11-03 Thread [EMAIL PROTECTED]
You cannot access any transactional resource once the transaction
is marked for rollback. This includes entity beans, datasources
or anything that wants to do things with the transaction state.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905180#3905180

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905180


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Problem with JBoss 4.0.3

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905179#3905179

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905179


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: on-find read-ahead

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
CMP forum

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905186#3905186

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905186


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: You cannot commit with autocommit set!

2005-11-03 Thread [EMAIL PROTECTED]
marchesev wrote : 
  | I haven't the code of the 3rd party hibernate wrapper the application is 
using
  | 
Use their forums.
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905187#3905187

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905187


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: ConnectionFacory MBean name wanted

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
FAQ

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905188#3905188

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905188


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] stopping jboss problem

2005-11-03 Thread Andrei
I start jboss using an ant exec task. and also stop it with other ant exec 
task.


target name=run-jboss
 parallel
   echo message=--- atempting to start JBoss /
   exec dir=c:\java\jboss\bin executable=cmd.exe os=Windows XP
arg line=/c c:\java\jboss\bin\run_unid_nocache.bat/
   /exec

   sequential
echo message=--- waiting fo Jboss to 
start /
waitfor maxwait=5 maxwaitunit=minute checkevery=30 
checkeveryunit=second

 http url=http://localhost:9080/app/
/waitfor
echo message=--- I think Jboss is started /

 echo message= Stopping JBoss 
++ /echo

 exec dir=c:\java\jboss\bin executable=cmd.exe os=Windows XP
  arg line=/c c:\java\jboss\bin\shutdown.bat -s localhost:1099/
 /exec
 echo message= JBoss Stopped 
++ /echo


   /sequential

 /parallel
/target

The problem is that the ant task never ends (i think the jboss process  is 
not killed ). Does any body have an ideea how to end this task or the jboss 
process?






---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss MDB to Webshpere MQSeries

2005-11-03 Thread [EMAIL PROTECTED]
Positive. WSMQ has (or at least used to have) a default one hour timeout 
on all listeners after which it stops delivering messages.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905190#3905190

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905190


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss MDB to Webshpere MQSeries

2005-11-03 Thread jboss_mq
Thank you Adrian. I will post to the WSMQ forum.

My concern is this is not a WSMQ issue. There could be some settings inside the 
JBoss container that removes an idle MDB after a certain period. Are you sure 
this is not the case? Thanks for your help.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905189#3905189

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905189


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: UserTransaction timeout default

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
Read the spec.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905184#3905184

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905184


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBoss MDB listening on WSMQ queue

2005-11-03 Thread jboss_mq
We have a JBoss MDB listening on MQSeries queue. Everything is fine until after 
the MDB does not receive any message for about two hours. At that time, the MDB 
simply stops working. It has to be redeployed. 

We are using JBoss 4.0.2.

It does not seem like an MQ issue. Is there a JBoss container setting that 
removes idle MDB after certain period? Thanks!


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905191#3905191

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905191


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Security and Servlet

2005-11-03 Thread radekg2
Hello,
  I am not sure to what section post this question so I try here.
I have application which uses FORM authentication method.
My every page is composed using Tiles mechanism. Tiles is including three jsp 
files (header, body and footer) and one servlet which generates menu part of 
the page.

Everything is going smoothly except for j_security_check magic servlet where 
menu part is not included (without any error). Menu Servlet's 'doGet' method is 
not even invoked. 

This seems not to be tiles problem 'cause I have tried to include Menu servlet 
using jsp:include tag. Without any success.

Does anyout has any ideas?

Cheers,
  Radoslaw Grzanka

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905194#3905194

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905194


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Adding 'x' to Beginning of Table Names

2005-11-03 Thread degriffing
Ok, what is the correct forum?  I tried searching the Wiki and other online 
sources for the root cause of my problem without any success.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905202#3905202

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905202


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss 4.0.2 MDB bind to remote MQSeries

2005-11-03 Thread jboss_mq
Adrian and Luc,

I have posted my issue elsewhere but it seems this thread is a good place.

Using this approach, we got the MDB working but however the MDB stops working 
after around two hours of idle time.

I wrote a java program using WSMQ base class that listens on a WSMQ queue with 
unlimited wait. It still works even after 10 hours of idle time.

I am wondering if there is an EJB setting inside the JBoss container that is 
disconnecting the MDB after certain idle period?

Can you see if you can duplicate this problem? Or you may be able to point me 
to a solution. Thanks!


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905204#3905204

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905204


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Exception in the starting stage

2005-11-03 Thread frannack
Does anyone have an idea?

Thank 

Franck

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905201#3905201

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905201


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Artificially delaying messages

2005-11-03 Thread hargitt
I find no information regarding delaying messages in a queue in the FQA. 

From what I have studied, time-to-live regards how long the message will exist 
in the queue, not how long the message must stay in the queue.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905192#3905192

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905192


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Notification for removeData() calls

2005-11-03 Thread martinLuene
Sorry for asking again.
Do you think, this is a bug?
I found no according JIRA Issue, i thought i ask here before opening an JIRA 
Issue.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905199#3905199

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905199


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss MDB to Webshpere MQSeries

2005-11-03 Thread jboss_mq
We are using MQ 5.3 on solaris. I wrote a java program that keeps receiving 
with wait on a queue and it works fine even after 10 hours of idle time.

Using MDB inside JBoss, does it ultimately makes client connection to MQ and do 
a receive with unlimited wait time?

Thanks for your help.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905195#3905195

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905195


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: JBoss Port

2005-11-03 Thread darranl
Which one?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905198#3905198

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905198


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Please don't deprecate Node.getData()

2005-11-03 Thread martinLuene
We use this method to get an iterator for the key-value-pairs of a TreeNode. 
The proposed alternative solution is to  Use get(Object key) instead., but 
this requires to know all keys within this node.

We use this e.g. to remove only out-dated values from the cache. This is much 
faster than to remove all and recalculate all the values.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905206#3905206

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905206


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: Incorrect DataSource lookup

2005-11-03 Thread eet_kreef
No Adrian, actually it doesn't.

I can't seem to find the Wiki section about 
Reasons-for-really-odd-behaviour-when-using-3.2.5 or 
You-stupid-twit-you-have-misconfigured-xyz.

We have two instance with exactly the same data source configurations (matching 
the information in the Wiki). Only differences are JB 3.2.1 (running on 
Windows) and JB 3.2.5 (running on Fedora).

3.2.1 works, 3.2.5 does not. I need to find out why, and that is why I am 
trying a Discussion forum.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905213#3905213

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905213


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: JBoss Port

2005-11-03 Thread mribeiro
the port that he listens to http request 8080?

thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905215#3905215

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905215


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - why my jboss start so slowly?

2005-11-03 Thread swiminthesea
I use jdk5.0 and jboss4.0.2. when I start jboss default server in eclipse 
ide,It will take a long long time to start (take almost 50s), but if I start it 
from my  colleague's computer, it start very smooth and very  fast .So I wonder 
what's wrong in my computer.From the logging message in the console,I just  
find  when just this message appear:

22:41:01,203 INFO  [NamingService] Started jndi bootstrap jnpPort=1099, 
rmiPort=1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, 
Server [EMAIL PROTECTED]

it will wait for a long time then this message appeal:

22:43:14,515 INFO  [Embedded] Catalina naming disabled



Hope someone will help me, thank you



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905214#3905214

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905214


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: JSSE Debug Output Missing In 4.0.1 Log

2005-11-03 Thread OliverHrdz
Yes, those entries were uncommented at one time, and they still did not enable 
the output I was looking for.
I believe the problem is that Tomcat 5.0.28 no longer uses the JSSE14Support 
class that logged this output.  In researching this issue, I've modified the 
source for this class, adding my own log.info() statements, and they are not 
appearing at all.
My current work environment prevents me from accessing this forum often enough, 
as my project is in a temporary location due to Hurricane Katrina, and I have 
no internet access from my development workstation.  I'll continue to chase 
this issue along the suspicion that JSSE14Support is not called in Tomcat 
5.0.28.  I'll post my findings when I can, and solicit more help if I run into 
another brick wall.
Thanks Scott!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905218#3905218

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905218


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Get list of users/roles no matter what JAAS security mod

2005-11-03 Thread cmiles123
I wanted to throw this out there and see if this is at all possible. In light 
of there not being anyway to get such things as list of all users, list of 
all roles etc etc via JBoss, I was thinking about modifying the JBoss code to 
actually allow this. Here's what I was thinking:

1) Create a new abstract Login Module which extends AbstractServerLoginModule 
which provides the new methods such as getAllusers(), getAllRoles(), 
getRoleMembers() etc etc

2) Custom Login Modules could extend this new abstract Login Module and provide 
the code to return this new information from the actual Security Provider 
implementation

3) Expose these new methods in the JaasSecurityManager by implementing some 
other new interface. The JassSecurityManager would need to cycle through all 
the currently installed Login Modules for the given security domain and invoke 
the appropriate new methods.

The thing I wanted to know if it was possible was whether the 
JaasSecurityManager has access to the actual Login Module classes. So given a 
security domain can you get a handle to the actual Login Modules so that you 
could then call the new methods?

Any comments and information about the SecurityManager and Login Modules would 
be appreciated, thanks.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905220#3905220

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905220


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Logs are flooded with RpcDispatcher Exceptions

2005-11-03 Thread sreepraveen_2000
Thank you surtani for you reply; I am using
Version:1.2.4
CVS:$Id: Version.java,v 1.5.2.1 2005/10/05 03:49:00 bwang Exp $

I tried making com.*.*.util.hibernate.UUIDVarcharType Serializable serializable 
but it throws an exception with different class
[RpcDispatcher]{17} exception=java.io.NotSerializableException: java.util.Logger

I have increased the logging level for the RpcDispathcer and was able to find 
message being logged just before the Exception

[11-03-05 09:01:19](Fst)23360[RpcDispatcher ]{58} 
dests=[10.10.14.100:11002, 10.10.14.100:11001], 
method_call=_replicate(_put(null, 
/com/x/facts/IComplement/com.x.facts.IComplement#19B6014CAF2D4A7C9307EAC722B1B7C5,
 item, CacheEntry(com.x.services.model.entities.User)[EMAIL PROTECTED],[EMAIL 
PROTECTED],F1AB7388FE154505A1
FEB67DDC9F71AF,$env.offboardagentsserver.url},13E7CAA5FDEB42518A798A77A19F70B0,false,Administrator,oiHPnVVzYOAK.,957B3CB6243B4F288023A487836E17AB,greytheme,ACTIVE,null,null,2005-07-21
 10:35:03.0,nu
ll,10.10.10.167,19B6014CAF2D4A7C9307EAC722B1B7C5], true, 0)), mode=2, 
timeout=1
[11-03-05 09:01:19](S)23361[RpcDispatcher ]{58} 
exception=java.io.NotSerializableException: 
com.sensorlogic.services.util.hibernate.UUIDVarcharType

I have not tried the third alternative.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905224#3905224

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905224


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss 4.0.2 MDB bind to remote MQSeries

2005-11-03 Thread [EMAIL PROTECTED]
jboss_mq wrote : Adrian and Luc,
  | 
  | I have posted my issue elsewhere but it seems this thread is a good place.
  | 

http://wiki.jboss.org/wiki/Wiki.jsp?page=BadPostHijack

AND DO NOT SEND UNSOLICTED E-MAILS TO PEOPLE!!!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905227#3905227

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905227


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Logs are flooded with RpcDispatcher Exceptions

2005-11-03 Thread [EMAIL PROTECTED]
If you have a logger in your class, I'd strongly recommend making it transient 
or static!  :)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905229#3905229

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905229


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss MDB listening on WSMQ queue

2005-11-03 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=BadPostCrossPost

You are very successfully ensuring that you annoy the people that you
are trying to get help from.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905230#3905230

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905230


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Limiting MDB pool size

2005-11-03 Thread madeonmoon
Hello all,

I was under the impression that in order to limit my mdb pool size to the 
strict max of 25, all I had to do was to set the container-pool-conf elements:

   container-pool-conf
 25
 true
 15000
   /container-pool-conf

However, once deployed and bombarded with jms messages, the pool never grows 
beyond 15 (accroding to jmx-console monitoring). I looked into the 
strandardjboss.xml further and realized that there is also   
invoker-proxy-binding for message-driven-beans which specifies 

  proxy-factory-config
...
1
15
3
1
...

Can someone explain (or point me to comprehensive docs on the subject) what the 
difference is between setting the container-pool-conf.MaximumSize and 
proxy-factory-config.MaximumSize?

Thanks a lot
James



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905232#3905232

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905232


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: JBoss service in linux not working correctly

2005-11-03 Thread fmaredia
frannack,

Can you run jboss on the console?  My installation was not through the jar 
installer.  I used the zipped up version.  I downloaded the EJB3 zip file and 
made the appropriate changes.  

adrian,

I am sorry, but it seems to be a JBoss problem, because JBoss works fine under 
the console mode, and it seems to work fine as a service except that the web 
page stops loading after a while.  I don't know what it could be as I followed 
the instructions.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905233#3905233

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905233


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JBoss MDB listening on WSMQ queue

2005-11-03 Thread jboss_mq
I am sorry but you asked me to post to the WSMQ forum. This is the most 
relevant one here under JBoss forum.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905234#3905234

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905234


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: JBoss Port

2005-11-03 Thread heinz500
Go to following directory:

deploy\jbossweb-tomcat50.sar

Just open the file web.xml and change the port attribute of the connector tag.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905236#3905236

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905236


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - server hangs on long transaction

2005-11-03 Thread abv
Hi

I use JBoss 4.0.3SP1 with CMP. If I invoke a Session Bean method from a Java 
Client that starts a long transaction (e.g. 1 minute) the server hangs. That 
means that if any other client invokes a method the server does not answer till 
the first method call is finished. Does JBoss not handle multiple method 
invocations parallel? Could this be a configuration problem?

regards
Sven

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905238#3905238

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905238


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss MDB to Webshpere MQSeries

2005-11-03 Thread [EMAIL PROTECTED]
First. 
The MDB uses a ConnectionConsumer not a MessageConsumer so your comparison is
invalid though probably not completely worthless.

Second.
http://wiki.jboss.org/wiki/Wiki.jsp?page=BadPostNotJBoss
This is all IBM code anyway. If I did debug the problem, there is nothing I can 
do to fix it. 

I would do it if you bought a support contract, but debugging non JBoss
software is way beyond the scope of a free help forum.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905239#3905239

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905239


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Limiting MDB pool size

2005-11-03 Thread madeonmoon
For some reason the nested element names were not displayed in the post above. 

For  container-pool-conf:

 MaximumSize: 25
 strictMaximumSize: true
 strictTimeout: 15000

And for  proxy-factory-config:

MaximumSize: 15



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905237#3905237

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905237


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Can't get SOAP message

2005-11-03 Thread BogSolomon
I am using Jboss 4.0.2 while connecting to a web service and I need to see the 
messages that are being sent and received. I have set the logging for both 
org.jboss.axis and org.jboss.webservice in 
{jboss-home}\server\default\conf\log4j.xml to DEBUG. I am getting a number of 
debug messages from both of them like Serializers/Deserializers used, etc. but 
I am not seeing the actual SOAP messages that are being sent on the wire. Is 
there another configuration I need to set up? 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905240#3905240

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905240


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Stateless Session Bean behind firewall/proxy -- RMI over

2005-11-03 Thread rockhopper
Hi all,

I've got it.

Tutorial is for deployment on JBoss 3.0 and *NOT* JBoss 3.2:
anonymous wrote : http://www.nemesisit.ro/opendocs/ejboverhttp.html 

DTD of jboss.xml has changed in v3.2, configuration should be for each ejb:
  
 ejb-nameMyBean/ejb-name
 jndi-nameejb/MyBean/jndi-name
 invoker-bindings

   
invoker-proxy-binding-namestateless-http-invoker/invoker-proxy-binding-name

 /invoker-bindings
method-attributes
/method-attributes
  

and:

   invoker-proxy-bindings
  !-- A custom invoker for RMI/HTTP --
  invoker-proxy-binding
 stateless-http-invoker
 invoker-mbeanjboss:service=invoker,type=http/invoker-mbean
 proxy-factoryorg.jboss.proxy.ejb.ProxyFactory/proxy-factory
 proxy-factory-config
client-interceptors
   
  org.jboss.proxy.ejb.HomeInterceptor
  org.jboss.proxy.SecurityInterceptor
  org.jboss.proxy.TransactionInterceptor
  org.jboss.invocation.InvokerInterceptor
   
   
  org.jboss.proxy.ejb.StatelessSessionInterceptor
  org.jboss.proxy.SecurityInterceptor
  org.jboss.proxy.TransactionInterceptor
  org.jboss.invocation.InvokerInterceptor
   
/client-interceptors
 /proxy-factory-config
  /invoker-proxy-binding
   /invoker-proxy-bindings 

Modifying jboss.xml and jboss-service.xml allow to enable https if needed.

Regards.

Johann

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905241#3905241

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905241


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: JBoss MDB to Webshpere MQSeries

2005-11-03 Thread jboss_mq
I appreciate all your time. I just need to make sure there is no setting inside 
JBoss that I am not aware of. I can focus on debugging the non-JBoss portion of 
the code myself. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905242#3905242

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905242


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Logs are flooded with RpcDispatcher Exceptions

2005-11-03 Thread sreepraveen_2000
As far as i think treecache is working for the local, but chokes when ran in 
REPL_SYNC mode. 
Is there a different alternative to go about this, because there will be many 
places where i need to change the logger and use UserType.assemble() and 
disassemble()

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905243#3905243

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905243


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Get list of users/roles no matter what JAAS security mod

2005-11-03 Thread [EMAIL PROTECTED]
No, this won't be supported via further overloading the jaas login modules. 
They are not designed for this and nothing but the jaas implementation has 
access to the login modules. The only tangible output from jaas is a subject.

You might as well create a new security info service with its own pluggable 
query abstraction for obtaining this information.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3905244#3905244

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3905244


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - any body scene this before?

2005-11-03 Thread cachete
devjac1# /etc/init.d/jboss4c start
Starting jboss [all]: 

devjac1# 
=

  JBoss Bootstrap Environment

  JBOSS_HOME: /home/jboss/jboss4-c

  JAVA: /usr/java/jdk1.5.0_02/bin/java

  JAVA_OPTS: -server -Xms1024m -Xmx2048m -XX:NewSize=128m -XX:MaxNewSize=128m 
-XX:PermSize=128m -XX:MaxPermSize=128m -XX:+DisableExplicitGC 
-Dprogram.name=run.sh

  CLASSPATH: 
/home/jboss/jboss4-c/bin/run.jar:/usr/java/jdk1.5.0_02/lib/tools.jar

=

10:15:16,171 INFO  [Server] Starting JBoss (MX MicroKernel)...
10:15:16,173 INFO  [Server] Release ID: JBoss [Zion] 4.0.2 (build: 
CVSTag=JBoss_4_0_2 date=200505022023)
10:15:16,174 INFO  [Server] Home Dir: /home/jboss/jboss4-c
10:15:16,174 INFO  [Server] Home URL: file:/home/jboss/jboss4-c/
10:15:16,175 INFO  [Server] Library URL: file:/home/jboss/jboss4-c/lib/
10:15:16,176 INFO  [Server] Patch URL: null
10:15:16,177 INFO  [Server] Server Name: all
10:15:16,177 INFO  [Server] Server Home Dir: /home/jboss/jboss4-c/server/all
10:15:16,177 INFO  [Server] Server Home URL: 
file:/home/jboss/jboss4-c/server/all/
10:15:16,178 INFO  [Server] Server Data Dir: 
/home/jboss/jboss4-c/server/all/data
10:15:16,178 INFO  [Server] Server Temp Dir: /home/jboss/jboss4-c/server/all/tmp
10:15:16,178 INFO  [Server] Server Config URL: 
file:/home/jboss/jboss4-c/server/all/conf/
10:15:16,179 INFO  [Server] Server Library URL: 
file:/home/jboss/jboss4-c/server/all/lib/
10:15:16,179 INFO  [Server] Root Deployment Filename: jboss-service.xml
10:15:16,184 INFO  [Server] Starting General Purpose Architecture (GPA)...
10:15:16,627 INFO  [ServerInfo] Java version: 1.5.0_02,Sun Microsystems Inc.
10:15:16,627 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 
1.5.0_02-b09,Sun Microsystems Inc.
10:15:16,627 INFO  [ServerInfo] OS-System: Linux 2.4.21-4.ELsmp,i386
10:15:17,216 INFO  [Server] Core system initialized
10:15:23,763 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
10:15:23,890 INFO  [WebService] Using RMI server codebase: 
http://devjac1.lexgen.com:8083/
10:15:24,134 INFO  [NamingService] Started jndi bootstrap jnpPort=1099, 
rmiPort=1098, backlog=50, bindAddress=/192.168.2.48, Client SocketFactory=null, 
Server [EMAIL PROTECTED]
10:15:30,444 INFO  [Embedded] Catalina naming disabled
10:15:31,022 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on 
http-192.168.2.48-8080
10:15:31,026 INFO  [Catalina] Initialization processed in 503 ms
10:15:31,032 INFO  [StandardService] Starting service jboss.web
10:15:31,041 INFO  [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.5.9
10:15:31,121 INFO  [StandardHost] XML validation disabled
10:15:31,166 INFO  [Catalina] Server startup in 139 ms
10:15:31,418 INFO  [TomcatDeployer] deploy, ctxPath=/invoker, 
warUrl=file:/home/jboss/jboss4-c/server/all/deploy/httpha-invoker.sar/invoker.war/
10:15:32,387 INFO  [TomcatDeployer] deploy, ctxPath=/ws4ee, 
warUrl=file:/home/jboss/jboss4-c/server/all/tmp/deploy/tmp51570jboss-ws4ee.war/
10:15:32,698 INFO  [TomcatDeployer] deploy, ctxPath=/, 
warUrl=file:/home/jboss/jboss4-c/server/all/deploy/jbossweb-tomcat55.sar/ROOT.war/
10:15:33,275 INFO  [TomcatDeployer] deploy, ctxPath=/juddi, 
warUrl=file:/home/jboss/jboss4-c/server/all/deploy/juddi-service.sar/juddi.war/
10:15:34,542 INFO  [RegistryServlet] Loading jUDDI configuration.
10:15:34,544 INFO  [RegistryServlet] Resources loaded from: 
/WEB-INF/juddi.properties
10:15:34,545 INFO  [RegistryServlet] Initializing jUDDI components.
10:15:35,872 INFO  [SnmpAgentService] SNMP agent going active
10:15:36,738 INFO  [JBOSSPARTITION1C] Initializing
10:15:36,855 INFO  [STDOUT] 
---
GMS: address is devjac1:35774 (additional data: 17 bytes)
---
10:15:38,885 INFO  [JBOSSPARTITION1C] Number of cluster members: 1
10:15:38,885 INFO  [JBOSSPARTITION1C] Other members: 0
10:15:38,885 INFO  [JBOSSPARTITION1C] Fetching state (will wait for 3 
milliseconds):
10:15:38,885 INFO  [JBOSSPARTITION1C] New cluster view for partition 
JBOSSPARTITION1C (id: 0, delta: 0) : [192.168.2.48:1099]
10:15:38,890 INFO  [JBOSSPARTITION1C] I am (null) received membershipChanged 
event:
10:15:38,891 INFO  [JBOSSPARTITION1C] Dead members: 0 ([])
10:15:38,891 INFO  [JBOSSPARTITION1C] New Members : 0 ([])
10:15:38,891 INFO  [JBOSSPARTITION1C] All Members : 1 ([192.168.2.48:1099])
10:15:38,937 INFO  [HANamingService] Started ha-jndi bootstrap jnpPort=1100, 
backlog=50, bindAddress=/192.168.2.48
10:15:38,944 INFO  [DetachedHANamingService$AutomaticDiscovery] Listening on 
/0.0.0.0:1102, group=230.0.0.4, HA-JNDI address=192.168.2.48:1100
10:15:39,815 INFO  [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, 
warUrl=file:/home/jboss/jboss4-c/server/all/deploy-hasingleton/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
10:15:40,790 INFO  [orb] 

  1   2   >