As of yet, I haven't got a clue.
Please try a post in the Javassist user forum, maybe they can help out.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955739#3955739
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39557
But you did sign the application jar (for webstart) when running with JBoss
4.0.3SP1?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955405#3955405
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955405
Using Tomcat bu
Try removing the 'throws EJBException' on all methods.
Does that work out?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955369#3955369
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955369
Using Tomcat but need to d
Did the application work correctly in JBoss 4.0.3SP1 with webstart?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955331#3955331
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955331
Using Tomcat but need to do more?
It appears to be an older version of Hibernate.
What version of JBoss AS and EJB3 are you using?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955075#3955075
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955075
Usin
The ejb 2.1 client adaptors tutorial is here:
http://docs.jboss.org/ejb3/app-server/tutorial/ejb21_client_adaptors/ejb21_client_adaptors.html
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955071#3955071
Reply to the post :
http://www.jboss.com/index.html?mo
Doesn't make much sense, the following line fails:
110 TransactionImpl.xidFactory = xidFactory;
TransactionImpl.xidFactory has been in since the start of JBoss 4.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955070#3955070
Reply to the post :
http:/
Please let me know where it says so. I couldn't find it.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955066#3955066
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955066
Using Tomcat but need to do more? Need to sup
Try adding the following to the MDB:
@ActivationConfigProperty(propertyName = "destination", propertyValue =
"queue/JEMOS")
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955039#3955039
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=postin
There is no definition in the specification on how to bind a bean to a specific
JNDI name. The LocalBinding is in the org.jboss.annotation.ejb package (from
deploy/default/ejb3.deployer/jboss-annotations-ejb3.jar), you should use that
one.
Please let me know if it works out.
View the original
Yes, it is possible to generate an interface ( / remote proxy) with only the
public methods expesed. But it would be nameless and leave the client clueless.
You could get to the methods via introspection, but then you're shifting the
complexity to the client side.
It would be easy to create a t
It appears to be a version conflict.
I've install JBoss IDE 1.5.1 with JBoss Embeddable EJB3 ALPHA 8 patch 2. With
some tweaking in Eclipse it works. The problem you have doesn't show up at all.
Maybe your classpath contains conflicting jars.
If you take a look at your run configuration -> Clas
Lazy initialization?
It would require some JNDI calls though.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3948082#3948082
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3948082
---
http://www.jcp.org/en/jsr/detail?id=220
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3939552#3939552
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3939552
---
Using
How about:
@AroundInvoke
|public Object myBeanInterceptor(InvocationContext ctx) throws Exception
|{
| if (ctx.getMethod().getName().startsWith("set"))
| {
| // FIXME: set that field to dirty
| // Don't forget to compare
| }
|
|
Note that the PreUpdate callback can be called anytime within your transaction
(EJB3 PFD 3.4.2).
Try the following:
@PostLoad
| protected void clearBits() {
|userIdChanged = false;
| }
|
| @PostPersist
| protected void possiblyNotifyUser() {
|if(userIdChanged) notifyUser()
The jndi-name from web-service.xml doesn't match the jndi-name from the
SessionBean xdoclet tags.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3865843#3865843
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3865843
--
"[EMAIL PROTECTED]" wrote :
| Who has some mess?
|
| Thread.currentThread().getContextClassLoader().loadClass() not Class.forName()
I disagree, when I do an import org.domain.SomeObject (and use it) it will be loaded
by the currentClassLoader, not by the contextClassLoader. So in effect j
try:
run -L saxpath.jar
Oh and place saxpath.jar in ${jboss_home}/lib. :-)
It will be added to the NoAnnotationClassLoader which is used to load jdom.jar.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3839069#3839069
Reply to the post :
http://www.jboss.or
Do you still get the same exception?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3838945#3838945
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3838945
---
This SF.
lol, I think bb needs a fix.
"wolfc" wrote : You need to configure a loader-repository. (See
| http://www.jboss.org/wiki/Wiki.jsp?page=JakartaSlide or
| http://www.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration)
|
View the original post :
http://www.jboss.org/index.h
You need to configure a loader-repository. (See
http://www.jboss.org/wiki/Wiki.jsp?page=JakartaSlide[/url] or
[url]http://www.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration)
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837944#3837944
Reply to the
lol, you should set the enviroment size to maximum (it's on one of the shortcut
properties tabs).
It should come up reasonably fine. If you start deploying you'll again run into either
the environment problem or the limited path sizes of w98.
Anyway you should really be running a production envir
Hello peoples,
I've got a problem with UCL. When I want to deploy slide.war it is dependant on
jdom.jar which is in the kernel lib. Since these are exposed to deployed components I
can't setup a proper UCL.
http://www.jboss.org/wiki/Wiki.jsp?page=JakartaSlide
Anyone know a workaround?
Thx
Vie
As a workaround I did:
SELECT OBJECT(fr) FROM Film f, FilmRental fr, Principal p WHERE p.id = ?1 AND
fr.location MEMBER OF p.locations AND fr.year = ?2 AND fr.week = ?3 AND fr.film = f
ORDER BY f.name ASC
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3837056#
The following jBoss-QL query (jBoss 3.2.2):
SELECT OBJECT(fr) FROM FilmRental fr, Principal p WHERE p.id = ?1 AND fr.location
MEMBER OF p.locations AND fr.year = ?2 AND fr.week = ?3 ORDER BY fr.film.name ASC
results in the following SQL query:
SELECT t0_fr.film_num, t0_fr.location_num, t0_fr.week
jBoss 3.2.2
jBoss 3.2.3
The following will not work:
| SELECT es.dateFrom FROM EventSeq es
| org.jboss.ejb.plugins.cmp.ejbql.ParseException: Encountered "FROM" at line 1,
column 20.
| Was expecting one of:
| "IN" ...
| ...
|
While the following does work:
| SELECT es.dat
27 matches
Mail list logo