"[EMAIL PROTECTED]" wrote : No, there are instructions in the Seam docs for how
to leave a conversation scope.
I could not find it, I don't think you mean calling the leave() method, do you?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928965#3928965
Reply
Did you look at portletswap http://www.portletswap.com?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928964#3928964
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928964
-
OK. I try to simplify it. Perhaps my description is too complex for my simple
problem.
I've two classes. The first has a factory method for a DataModel.
@Stateful
| @Scope(ScopeType.SESSION)
| @LoggedIn
| @Name("showListForDevelopers")
| @Interceptors(SeamInterceptor.class)
| public cl
Perhaps this also works for you:
@Name("foo")
| public class Foo
| {
|
|@In(create=true) Bar bar;
|
|public String action()
|{
| ...
|}
|
| }
@Name("bar")
| public class Bar{
|
| private String string;
|
| @Create
| public v
@Create and @Factory are totally different things.
Are you sure you have understood what @In(create=true) does?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928961#3928961
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&
Not yet, its only included in the jbossas download in the jboss-common.jar but
will be seperated soon.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928960#3928960
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928960
@Name("foo")
| public class Foo
| {
|
|@In(create=true) Bar bar;
|
|public String action()
|{
| ...
|}
|
| }
@Name("barFactory")
| public class BarFactory
| {
|
| @Out Bar bar;
|
| @Factory("bar")
| public void initBar()
Add JbossPortalHome//deploy/jboss-portal.sar/lib/portlet-api-lib.jar,
portal-portlet-lib.jar, portal-core-lib.jar. in classpath.
Everything is same except that you will have to write some jboss-specific
descriptors.
(The JARs I listed is how I do, may be there are some other JARs too).
V
sorry again, but still the problem is not solved !
(1) In seam-examples the @Factory method is always used with @DataModel - that
works perfect - but there is no example where you want to set values of a
injected bean !
(2) Adding a @Create in the bean is possible, but it changes the applicati
Is JBoss XML Binding available for download?
Thanks
Elangovan. S
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928953#3928953
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928953
--
Work is currently underway on a plugin for Eclipse which will allow easy
creation of portlet projects. see this forum for details:
http://www.jboss.com/index.html?module=bb&op=viewforum&f=239
Cheers,
KEv.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=392895
Hi everyone,
I'm currently running a JBoss 4.0.3 server behind a firewall. The firewall is
configured to allow all the ports used by JBoss 4.0.3 according to this article
as below:
http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch8.chapter.html#d0e21126
I'm also using all the default ports
Thanks Scott, the workaround wouldn't be a good idea in our software since the
structure is used nearly everywhere.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928950#3928950
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=re
I hope the message was clear. We design by interfaces, we inject by interfaces.
So using a class instead of a defined interface totally breaks this concept.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928949#3928949
Reply to the post :
http://www.jboss.co
Related advice: why waste time with an inferior product when you can save a
bundle and get Net Beans, Eclipse or IntelliJ? My personal experience with
JBuilder is that it's horribly designed, buggy as hell and extremely
inefficient. It's the bottom of the barrel but ironically the most expensive
Hi all,
I have a join table Party_member:
| table party_member (
| party_id int;
| person_id int;
| joined_on date;
| }
then according to a example of CategorizedItem on Hibernate in Action, I
created the following entity bean:
|
| @Entity
| @Table(name="Party_members")
|
Hi All,
Currently our application is deployed on jboss-4.0.1sp1 with jdk1.4.x and also
the current heap size setting is using default (128MB).
Server and the application works fine for few days and then after sometime it
stops responding to the request.
We have made the following observations
ok, It's not necessary in JB4.0.3SP1 the SAR jboss-hibernate.deployer.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928943#3928943
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928943
-
Hello -
I am new to the JBoss platform (and web services) and wish to build a
production quality web service application using JBoss.
I'd like to prototype a Java client program that is not a J2EE application or
another web service but wishes to invoke the functionality offered by the above
hmmn... true enough. I had thought about it actually but was undecided. I will
turn it into INFO then.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928938#3928938
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=392893
deployment error messages would help, so would any persistence.xml files you
are using.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928937#3928937
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928937
Is it possible not to prefix class name with catalog name?
Example: table ce.users result class name CeUsers.
Also I've noticed that *EditorBean is not using right method names, which is
causing compilation errors.
Example:
instance.getCeUsers().getCeProfiless().remove(instance); //error
| ins
Hi all
I am using JBoss 4.0.2, JBoss portal 2.0 and Oracle9i. I need to authenticate
users that have been created in a separate Oracle database server. I have
already created User and User_roles databases.
Can somebody tell me how to configure to authenticate users and add users usin
that
Hello, I have the same problem:
nested throwable: (javax.management.AttributeNotFoundException: A
ttribute 'HarUrl' is not writable)
Why this attribute is read-only? How can I change this property?
Anybody can help me?
thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&o
After adding some client jars my code is running fine.
Thanks for your support
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928933#3928933
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928933
--
Thomas,
Thank you a lot! Now it works after conversion to InnoDB.
I think it will be helpful to warn users in case if database is not 100%
compatible.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928932#3928932
Reply to the post :
http://www.jboss.com/inde
It seem to be a oracle bug.
I tested on mysql 4.1,it is correct.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928931#3928931
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928931
I ran some tests and was getting the same error as you. I believe that the
problem lies in the fact that new Integer() expects a String or an int. When
you use your original line:
return new Integer((($2.get("Quantity")!= null) ? $2.get("Quantity") :
"1").toString());
you leave the possibi
I writen an entity bean,it have a Long key field,a String field,a Timestamp
field...
In my session bean ,I create a entity in a interface function createBug,update
the String filed value and Timestamp field value in other function updateBug.
I found the String field value is error,I update the
Thanks for trying Bill, but still can't get it to work. The changes in the
Wiki are for EJB3 RC4, and the jboss4.0.4rc1 bundle installs EJB3 RC5 (I wasn't
prompted to choose a different EJB version).
I have tried the changes mentioned on the Wiki, and the spec mentions
annotations that are unr
Yes, Java caches ResourceBundles, so you don't need to worry about caching them
yourself.
I have reworked the resourceBundle component as a SESSION scoped component,
that uses the client locale, instead of letting you to set the locale in
seam.properties.
This is of course the correct way to d
Never mind, I created the Jira JBCACHE-496 for this problem.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928923#3928923
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928923
In addition, you also need to change persistence.xml to the new struture:
|
| java:/DatabaseDS
|
|
|
|
|
|
|
|
|
|
|
|
and it is better to change xxx.ejb3 to xxx.jar
Details
Dear All,
How do we rollback a transaction just in case a timer execute method
fails in the scheduler session? We do not want to rollback the entire scheduler
session, just the failed timer. I was thinking of creating two sessions, one to
lookup the timers and another to do the execution
I'm still pretty confused about how to get JBOSS ejbs to talk through a http
proxy and so on.
I understand about setting these properties, that's fine:
ava.naming.factory.initial=org.jboss.naming.HttpNamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.nami
Turns out that this is not really a JBoss issue, but a Hibernate issue. It
looks like the 'AbstractBatcher' class in Hibernate is not quite set up
correctly to handle batch updates. We changed the following method in this
class to fix this issue:
public boolean hasOpenResources() {
I'm using the injboss example to try out DynamicAOP. I startup JBoss with the
jboss-aop.xml file in the /server/all/deploy dir. I then drop in the
aopexample.ear that was built from the example. The ear deploys and I can see
the interceptors print to the console like they are supposed to. I
... just to complement, we've already tried this
http://wiki.jboss.org/wiki/Wiki.jsp?page=DistributedPortletSession
with no success. There is a reference to a " Portal Session " ... does this
mean regular " HttpSession " ? or is there another session besides
PortletSession and HttpSession
View
--- Are your filter and your portlet deployed in the same WAR context ?
--- Rembember: each context has its own distinct session!
--- There is a config option to share the portal's session across all contexts
though. Check the docs for how to activate that.
What do you mean by that ? We've depl
One thing I've noticed is that the method I'm trying to call on my endpoint
takes two parameters the second of which is a String[]. The client code I'm
using passes an empty array for the second parameter. However, by the time it
gets to the endpoint, the array is null. Is that an expected behav
Sorry, your example code is simply too complicated. Try and massively simplify
it down to the bare concepts, and if it is not then obvious what the problem
is, post the simplified code.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928913#3928913
Reply to t
I've rebuilt it on Java 5. I wonder if it's possible to overwrite the wiki
attachments. Sandbox keeps asking me to log in, else I'd check. Am travel
tired, so will test etc tomorrow. Cheers Gavin
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928912#3928912
Doesn't the JVM cache loaded resource bundles?!
You have a great point about the Seam resourceBundle component. I should
certainly make this a session-scoped component and use the browser locale, not
a global locale.
I suck at i18n stuff :-)
Thanks!
View the original post :
http://www.jboss.
What stacktrace?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928910#3928910
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928910
---
This SF.Net email is sponsor
The classloading problem is that you are somehow loading the myfaces-api.jar
from two different classloaders, so you have two different classes named
"org.jboss.seam.jsf.SeamVariableResolver". Make sure you are not deploying the
myfaces jars along with your application. JBoss already has them bu
Should the JBoss IDE 1.5.1.GA solve the problem or will only the nightly
builds?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928908#3928908
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928908
--
the spec is your friend too it has a revision history
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928907#3928907
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928907
---
Google is your friend
The wiki is your friend
http://wiki.jboss.org/wiki/Wiki.jsp?page=EJB3
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928906#3928906
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928906
-
@Length (min = 1, max = 500, message = "Email address is required and must be
at most 500 characters long.")
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928905#3928905
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=
Thx to everyone for help -> it's highly apreciated :)
Finally got it working, basicly via RTFM (more carefully) ;)
Overead the J2SE-example-persistence.xml in HEM "doco" -> which helped solving
this problem very quickly ...
View the original post :
http://www.jboss.com/index.html?module
Um. I don't seem to be able to figure out how to do that...
Thomas?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928903#3928903
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928903
---
Bottom of http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamWithJSF1.2.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928902#3928902
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928902
-
Can't you do:
@Length (min = 1, max = 500, message = "Email address must be between 1 and 500
characters long.")
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928898#3928898
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=re
Remove which attachment from where?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928897#3928897
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928897
---
This SF.N
Yeah, I've also been frustrated by this one. I *think* it is a bug in JBoss AS.
I actually havn't seen it for a while and had thought it was fixed in 4.0.4RC1.
If you can create any kind of reproducable testcase, report it in JBoss AS
JIRA. I was never able to reproduce it reliably.
View the or
... sounds a bit over-complex...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928895#3928895
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928895
---
This SF
You would need to wrap SeamServletFilter around whatever servlet they use to
process the AJAX request.
As described here:
http://docs.jboss.com/seam/reference/en/html/conversations.html#d0e2481
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928894#3928894
I think what you guys may be grasping for is a concept of "conversation group",
perhaps analogous to ThreadGroup.
Do you think?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928893#3928893
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=po
It is VERY easy to extend Hibernate Validator and add your own annotations :-)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928892#3928892
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928892
--
"gus888" wrote : TheInterface generateInt = (TheInterface)
context.lookup("XXX/TheInterface/local");
| it seems the "XXX/TheInterface/local" should be
"XXX/TheInterfaceBean/local".
Nope, does not work. Seems like my My Beans are "not Bound" to JNDI.
thanks for suggestion though.
Is there a
I have a bunch of stateless session beans running in JBoss 4.0.1sp1 which are
being called by a Swing client via RMI. I would like the application to scale
to hundreds of clients, and I'm beginning to look at performance tuning. So
far, the results are encouraging; I've used Grinder 3 (incidenta
what is the best IDE to develop portlets?
I use Eclipse, (run packaging with Jboss IDE Eclipse)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928889#3928889
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928889
Oh!! Thanks. It's perfect to start
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=392#392
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=392
---
This SF.Ne
JBoss Portal 2.2
on
jboss-4.0.4RC1
with
possgress 8.1 (using admin count)
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928887#3928887
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928887
-
I'm currently running JBoss version 4.0.1 on Suse 8.0 with java version
1.4.2_10. I'm posting this to the clustering forum as we recently moved to a
clustered deployment using HA_JMS with JBoss 4.0.1 from JBoss 4.0.0 and had not
seen this problem at that point. To simplify our deployment, we a
TheInterface generateInt = (TheInterface)
context.lookup("XXX/TheInterface/local");
it seems the "XXX/TheInterface/local" should be "XXX/TheInterfaceBean/local".
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928885#3928885
Reply to the post :
http://www.jbo
BTW, the error I'm getting at start up of Jboss is:
ObjectName:
jboss.j2ee:service=EJB3,ear=XXX.ear,jar=XXX-beans.ejb3,name=TheInterfaceBean
State: NOTYETINSTALLED
Why? I don't know.
and when trying to use the context.lookup in the servlet, I get:
javax.naming.NameNotFoundException: TheInterf
where I can find more example of portles? (with source code and without source
code)?
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928883#3928883
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928883
--
I have an application that is up and running on JBoss 3.2.3.
For an IDE, I use JDeveloper 10g. to deploy to jboss.
I need to deploy on Jboss 4. However when I deploy on JBoss 4 the depoyment
fails and gives this error.
17:08:18,875 ERROR [URLDeploymentScanner] Incomplete Deployment listi
I am trying to migrate from jbossSP1 and ejb 3.0, to jboss4.0.4RC1 and
EJB3.0RC5 for an enterprise application I'm launching in a couple of months.
Loved the jbosssp1/ejb3 bundle, but this migration is driving me looney.
I am currently stuck at trying to get the context lookup to work. I have
Change it to this and it works:
ProcessDefinition definition = ProcessDefinition.parseXmlResource
("hello.par/processdefinition.xml");
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928879#3928879
Reply to the post :
http://www.jboss.com/index.html?module=b
I'm not ;-) I'm sure the problem was that I was trying out Mustang amongst
other things. Gavin, can you or another JBoss representative remove the
attachment from the wiki page? I'll build a Java 5 version, but don't want to
cause confusion with multiple attachments up there.
View the original
I've recently run into a situation where I've got a transaction that spans
multiple requests and I receive a LazyInitializationException when I attempt to
save and commit the changes to the object on the final request. Specifically,
I load a TaskInstance in one request, and then (potentially se
Try populating your @Factory method, or adding a @Create method to your myBean.
There are example in the Seam distro that show working @Factory used to
populate initial values.
-Jim
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928875#3928875
Reply to the
Hi
I want to compile a simple portlet from scratch. I have written a Porlet Java
class, a JSP and I would like to compile the Java class,create the Jar file,
write the portlet descriptors (or modify the descriptors available), set up the
War file directory structure, package and deploy the port
Also,
You want to make sure your application context create an individual jbpmContext
and not a singleton. So the new application context would be this:
|
|
|
|
|
|
|
|
|
icyjamie,
No if you call JbpmConfiguration.getInstance() you will get a cofiguration
instance other than that in Spring. Therefore, you want to use the application
context with Spring. Here is an example of using Spring and jBPM:
|
| public class MyTest extends TestCase {
|
| p
Nice find!
If you create a Jira for this, I'll fix it for the JBoss Cache 1.3 release.
Assign it to me for release 1.3. This needs to be done today.
The workaround is:
System.out.println(guidMap2.containsKey(new
Long("8225676592564383").toString())).
View the original post :
http://www.jb
I'm in the process of learning + developing my Seam enabled web app and I find
myself needing to redeploy all the time. Since I'm also new to JSF, I sometimes
need to redeploy because of a stupid JSF bug in my .xhtml files.
Some of the time the error will occur right after a make a call to a @B
i wouldn't know.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928862#3928862
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928862
---
This SF.Net email is sponsor
No - that won't work !
(1) I need the injection of myBean, because it holds the values of the form. If
I remove the @In-annotation I have no access to the beanValues filled from the
jsf-form within my controller !
(2) Assume you have a @Valid annotation for your bean for childvalidation. If
yo
Was a little fast on the submit -
The problem with JNDI was 'authorization' not authentication.
The test was done on CVS-snapshot of jboss-4.0.x on 3/7/2006.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928846#3928846
Reply to the post :
http://www.jboss
Hey all,
I have had great success with EJB3 test-application and using the remoting
support for socket-based RMI with great success!
Now I have moved on to test support for RMI-over-HTTP, and having some issues.
Two problems specifically:
* Using the servlet or EJB invoker over HTTP.
* The JNDI
http://opensource2.atlassian.com/projects/hibernate/browse/ANN-279
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928844#3928844
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928844
-
I would like to to have a more fine grained control over what is saved on the
client vs server, something like:
|@Scope(SESSION, state=server)
|
I really like to keep, for example, the id of the loggedin user on the server
for security reasons. Other state data can be saved on the clien
I'm becoming a big fan of jbpm, but it can be difficult to sell to management
without some success stories.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928842#3928842
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3
Give me a general direction to look in the code and I'll try to patch it.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928841#3928841
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928841
---
use 3.1beta4 or the just releasted jbosside 1.5.1 GA
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928840#3928840
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928840
I suggest you remove the @In annotation.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928839#3928839
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928839
---
Thi
Have you chekked the "use ejb3/annotations" checkbox in the console
configuration ?
(btw. would actually be nice if we autodetected this need depending on the
contents of the hibernate.cfg.xml ...please put that in jira if you want it)
...and you should *not* add any hibernate related jars to t
you have a very valid point. Add a feature request here:
http://opensource2.atlassian.com/projects/hibernate/browse/ANN
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928837#3928837
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&m
just tried inputSuggestAjax - nearly-works, but get nullpointerexception when
calling remote-method.
I believe it is because seam manages its objects invisible for jsf - thus the
ControllerBean bean is not found by the ajax-implementation.
somewhere in the forum there is a tip from Gavin how to
JDK 1.5.0_06
JBoss 4.0.4RC1
@Embeddable
| class Vector3f
| {
| double getX()
| double getY()
| double getZ()
| }
|
| @Entity
| class Foo
| {
| @Embedded
| Vector3f getVelocity();
| @Embedded
| Vector3f getOrientation();
| }
I get some errors from Hiber
I couldn't find this before, but I guess posting a question always raises the
possibility of finding it in the doc.
hibernate.max_fetch_depth - Set a maximum "depth" for the outer join fetch tree
for single-ended associations (one-to-one, many-to-one). A 0 disables default
outer join fetching.
I have having the same problem. Did you ever figure out what the problem was?
Thanks!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928833#3928833
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928833
--
"icyjamie" wrote : Of course. There was some glitches in the configuration for
the session factory. It must depend on jbpmConfiguration, so:
|
| | - depends-on="jbpmConfiguration" for the sessionFactory (believe me, it
is necessary :-))
| | - The addition of my favorite
directories:-)
One comment though, could it be made into a debug or info message rather than a
warning? I have my logs configured to show warnings and would rather not see
such log messages at all, since it is not really a problem. I am not sure why
it deserves a level of warn.
View the original post :
htt
It seems that org.jboss.hibernate.jmx.Hibernate is now redundant with Hibernate
3.0 and later. Hibernate includes an MBean for the session factory, and so
shouldn't JBoss AS try to use org.hibernate.jmx.HibernateService, or possibly
extend that class to add the functionality it needs? It seems
hi
i am trying to implement the Patch set provided by P0six
i am using 10gR2 data base and JBoss 4.0.3SP1
and i am getting the following error when i start JBoss, also similar errors
apper for other Providers service, i have checked the classpaths in the
deploy.xml for the patchset it seems to
any ideas on this one anyone?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928823#3928823
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928823
---
This SF.Net ema
1 - 100 of 225 matches
Mail list logo