Steps here
1. Created a durable subscriber
2. Disconnected the subscriber
3. Sent 1000 messages to the topic using default timeout value
4. Started the previous durable subscriber
5. Messages delivered
6. Checked the table jms_messages. Did a select count(*) from jms_message. The
result =1000.
S
Can resin use jBPM as workflow engineer?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965956#3965956
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965956
___
jboss-user mai
If your messages don't vary that much in size you can work out the size from
memory / average size of message.
There is a task to automatically kick in paging once memory thresholds are
reached. But this is not going to be available for a while.
View the original post :
http://www.jboss.com/in
Please give step by step instructions as to how to replicate what you are
seeing.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965954#3965954
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965954
The client jar needs to be available on every client unless the client and
server are on the same node then they can share the same server jar.
In your case your client is another jboss instance so you need to deploy the
client jar there.
I think it's pretty logical.
View the original post :
Or the other option would be to remove and persist:
entityManager.remove(customer);
entityManager.persist(customer);
but that seems like it would not be a good solution. Surely this is something
that comes up in nearly every Seam application, but I can't find any good
suggestions on how to han
saving is just like saying 'I've entered som data, but are not finished yet
with this task'.
The behaviour you describe is at least not something to worry about (it works
right?). File a jira issue for this so it does not get lost. We'll look at it
in due time
View the original post :
http://
in a SLSB I've a
| @In
| List elementsList;
|
I would like to make a JSF page that enable the user to create 3 new Elements ,
is it possible?
afterwards in the server I would like to move over the list and
em.presist(element)
View the original post :
http://www.jboss.com/index.html?m
There is an example process in the 3.2 sourcecode. look FOR the file, not if
the name is IN a file ;-)
The forms.xml can just be on the same level as the processdefiniton.xml in the
process dir
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965949#3965949
Hi, thanks for your suggestion to use ValidConnectionChecker interface or
element in *.ds.xml.
But there is a significant performance degradation in our application after
using either of these approaches.
Do we have any other alternative approach to handle this situation?
Thanks.
View the
I have an object called customer. I'm using Seam, and an EntityManager is
injected, and a customer object is successful injected. I try to merge the
customer back like this:
entityManager.merge(customer);
but that does not work, because after that, I do:
if(! entityManager.contains(customer)
Yeah, I like the look and feel. I have also have couple quick questions.
1. I can create the node on the "Cache Config" pane. But how do I add the key,
value pair? "Show Content" seems to be read only.
2. In cache.cgf.xml pane, "Design" tab means what? It seems to me you are just
showing bunch
"timfox" wrote :
http://labs.jboss.com/file-access/default/members/jbossmessaging/freezone/docs/guide-1.0.1.CR4/html/configuration.html#conf.destination.paging
Thanks but the configuration can be only be specified for the number of
messages. why is messages size not taken into consideration?
After finishing delivering messages to all durable subsribers I have noticed
that JBOSS does not remove the messages from the database. I am using the
default timeout. I am not wrong, once the JMS provider finishes delivering
messages to all subscribers it is supposed to remove the messages from
I deployed a ebs.war and app.ear to the JBoss 4.0.4RC1(JDK1.5.0_07).
The app.ear contains two jar: systemadmin.jar and scheduletask.jar.
The ebs.war will call the EJBs in the app.ear.
when I start the JBoss at first time, everything is correct.
when I change the systemadmin.jar redeploy the app.ea
I have the best practice:
>From EJB 2.1, there's a timer service. You can create a Timer (can repeat
>automatically with specified interval time) with it.
So, you should create an EJB that implements TimedObject, in the method
ejbTimeOut, send the email as you want. And you could create a method
Hello,
I'm attemtping to achieve isolated classloading for individual war based
applications (without much success) in a JBoss 4.0.4GA environment. I
understand that these issues have changed since at least the 3.x days as well
as perhaps again since the 4.0.2 daysfrom what I have found in the
Julien,
Actually, the JSTL code calls getHeaders, not get Header. Not sure why,
especially since it never looks at the results, except to see if the returned
Enumeration has at least one entry. So the proper patch for fmt:message is:
public Enumeration getHeaders(String s)
|{
|
Has this issue been resolved? I just started seeing this 6 months after my
application server was set up.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965937#3965937
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=396
Well, amazingly, I've been able to solve this one on my own (a rarity!).
I put the jboss-messaging-client.jar in the $JBOSS_HOME/server//lib directory and all my problems went away. It's not perfect, but
at this point I'll take anything I can get.
View the original post :
http://www.jboss.
Hi Charly,
I am not using EJB deployment descriptors xml files as I am using EJB3
annotations exclusively.
Does this mean I need to generate a deployment descriptor (ie in the jboss.xml
file) for the WebService EJB?
James
View the original post :
http://www.jboss.com/index.html?module=bb&op=
All the lib/ subdirectory is is a copy of ../lib. The lack of a lib directory
suggests that either scaffold-wtp-project didn't complete, the project name
wasn't provided, or seamgen wasn't installed and run from a subdirectory of a
complete seam installation.
You should probably paste in the
Depending on what you chose during installation, you should already have some
JMS destinations setup. See:
.//deploy/jms/jbossmq-destinations-service.xml
If you have this, you can try one of them (e.g. queue/A). If not, you probably
don't have JMS configured.
Cheers,
Erik
View the original po
Hello,
I am successfully using EJB3 MDBs to connect to a remote destination; defined a
"RemoteJMSProvider" and connected using the "providerAdapterJNDI" annotation
(see:
http://wiki.jboss.org/wiki/Wiki.jsp?page=HowDoIConfigureAnEJB3MDBToTalkToARemoteQueue)
The twist is that I need to send anot
Hi, I'm using hibernate 2.1.8 to persist some blobs in an oracle 9i database.
For this, I implemented something similar to what says in the hibernate wiki,
http://www.hibernate.org/73.html, mapping a Blob to a char[]. I tested this on
Jboss 4.0.3SP1 and works perfectly, but on JBoss 3.2.8SP1 it
Thanks a lot, It really helped me out, You're pretty good
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965930#3965930
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965930
_
Hello,
I am working in a clustered invironment and using HAJMS. Every so often the
JMS service will fail on one the coordinator (still working to identify the
cause of this by wading through logs). The service seems to stop een though
jboss does not come down. This results in JMS being hosed
"chuckadams" wrote :
| |
| | * Create the src directory then run scaffold-wtp-project. If you
don't have it first, it won't complete.
| |
That is what I did. And compilation was "SUCCESSFULL"
But this is what was wrong after that:
"VotTak" wrote :
| Next.
| After issuing "se
Would the PortletRequest return the correct header value from the portal
request solve the problem ?
getHeader() can return the value from PortletRequest.getProperties() which
actually delegates to the portal request if it is not found in the properties.
Try the following patch and tell me what
Hi,
Has anyone out there come across this problem before? I have a secure site
running on port 8443 which I am trying to stream MP3 audio from but Windows
Media Player continually tells me that a network problem occurred and that I
should check my proxy settings. The proxy settings are standard
dear all,
Not sure if my understanding is correct, but portlet deployment has to be WAR
file type?
If so, how to do deploy "Seam managed transactions" (see section 9.4 of Seam
reference manual) for portlet?
Please advise, many thanks.
View the original post :
http://www.jboss.com/index.html?
I took your code, exactly as you posted, added in the import statement in the
Java source file, and built a forum.war file. Then I copied forum.war to
server/default/deploy and accessed the portal, and your portlet showed up.
I noticed that you have the 5.0 JDK installed in Program Files. I u
I have an abstract bean that encapsulates common functions (store, delete,
etc.). It also contains some properties like the EntityManager or the Logger,
which are injected. (If you wonder why I want abstract classes, then look at
the DRY thread: http://www.jboss.org/index.html?module=bb&op=viewt
BTW, you can try deploying your war expanded. Touch the web.xml to force a
hot-deploy and then CTRL+Refresh your browser. Should save you some time.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965922#3965922
Reply to the post :
http://www.jboss.com/index.
Your going to have to do alot better than what you posted.
First please read:
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp
To learn how to post to the forums. At the very least, post your *-ds.xml file.
As far as your Spring context file, that may have been helpful if it actually
showed
This is not a bug in JBoss. Every time I have not gotten the expected text
displayed was because of my own deployment issues. Once I have verified that
the correct file is in the deploy directory, and started JBoss, I always get
the expected results.
View the original post :
http://www.jboss
Thanks Roy: JBPORTAL-984.
To everyone else following this saga, looks like the i18n tag isn't a good
alternative. Apparently the class that implements it expects an HttpRequest
object to be in thread local storage, but when called from my portlet code,
there is no HttpRequest object so I get a
That could be it.
is this a bug in jboss? I guess I could directly modify the jsps and redeploy
only in case I modify the java classfiles.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965918#3965918
Reply to the post :
http://www.jboss.com/index.html?modu
I actually modified the deployed file directly at
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/jsp/user/register.jsp
and then started the server. I was too lazy to try it starting from the source
and building/deploying it. You should double check that the deployed file
cont
did you modify the org/register.jsp or the user/register.jsp?
Also, did you redeploy everything? If so, just a "build deploy" from core,
right?
I wonder why it isn't working for me.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965916#3965916
Reply to the
I am having problem with starting the web server, The following is the error
message that i got. Unfortunately I was not able to see any help on the
documentation or forums, I appreciate any help.
2006-08-17 14:27:51,573 DEBUG
[org.jboss.security.plugins.JaasSecurityManagerService] Started
jbo
anonymous wrote : I am working on some of the stuff now, trying to get
everything all cleaned up and usable.
|
| James
|
Has this been published to the wiki yet... (the steps for setting up on oracle)
The date on the previous post looks to be newer that what is in the wiki. :)
I'm wanting
I changed the file you specified, changing line 13 to read (new text in red):
Hello ${n:i18n("USERNAME")}:
The preview shows thress lines, this should be all one line.
That's all I did. On the register page I see "Hello Username:"
View the original post :
http://www.jboss.com/index.html?modu
Hi,
I am getting the following error when i access my application using Transaction
using Spring Jdbc
org.springframework.jdbc.support.MetaDataAccessException: Error while
extracting DatabaseMetaData; nested exception is java.sql.SQLException: Connecti
on handle is not currently associated with
The bug with date marshalling:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=80776
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965909#3965909
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965909
Hello all,
I am working towards bringing our old Biztalk platforms to end of life. We
currently use the Biztalk system with out vendors and customers through the
RosettaNet standards. There has been alot of turnover and growth and need a
better solution. We use jBoss as our intranet developm
Couple of other exceptions I found in server.log.
1) **
2006-08-17 16:57:49,312 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] Unable
to retrieve orbjavax.management.InstanceNotFoundException:
jboss:service=CorbaORB is not registered.
2
"dhartford" wrote : So, to summarize: Column width identifers for layout
managers and allowing portlet designers to pre-define their portlet's intended
width.
|
This is all currently defined in the theme CSS. So you can do region1=150px
width, etc...
View the original post :
http://www.j
I mustve missed the original post. I suggest you create a jira task, and assign
it to Julien and point to this post. He can then evaluate whether to path or
not.
This should probably go in the Design Forums, but its fine here for now.
View the original post :
http://www.jboss.com/index.html?mo
But could someone confirm that EJB does support mapping a collection, and can
load the items into the collection when the object is fetched? I see chapters
on that in this book but I don't see any evidence that it is possible.
I notice that when I persist my Customer object, the collection is n
With Alpha1a version works...thanks..
However I had the same problems also on alpha version, problems vanished on
alpha1a.
Tomorrow I will continue the tutorial...
thank you again
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965900#3965900
Reply to the p
Developping et packaging (on Windows) has been sucessful. But, if I try to
deploy the famous FiboApp.ear on Linux, see below.
=
file:/opt/jboss/server/default/tmp/deploy/tmp34397FiboApp.ear-contents/FiboEJB.jar
2006-08-17 16:58:42,665 WARN [org.jb
| * When you create a new project, you will always get the "must contain one
or more enterprise beans" error. seam-gen will add beans for you and that
error will go away. If it doesn't, close the project and reopen it. Eclipse's
validators sometimes just get stuck.
|
| * The SEVERE
Apparently no-one in the portal team is interested in getting the JSTL to work
with the portal.* But for those poor souls who are still wrestling with this
and don't want to make my suggested patch, I just came across a hidden, top
secret tag** supplied by the JBoss portal: i18n. This tag pro
Did you call the xhtml files with xyz.xhtml or xyz.seam?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965896#3965896
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965896
__
Hi,
Even after chaning the JDK to 1.5 i am getting the same error..
I explicitly set the JAVA_HOME to JDK1.5 in my run.bat file..
| set JAVA_HOME=C:\Progra~1\Java\jdk1.5.0_06
| set JAVA=%JAVA_HOME%\bin\java
|
Thanks
Sateesh
View the original post :
http://www.jboss.com/ind
yes, I tried restarting the browser, clearing its cache, and even rebooting the
machine. Am I modifying the right files?
Are there any additional steps involved?
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965894#3965894
Reply to the post :
http:
Did you try doing a refresh in the browser? Sometimes the browser thinks it
has the latest version of the page in it's cache. (I just tried this, worked
for me. I should point out that I started JBoss after I made the change.)
View the original post :
http://www.jboss.com/index.html?module=b
16:43:05,104 ERROR [MainDeployer] Could not create deployment: file:/C:/Program
Files/JBoss/jboss-4.0.4.GA/server/defaul
| t/tmp/deploy/tmp37422jboss-seam-booking.ear-contents/jboss-seam-booking.jar
| org.jboss.deployment.DeploymentException: expected one enterprise-beans tag
| at or
Correct URL:
http://labs.jboss.com/portal/jbossws/downloads
Prior complaint:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=86845
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965889#3965889
Reply to the post :
http://www.jboss.com/index.html?modu
Did you see http://www.jboss.com/index.html?module=bb&op=viewtopic&t=84423
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965890#3965890
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965890
Can someone help me here?!
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965888#3965888
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965888
___
jboss-user mailing l
btw. the forum removed the location tag from the abbove snippet - dunno why.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965887#3965887
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965887
__
my web.xml contains this:
java.lang.Throwable
/error.jsp
and the error.jsp is marked with <@ page isErrorPage="true" >
but still when an exception occurs the browser only shows its own http 500
error page??
View the original post :
http://www.jboss.com/index.html?module=bb&op=v
Yes... This day is completely waisted. (Still have one more to go till
management will kill this idea)
Was not able to locate necessary jars at the recommended places, so, got them
from:
# jboss-annotations-ejb3.jar : $JBOSS_HOME\server\default\deploy\ejb3.deployer
# jboss-ejb3x.jar - can be fo
Thxs Peter,
When I try to run the java program I got the following Exception
javax.naming.CommunicationException [Root exception is
java.lang.ClassNotFoundException: org.jboss.jmx.adaptor.rmi.RMIAdaptor (no
security manager: RMI class loader disabled)]
at org.jnp.interfaces.NamingContext
Hi ronald!
Thank you for the fast return!
In this in case that I am executing the process webapp (jBPM-3.1.2), he does
not include new implementations, to understand its persistence solely. I did
not understand why when saving the data, I remain in same task ("create new web
sale to order"),
Wasted another day, just to make sure that seam-gen is not working.
In JBossSeamGettingStartedGuideStep4
After creating a projects... in project sampleEJB... error:
Severity and DescriptionPathResourceLocation
Creation Time Id
An EJB module must contain one or more en
You can start nested conversations even without having a parent conversation.
It's just like a normal top-level conversation then.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965881#3965881
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=
I assume that you used the installer jar to install JBoss. One of the
installation screens asks if you want to secure the jmx console. You must have
done that and provided a login id and password.
I think you can find the login id and password in the file
server/default/conf/props/jmx-console
Did you see the link to the example code in my earlier reply? That is a
stand-alone client application that connects to an mbean server. Just change
the "localhost" in the URL to your remote host name.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965878#3
Hi yizhao,
Could you please post how you are doing the connection to the remote Jboss
Server?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965877#3965877
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965877
___
Just a quick note:
when attempting #5 exec. "seam scaffold-wtp-project sample" you get an error
the "src" not found You need to add an "src" folder to your seam-gen dir, then
try again, works just fine.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965876
I use Jboss 4.0.3
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965875#3965875
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965875
___
jboss-user mailing list
jboss-user@li
When I want to prove and watch the console of JBOSS I enter in
http://localhost:8080/jmx-console
But it asks me a password in the JMX Console, but what password??, how do I
know ?, where do I get one??
thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p
Hi everybody !
I would like to create a custom configuration for my personal use. I need EJB,
JNDI and JSP/Serlets. I prefer to create it manually if possible and not to
install Jboss installer. Can someone tell me how to proceed ?
Thank you for helping me!
Bye.
View the original post :
htt
Hi mates.
I have seam-booking examples working well.
And i like very much the CRUD wizard.
My problem is that the CRUD Application id not as good as seam-booking.
I explain it better:
1. I can't use xhtml pages , but only jsp. Browser open "download file popup
window" if i use .xhtml ( i lost 5
nix that, junit was just swallowing the output - it seems to run fine with
junit as well. I will continue adding additional components.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965870#3965870
Reply to the post :
http://www.jboss.com/index.html?module=b
I'am getting the same error ...I really appreciate if u could get reply me the
solution...
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965871#3965871
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965871
___
Okay, my bad. I had originally tried to put the "action classes" in the /war
file in WEB-INF/classes, but that didn't work. So I made the new jar
bookingserv.jar, but had not removed the classes from the war. So that got rid
of the problem. And I'm back trying to figure out how to deploy the
I am growing suspicious, that the JUnit task in Ant is hosing things up. I have
created a second sandbox and tested a variety of things (all using the same
original Aspect I created).
This works:
|
|
|
|
|
This does not:
|
Hi
I have noticed that you can access the content by typing an url like this:
http://localhost:8081/portal/content/default/Overall_Plan.doc
I is possible if the url contians 'content/default/name of doc.
But I do not want the document to be accessed unless the user is login.
I have a page with
jBPM can call any Java code with its action handlers.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965863#3965863
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965863
___
j
So I successfully downloaded and ran the examples and everything worked fine.
But for our projects, we want the entities to live in a separate project and
package than the "action classes"/ejbs in their own jar, put a seam.properties
in the root of that jar, and added it to my ear.
My Ear look
I was afraid of it. Is it such a strange thing to request?
I will probably use the naming scheme in one file.
Thanxs for the answer
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965862#3965862
Reply to the post :
http://www.jboss.com/index.html?module=bb&o
Upgraded to the SP1-release but no luck... Wrote a testcase on it wich only
uses the jars from the lib in the 1.4.0 SP1 dist and a modified
replAsync-service.xml (from the dist) that sets these props:
UseReplQueue=true
ReplQueueInterval=100
ReplQueueMaxElements=1
Here's the testcase:
|
You might try looking at the JNDIView mbean on both servers to see if your SLSB
is still defined on each of them. If it is, then the problem may be occurring
because the SLSB is still registered in JNDI.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39658
"[EMAIL PROTECTED]" wrote : I'm not 100% sure how it plays with other
bytecode-manipulation products, but most of the time there is no problem.
|
| A few suggestions:
|
| *Use cavaj or another decompiler to make sure that the classes on your
classpath have been aopc'ed.
|
| * Pass
Same problem here too.
Have been pulling my hair out, thinking it was something I have missed.
Take it no one has a solution for this yet?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965857#3965857
Reply to the post :
http://www.jboss.com/index.html?modu
Thanks a lot, It's working finally, you're great
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965856#3965856
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965856
___
jbos
I'm trying to locate and download some WS samples and ran into a bad link on
the Developer Resources page, http://labs.jboss.com/portal/#
The url in the "JBoss WS" download ink:
http://labs.jboss.com/jbossws/downloads
This link is dead:
HTTP Status 404 - /jbossws/downloads
The requeste
Hi everybody there,
I really appreciate the developers for developing nicely features-rich jBPM.
Well, anyone can tell me how to integrate it with E-mail Server like JBoss Mail
Server (JBMS) so that alerts or actions could be sent to respective users who
own the workflow system.
Any help is hi
The column layouts are great and used in many portals. Some implementations
that I recall also had the concept of 'wide' and 'narrow' column widths and
allowing a portlet to pre-define itself as a 'wide' portlet or a 'narrow'
portlet to coincide with the layout.
By allowing the layout identife
One more thing.
I also know I could package that jar, funnyUtility.jar, with myApp.ear. Is that
righ thing to do or there is some other way?
Let's say I do that, do I still have to set the CLASSPATH and if yes how should
I set the CLASSPATH that is application's specific and not server wide? Wha
I think of a context as a closure over a scope. Scopes are static constructs
in the source, contexts are instances in the runtime. I think context is one
of the most overloaded terms in programming, but seam's use is pretty
consistent with the way JEE (or at least the servlet spec) uses it.
Hi,
I have a .jar that is application specific, for example funnyUtility.jar. I
would like that jar to be available-visible only to my application myApp, that
is myApp.ear. How should I set the classpath for myApp only?
I know I can do it with JBOSS_CLASSPATH but that is server wide. Right?
Is
I have added an ant task to copy the messages files to ValidatorMessages files
as part of the build for now. Provided your messages files contain the
validator.* and all other validator messages you have to only maintain the
message files and still have all messages available in both seam and hi
Ah ok I hadn't thought of using nested conversations. Could I still jump in
and edit say table B or C without going through A?
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965846#3965846
Reply to the post :
http://www.jboss.com/index.html?module=
I've @Name on my User entity
actually it's a different more complex story so I just rewrite the code here
any other idea but @Name?
Thanks
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965845#3965845
Reply to the post :
http://www.jboss.com/index.html?mod
Peter, thanks for your reply. I found the problem - I had installed Java in
Program Files. Once I installed both Java and JBoss 4.04GA (from the zip) in
directories with no spaces in their names, I had no problem deploying my web
app. The default automated installs for both JDK and JBoss target
1 - 100 of 271 matches
Mail list logo