Ok - tried the search and found this detailed answer here
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=143996
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218540#4218540
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&m
Hello,
recently we migrated to jboss 5 from jboss 4.2.3. Now we are missing the jboss
remoting mbean.
In jboss 4.2.3 there was an "jboss.remoting:service=Connector,transport=socket"
Mbean defined in the /conf/jboss-service.xml. In Jboss 5 there isn't such an
entry in this file.
Has this been
"getaceres" wrote : ... Hibernate assumes that it is oid...
No Problem, you have to redefine the default Postgres Dialect, that hibernate
uses. For a better understanding: when you look in
org.hibernate.dialect.PostgresDialect you will see:
registerColumnType( Types.BLOB, "oid" );
You m
Hello,
we annotate all our lob-columns in the entity with the @javax.persistence.Lob
annotation and let the persistence provider decide, what he will create in the
specific database. So you are not tied a specific database handling of lobs.
Example:
| public String description;
|
ok, the forum is tricking me - next try:
|
|
| lims-license-service.sar
|
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4195479#4195479
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41
ooops - missed some lines - try this:
your-mbean.sar
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4195478#4195478
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4195478
We used following instructions for jboss 4.2.x:
1. zip your mbean as an sar-archive
2. Create in your ear's META-INF an jboss-app.xml and register there your mbean.
your-mbean.sar
3. package ear, deploy
View the original post :
http://www.jboss.com/index.html?module=bb&
Please check, that you are using the only the LOCAL-Interface from the bean as
reference:
| @EJB
| private LocalBeanInterface bean1;
|
Instead using the remote-Interface would result in (De-)serialization and those
in deteaching any entity.
View the original post :
http://www.
Thx! For update site issue opened http://jira.jboss.com/jira/browse/JBIDE-1499
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113323#4113323
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4113323
Hello,
i installed JBossTools 2.0.0.200707100301-nightly, and now every time i wanna
install another new feature the eclipse-update manager claims JBossTools
(2.0.0.200707100301-nightly) requires feature "org.eclipse.jem".
I'm using eclipse 3.3 Europa RCP-Release, and in my plugin folder exi
Ok, some questions to the new packaging. We have a jee-application, for which
we had (jbosside 2.0.0beta2) packaged more than one archive: a client.jar, an
ejb.jar and an application.ear.
1. With the old form of packaging it was possible to build all 3 files with one
click ("Run Packaging"). Ca
Ok, i found a view "Project archives". Will dig a little bit into that...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059644#4059644
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059644
_
Hello,
i can't find the packaging-feature of the "old" jboss-ide anymore in the
nightly builds of jboss-tools. Will this feature not be supported anymore ? Is
there an alternative ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059590#4059590
Reply to the
Opened Jira-Issue: http://jira.jboss.com/jira/browse/JBIDE-501
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059538#4059538
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059538
Same problem here with JBossTools-200706300254-nightly-ALL-win32.zip and
Eclipse-Europa GA release. Any hint to fix this ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059520#4059520
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting
Look at the last posts here
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050020#4050020
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056290#4056290
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056290
It seems, only version 1.3 of jboss-aspect-library-jdk50.jar comes bundled with
actual jboss-ide 2.0.0Beta2. See eclipse-plugin
org.jboss.ide.jdt.aop.core_1.2.0.Beta2 in ECLIPS_HOME/plugins-folder ...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4045698#4045
Hello,
since release 4.2CR2 of JBoss the JBossIDE 2.0.0Beta2 is missing the
jboss-ejb3x.jar, if i add the "jboss EJB3 libraries" to the build-path of my
project.
Don't know, if it's a jboss packaging failure, that jboss-ejb3x.jar isn't
anymore in the SERVER_HOME/server/default/deploy/ejb3.depl
In EJB3 you need only in rare circumstances use of a SessionFactory. Mostly you
would inject a EntityManager(-Factory) directly via annotations in your Beans.
So in most of your applications you don't need a SessionFactory and there there
would be no need to register the name of the SF in JNDI.
In case you are using EJB3/Hibernate with jboss, this means that you have not
explicit specified to bind the EntityManagerFactory (aka SessionFactory) to
JNDI. So you cannot look up for the SessionFactory in JNDI.
To register the SessionFactory in JNDI you have to specify it in
persistence.xml
It seems for me like a problem with the DEFAULT the classpath and/or included
jars, which ECLIPSE 3.2 per default sets for the test-client.
If i manually add all necessary jars of jboss to my test client project, then
programm will run ok. But if i let eclipse determine the classpath (via Button
Hello,
i have exactly the same problem in my standalone java-client. Same exception,
when i try to call a method of a remote-ejb.
Error occurrs only since and with jboss 4.20CR1 "official released" Version.
Before we used a svn-checkout of 4.20 from around November 06, and this version
didn'
Hello,
testing Jboss 4.20CR1 (with patched jnp-client.jar see
http://jira.jboss.com/jira/browse/JBAS-4184).
I have a java test-client. The jndi-lookup of remote-interfaces seems to be
sucessful, but when i then make a method-call on such a remote-bean i get
always:
ava.lang.reflect.Undeclared
JIRA issue opened. See http://jira.jboss.com/jira/browse/JBAS-3952
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995222#3995222
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3995222
___
Hello,
if i try to persist a newly created object inside an hibernate3-listener, this
object get never persisted in the database. Using following code-snippet for
persisting:
private void saveNewObjectFromWithinEventListener( Object myObject ) {
| try {
| InitialContex
Sorry, that the header is garbled - should be "Re: 2.0.0 Beta2: unable to add
Jboss EJB3 Libraries [error]" .
But the problem has gone after an eclipse restart. sorry for the convience.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982326#3982326
Reply to
Hello,
i have upgraded to Beta 2.0.0 Beta2. As first step, due to a NPE i had to
delete all existing jboss servers and recreate them in eclipse. But now, when i
try to add the "Jboss EJB3 Libraries" at Java-build path page in project
settings, i'm able to choose an jboss server, but the ejb3 l
27 matches
Mail list logo