I'm porting a system from MySQL to Oracle and MS SQL. Which DB to use is an install
time option.
This would entail changing the datasource-mapping in the jbosscmp-jdbc.xml at
install time. But that file is in the meta-inf in the ejb.jar that is built. I
could explode the jar & change th
More information...
I am running JBoss 3.2.3 on Java 1.4.2.
The MDBs and Session Beans that perform the background processing perform fairly heavy
file IO on a scheduled bases (local file IO and network file IO). I'm pretty much
convinced that the memory problems are related to this part of the
Interesting.. but where is this modified in a deployment?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842462#3842462
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842462
--
We are attempting to both:
1. Effectively cache data in our container managed entities, such that our users
receive a rapid response to their requests
2. Occasionally synch the cached entities with the database to support the
infrequent case where we need to make alterations by hand to
Have a look at the prefixdeploysorter:
http://www.jboss.org/wiki/Wiki.jsp?page=URLComparator
HTH,
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842460#3842460
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842460
--
Hi,
I am writing my first entity bean using CMP.
I have a problem using the 'LIKE' operator in an EJB query.
I've not had any problems using the "=" operator.
The error I get on deployment is:
>Error compiling EJB-QL statement 'SELECT OBJECT(c)
>
Thanks for responding. :)
Here are the files that should be relevant from our 3.2 (both .3 and .5) config - the
login-config.xml is the same as what ships with jboss, plus our application-policy,
shown below. Obviously, we've had to sanitize some things - the example.com stuff
isn't real.
Ex
Hi,
I need to specify that certain JAR files be loaded in my web application (including an
EJB JAR file) *before* a war file deploys. Now of course, on deploy can specify
whatever I like.. but on startup, everything seems to 'auto deploy' in alphabetical
order. What if I want to override that
please read the documentation and previous posts
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842455#3842455
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842455
How were you protecting the pages in Jetty 3.0.8 ? Please elaborate further.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842454#3842454
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842454
"michael_lacy" wrote : it's a little rocky but it's because of database issues, not
jboss
|
| we're using a combination of jboss, tomcat, hibernate, struts, velocity, & spring
and they are all performing very well, not to mention fast as well
|
| once we get our DB issues straightened o
First of all, sorry for my english.
It is possible that .wsr archive do not redeploy without a jboss restart, or did I
made something wrong ?
I am on WindowsXP
With
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)
I've been through the FAQs again on handling transactions in an MDB, and wanted to
make sure I'm not making some wild assumption. My application is running poorly
through JBOSS, but I'm convinced it's my fault and with a little help . . .
Overview: I have an app which posts a message to a queu
Anyone familiar with any good SSO solutions for use in JBoss across servers? I am
currently looking at Yale's CAS and Ping Identity's SourceID. Anyone have experience
with this?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842451#3842451
Reply to the pos
JBoss 4.0 beta will probably go out by September.
The public roadmap is scheduled for update next week.
Ivelin
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842449#3842449
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&
I guess a little more info for the problem. I found an queue example at
http://www.jboss.org/wiki/Wiki.jsp?page=QueueExample
and changed it from localhost to use the server ip. Run from the server it returned:
Creating jndi context - alternatively use a jndi.properties
Looking up queue
Looking u
I solved the problem myself. I used the policy "client-login", and it works. seems
ClientLoginModule is the way to propage security context. Hope it could be helpful for
people having similar problem.
by the way, this security forum seems to be really inactive.
View the original post :
http:/
Dear All
Unfortunately I've not found any documentation how to use ant to send some commands to
jboss via jmx.
Can you explain me how to set up ant and send some samples of usage for typical ant
jmx tasks
(restart app to example)
Thank you
Alex
View the original post :
http://www.jboss.org
Hi,
We just migrated from jboss 3.0.8/jetty to jboss 3.2.3/tomcat 5.0. We were using the
DatabaseServerLoginModule for authentication in jboss 3.0.8 and everything used to
work fine. After migrating to jboss 3.2.3 according to the user guide, we are
redirected to the login page when we try to
also, i think the driver is right - im using 3.0.14 from mysql (which i suspect most
people are using right now for that DB)
to recap: im using MDB's with a transaction context of Not Supported, for reasons
given in the FAQ (mysql isn't compliant). Apparently doing this is a bad idea unless
yo
I have a strange problem where in one transaction I have a cmp entity bean that
inserts a row and in the same transaction updates that row. The update is failing
with 'Expected one affected row: rowsAffected=0'
Here is some trace level logging that shows the problem
| 2004.07.16 13:51:10.9
Change back to 3.2.3, everything is ok
3.2.5 doesn't work
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842441#3842441
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842441
---
"chiba" wrote : The JVM dose not allow us to dynamically reload a class.
| If what you need is the dynamic reloading, it is impossible with Javassist (or
| maybe any other tools).
yes I need to load modified class in the same progam at runtime, I supose we have two
ways of using Javassist
Update on this...I spent the time to write my app with a Hibernate MBean and stateless
session beans. It works great! I'm staying on the bleeding edge with 4.0 out of CVS
which appears to run my app faster and with a smaller memory footprint.
Thanks JBoss.
View the original post :
http://www
It appears that the problem that I faced was caused because different JDKs were in use
on the two machines. One was using 1.4.2_03, the other was using 1.4.2_04. Once
1.4.2_04 was used on both machines, all was well with startup of the cluster- the two
nodes recognized one another and provided t
So you're saying - set up UserTransactions inside the MDB such that when it gets a new
message it creates a new UserTransaction, then runs the relevant code within it?
I could go for that - I want to make sure though that using a UserTransaction (and so
handling transaction details myself) won'
Thanks raja05!
I have spent too much time trying to find something on the anonymous wrote : No
Default Context issue and this is all I needed to know.
So to paraphrase:
In your web applications WEB_INF directory if the jboss-web.xml file doesn't already
exist you will need to create it. This
--bump--
I have the same question and the documentation seems a little thin on this.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842434#3842434
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842434
---
Yes you really need to get transactions working for your MDB code. CMP needs to be
called from inside a transaction of the performance will undoubtably suck.
Why not run your MDB code inside a UserTransaction?
Not that 3.2.6RC1 has some more CMP preformance improvements (at least for me).
The e
Hi Jacob-
Thanks for posting your experience with ExternalContext and JBoss 3.2.3. I'm trying
to follow your recipe using 3.2.5 and its not working out. When I use JNDIView to
display the directory tree I can see the ExternalContext but its lowest level stops at
the end of the path I defined
I'm seeing this same behavior -- has anybody figured this out yet?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842431#3842431
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842431
--
Hi,
I have some code that looks like this:
/**
* @ejb.persistence
* column-name="card_number"
*/
public abstract byte[] getCardNumber();
It doesn't work. If I change the byte[] to a String it works fine, but as it is I get
the following error:
Caused by: javax.ejb.TransactionRolledb
I've dowloaded today release 3.2.6RC1 from the CVS repository.
>From $MY_WORKSPACE/jboss-3.2/build/ I performed 'ant release-all' which builds a
>distribution for each archive type. It compiles OK including varia.
Just to check again, from $MY_WORKSPACE/jboss-3.2/varia I perfomed 'ant compile' and
Hi,
increase the environment space to 32mb (if I good remember should be in the properties
of the run.bat)
Ciao
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842428#3842428
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply
It would be great if others could tell how they get this configuration to work.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842427#3842427
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842427
-
Hi, I too have been trying to get JBoss Nukes and JSPWiki to run together like the
jboss.org site does it. I tried installing them independently but couldn't get
JSPWiki pages to show up inside of Nukes pages. In fact, I even had a problem seeing
them both in my browser when they were running
I've been using JBOSS for over 2 years now, and bought and read the documentation, and
read the EJB spec. The problem I have comes back to varying degrees and it seems that
I can't really shake it.
I recently upgraded my server to the 3.2.5 version - figuring that the new CMP changes
would imp
Hi, I too have been trying to get JBoss Nukes and JSPWiki to run together like the
jboss.org site does it. I tried installing them independently but couldn't get
JSPWiki pages to show up inside of Nukes pages. In fact, I even had a problem seeing
them both in my browser when they were running
same problem here: two ear's, one calls into the other. salted with the need for ear
scooping.
jboss 3.2.5 siletly ignores the callbyvalue parameter, you need to add it to
org\jboss\metadata\BeanMetaData.java
callByValue = callByValueElt.equalsIgnoreCase ("True");
in importJbossXml() at
I don't know about JMS in particular, but from my experience the JBoss server will
report back to the client an invoker URL to use after the inital lookup.
This URL is not necessarily the same host address that was used to connect. Depending
on your configuration, it may be using the hostname i
nukes 2 should address this issue
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842421#3842421
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842421
---
This SF.Ne
Thanks for helping.
I looked through the FAQ and do not see anything about this issue. I have been
reading through many topics and saw several about the hosts file. I added ip
conputername and computername ip to the server and client. Didn't help (rebooted
after changing). The switch to 1.4
Probably the infamous JVM error, if files are not deleting then you are at least
running 1.4.2. Heard a report that it may be fixed in 1.5, try it if you can and let
me know.
Otherwise, check for file leaks in you app. For instance, we are tuning our app to
use a static properties file instan
In helloworldnow.war\WEB-INF searh for a file named web.xml. It contains information
about servlets used, servlet-mapping, servlet-name, url-pattern, ejb-ref, etc.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842418#3842418
Reply to the post :
http://www.j
Hi Jae,
I checked the link for your web site and it worked for me. You have to wait 20 to 45
minutes after you get the e-mail to check if your site is up.
The way Nukes is set up, doing auto deployment for Nukes on JBoss is a fairly involved
process. I use a combination of message driven beans
"jamesstrachan" wrote : Let's start with the timer, as that's simple.
|
| ...
|
| That gives you a trigger that works, and can be adjusted to reload as frequently
as you require.
|
from where would you call this code tho ? If you do it from onMessage it might not be
called for a lon
hi all,
almost 6 months ago i downloaded from Castor website the CastorJDO Mbean, and i used
it successfully with jboss 3.2.2 and jboss 3.2.3.
i recently moved to jboss 3.2.5, and when deploying EXACTLY the same code, i got
following exception :
21:11:31,385 WARN [CastorJDOImpl] Unexcepted err
I am having a problem whan I try to deploy RSS module. I noticed, that this module is
not deployed automatically when nukes source is compiled. However when compile the
module myself, and try to deploy it, I get the following error:
org.jboss.deployment.DeploymentException: create operation fail
it's a little rocky but it's because of database issues, not jboss
we're using a combination of jboss, tomcat, hibernate, struts, velocity, & spring and
they are all performing very well, not to mention fast as well
once we get our DB issues straightened out, we should have a pretty stable site
Hi,
Does anyone know why this appears in the wsdl for all the services I
have deploy?
| -
|
|
|
I know that the mapping is defined in the jboss-net.sar, but should it be appearing in
my wsdls?
Cheers
cdog
View the original post :
http://www.jboss.org/index.html?module=bb&
My changes have been checked in.
Is our JChannel "constructor" discussion something to have in this forum? Another
topic maybe? Or the JGroups mailing list?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842406#3842406
Reply to the post :
http://www.jboss
How I do that? What file I have to modify?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842405#3842405
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842405
---
Th
The JVM dose not allow us to dynamically reload a class.
If what you need is the dynamic reloading, it is impossible with Javassist (or maybe
any other tools).
What you can do is to load a modified class B with a new copy of class A so that they
belong to a separate namespace (i.e. a class loader
Can you help with the URL for the source code download? The book reads...
"http://www.oreilly.com/catalog/entjbeans4/workbooks/index.html";
But I get a 404 error from oreilly, tried a bunch of permutations of the URL with no
luck. Thanks, great book btw.
View the original post :
http://www.j
Hi all
I'm using JBoss 3.2.1 (upgrading to 3.2.5 by August) and need to be able to fix the
order by which the jar-files in /server/default/lib will be added to the
classpath when jboss starts.
The reason why I need this option is because I have two jars each containing a class
with exactly the
sweet! - i just tried it and it didn't work for me, but the whole idea seems to be
pretty cool.
are you running multiple instances of nukes on the server?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842400#3842400
Reply to the post :
http://www.jboss.org
insert-after-ejb-post-create will not work if you use container generated primary keys
(like autoincrement) because orimary key must be known before you set the relationship.
And youwill have problems during cascade deletes anyway because when the bean is about
to be removed it will get cmr fiel
I think you need an configuration.
I'm using postgres with something like that:
java.lang.Long
INTEGER
SERIAL
I don't know the specific configuration for hsqldb
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842399#3842399
Reply to the post :
Have you tried deploying yout web file exploded?
If your file is called blabla.war, then put it in a directory called blabla.war.
Joachim
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842397#3842397
Reply to the post :
http://www.jboss.org/index.html?modul
you can't run nukes on jboss 3.2.4 or greater yet. this will be corrected after the
1.1 release comes out.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842396#3842396
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=38
Your jar archive, deployed (for example in default) should look like this :
$JBOSS_HOME/server/default/deploy/
my_ejb.jar/
- My_ejb.class
- My_ejbBean.class
- My_ejbHome.class
- ...
META-INF/
- MANIFEST.MF
- ejb-jar.xml
- ...
Chris
View the original post :
http://www.jb
Ok.
Still have not found your workaround, but figured out my own.
The bug regarding getAutocommit and setAutocmmit in sybase jdbc jconn2 is solved:
| jConnect will no longer begin a transaction in chained mode when
| Connection.getAutoCommit() or Connection.getIsolationLevel() is called.
I have read all documentation, tutorial, studied samples carefully,
even Jboss forums and it all only led me to frustration. Javassist is
really great tool and I need it, but have no idea how to do simple change in
class and reload it in my program dynamically. I know about classloader's problem,
I
actually this was maybe more of a Nukes question, but anyway I reinstalled the whole
thing, put the 3.0.9 mysql connector instead of the 3.0.14 and it all works now...
guess this post is useless, sorry :) you guys all missed a beer!
View the original post :
http://www.jboss.org/index.html?modul
It is a bug that has been reported.
I'm *now* working for fixing it... please wait.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842391#3842391
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842391
-
Hi
I wasn't aware of this add-on patch related to context management for JBoss 3.2.5.
Thanks for pointing this out, I'll look into it.
>From the looks of it, the package makes it possible to configure the context per web
>app (as opposed to just for the default Tomcat context).
What I'm
Here is some additional info which provides more insight into the problem. Based on
this information I am begining to think that the problem we are observing is related
the fact that the JBoss class loader
is actually loading some of the commons-logging classes from the Tomcat SAR's
repository
Hai,
We have an use case where each web request will be served by any one server from a
cluster of tomcat servers (non-sticky load balancing). Session replication is not done
as we maintain nothing in the session.
The following are the steps involved in form-based-login in Tomcat 5.16
C
I am having the same problem
| 2004.07.16 08:58:30.609 EDT INFO [STDOUT] org.jboss.tm.JBossRollbackException:
Unable to commit, tx=TransactionImpl:XidImpl [FormatId=257, GlobalId=DBOON1//197,
BranchQual=] status=STATUS_NO_TRANSACTION; - nested throwable:
(javax.ejb.EJBException: Update fail
I am working to deploy Laszlo on JBoss.
If you are unfamliar with Laszlo, it is a server side processor that takes "lzx" files
like "hello.lsx" and converts them into Flash "swf' files, such as "hello.swf".
This part works under JBoss just fine. However, there is another part called krank
that
jboss-3.2.3\server\all\deploy\jboss-net.sar\ - Did you try searching for the jar file?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842383#3842383
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842383
--
fellow developers,
am trying to install Jboss-3.2.3 having great success aside from a missing axis.jar
file...
any thoughts on where i can look ??
Thanks
jim
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842380#3842380
Reply to the post :
http://www.j
Where do I find the documentaion of jboss servlet,
jsp, EJB, etc specification support? Is there a
release notes file in the distribution that says
servlet 2.4, JSP 2.0, EJB 2.0... are supported?
Specifically, I have jboss 3.2.5 and want to know if
what servlet and jsp specs are supported.
Let's start with the timer, as that's simple.
You use an environment variable in the deployment descriptor to set a reload interval
in seconds.
You then read that and covert it to milliseconds
|
| Integer temp = context.lookup( "java:comp/env/ReloadInterval");
| reloadInterval = temp.get
It was a user bug... :)
Hibernate does use the Thread's classloader first, except when loading it's
properties. So copying the properties to the conf dir solved the issue.
But thanks for the info, it's helped to understand things better!
I owe you a beer, now you only need to visit Hungary once
I am unable find any informative resource on the performance limitaitons of JBoss. Has
any one conducted load test with Jboss?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842376#3842376
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=po
we get an error - What error?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842375#3842375
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842375
---
This SF.Net ema
hi there,
I've tried to manipulate class-files with javassist but some output is corrupted and
results in a VerifyError. The line number table, containing mapping of machine
instructions to source code lines, seems te be corrupted.
How can I remove the debug information? I've managed to read t
p.s. i use jboss 3.2.5
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842371#3842371
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842371
---
This SF.Net email is s
Hi
It was a Oracle Configuration problem all works now.
Thank you.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842369#3842369
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842369
I try ANONYMOUS / NONE but no effect.
???
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842368#3842368
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842368
---
Thi
moi Ãa me fait pareil: j'ai du mal à gÃrer les droits de mes blocks html pour
plusieurs groupes, toutefois tu as regardà les droits dans la table des attributs des
services de ta base de donnÃes nukes? (j'ai des problÃmes de connexion à ma base
alors des fois j'le fais à la main, des fois aussi
Hi all,
I am seriously looking for any kind of documentation on this. I need to tune my
webcontainer and EJB container to handle 4000 concurrent users.
Please help me friends!!
Thanks
Bhaskar
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842366#3842366
hi
if the change in eclipse is concerned then in xdoclet configuration -> jboss
specify the version as 3.2.
karol
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842365#3842365
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=
They advertise deployment for 3.2.2. Could that be a problem?
Get the following error:
04:48:36,803 INFO [EARDeployer] Init J2EE application:
file:/C:/jboss-3.2.5/server/default/deploy/nukes.ear
04:48:41,190 WARN [DeploymentInfo] Only the root deployment can set the loader
repository, ingoring
Correction: they advertise deployment for 3.2.3.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842364#3842364
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842364
Hi,
where or what is the jboss.jcml ? I read an article where is was mentioned:
http://www.huihoo.com/jboss/online_manual/3.0/ch13s126.html
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842362#3842362
Reply to the post :
http://www.jboss.org/index.html?mod
I don't think so because now, i-m using jboss3.2.0 and it's work fine. but now i must
try to use it with debian and i have a new error message with rmi
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842360#3842360
Reply to the post :
http://www.jboss.org/ind
There should be tags around the entries, of course. The message board is not showing
them. They're in the source though.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842359#3842359
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mo
Have you got
lib/?.jar
entries in the application.xml
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842358#3842358
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842358
Hi,
bound to be a simple solution
I'm using the default hypersonic db. I'm unable to get jboss to insert values for the
pk for my entity beans. I get the error:
Could not create entity:java.sql.SQLException: Try to insert null into a non-nullable
column in statement [INSERT INTO ARTISTEN
Hi,
my stateless session ejb uses open ldap to retrieve user informations... I am using
jboss 3.2.4 and get this exception when a lookup is invoked:
java.rmi.UnmarshalException: Error unmarshaling return; nested exception is:
java.io.WriteAbortedException: writing aborted; java.io.NotSerializ
When is the target release of JBoss 4.0 ? I read the JBOSS 4.0 Roadmap and I am not
clear. My company is in critical time to decide whether using Timer Service in EJB or
develop ourself. We prefer JBoss 4.0 but we don't want to deploy Beta version to
client. Currently we are using JBoss 3.2.4. I
please any body help me and give the basic strutcture of jar files so that i could
deploy the bean and
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842354#3842354
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=38423
Well, simply upgrading to Jboss 3.2.3 solved my problem.
Cheers.
Dan
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842353#3842353
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842353
--
95 matches
Mail list logo