Ok, have seen this issue in jira: JBIDE-1478
But I have another problem using tests:
On startup I use @Observer("org.jboss.seam.postInitialization") to check some
tasks like scheduling jobs(quartz), putting a message to queue using a mdb etc.
I don't use this class in my test but I receive an e
Hi,
I have problem to runnig tests inside a Seam Web Project using the JBoss Tools
IDE.
Environment: JBoss Tools 2.0.GA, Seam 2.0.1.GA
When I create a new Seam Web (ear)Project with a simple Seam Action and try to
run TestNG test as discriped in 'Seam Dev Tools Reference Guide' the first
exc
Hi,
I have a mdb
@MessageDriven(name="QueryMessageBean", activationConfig = {
| @ActivationConfigProperty(propertyName="destinationType",
propertyValue="javax.jms.Queue"),
| @ActivationConfigProperty(propertyName="destination",
propertyValue="queue/oatsMessageQueue"),
| @Activ
Hi,
thank you. It works now.
First I putted this on methods with the same exception than on to class
definition and that was the solution.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120891#4120891
Reply to the post :
http://www.jboss.com/index.html?
Hi Pete, Gavin or someone else,
as I can see the seam.quartz.properties file is also used in quartz example.
But what's the reason for the exception in my case? I already used the same
file in a fromer seam project without prolems.
View the original post :
http://www.jboss.com/index.html?modul
Hi Pete,
but can you tell me wy I got this excpetion
anonymous wrote : No ClassLoaders found for:
org.jboss.seam.async.AsynchronousInvocation
Is there something what I can change to get persistent quartz working?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p
Ok,
than I have read this in post from jboss-developer-member that when I would
like to persist quartz scheduling after server restart, I have to put
seam.quartz.properties file to project - this was a few month ago and worked in
a Seam console project.
Now in a Seam-Web-Project I get the dis
Hi nickarls,
thank you for response.
In a Seam-Web-Project all libraries from server are automatically put to
build-path. So I use quartz.jar from server.
The strange is that I already used the same configuration in a console created
seam-project.
View the original post :
http://www.jboss.
Ok, I tried to put seam.quartz.properties file to ejbModule folder of the
project. After some ClassNotFoundExceptions I putted the missing apache-commons
jars to jboss default lib folder.
Then I received the following error:
org.quartz.JobPersistenceException: Couldn't store trigger: No ClassLoa
Hi
in a normal console created Seam project the seam.quartz.properties file is
located in the resources folder.
But there is no quartz file in a Seam-Web-Project. Have I to put these file
manually or have the quartz configuration changed?
Thanks
View the original post :
http://www.jboss.co
thank you to all
@peter.hilton
I don't have a category with name "org.jboss.seam" (use jboss-4.2.2.GA)
@Bernix
I have changed the config in the way you pointed and it's ok now
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113866#4113866
Reply to the post :
ok, as I can see there is a JIRA
http://jira.jboss.org/jira/browse/JBSEAM-2232
but is there something what I can do temporary prevent from this problem
because I always run in a space problem:
log4j error: Failed to flush writer,
View the original post :
http://www.jboss.com/index.html?module=
Hi,
in my application I can call a link to output a large table in a seperate
browser window.
When I call this link the server.log grows up from 3.65 MB to 45 MB.
The table is build with richfaces datatabel and subtables and ~260 rows
What the reason for this server.log growing on large table.
Hi,
I have a entity that is in relation with some other entities with cascade type
'remove'.
When I call an action from website to remove (entityManager.remove(userQuery);)
an specific entity all other entities are also removed as expected.
But if the same is called inside an asynchronous meth
But of course I mean data-export.
Normally it should do it's work only fill import-test.sql, is it true?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110082#4110082
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41100
Hi,
project is created with seam-gen v.2.0.0.GA
Production DB is MySQL
For testing purpose I filled import-test.sql with values
INSERT INTO Customer (id, version, userName, hashedPassword, email, memberName)
VALUES
| (1, 1, 'feivel', 'd41d8cd98f00b204e9800998ecf8427e', '[EMAIL PROTECTED]',
'
Hi Max,
thank you for response.
I greated this project within RHDS as Seam-Web-Project. So there is no
build.xml file that I can use seam-gen command line interface.
Is there an other possibility use command line interface?
View the original post :
http://www.jboss.com/index.html?module=b
Hi,
I use RHDS CR1 to develop an Seam-2 EAR-project.
I saw the problems using TestNG and JBoss Tools here:
http://jira.jboss.org/jira/browse/JBSEAM-2129
http://jira.jboss.com/jira/browse/JBIDE-1129, but need these tests urgently.
Is there something what I can do get tests working?
Thanks
V
As I demanded for the umpteenth time. Cancel a timer work not in that way as I
expect.
For i.e. I have a customer paying a rate that should be stoped for a while but
the payment process is already started.
In the quartz sample a exception is thrown that the handler can not be
stopped(cancel)
Here is an example based on engelme idea that is working for me
import java.io.IOException;
| import java.io.Serializable;
|
| import org.jboss.seam.annotations.Name;
| import org.jfree.chart.ChartFactory;
| import org.jfree.chart.ChartUtilities;
| import org.jfree.chart.JFreeChart;
Hi
I have not much experience with MDBs.
I need to use EntityManager in combination with a MDB. As I have seen here in
forum an other user have used this in the same way as follow:
MDB
package de.oats.business.mdb;
|
| import javax.annotation.Resource;
| import javax.ejb.ActivationConfig
Hi,
I work with Seam EntityHome component. If I update, create or delete an entity
there is a FacesMessage with english content.
I need to customize this message for the german language.
In the Home class I can see that message fields are private. Should it be not
protected to customize messag
Hi Pete,
yes I think so.
@Stateful
| @Name("register")
| public class RegisterAction implements Register
and
If I move adding userrole to last step of my wizard the problem disappears.
in register():
UserRole ur = (UserRole)entitymanager.createQuery("from UserRole ur where
ur.name = '"
Hi, I try to use a User/UserRole relation and took the seam-space as example
I have a UserRole entity with some predefined rolenames in database
UserRole class:
@Entity
| @Name("userroles")
| public class UserRole implements Serializable {
|
| /**
| *
| */
|
Sorry,
first time 2.0.CR1 and than latest from cvs.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095037#4095037
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4095037
___
jb
hi juntao,
I know that I can cancel the timer with QuartzTriggerHandler, but if the
process is already called the first time and there some other calls in the
future(i.e. daily calls) I can't cancel the timer this way.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewt
is there nobody else with a similar situation cancel a async call although the
timer is already processed?
hope for reply!!!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087752#4087752
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=post
hi,
what's the way to force cancel a timer. I always receive the message in payment
example "Payment already processed". But sometimes in my case a timer have to
be stopped although he's processed.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087047#408704
ok sorry, only the non-existing tables were the root of the problem.
There some scripts creating these tables for the corresponding db in
quartz-1.6.0.zip\docs\dbTables
Now it works
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087025#4087025
Reply to t
hi,
is it possible with Seam securing components to restrict user-access to some
admin regions in web-app only from (local) intranet?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085627#4085627
Reply to the post :
http://www.jboss.com/index.html?module=bb
ok christian,
thank you for help. Now it's clear.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082949#4082949
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082949
___
jbos
I know Seam for a while, but have some questions regarding things like @Scope.
@Stateful and Interfaces.
If I create a Bean with @Stateful and @Scope(ScopeType.SESSION) annotation for
example I have to implement an interface to access fields and methods from my
JSF page. If I create a Bean with
Hi,
I use a rich:datatabel component to display data from an class extending the
EntityQuery class
| @Name("recipientsList")
| public class RecipientsList extends EntityQuery {
|
from datatable i use method expression
|
|
|
|
|
Can you tell me how solved the problem?
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4081337#4081337
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4081337
___
jboss-
Hi Michael,
can you tell me what I have to change in properties file to get quartz working
with mysql for example.
I see the seam.quartz.properties in CVS but it's not obvious for me what I have
to do.
org.quartz.scheduler.instanceName Sched1
| org.quartz.scheduler.instanceId 1
| org.quart
Hi,
it's important for me. Is it possible to maintain quartz scheduled job after
server restart anf if the answer is 'yes' please tell tell me what I have to
do!!!
Thanks
Andreas
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078732#4078732
Reply to the
Have used several attempts to display data from multiple entities without
success
List reslist = entityManager.createQuery("select qr.gpnum, csy.name from
QueryResult qr, Csy20oats csy where qr.gpnum=csy.y20gpnum").getResultList();
| return reslist;
|
|
Please,
can someone tell me if it's normal with quartz, that the job after server
restart is gone.
Or, better - what can I do to maintain quartz scheduled calls after restart.
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074053#4074053
Reply to
I have read that the use of quartz is the better solution. But there should be
a possibilty to persist async calls across server restart.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073561#4073561
Reply to the post :
http://www.jboss.com/index.html?module
I don't know if quartz use EJB3 timer, because in JMX-Console under
EJBTimerService -> java.util.List listTimerHandles() no timer is listed after
start asynchronous method.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073551#4073551
Reply to the post :
h
Hi,
what can I do to maintain asynchronous calls after shutdown of JBoss AS?
I use the similar asynchronous call as in quartz example. Everything works
fine, but after server restart all timers (or whatever is created in
background) are gone.
What is be designed to keep such timers in memory?
thanks,
works now
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059577#4059577
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059577
___
jboss-user mailing list
jboss-user@li
if you have the following in components.xml
you can use
@In(create=true)
| private EntityManager entityManager;
But one question. Why you have managed-bean stuff in faces-config.xml?
This should be handelt from your annotations in your bean, I think!
View the original post :
http://www.j
Have a look at seam/examples/seamspace.
register2.xhtml and the correspondending bean show how to use fileupload with
seam.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059514#4059514
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=postin
Have a clean jboss-4.2.0.GA and the lastest Seam version (2.0) from CVS.
When I try to start the deployed seamdiscs example the following exception is
thrown:
| java.lang.IllegalStateException: Two components with the same name and
precedence: org.jboss.seam.web.ajax4jsfFilter
| at
org
Thank you Peter.
Have solved my problem with note to "Configuration Issues".
Set address to 0.0.0.0 under server/default/deploy/jboss-web.deployer/server.xml
| http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4058263#4058263
Reply to the post :
http://www.jboss.com/index.html?module=b
I'am not sure if this is the right place for my problem.
environment:
- jboss-4.2.0.GA
- seam-1.3.Alpha
-W2K
-java 6 jdk
No problem with jboss-4.0.5.GA and seam-1.2.1 or a call from localhost:8080
But if I try to call my webapp or the the server with http://ip-address:8080
the following code i
Hello,
Is there a known problem with "illegal attempt to dereference collection"
exception?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056300#4056300
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056300
_
The same exception with my quer. Runs on jboss-4.0.5.GA but not on
jboss-4.2.0.GA
error
java.lang.IllegalArgumentException: org.hibernate.QueryException: illegal
attempt to dereference collection
[{synthetic-alias}messmittel0_.messmitteltyp_idmessmitteltyp.funktionen] with
element property r
Thank you pete,
have performed bybassUpdates on cancel-commitLink and wondered about entity
update anymore.
Now on a:support it work expected.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055098#4055098
Reply to the post :
http://www.jboss.com/index.htm
Have the problem that the entity is updated without a submit.
Once I have changed the value of the drop-down-menu it's directly updated to
database.
This should not the correct behaviour!?! But I don't know why?
|
| Generation:
|
|
|
|
|
one question.
WHAT is the reason WHY s:fileuplaod and a4j submit not working together?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051729#4051729
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051729
___
in my case I see a upload field with button. But the values for file, filename
and contenttype in the backing bean are always null and getter/setter are never
called only I comment the s:fileupload. In ohter forms in my app there is no
problem with fileupload only in this one.
| http://www.
@morellon
which alteration you mean?
My binding is always null.
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050613#4050613
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050613
__
Hi Shane,
have updated the fileupload example in JIRA.
Have tested and should explode-able on JBoss-4.2.0.GA.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050099#4050099
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=
Hello Shane,
have you an explanation for this problem?
After press "save" in my example all fields should be accessed.
But the fields still have null values.
Hope you can help.
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049485#4049485
Reply to
Hi Shane,
have create a report to JIRA.
http://jira.jboss.org/jira/browse/JBSEAM-1360
I never have done this before. Hope is ok.
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049139#4049139
Reply to the post :
http://www.jboss.com/index.html?mod
It's exactly the same behaviour in my app.
But I use Facelets(*.xhtml).
The strange thing I found out: If I comment s:fileUpload tag, the fields are
entered
Without the comment the getter/setter of the fields file, fileName and
fileContentType are not called in debug mode.
Use Seam 1.2.1 an
Hi have exactly the same problem and already put resource servlet to web.xml
If I pick 1st June it result in 06/01/2007 instead of 01/06/2007
|
|
|
|
|
|
|
|
|
|
|
Use JBoss Seam 1.2.1
jboss-seam-ui.jar is
Hi,
have implemented a timer as shown in seampay example.
Also have used the cancel method to stop the timer.
Until server is restarted the method work as expected. But after server restart
ich receive the message like "Payment already processed" in seampay example.
How can I cancel the timer
You have to put
negotiate.jar
| negotiate-src.jar
|
|
| to lib folder of your server
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039750#4039750
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039750
_
Hi davidetaibi
anonymous wrote : Look in
deploy\jbossweb-tomcat55.sar\META-INF\jboss-service.xml
|
| set UseJBossWebLoader=true
Now it works
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039160#4039160
Reply to the post :
http://www.jboss.com/index.
Hi,
have the same problem.
| javax.faces.el.MethodNotFoundException: /specialreleaseeditor.xhtml
@107,140 dropListener="#{requestlist.processDrop}": Method not found:
RequestListBean:5c4o1y-w4tnnw-f0o94j20-1-f0opgfby-1s.processDrop(org.ajax4jsf.dnd.event.DropEvent)
|
@stu2
What your DanD
You can find on Seam docs what el enhancement is.
Look at
http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/elenhancements.html
page parameters are also descriped there
http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/events.html#d0e3803
View the original post :
http://www.jboss.com/i
Hi Pete,
thank you for your suggestion. I use now el enhancement and it works.
Bye
Andi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037089#4037089
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4037089
Hi Pete,
I don't know what you mean. Neither page parameters nor el enhancement should
be used for my problem.
First time I load a table with all entries. When I select a row, the
correspondending entity is displayed on the bottom of the page.
Then I use search to reduce the table with this on
Helllo,
no idea why the selected datamodel not updated? Only the sequence from whole
table are existent in reduced table.
Thanks
Andi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4036249#4036249
Reply to the post :
http://www.jboss.com/index.html?module=
Hi,
have a table and use row selection with DataModelSelection. If the whole table
is loaded all is perfect. But when I use searchpattern like in booking
example(ajax) to reduce tablesize DataModelSelection not updated. For example
all times the first row from whole table is selected while this
Hey, no idea whats wrong.
why userlist.find is called when I pass adminlist to template?
Normally only adminlist.find should be called.
I see that the right page (admins.xhtml) is displayed but userlist in template
is called.
thanks
View the original post :
http://www.jboss.com/index.html?
Hi,
I hope someone can help me.
I have a search field to reduce a table result similar like in booking example.
This search field is placed on a template based site.
But only the first site how share this template uses the search field in right
way.
template.xhtml
| http://www.w3.org/1999/xh
in pages.xml i have now a call to init method to initialize the start-value.
@In Context sessionContext works gread.
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031895#4031895
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posti
Ok, thank you KoniKoni for the first time.
An what can I do to initialize a value like main.xhtml at startup?
Is it possible?
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031872#4031872
Reply to the post :
http://www.jboss.com/index.html?module=bb
Hi,
what can I do to maintain a session wide variable?
I have a class Site with a variable currentSite.
At startup this currentSite should store the startpage i.e. main.xhtml
In other classes I should set this variable to the next displayed page.
to change the sites this is the section where is
If nobody would response, one easier question.
Is it possible with facelets/templates and a4j rerender to redraw only the
ui:insert tag of the main-template
main.xhtml (template)
| http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
| http://www.w3.org/1999/xhtml";
| xmlns:ui="
Hi,
I know a4j and richfaces. I want to build a dynamic menu with rich:panelBar and
|
|
|
|
|
|
navigation.xhtml
|
|
|
|
|
|
|
|
from PageContentBean.j
Hi Andy,
thank you for response. I think mixing annotations levels was the cause of my
problem. Now it works.
Thanks
Bye
Andi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4025320#4025320
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=p
Hi,
why nobody post a reply?
This project was build with Seam 1.1.1GA on XAMPP(1.5.4a) MySQL(5.0.24a)
database.
What can I do to create a foreign key build on the referenced primary key
instead of the tinyblob? OR Why at all there is created a tinyblob?
Thanks
Andreas
View the origina
Hi,
I'am working on JBoss-4.0.5.GA with EJB3 on MySQL.
Why a @ManyToOne join result in a tinyblob instead of a foreign-key?
My entities are a Baseentity and some derived classes with such @ManyToOne
connections.
Here the BaseEntity
@MappedSuperclass
| public abstract class BaseEntity implemen
Hi,
for all with the same problem.
There is a good example named seam-pay.
Bye!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4021559#4021559
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4021559
__
I have seen various variation with @Asyncronous or Ejb3TimerService but I don't
know what's the right for me to run from startup and check expiration date
every day to send an email.
The send email is not the problem only schedule the service.
I hope for help.
Thanks
Andreas
View the orig
Hi folks,
what's the best solution for check expiration date in my webapp to send an
email as reminder service?
For example the service should check email-response deadlines every day (also
on server startup).
Thanks
Andreas
View the original post :
http://www.jboss.com/index.html?module=bb
Ok,
found out that I have to use the fully qualified name in query like
"from de.foo.ecp.model.Person p where p.class='US' order by name, forename"
But why. What is to do using only the entity name?
Thanks
Andreas
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtop
Hi Andy,
thank you for response. Unfortunatly your suggestion not bring the desired
result.
On hibernate forum I found that absence Serializable can cause the problem, but
the BaseEntity class that extends Person class implements serialisation.
I hope it's not a similar problem like
http://
Hi,
I using a InheritanceType.SINGLE_TABLE and try to query this, but without
success.
Here my abstract superclass
@Entity
| @Name("person")
| @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
| @DiscriminatorColumn(name = "PERSON_TYPE", discriminatorType =
DiscriminatorType.STRING)
Hi,
is it possible to deliver a param value from website to website?
I have a template with sidebar container etc and a few derived pages from this
template. In some cases I dont want display the sidebar.
For this case I thought to can pass a parameter to template and use this value
for 'rende
Hi,
can please anybode have a look on my code.
I have no idea what's wrong and what I have to do call the method onListLoad()
suggessful.
Thanks
Andreas
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4002166#4002166
Reply to the post :
http://www.jboss.co
Hi,
My fault: A new browser instance comes a new workspace/conversation.
Here my solution.
Therefor the conversationID has to pass with a new browser window(open link in
new window).
Foo
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001713#4001713
Rep
Hi,
perhaps a cap in my mind.
I try to call an action, but the method is never called
here the jsf code fragement
|
|
| Sensor:
|
|
Hi,
what can I do to refresh the rerenderd result from Entitymanager?
Any idea?
Thanks
andi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001381#4001381
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4001381
__
Hello Felix,
thank you for response. Can you please post the fix for this problem.
Thanks
andi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4000955#4000955
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4000955
_
How can I refresh entities in the following case.
I have a page that contains:
|
|
| Sensor:
|
|
|
Ok it works
Thanks to andydale.
First I extracted hibernate-3.2.0.ga.zip. From the hibernate directory with ant
I executed with 5 errors.
Then I have copied the directory to eclipse workspace and make a new project
from existing ant. build.xml -> Run as ant build: Error.
Now from workspace
Hi Andy,
thank you for response.
Can you tell me in few words what I have to do build a hibernate.jar with
modified FromClause.java?
hibernate-3.2.1.ga.zip I have allready downloaded. Ant and JDK is installed.
Thanks
Andreas
View the original post :
http://www.jboss.com/index.html?module
Is there an other configuration on jboss-4.0.5.GA as on jboss-4.0.4.GA for
peristance access or what the problem
here the stack trace
08:31:52,743 ERROR [STDERR] java.lang.NullPointerException
| 08:31:52,743 ERROR [STDERR] at
org.hibernate.hql.ast.tree.FromClause.findIntendedAliased
additional info.
| same app.ear deployed on both servers.
| database: mysql (xampp)
| entities mapped to database an filled with values
| other lists from database tables are displayed in my app
| mysql libraries placed in lib jbossas/server/default/lib
|
|
| only on the new s
Hi,
Can someone tell me why a query in my webapp on jboss-4.0.4.GA runs
successfully, but on jboss-4.0.5.GA the resultlist is empty.
query= "from org.foo.Measurement where measure.sensor = true and id != 0 order
by measure.typ"
@In(create=true)
| ...
| private EntityManager em;
| ...
Hi Jerome,
thank you for reply. I have tried to modify the PersistentFacesServlet.java as
descriped. But in the icefaces.src.core package ELSetPropertiesRule.java is an
error that getExpressionFactory() is undefined for type Application.
When I try to export this package as jar file to my ice-a
Hello,
I think it's a bug like descriped here
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3991677#3991677
Can it be?
Thanks
Andreas
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3999385#3999385
Reply to the post :
http://www.jboss.com/index.
My question is 'why this app work with pur Seam and MyFaces, but not with
ICEFaces'
1. Abstract editor class
public abstract class AbstractEditorBean extends
AbstractEditorListeGemeinsames implements Serializable {
| .
| .
| protected boolean neu;
|
| @Begin
Hello folks,
can please someone reply whether it's possible to solve the problem with
parameters and facelets.
Or is it not possible to use blueprints library with facelets?
thx
andi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995849#3995849
Reply to t
1 - 100 of 124 matches
Mail list logo