[JBoss-user] [Beginners Corner] - Re: lookup-problem in a swing-client

2005-06-30 Thread Oliver Roell
Hello Andy and fbiaggi,

thank you very much, you brought me on the right track.

I have looked in the JMX-Console:

Ejb Module: FiboEJB.jar
java:comp namespace of the Fibo bean:
  +- env (class: org.jnp.interfaces.NamingContext)

Global JNDI Namespace
+- ejb (class: org.jnp.interfaces.NamingContext)
  |   +- Fibo (proxy: $Proxy50 implements interface
   tutorial.interfaces.FiboHome,interface javax.ejb.Handle)

The Fibo-Bean resides in the Global JNDI namespace, and not,
like expected, in the java:comp namespace of the Fibo-Bean.

I have changed my lookup like followed, and it works:

Object ref = context.lookup(ejb/Fibo);

But two questions remain:

Why do the Fibo-Bean resides not in the java:comp namespace
of the Fibo-Bean? I think, the reason has to do with the xml-files, but I am 
not sure.

Why does the ComputeServlet-Class from the JBoss-Tutorial works with the 
following lookup:

Object ref = context.lookup(java:/comp/env/ejb/Fibo);

I have thought, if the Servlet works with lookup(java:/comp/env/ejb/Fibo), 
the Swing-Client should work with this lookup, too. But my assumption was 
wrong. I don't understand, how the servlet can find the name 
java:/comp/env/ejb/Fibo, although nothing is bound with java:comp. That's 
strange, isn't it?

Regards
Oliver


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Jboss class loader issue

2005-06-30 Thread stevenpeh
We're running into a very weird class loader problems.. we are currently using 
JBoss 4.0.2, basically the web class loader policy are the defaults ones,

  false
  false

The server instance has an ear file deployed that is using spring framework.  
Inside we can see that it has a bunch of spring applicationContext.xml with 
various kinds of configurations/beans.

Now we are trying to develop a web app deployed as an independant war file in 
JBoss.   We are using a client jar from the ear application, inside it does not 
have any spring configs.  However our web app is also using spring with our own 
applicationContext.xml.  Now the problem is for some reason, when we deploy and 
use our web app, spring is loading the spring configs in the ear's ejb and 
overriding the ones in our web app!!  How is this possible, doesn't the class 
loader settings above disable the unified class loader policy in JBoss, if 
we're not doing it right can someone please point out how to disable the 
unified class loader, the log snippet showing the overriding in spring is below.


2005-06-30 14:52:24,546 INFO  
[org.springframework.beans.factory.support.DefaultListableBeanFactory] 
Overriding bean definition for bean 'com.foobar.arch.ApplicationConfiguration': 
replacing [Root bean with class 
[org.springframework.context.support.ClassPathXmlApplicationContext] defined in 
URL 
[jar:file:/C:/DevelopmentTools/JBoss/jboss-4.0.2/server/default/tmp/deploy/tmp2205springapp-exp.war/WEB-INF/lib/common.jar!/beanRefFactory.xml]]
 with [Root bean with class 
[org.springframework.context.support.ClassPathXmlApplicationContext] defined in 
URL 
[jar:file:/C:/DevelopmentTools/JBoss/jboss-4.0.2/server/default/tmp/deploy/tmp2203App.ear-contents/CommonEJBs.jar!/beanRefFactory.xml]]


Notice that it is overiding the bean from our war file with the one in the ear 
file  Anyone got any suggestions?  

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Jboss class loader issue

2005-06-30 Thread stevenpeh
whoops i guess the class loader config tags is not showing up, basically the 
Java2ClassLoadingCompliance and the UseJBossWebLoader is set to false



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: NUll when consmuing JBoss service with .Net client

2005-06-30 Thread pshrimpton
This has been our experience as well.  As we can get a Java, Delphi and gSOAP 
client working with no problem, we have assumed it is an Issue on the .Net side

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - LDAP EJB 3 Hibernate Annotations

2005-06-30 Thread alex_knight
Hi all,
does anyone know where I can find a tutorial that describes how to write an 
entity bean that stores its data in an open ldap directory service?

kind regards,
alex

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - Re: Jasperreports Error-Jboss32.6-Tomcat5.0

2005-06-30 Thread decastar
I have same problem on Tomcat 4.1.30. Checked and only copy of iText is  
itext-1.02b.jar. Could it be anything else???

Much obliged.


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: NUll when consmuing JBoss service with .Net client

2005-06-30 Thread Scharlau
Did you generate stubs, etc from the WSDL with the .NET service? I did this for 
a doc-lit service, and was able to acquire the objects without any hassle.

Bruce

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Questions about the Wiki Page WSServerEJB

2005-06-30 Thread clairecostello
Hi Barry,

Basic structure of JAR is:

META-INF/MANIFEST.MF
META-INF/webservices.xml
META-INF/jboss.xml
META-INF/ejb-jar.xml
META-INF/jaxrpc-mapping.xml
META-INF/wsdl/servicesfilename.wsdl

Followed by all the packages and classes.

http://www.dcl.hpi.uni-potsdam.de/research/asg/ws4ejb/ has a diagram schematic 
showing this structure.

Also the stateless session bean, OrganizationSLSB is the implementation class 
for the service endpoint interface listed on the WIKI page. It contains the 
actual code for the method getContactInfo. 

HTH, Claire.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - Persistence with AttributePersistenceService

2005-06-30 Thread superomega
Hallo,

I am using the AttributePersistenceService in my MXBean.

1)
When I am starting the JBoss server with run.bat under Windows the attributes 
of my bean are saved correctly.

When I am starting the JBoss server as a Windows-Service (wrapper - 
tanukisoftware) then the attributes of my bean are not saved any more.
I tried to start as SYSTEM and the local User which is the starter of run.bat 
both are not working.

What can I do that the persistence-service is running in the jboss-service?

2)
I have a MXBean and a method 'setUpCounter' which sets the attribute. In the 
web-console the attribute is shown in a textfield. When I am changing the value 
in the textfield and hit return, the change of the value is recognized by the 
persistenceManager which is storing it at once.
When I am calling the method 'setUpCounter' the persistenceManager is 
recognizing no value change.

Is there a possibility to tell the persistenceManager that he should save the  
values of the bean?

Thank you,
Werner Hofmann

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - twiddle invoke method with parameters

2005-06-30 Thread tomerbd2
Hi

I couldnt invoke a method with parameters I tried
anonymous wrote : 
  | twiddle invoke MyTest:service=MyTestObject myOperation (param1) (param2)
  | 

What did i do wrong?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Message bridge between JBoss 3.x and 4.x

2005-06-30 Thread tdevos
Hi,

I searched the JBoss site and the internet for bridges to exchanges messages 
between JBoss 3.x and JBoss 4.x. There is plenty of information to exchange 
messages between JBoss and for instance weblogic but not between 2 branches of 
JBoss. I always run into classpath problems when I try to send a message 
between a JBoss 4.x server and a JBoss 3.x server which is, of course, logical. 

Of course I can update all JBoss instances to the same branch but this will 
nearly be impossible to do in a short amount of time since we have many parties 
communicating with each other. Does anybody have experience with a problem like 
this?

Thanks!

Tim De Vos

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Re: Need to transfer uploaded files from one server to anoth

2005-06-30 Thread geertvds
anonymous wrote : Also JBoss will be on SuSE Linux and natively it does not 
share filesystems easily.

Just install the suse samba packages and set up a samba share.

What you could also do is put an 'rsync' in your crontab and synchronize the 
two directories every once in a while.
however, I would suggest that you don't duplicate data when it is not really 
necessary...

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence CMP/JBoss] - The source code of the 'Ganster Portal'

2005-06-30 Thread grafl
Hi all

Where can I find the source of the 'Gangster Portal' mentioned in chapter 11. 
'The CMP Engine' of 'The JBoss 4 Application Server Guide'?

Laci

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [The Lizzard's corner] - Re: Need to transfer uploaded files from one server to anoth

2005-06-30 Thread Ulrich Williams
will try that, Thank you.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Cannot deploy simple session ejb

2005-06-30 Thread vucko
Hi!

I am having a problem deploying a simple session bean. I cannot see it in JNDI 
view and I see nothing in the output when I start up JBoss. Is there anything 
that I should see in an output of JBoss? I am using JUnit to test this EJB but 
I keep getting javax.naming.NameNotFoundException: ejb not found. I have used 
XDoclet to generate ejb stuff below. Unfortunately I don't have lot of 
experience with it.
My Jboss.xml is as follows :


   enterprise-beans

 !--
   To add beans that you have deployment descriptor info for, add
   a file to your XDoclet merge directory called jboss-beans.xml that 
contains
   the ,  and message-driven/message-driven
   markup for those beans.
 --

  
 ejb-nameRate/ejb-name
 jndi-nameejb/Rate/jndi-name
 local-jndi-nameRateLocal/local-jndi-name

  

   /enterprise-beans

   resource-managers
   /resource-managers



My ejb is as follows :
enterprise-beans

  !-- Session Beans --
  
 ![CDATA[Description for Rate]]
 display-nameRateBean/display-name

 ejb-nameRate/ejb-name

 interfaces.RateHome
 interfaces.Rate
 local-homeinterfaces.RateLocalHome/local-home
 interfaces.RateLocal
 ejb-classejb.RateBean/ejb-class
 session-typeStateless/session-type
 transaction-typeContainer/transaction-type

  

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - JBoss 4.0.0 postgresql Datasource Configuration Problem

2005-06-30 Thread usrganesan
Hi 
   iam unable configure the datasource in jboss4.0.0 ... while starting the 
server i am getting the follwing error ... 

16:50:29,437 ERROR [EntityContainer] Starting failed 
jboss.j2ee:jndiName=ejb20-containerManaged-AccountHome,service=EJB
org.jboss.deployment.DeploymentException: Failed to obtain type-mapping 
metadata from the metadata library MBean: jboss.jdbc:servi
ce=metadata,datasource=postgres is not registered.; - nested throwable: 
(javax.management.InstanceNotFoundException: jboss.jdbc:se
rvice=metadata,datasource=postgres is not registered.)

Please guide me on that 

Regards 
Ganesan S

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Cannot deploy simple session ejb

2005-06-30 Thread vucko
Hi!

I am having a problem deploying a simple session bean. I cannot see it in JNDI 
view and I see nothing in the output when I start up JBoss. Is there anything 
that I should see in an output of JBoss? I am using JUnit to test this EJB but 
I keep getting javax.naming.NameNotFoundException: ejb not found. I have used 
XDoclet to generate ejb stuff below. Unfortunately I don't have lot of 
experience with it.
My Jboss.xml is as follows :


   enterprise-beans

 !--
   To add beans that you have deployment descriptor info for, add
   a file to your XDoclet merge directory called jboss-beans.xml that 
contains
   the ,  and message-driven/message-driven
   markup for those beans.
 --

  
 ejb-nameRate/ejb-name
 jndi-nameejb/Rate/jndi-name
 local-jndi-nameRateLocal/local-jndi-name

  

   /enterprise-beans

   resource-managers
   /resource-managers



My ejb is as follows :
enterprise-beans

  !-- Session Beans --
  
 ![CDATA[Description for Rate]]
 display-nameRateBean/display-name

 ejb-nameRate/ejb-name

 interfaces.RateHome
 interfaces.Rate
 local-homeinterfaces.RateLocalHome/local-home
 interfaces.RateLocal
 ejb-classejb.RateBean/ejb-class
 session-typeStateless/session-type
 transaction-typeContainer/transaction-type

  

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - JBoss to SAPR/3 Configuration doubt

2005-06-30 Thread ivtladmin
Hi,

   Can any one tell , how to configure Jboss4.0 with SAPr/3


Thanks
Deva

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Append jars to the jboss_classpath

2005-06-30 Thread jboss_eval
how can i add external jars to the jboss_classpath.i need to add the jars in a 
particular order.

append the jars to the run.bat didn't work for me, as it seems to be asking for 
files(i.e no classdef found Exception) from 
jboss_root/server/server_instance/lib,... but that is already supposed to 
be in the classpath.
 i have about 14 jARS to append to classpath...

if i put them in the lib folder, my application works, but i as i said before i 
need the jars to be in aparticular order , .some performance issues

is there any otherway i can append to theses jars tothe classpath

thanks




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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Cannot deploy simple session ejb

2005-06-30 Thread darranl
Which deploy folder are you copying the jar file to?  Have you made sure that 
the deployment descritptors are in a folder called 'META-INF' at the root of 
the archive?

Instead of putting the jar in the deploy folder before starting JBoss try 
starting JBoss then putting the jar in the deploy folder.  This should make it 
easier to see if your jar is being recognised.

You should get a few lines in the console output that show the bean being 
deployed.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - rpc/literal generates soap encoded array

2005-06-30 Thread rparree
Hi,

I have a basic example that is not doing what it is suppose to do. I am running 
a few tests on multiple WS platforms, and I can?t get this one to work with 
JBossWS (JBoss 4.0.2 have tried 4.0.3 RC1 as well)
I am using org.jboss.axis.wsdl.Java2WSDL with flags turned on for RPC and 
LITERAL. The only method in my SEI looks like:

public String[] doIt(Customer i) throws RemoteException;

When running the Java2WSDL it is generating a soap encoded array for th 
String[].

Is the JBossWS based on Axis1.1 or on 1.2? Using Java2WSDL from Axis1.1 gives 
same results, Axis1.2 produces the expected result (which is a BP1.1 compliant 
web service description).

I am aware that i could (or is it should) be using wscompile, but in this 
scenario i have no special requirements for the WSEE mapping file.

Is this as expected or i am missing something?

Raphael

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: circular references

2005-06-30 Thread chiba
Mutual recursive methods in Section 4.3 of the tutorial
has some hints.  To create two classes that refer to each
other, you must first create empty CtClasses for the two
classes and then add fields and methods.


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JMS JBoss + Tibco Rendezvous

2005-06-30 Thread reggi
Hi all,
we're need us a messaging product called TIBCO Rendevous that I would like to 
integrate with an application running on the JBoss server. 

My question is - what is the best way to integrate Tibco Rendezvous messaging 
to the JBossMQ server? Can I somehow define my TIBCO listener class as a 
service 
that JBoss will start up and run for me on the server itself? 
Tried anybody itegrate Tibco Rendezvous to JBoss.
Any ideas? 
Thanks .
Radek 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - how to configure Jboss4.0 with SAPR/3

2005-06-30 Thread ivtladmin
Hi, 

Can any one tell , how to configure Jboss4.0 with SAPR/3 .


Thanks 
Deva 
 


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - how can i return the requesting page?

2005-06-30 Thread dudoes
Hello,Everyone:

i made a custom LoginModule OF jaas on jboss.
now, I have finished my LoginModule, configed web.xml and login-config.xml, and 
developed my XLoginServlet for it. 

i login system with xlogin.jsp and its form's action go to XLoginServlet. 

i login system with username/not password.

NOW, when i http://localhost:9090/restricted/test.jsp;, in XLoginServlet the 
request pass my LoginModule's check, lc.login() return true, but it can't 
automatically forward to restricted/test.jsp and display it, why?

this is my Question, how can do it? i need your HELP!

Thanks

Waiting for you 

 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - JBoss 3.0.4 on AIX

2005-06-30 Thread greiff
We need to install JBoss 3.0.4 on AIX 5.1. Are there any known issue we have to 
take care ?

Thanks for any help
Torsten


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: connect JBoss MBean services to different Application s

2005-06-30 Thread k_s_ashok
Any update ?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: JNDI over HTTPS fails after upgrade to JBoss 3.2.7

2005-06-30 Thread katjak
I see, thanks. I should have found this duplication bug which is marked for 
3.2.7: http://jira.jboss.com/jira/browse/JBAS-1495

Well, served as a crash course to the JBoss remote invocation stack.


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Migration from Nukes

2005-06-30 Thread pedrojosemartins
Is there any feature in Portal 2.0 that allows migrating from a previous Nukes 
website?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - HA MBeans

2005-06-30 Thread prese
Hi *,

Sometimes ago I red on some posts that is a plan to implement HA MBeans.
Could you please tell me if this feature was implemented?

Thanks
Sebi

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - NullPointerException in UnifiedClassLoader with JBoss applic

2005-06-30 Thread glacier
Hi,

I have the wierdest error.  it goes as follows:

1) I'm using JBoss 3.2.6 (Tomcat 5)
2) I deploy my application in ear format.
3) I login to our central web page and click on a link to my web page.
4) My login is authenticated thru JAAS and I'm allowed access to my web page.
5) I redeploy my application in ear format (hot deploy)
6) close my browser, (so that there is no session pollution)
7) I login to our central web page and click on a link to my web page.
8) Then I get the following error:

WARN  [FailoverUtil] The current resource caused a system exception. Will try 
failover resource 2
java.lang.NullPointerException
at 
org.jboss.mx.loading.UnifiedClassLoader.findResources(UnifiedClassLoader.java:397)
at java.lang.ClassLoader.getResources(ClassLoader.java:851)
at java.lang.ClassLoader.getResources(ClassLoader.java:847)
at java.lang.ClassLoader.getResources(ClassLoader.java:847)
at 
org.apache.commons.discovery.jdk.JDK12Hooks.getResources(JDK12Hooks.java:150)
at 
org.apache.commons.discovery.resource.DiscoverResources$1.getNextResources(DiscoverResources.java:153)
at 
org.apache.commons.discovery.resource.DiscoverResources$1.getNextResource(DiscoverResources.java:129)
at 
org.apache.commons.discovery.resource.DiscoverResources$1.hasNext(DiscoverResources.java:116)
at 
org.apache.commons.discovery.resource.names.DiscoverNamesInFile$1.getNextClassNames(DiscoverNamesInFile.java:186)
at 
org.apache.commons.discovery.resource.names.DiscoverNamesInFile$1.getNextClassName(DiscoverNamesInFile.java:170)
at 
org.apache.commons.discovery.resource.names.DiscoverNamesInFile$1.hasNext(DiscoverNamesInFile.java:157)
at 
org.apache.commons.discovery.resource.names.NameDiscoverers$1.getNextIterator(NameDiscoverers.java:143)
at 
org.apache.commons.discovery.resource.names.NameDiscoverers$1.hasNext(NameDiscoverers.java:126)
at 
org.apache.commons.discovery.resource.classes.ResourceClassDiscoverImpl$1.getNextResource(ResourceClassDiscoverImpl.java:159)
at 
org.apache.commons.discovery.resource.classes.ResourceClassDiscoverImpl$1.hasNext(ResourceClassDiscoverImpl.java:147)
at 
org.apache.axis.configuration.EngineConfigurationFactoryFinder$1.run(EngineConfigurationFactoryFinder.java:159)
at java.security.AccessController.doPrivileged(Native Method)
at 
org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:152)
at 
org.apache.axis.configuration.EngineConfigurationFactoryFinder.newFactory(EngineConfigurationFactoryFinder.java:199)
at 
org.apache.axis.client.Service.getEngineConfiguration(Service.java:801)
at org.apache.axis.client.Service.getAxisClient(Service.java:143)
at org.apache.axis.client.Service.(Service.java:152)
at 
santam.commons.util.WebServiceClientUtil.executeWebMethod(WebServiceClientUtil.java:65)
at santam.commons.security.securityds.User.testPassword(User.java:102)
at 
santam.commons.security.securityds.User_TestPassword.execute(User.java:272)
at santam.commons.util.FailoverUtil.execute(FailoverUtil.java:124)
at santam.commons.security.securityds.User.checkPassword(User.java:152)
at 
santam.commons.security.jaas.auth.spi.SecurityDSLoginModule.login(SecurityDSLoginModule.java:183)
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:324)
at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
at 
javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
at java.security.AccessController.doPrivileged(Native Method)
at 
javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
at org.apache.catalina.realm.JAASRealm.authenticate(JAASRealm.java:316)
at 
org.apache.catalina.authenticator.FormAuthenticator.authenticate(FormAuthenticator.java:235)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:446)
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at 
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
at 
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
at 

[JBoss-user] [Installation Configuration] - JBoss tmp folder cleanup

2005-06-30 Thread glacier
Hi,

I'm new to JBoss and would like to know if I'm missing something.  When 
applications are added and removed from JBoss, fragments remain behind in the 
tmp and work folders.  I don't have a problem with this.  My question is: If an 
application is removed from JBoss, why does JBoss not automatically clean up 
the tmp and work folders when it undeploys the war or ear files?

Thanks,
Grant

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: lookup-problem in a swing-client

2005-06-30 Thread anguyen
I apologize for the confusion.  I failed to recognize that you were doing this 
lookup from a Swing client.

java:comp/env is a special naming context, the Environment Naming Context (ENC) 
for a J2EE component.  It's only valid within the scope of a J2EE component, 
such as a servlet or EJB, which is why it works in the tutorial's servlet, and 
why you won't see it in the JMX console.

The EJB reference gets mapped to the servlet's ENC (java:comp/env/ejb/Fibo) via 
an ejb-ref element in web.xml and an ejb-ref-jnid element in jboss-web.xml.



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Necessary *.jar

2005-06-30 Thread jy1970us
Any reply is greatly appreciated. Thanks

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - NoClassDefFoundError: org/aspectj/lang/Signature

2005-06-30 Thread tomerbd2
Hi I have downloaded and ran jboss-portal-2.0-jboss-4.0.2 and i have this 
exception when starting up the server:

anonymous wrote : 17:03:15,573 INFO  [DatasourceConnectionProvider] Using 
datasource: java:PortalD
  | S
  | 17:03:15,589 WARN  [JBossManagedConnectionPool] Throwable while attempting 
to ge
  | t a new connection: null
  | java.lang.NoClassDefFoundError: org/aspectj/lang/Signature
  | at java.lang.Class.forName0(Native Method)
  | at java.lang.Class.forName(Class.java:242)
  | at 
org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.g
  | etDriver(LocalManagedConnectionFactory.java:266)
  | at 
org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.c
  | reateManagedConnection(LocalManagedConnectionFactory.java:150)
  | at 
org.jboss.resource.connectionmanager.InternalManagedConnectionPool.cr
  | eateConnectionEventListener(InternalManagedConnectionPool.java:508)
  | at 
org.jboss.resource.connectionmanager.InternalManagedConnectionPool.ge
  | tConnection(InternalManagedConnectionPool.java:207)
  | at 
org.jboss.resource.connectionmanager.JBossManagedConnectionPool$BaseP
  | ool.getConnection(JBossManagedConnectionPool.java:534)
  | at 
org.jboss.resource.connectionmanager.BaseConnectionManager2.getManage

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: creating an mbean to control your web service

2005-06-30 Thread philmcc
I?ve worked out how to do it. Put this code in your service and deploy it.

Create the MBean you want and deploy it.

This code assumes the name attribute of the mbean element of the 
jboss-service.xml file is ?acme.com:service=HelloWorld?


ArrayList ar = MBeanServerFactory.findMBeanServer(null);
  | MBeanServer mbs = (MBeanServer)ar.get(0);
  | ObjectName on = new ObjectName(acme.com:service=HelloWorld);
  | MBeanInfo mbi = mbs.getMBeanInfo(on);
  | System.out.println(mbi.getClassName());

mbi is the MBeanInfo for you MBean - there you go, accessed from your service!

All I have to do now is workout how to put a listener on the MBean so the 
service can see when it has been changed and change its behaviour.


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - JNDI Look up returns null on Hibernate session factory

2005-06-30 Thread nxbalas
I am trying to use Hibernate 2.1.7c in JBoss-4.0.2 while deploying my ear/har 
file I get following warning

net.sf.hibernate.impl.SessionFactoryObjectFactory : InitialContext did not 
implement EventContext

Rest of the installation is completed with no errors/warnings.

when I try to look up hibernate session factory I get a warn as 
net.sf.hibernate.impl.SessionFactoryObjectFactory : Not Found.

The same code is working in JBoss.3.2.6 with no problems, leading me to find 
myself in JBoss forum for an answer.

NOTE:  In my ear file I have a har and war file the JNDI look up is happening 
from war file.

Any help would be apprciated. 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: lookup-problem in a swing-client

2005-06-30 Thread Oliver Roell
Thank you very much for your clarification!

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: Placing Hibernate SessionFactory in JBoss JNDI

2005-06-30 Thread nxbalas
Did u find an answer yet,  I am having same problem with JBoss-4.0.2 and 
Hibernate 2.1.7c

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Bug in RenderResponseImpl

2005-06-30 Thread bsmithjj
Thankswhat are the connect params for CVS?



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Problem calling a method on a remote MBeanServer Proxy (jbos

2005-06-30 Thread canghel
Hi,

after moving from jboss 3.2.6 to 3.2.7 I encounter the following problem in the 
following scenario:

1. I retrieve the MBeanServer from another cluster node using the code below:
Hashtable env = new Hashtable();
env.put(java.naming.factory.initial, 
org.jnp.interfaces.NamingContextFactory);
if (ipAddress.indexOf(:) = 0) {
env.put(java.naming.provider.url, 
MessageFormat.format(jnp://{0}, new String[] { ipAddress }));
}
else {
env.put(java.naming.provider.url, 
MessageFormat.format(jnp://{0}:1099, new String[] { ipAddress }));
}
env.put(java.naming.factory.url.pkgs, 
org.jboss.naming:org.jnp.interfaces);
Context c = new InitialContext(env);
RMIAdaptor a = (RMIAdaptor) c.lookup(jmx/rmi/RMIAdaptor);
return new RMIConnectorImpl(a);

2. I call from the current cluster node (not from a client but from a server 
node) the method isRegistered(objectName) on the remote mbeanserver proxy 
retrieved in step 1  to check whether an MBean with the given object name is 
available on the remote mbean server.

The problem is that this call returns false even tough the respective MBean is 
registered on the respective remote mbean server. This worked fine when using 
jboss 3.2.6. Does anyone know what happend in 3.2.7?
I assume that the call is performed locally and not on the remote MBean server 
and since the MBean with the given object name is available only on the remote 
server and not on the local one the method evaluates to false. 
How should one call a method on a remote mbean server (retrieved based on a 
given IP) and be sure that the method is invoked against the remote mbean 
server?

Is this a bug in 3.2.7? Is there another way in 3.2.7 to make the same thing 
i.e. get the remote mbean server and call a method on it?

Thanks,
Claudiu Anghel


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Prevent MDB Deployment

2005-06-30 Thread pcarrollnf
I have an application that runs on JBOSS 3.2.0.  I have a MDB that is used by a 
specific part of the application.  This functionality may be enabled or 
disabled based on a setting in a proprties file.  Is there a way to not deploy 
the MDB if this functionality is turned off in the properties file?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Bug in RenderResponseImpl

2005-06-30 Thread darranl
http://www.jboss.org/index.html?module=bbop=viewtopict=65399

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-06-30 Thread mohamedj
Is there any idea when this will be fixed?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Bug in RenderResponseImpl

2005-06-30 Thread bsmithjj
Doh!  That was easy---thanks!

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Problem with JBoss + Lomboz

2005-06-30 Thread fechotecho
Hi!
First, let me begin by saying that this forum i s great!
I have already been lurking a while, and I have been taking a lot of useful 
info.
However, I have a problem with Jboss. 
I am trying to use an application which is in a remote server. I import it by 
CVS, and I copy the oracle-services.xml. However, when I start the server, the 
output shows this:

12:50:40,712 INFO  [LocalTxConnectionManager] Started
12:50:40,713 INFO  [LocalTxConnectionManager] Starting
12:50:40,734 ERROR [DefaultDS] Unable to bind connection factory to JNDI name 
'java:/DefaultDS'
javax.naming.NameAlreadyBoundException
at org.jnp.server.NamingServer.bind(NamingServer.java:130)
at org.jnp.interfaces.NamingContext.bind(NamingContext.java:453)
at org.jnp.interfaces.NamingContext.bind(NamingContext.java:424)
at org.jboss.naming.Util.bind(Util.java:83)
at org.jboss.naming.Util.bind(Util.java:70)
at 
org.jboss.resource.connectionmanager.RARDeployment.startManagedConnectionFactory(RARDeployment.java:603)
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:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at 
org.jboss.resource.connectionmanager.BaseConnectionManager2.startService(BaseConnectionManager2.java:383)
at 
org.jboss.resource.connectionmanager.LocalTxConnectionManager.startService(LocalTxConnectionManager.java:179)
at 
org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:165)
at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:1003)
at $Proxy4.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:413)
at org.jboss.system.ServiceController.start(ServiceController.java:433)
at org.jboss.system.ServiceController.start(ServiceController.java:433)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
at $Proxy6.start(Unknown Source)
at org.jboss.resource.RARDeployer.start(RARDeployer.java:212)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:814)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:627)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:591)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
at $Proxy3.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:435)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scanDirectory(URLDeploymentScanner.java:656)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:507)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:266)
at 
org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:165)
at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
at 

[JBoss-user] [HTTPD, Servlets JSP] - Limiting Tomcat Request Overflow Queue within JBoss 3.2.6

2005-06-30 Thread rcostanzo
Hi all, 

I'm using JBoss 3.2.6 with the bundled Tomcat. I am using Apache with the AJP13 
connection to Tomact. In situations where we have major traffic spikes, the 
rate at which requests come in can be faster than the rate at which they are 
fulfilled. In this situation, the jk thread pool currentThreadCount hits the 
maximum (currently we have it set to 425 threads) and requests begin to take a 
long time to complete as the queue quickly backs up. 

Is there a way to put a maximum size limit on the number of requests to queue 
up? I think it's Tomcat which owns the queue. Ideally, I would have a 503 sent 
to any request over the queue limit (resource temporarily busy), rather than 
the user watching his browser spin for what can be minutes. I've seen an 
acceptCount configuration, but only when using HTTP connections, not for AJP13. 

Thanks. 

-Rob

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - work and data folders

2005-06-30 Thread mfrost
Hi,

I have started using JBoss 4.0.2 (previously using 3.2.3)

Can someone please tell me how to configure the work and data folders that are 
created under /server/

e.g. /server/default/data and /server/default/work

I've set my properties jboss.server.temp.dirand jboss.server.data.dir and these 
work fine but something else is writing to the server home directory.

The reason I want to move this is we deploy the JBoss configuration centrally 
but we wish to log/create dynamic files locally per node.

The contents of work appears to be related to jboss.web.

Many thanks

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - deploy and servlet exception

2005-06-30 Thread somsahi
Hi i deployed bookstore example on jboss with eclipse+myeclipse plugin but i am 
getting error servlet baanerservlet.java is not available.second what is 
difference between j2ee.jar and jboss-j2ee.jar


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - NullPointerException trying to call webservice

2005-06-30 Thread [EMAIL PROTECTED]
Hi,

I keep getting a NullPointeException when instantiating a new Service class 
instance from a jsp page.  The firt entry in the exception trace has the error 
coming from the RepositoryClassLoader.findResources() line.

I am new to JBoss/JSP development.  I think Jboss can't find the library which 
has the Service class.  

Here's  is a snippet of my jsp page:

%@ page import=org.apache.axis.client.Call%
%@ page import=org.apache.axis.client.Service%


%
try {
  Service lService = new Service();   EXCEPTION IS THROWN HERE
...
%

Note: This is just a snippet of my jsp page.  


Q1) When I use page imports is my jsp, where does JBoss look for the jar files?

Q2) Any ideas as to why this does not work?

I greatly appreciate it.  

Thanks,

Herb





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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Question about EJB3 stateless session

2005-06-30 Thread res2681
Can a stateless session bean's method send back custom java objects?  I ask 
beacuse when I send back a primitive type, or a java language type (List), or 
an Entity everything is fine, but when I send my own object it fails. 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Cannot deploy simple session ejb

2005-06-30 Thread vucko
I have moved ejb.xml and jboss.xml files in to the META-INF of the root archive 
but still no luck. I can see .was file being properly deployed and I can all 
the directeories and ejb class files but I still cannot see anything in my jmx 
console. What sort of message should I be looking for in JBoss logs/console as 
the server starts up. If anyone has any idea out there please let me know.

Thanks

Ivan

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - servlet mapping

2005-06-30 Thread gmoh
suppse i have an application with the context root set to myapp.
is it possible to map the urls http://host/myapp/a/myservlet and 
http://myapp/b/myservlet to the same servlet class?  if so, what needs to go 
into the url-pattern value in web.xml?
any help is appreciated.


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - Where are the jboss axis packaged

2005-06-30 Thread [EMAIL PROTECTED]
Hi,

I'm having a problem locating the jboss.axis.client package.
Can anyone tell me exactly which jar file contains this package?

Thanks,

Herb

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Starting JBoss via run.bat vs. MyEclipse...Please Help..

2005-06-30 Thread jaycap
OK, I got the answer..

I had to make sure that I was referencing the JDK instead of the JRE under the 
Installed JRE's in Java preferences, under the Window/Preferences option.

Thanks Marshall.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - How to undeploy MDB progamatically

2005-06-30 Thread pcarrollnf
Can someone post some example code showing me how to undeploy an MDB?  Thanks.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Cannot deploy simple session ejb

2005-06-30 Thread darranl
Which deploy folder are you copying the jar file to?

Can you confirm if this is what your archive structure looks like: -

interfaces/RateHome.class
  | interfaces/Rate.class
  | interfaces/RateLocalHome.class
  | interfaces/RateLocal.class
  | ejb/RateBean.class
  | META-INF/ejb-jar.xml
  | META-INT/jboss.xml

Instead of putting the jar in the deploy folder before starting JBoss try 
starting JBoss then putting the jar in the deploy folder. This should make it 
easier to see if your jar is being recognised. 

I have an archive that contains two session beans SecurityBeanA and 
SecurityBeanB, this is the output I get when I deploy it: -

anonymous wrote : 20:34:26,625 INFO  [EjbModule] Deploying SecurityBeanA
  | 20:34:26,750 INFO  [EjbModule] Deploying SecurityBeanB
  | 20:34:26,890 INFO  [EJBDeployer] Deployed: 
file:/D:/ThirdParty/jboss-4.0.0/serve
  | r/default/deploy/SecuritySessions.jar

If you don't get any messages output to the console have a look in the file 
server.log in the log folder adjacent to the deploy folder.  If there are some 
messages in there it means that the archive was recognised as an ordinary jar 
file, this is most likely to be caused by the archive being packaged 
incorrectly.



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBoss-4.0.2

2005-06-30 Thread [EMAIL PROTECTED]

  | java.lang.NoSuchMethodException: org.synxis.join.ejb.JoinBean.addJoinDetails
  | 

The exception gives you all the details you need.  The JoinBean ejb does not 
have the method defined - addJoinDetails.   

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - JBAS-1369 Bug Is it fixed in JBossAS-4.0.2 or do I need to u

2005-06-30 Thread sudkampf
The description of the bug is as follows:
 If the jboss server runs out of threads while accepting jms connections and 
this results in an OutOfMemoryError:

java.lang.OutOfMemoryError: unable to create new native thread
 at java.lang.Thread.start(Native Method)
 at org.jboss.mq.il.uil2.SocketManager.start(SocketManager.java:131)
 at org.jboss.mq.il.uil2.UILServerILService.run(UILServerILService.java:134)
 at java.lang.Thread.run(Thread.java:534)

the server accept thread named 'UILServerILService Accept Thread' will be 
aborted and further connections will fail even if the thread counts drop below 
the max limit.

We encounter this in our 3.2.5 installation and have to address the issue.  I 
need to know if the 4.0.2 latest release has the fix or if it is included in 
the 4.0.3RC1.

Thanks
 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Client side JAX-RPC handler

2005-06-30 Thread walter.eich
Thanks for your hint. It works now.

Just another question regarding client side handlers: If I want to install a 
client side handler programmaticly with service.getHandlerRegistry() I get an 
java.lang.UnsupportedOperationException exception.

How can I install a handler in a JBoss web service client without specifing a 
service-ref, e.g. calling a .NET web service?

Thanks for any help.

we

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - JMS exception

2005-06-30 Thread leelasridhar
Hello 

I am trying to deploy my application in JBoss 3.2.3. There were no issues with 
JBoss3.0.8. The following is the console message..Do I have to make any changes 
while moving from 3.0.8 to 3.2.3?



15:03:09,096 ERROR [ReceiverSink] Failure on connection attempt (non fatal, 
will retry later)
javax.jms.JMSSecurityException: User: null is NOT authenticated
at 
org.jboss.mq.security.SecurityManager.authenticate(SecurityManager.java:232)
at 
org.jboss.mq.security.ServerSecurityInterceptor.authenticate(ServerSecurityInterceptor.ja
va:51)
at 
org.jboss.mq.server.TracingInterceptor.authenticate(TracingInterceptor.java:787)
at 
org.jboss.mq.server.JMSServerInvoker.authenticate(JMSServerInvoker.java:287)
at org.jboss.mq.il.jvm.JVMServerIL.authenticate(JVMServerIL.java:302)
at org.jboss.mq.Connection.authenticate(Connection.java:876)
at org.jboss.mq.Connection.(Connection.java:238)
at org.jboss.mq.Connection.(Connection.java:315)
at org.jboss.mq.SpyConnection.(SpyConnection.java:60)
at 
org.jboss.mq.SpyConnectionFactory.createQueueConnection(SpyConnectionFactory.java:116)
at 
us.crimnet.core.broker.messaging.ReceiverSink.connect(ReceiverSink.java:122)
at us.crimnet.core.broker.messaging.ReceiverSink.(ReceiverSink.java:45)
at 
us.crimnet.core.broker.transaction.TransactionManager.init(TransactionManager.java:566)
at 
us.crimnet.adapter.rmi.server.DistributedRequestEngine.startup(DistributedRequestEngine.j
ava:81)
at 
us.crimnet.adapter.rmi.server.DistributedRequestEngine.start(DistributedRequestEngine.jav
a:310)
at 
us.crimnet.adapter.rmi.mbean.DistributedRequestBrokerService.start(DistributedRequestBrok
erService.java:76)
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:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284
)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
at $Proxy15.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:394)
at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284
)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy4.start(Unknown Source)
at org.jboss.deployment.SARDeployer.start(SARDeployer.java:226)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:832)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:824)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284
)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeplo
ymentScanner.java:201)
at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentSca
nner.java:274)
at 
org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:192)
at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284
)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
at $Proxy0.start(Unknown Source)
 

[JBoss-user] [Installation Configuration] - Re: JBAS-1369 Bug Is it fixed in JBossAS-4.0.2 or do I need

2005-06-30 Thread darranl
Have you had a look at Jira?  

The fix version on the 4 branch was 4.0.2RC1.  The release candidates come 
before the final production release of a specific version so that means the fix 
would be included in the 4.0.2 final release.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss4.0.2 + Oracle9i configration problem (Any successf

2005-06-30 Thread fechotecho
How do you do it?
You set the Oracle tags in the hsqldb-service.xml file?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBAS-1369 Bug Is it fixed in JBossAS-4.0.2 or do I need

2005-06-30 Thread sudkampf
Thanks

I looked at Jira but I wasn't sure if the RC was built upon the previous 
release or came before the final release of a specific version.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Client side JAX-RPC handler

2005-06-30 Thread [EMAIL PROTECTED]
J2EE Webserivces explictly forbids modifying the handler chain programatically 
(you have to do it in the service-ref tag), we have a feature request to add a 
jboss propreitary method to programmatically modify the handler chain here:

http://jira.jboss.org/jira/browse/JBWS-142

-Jason 

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Exception with custom portlet: content type is null

2005-06-30 Thread mholzner
is your portlet code setting the content type at all, and is that content type 
supported according to your portlet.xml  ? 



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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Http session Replication problem

2005-06-30 Thread java123
I am trying to enable session replication on Jboss 4.02. I followed the 
direction from the JBoss WIKI: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=ClusteringFAQ
Here is what the links says.

  [JBossCacheService][main] jboss.cache:service=TomcatClusteringCache service 
to Tomcat clustering not found
  [JBossCacheManager][main] JBossCacheService to Tomcat clustering not found
  [TomcatDeployer][main] Failed to setup clustering, clustering disabled

Since 3.2.6, HTTP session replication is based on JBossCache, and more 
precisely the TomcatClusteringCache? service.
In 3.2.6, 3.2.7, 4.0.1 and 4.0.1SP1, the dependency on this service is missing 
in Tomcat's jboss-service.xml.

To fix it, please edit /all/jbossweb-tomcat5x.sar/META-INF/jboss-service.xml 
and enable the depends optional-attribute-name=CacheName? element, update 
the MBean ObjectName as well as the  element itself.


The resulting code should look as follows:

  !--
 Configuration for HTTP Session Clustering using JBossCache
  --
  jboss.cache:service=TomcatClusteringCache

instead of

  !--
 Configuration for HTTP Session Clustering using JBossCache
  --
  --
  depends optional-attribute-name=CacheNamejboss.cache:service=TreeCache

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Problem with JBoss + Lomboz

2005-06-30 Thread nusa
Hi,

Your datasource 'java:/DefaultDS' is used by HSQL.
What's in oracle-service.xml ?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Necessary *.jar

2005-06-30 Thread nusa
Hi,

Is jspc has anything to do with JBoss ?
It looks for me that your problem has more to do with Ant than JBoss.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.0 postgresql Datasource Configuration Problem

2005-06-30 Thread nusa
Which *-ds.xml are you using ?

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JBoss4.0.2 + Oracle9i configration problem (Any successf

2005-06-30 Thread nusa
Leave the DefaultDS used by HSQL.
If your datasource is Oracle, just deploy oracle-ds.xml or oracle-xa-ds.xml, 
AND set the jndi-name to OracleDS, for example.
If your datasource is Sybase, deploy sybase-ds.xml AND set the jndi-name to 
SybaseDS, for example.

In anycase, DO NOT play around with DefaultDS/HSQL. You'll have trouble !


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-06-30 Thread [EMAIL PROTECTED]
Probably within next two weeks.

-Ben

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: JMS/MDB JBoss 4.0.0 on mySQL

2005-06-30 Thread joff
There is no MySQL specific mysql-jdbc-state-service.xml in the examples, this 
is probably what led to the confusion...


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: cluster startup wiki documentation

2005-06-30 Thread [EMAIL PROTECTED]
yes, -c all still applies.

-Ben

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Downtime and deployment in an HA Cluster

2005-06-30 Thread [EMAIL PROTECTED]
This is a potential problem during hot deployment (not just clustering). We 
currently don't support that.

-Ben

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portlets?

2005-06-30 Thread wayne5w
Where can I find some good portlets? I read somewhere that Novell had created a 
large number of Portlets and was donating them to the JBoss Portal Project. 
Seems the real promise of a Portal Server is realized only when there   is a 
critical mass of Portlets available.

Regards,
   ---Wayne

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: rpc/literal generates soap encoded array

2005-06-30 Thread [EMAIL PROTECTED]
Dont use the axis tools, use wscompile.

-Jason

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Jboss class loader issue

2005-06-30 Thread stevenpeh
Just an update, we noticed that the client jar (form the ear) that our web app 
is using perform spring init via beanRefFactory using the classpath url 
classpath*:applicationConfig.xml.  Now spring seems to look into all 
available class loaders and load whatever applicationConfig.xml it finds.

But our question is, why does JBoss allow it to load from another ear's class 
loader?  We already disabled the unified class loader, yet spring can still 
crossover from our war into another ear to look for configs (refer to the debug 
output above).  Is this class loading behaviour by design?  We've already 
looked at the wiki class loading article at  
http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration.

The article doesnt shed any light on this, we've replicated this problem in 
both 4.0.1 and 4.0.2.  Anyone has any comments as to whether this is as per 
designed or a bug?  Appreciate any comments. Thanks.

Cheers.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: HotSpot Virtual Machine Error

2005-06-30 Thread sixcharlie20
I noticed that this error occured every time any method was call on a specific 
class.  After some further investigation I realized that this class was 
deployed in both .war and .jar files.  I removed it from the .war file and the 
error no longer occurs.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Cannot start using Red Hat Fedora 9 with gij

2005-06-30 Thread JoshZ
Using:

java version 1.4.2
gij (GNU libgcj) version 4.0.0 20050519 (Red Hat 4.0.0-8)

Does JBoss officially support RedHat?

I get this exception when runnig start.sh:

[EMAIL PROTECTED] bin]# ./run.sh -c all
run.sh: Missing file: /lib/tools.jar
run.sh: Unexpected results may occur.  Make sure JAVA_HOME points to a JDK and 
not a JRE.
=

  JBoss Bootstrap Environment

  JBOSS_HOME: /root/JBoss/jboss-4.0.2

  JAVA: java

  JAVA_OPTS: -server -Xms128m -Xmx128m -Dprogram.name=run.sh

  CLASSPATH: /root/JBoss/jboss-4.0.2/bin/run.jar:/lib/tools.jar

=

09:01:30,723 INFO  [Server] Starting JBoss (MX MicroKernel)...
09:01:30,724 INFO  [Server] Release ID: JBoss [Zion] JBoss Inc.
09:01:30,725 INFO  [Server] Home Dir: /root/JBoss/jboss-4.0.2
09:01:30,736 INFO  [Server] Home URL: file:/root/JBoss/jboss-4.0.2/
09:01:30,737 INFO  [Server] Library URL: file:/root/JBoss/jboss-4.0.2/lib/
09:01:30,738 INFO  [Server] Patch URL: null
09:01:30,749 INFO  [Server] Server Name: all
09:01:30,750 INFO  [Server] Server Home Dir: /root/JBoss/jboss-4.0.2/server/all
09:01:30,751 INFO  [Server] Server Home URL: 
file:/root/JBoss/jboss-4.0.2/server/all/
09:01:30,763 INFO  [Server] Server Data Dir: 
/root/JBoss/jboss-4.0.2/server/all/data
09:01:30,764 INFO  [Server] Server Temp Dir: 
/root/JBoss/jboss-4.0.2/server/all/tmp
09:01:30,764 INFO  [Server] Server Config URL: 
file:/root/JBoss/jboss-4.0.2/server/all/conf/
09:01:30,779 INFO  [Server] Server Library URL: 
file:/root/JBoss/jboss-4.0.2/server/all/lib/
09:01:30,780 INFO  [Server] Root Deployment Filename: jboss-service.xml
09:01:30,799 INFO  [Server] Starting General Purpose Architecture (GPA)...
Failed to boot JBoss:
java.lang.NullPointerException
   at org.jboss.mx.loading.RepositoryClassLoader.addURL(java.net.URL) (Unknown 
Source)
   at java.net.URLClassLoader.addURLs(java.net.URL[]) 
(/usr/lib/libgcj.so.6.0.0)   at 
java.net.URLClassLoader.URLClassLoader(java.net.URL[], java.lang.ClassLoader) 
(/usr/lib/libgcj.so.6.0.0)
   at 
org.jboss.mx.loading.RepositoryClassLoader.RepositoryClassLoader(java.net.URL[],
 java.lang.ClassLoader) (Unknown Source)
   at org.jboss.mx.loading.UnifiedClassLoader.UnifiedClassLoader(java.net.URL, 
java.net.URL, java.lang.ClassLoader) (Unknown Source)
   at org.jboss.mx.loading.UnifiedClassLoader.UnifiedClassLoader(java.net.URL, 
java.net.URL) (Unknown Source)
   at 
org.jboss.mx.loading.UnifiedClassLoader3.UnifiedClassLoader3(java.net.URL, 
java.net.URL) (Unknown Source)
   at 
org.jboss.mx.loading.UnifiedClassLoader3.UnifiedClassLoader3(java.net.URL, 
java.net.URL, org.jboss.mx.loading.LoaderRepository) (Unknown Source)
   at 
org.jboss.mx.loading.UnifiedLoaderRepository3.newClassLoader(java.net.URL, 
boolean) (Unknown Source)
   at java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) 
(/usr/lib/libgcj.so.6.0.0)
   at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(org.jboss.mx.server.Invocation)
 (Unknown Source)
   at org.jboss.mx.server.Invocation.dispatch() (Unknown Source)
   at org.jboss.mx.server.Invocation.invoke() (Unknown Source)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(java.lang.String, 
java.lang.Object[], java.lang.String[]) (Unknown Source)
   at org.jboss.mx.server.MBeanServerImpl.invoke(javax.management.ObjectName, 
java.lang.String, java.lang.Object[], java.lang.String[]) (Unknown Source)
   at org.jboss.system.server.ServerImpl.initBootLibraries() (Unknown Source)
   at org.jboss.system.server.ServerImpl.doStart() (Unknown Source)
   at org.jboss.system.server.ServerImpl.start() (Unknown Source)
   at org.jboss.Main.boot(java.lang.String[]) (Unknown Source)
   at org.jboss.Main$1.run() (Unknown Source)
   at java.lang.Thread.run() (/usr/lib/libgcj.so.6.0.0)


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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: JBoss 4.0.0 postgresql Datasource Configuration Problem

2005-06-30 Thread usrganesan
i am using postgres-ds.xml
i pasted copy of that

  local-tx-datasource
jndi-namejdbc/ejb20-containerManaged-AccountHome/jndi-name
connection-urljdbc:postgresql://localhost:5432/POS/connection-url
driver-classorg.postgresql.Driver/driver-class
user-namepostgres/user-name
postgres
!-- sql to call when connection is created
new-connection-sqlsome arbitrary sql/new-connection-sql
--

!-- sql to call on an existing pooled connection when it is obtained 
from pool 
check-valid-connection-sqlsome arbitrary 
sql/check-valid-connection-sql
--
  !-- corresponding type-mapping in the standardjbosscmp-jdbc.xml 
(optional) --
  
 type-mappingPostgreSQL/type-mapping
  
  /local-tx-datasource




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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - MessageDrivenBean in jboss minimal configuration

2005-06-30 Thread penumutchu
hi,
 Iam running jboss in minimal mode.Iam able to use jms in minimal 
configuration.Now, I want  to run MessageDrivenBean .
please help me.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - MessageDrivenBeans in minimal configuration

2005-06-30 Thread penumutchu
hi, 
Iam running jboss in minimal mode.Iam able to use jms in minimal 
configuration.Now, I want to run MessageDrivenBean in minimal configuration. 
please help me.

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Where is the source code examples for JBoss Application Serv

2005-06-30 Thread ocean
With the site having been refactored, I cant find the 
JBoss Application Server Guide  4.0.2 Rev 3 source code for the examples.

Help?

Thanks

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: rpc/literal generates soap encoded array

2005-06-30 Thread rparree
Hi,

Thanks Jason for your reply.

Are there any licensing problems using and relying on wscompile. Wscompile is 
part of the jaxrpc-impl.jar which is listed on 
http://java.sun.com/webservices/docs/1.6/ReleaseNotes.html#RedistributableComponents
 and further explained in the 
http://java.sun.com/webservices/docs/1.6/LICENSE SUPPLEMENTAL LICENSE TERMS. It 
seems that it is all or nothing, and that extending the functionality is not 
allowed without approval from sun.

Tx.,

Raphael

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [HTTPD, Servlets JSP] - servlet exception

2005-06-30 Thread somsahi
1)got servlet code
from bookstore and copied it to eclipse+myeclipse.original code is like this

import java.io.*;
import java.util.*;
import java.sql.*;
import javax.servlet.*;
import javax.servlet.http.*;.
after copying two warning is coming one import java.util.*; is never used so i 
do organise import and code is now converted to

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
2)even after this one more warning is that serilizable class bannerservlet does 
not declare a stati final serialVersionUID
so problem is i am not getting thses two concepts and what to
thanxs in advance

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user