[JBos 4.0.4.GA EJB2.1, using xdoclet, MySQL]
I have a dyniamic query...
"SELECT * FROM table WHERE (.) LIMIT 100"
and I build the WHERE clause at run time - I'm happy
But the (JBoss) generated SQL does not include LIMIT on the query. With large
record sets it takes a long time.
So, I shou
JBoss 4.0.3 sp1
I just tried to turn on the JBoss TreeCache in Hibernate. When Hibernate tries
to place an entry in the cache, I get a ClassNotFoundException. It appears
that the TreeCache can't find the classes that are inside of my ear. I am
using the jboss.cache:service=EJB3EntityTreeCach
Hi,
Since Eclipse Platform 3.2 has just been released, when will the sync'd version
of JBoss-IDE be out?
clay
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954784#3954784
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&
Hello there,
I am trying to deploy a MDBean into my Jboss version 4.0.3SP1 and getting the
following error.
2006-06-30 21:16:18,975 WARN [org.jboss.ejb.EJBDeployer.verifier] EJB spec
violation:
Bean : RealtimeServiceMD
Section: 15.7.4
Warning: The message driven bean must declare one onMessa
I spoke a little too soon. The second time that I try to invoke
CampaignEditorBean.select on the same campaign, I get a "reassociated object
has dirty collection" HibernateException from the session.lock call.
Caused by: org.hibernate.HibernateException: reassociated object has dirty
collectio
Awesome. That works great. Thanks so much for the help.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954781#3954781
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954781
Using Tomcat but need to do more? Need to su
It looks like when you fail over to the other server, the failover server
doesn't know the first one is dead yet and tries to replicate to it. This then
fails.
If you wait a few secs, the 2nd server knows the 1st is dead and doesn't try to
replicate to it.
Suggest you use a combination of FD
Thats what I guessed. So you need to do:
| @Begin(join=true)
| public String select() {
| campaign = session.lock( campaignManager.getSelectedCampaign(),
LockMode.NONE );
| return "editCampaign";
| }
|
In order to get a Campaign that is associated with the conversatio
To be clear: this is not an XPath problem. The JAXB deserializer complains
because the resulting element is not valid according on your schema.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954778#3954778
Reply to the post :
http://www.jboss.com/index.html?
Sorry. The Campaign came from another SFSB (CampaignManager), where it came
from a list using @DataModelSelection. Here's the code without the omissions:
@Stateful
| @Scope(ScopeType.CONVERSATION)
| @Name("campaignEditor")
| public class CampaignEditorBean implements CampaignEditor {
|
Did you actually retrieve the Campaign from the conversational persistence
context? Or is it some other object you had lying around before the
conversation started?
It is really not helpful when you chop out the actually intersting code in
select() and update().
View the original post :
http:
Thanks for the reply. I modified the entity as follows:
@Entity
| @Name("campaign")
| @Scope(ScopeType.CONVERSATION)
| public class Campaign {
| ...
|
However, I still have the same problem. Here is the debug output from Seam
where it looks like it's resolving "campaign":
2006-06-3
The problem is the ScopeType.SESSION bit. This functionality is only for
conversation-scoped data.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954774#3954774
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954774
Us
Yes, sorry I neglected to mention that. Here is the relevant code:
@Stateful
| @Scope(ScopeType.CONVERSATION)
| @Name("campaignEditor")
| public class CampaignEditorBean implements CampaignEditor {
|
| @Valid @In(required=false) @Out
| private Campaign campaign;
|
| @In(cr
"tefron" wrote : Do you have isolation on?
Sorry, I am not an expert user of JBoss. I don't know whether or not I have
isolation enabled. How do I check and what effect would that have?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954772#3954772
Reply to t
Are you using a conversation?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954771#3954771
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954771
Using Tomcat but need to do more? Need to support web services, security
I'm using a ManagedHibernateSession with a
SeamExtendedManagedPersistencePhaseListener. When Seam renders the view, it
starts the 2nd transaction successfully. However, it is not attaching any of
my entities to a Hibernate Session. This causes LazyInitializationExceptions
whenever I try to a
Ok... I will try it and then discuss the outcome.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954769#3954769
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954769
Using Tomcat but need to do more? Need to support w
Guys,
Don't be so hard :-)
The issue is that you are missing hibernate related jar files in your
classpath.
You can find list of required jar files from hibernate.org.
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954768#3954768
Reply to the
download the orangevolt xslt plugin for Eclipse. It has a xpath 'tester'. Look
at www.zvon.org for xslt/xpath tutorials
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954765#3954765
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mod
Yours doesn't seem down by much! I figured out the base problem (you need a
@FilterDef *and* a @Filter), but am encountering some other issues, mentioned
in the other thread. Nothing to do with Seam though.
I guess the only subquestion worth asking here is, what's the roadmap for
Hibernate 3
My knowledge on XPath limited. If you could let me know the correct xpath
query syntax to access svc:firstName element, I would appreciate it very much.
I tried '/EnrollmentMessageType_1[4]' and
'/EnrollmentMessageType_1//svc:firstName', but no luck.
View the original post :
http://www.jboss
Ronald,
Thanks for the information.
James
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954761#3954761
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954761
Using Tomcat but need to do more? Need to support web s
Use basic EJB3 entity callback annotations.
Or are they not enough?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954760#3954760
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954760
Using Tomcat but need to do more?
"rkurra" wrote : Try changing the following flag in your ejb-deployer.xml of
your server/default/deploy directory
|attribute name="VerifierVerbose" FROM true TO false
|
That configuration update will only turn down specific verifyer nagging. You
need to make the following change to you
I'm having the exact same problem... followed the installation instructions
(http://docs.jboss.com/jbportal/v2.2/user-guide/en/html/installation.html ) and
am using MySQL 4x.
The schema was created properly and there is data in the tables as well, but i
get the same MBEAN problem noted above,
you should use JbpmContext. Look at the testcases to see how it is used
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954757#3954757
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954757
Using Tomcat but need to do mo
Try running against the latest JBossAS 4.0.4.GA.
Or look hiw this diff's from last EJB3 embeddable.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954755#3954755
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954755
Us
Hello,
I have installed JBoss-4.0.4-GA on Jdk1.5, Now try install JBOSSWS for jdk1.5.
I found already JBOSSWS14.sar file on server folder existing defaul install of
JBOSS AS.?
Should i need to remove this folder ? and install jbossws.sar of jdk1.5?
C:\Program Files\jboss-4.0.4.GA\server\defaul
Hi all,
I'm trying to deploy a webservice, using jboss 4.0.4.GA and jbossws 1.0.1.GA.
All the deployment artifacts are generated by wstools.sh, but when jboss try to
deploy the service, the following error occurs:
| 16:32:40,909 ERROR [JBossXSErrorHandler]
[domain:http://www.w3.org/TR/xml-sc
Sure I can make sure that I have the latest release... But HOW?
My jar file is dated the 23 october 2005 (23:57 hours). How do I check if this
is the latest?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954747#3954747
Reply to the post :
http://www.jboss.
I have installed JBOSS 4.0.4 with EJB3 profile. When I try to run application,
it gives me the following error. Please help me.
00:48:17,187 ERROR [MainDeployer] Could not create deployment: file:/C:/Program
Files/jboss-4.0.4.GA/server/default/deploy/jboss-aop.deployer/
org.jboss.deployment.Depl
I'm currently having a problem generating proxies for classes that have a
structure similar to the example below. The issue comes in when a sub-class
overrides a method and makes the return type more specific.
| import junit.framework.TestCase;
|
| public class ClassProxyBugTest extends
Looking at your authenticated subject:
| 2006-06-30 19:57:35,030 TRACE
[org.jboss.security.plugins.JaasSecurityManager.my-web] getUserRoles, subject:
Subject:
| Principal: [EMAIL PROTECTED]
| Principal: Roles(members)
| Principal:
com(members:secure_capture_role,
I got a good answer at
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954741#3954741
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954743#3954743
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954743
Using
Hello,
I have install JBOSS 4.0.4 AS and Now I try to install JBOSSWS on JBOSS AP. I
have jdk1.6 version ? does jbossws and app work with jdk1.6?
Praful
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954742#3954742
Reply to the post :
http://www.jboss.co
The 'permit to get a connection' is a Semaphore that manages the ability of a
thread to get a ConnectionListener. It is an application server construct and
has nothing to do with the underlying database. The blocking timeout
milliseconds tells the container 'how long' a thread expects to wait to
Here is the JIRA task:
http://jira.jboss.com/jira/browse/EJBTHREE-389
You should be able to use ActiveMQ, but you cannot currently create temporary
queues. If you create the queue beforehand on ActiveMQ, then deploy the
destination to JBoss, you should be fine. The problem only exists when we t
Can you make sure you have the latest jboss-annotations.ejb3.jar? I suspect you
have an old version that did not have the 'value' attribute in the annotation.
In older versions, this annotation was only allowed on the interface, not on
the Service class, so there was no value attribute used to s
Download Embeddable-EJB3 (jboss-EJB-3.0_Embeddable_ALPHA_8-patch2). There is
documentation and a tutorial there on how deploy EJB3s without the app server.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954738#3954738
Reply to the post :
http://www.jboss.com
The http://docs.jboss.org/jbossas/jboss4guide/r5/html/ch7.chapt.html says:
anonymous wrote : BlockingTimeoutMillis: This attribute indicates the maximum
time to block while waiting for a connection before throwing an exception. Note
that this blocks only while waiting for a permit for a connectio
The http://docs.jboss.org/jbossas/jboss4guide/r5/html/ch7.chapt.html says:
anonymous wrote : BlockingTimeoutMillis: This attribute indicates the maximum
time to block while waiting for a connection before throwing an exception. Note
that this blocks only while waiting for a permit for a connectio
Has anyone successfully deployed an mdb to consume an ActiveMQ queue on jboss
4.0.4? If not and this is just on the radar, is there any timeframe for it?
is there a jira issue i can watch?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954735#3954735
Reply
After a bit of jar searching, I found the classes in the jar file named
jboss-annotations-ejb3.jar localed in JBOSS_SERVER\deploy\ejb3.deployer folder.
However; I get a compilation error:
[javac] Compiling 1 source file to C:\Data\mine\hjemme\bin
| [javac] C:\Data\mine\hjemme\src\\.java
Thanks. That worked!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954733#3954733
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954733
Using Tomcat but need to do more? Need to support web services, security?
Get stu
For what it's worth, we are currently refactoring all of the MDB and Consumer
code to be exclusively RAR based and to remove the dependency on the MBean
server so that we have all of the capabilitites (e.g. ability to create
temporary queues) in E-EJB3. So this issue is on the radar screen.
Vie
Hi
I need help with this one. I've configured my files correctly, I am trying to
authenticate a user [EMAIL PROTECTED], but it does not seem to work. From the
logging, it seems likes its authenticated, but halfway throught the process the
authenticate fails. Please see log below:
06-06-30 19:
There is no connection listeners by default. Have to be added manually by
user. Leasing will be disabled until at least one connection listener is
registered (and turns off after all are removed).
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954729#395
Hello all,
I've got a small problem with the code in the ForEachForkActionHandler in the
wiki.
The code has a line:
|
executionContext.getProcessInstance().getJbpmSession().getSession().save(newToken);
|
that fails in 3.1 as the ProcessInstance class no longer has a getJbpmSession()
f
Is there a standard, default listener installed that closes the connection with
the client? Or is it, out of box, a no-op? If I don't have a connection
listener, can I therefore ignore the lease stuff and just set it to -1 to not
use it?
View the original post :
http://www.jboss.com/index.ht
That's pretty much it. Right on with the client having a period in which it
needs to ping the server to update its lease with the server. However, the
lease period is not an exact one, meaning the actual time period is a sliding
window. See http://jira.jboss.com/jira/browse/JBREM-408 for more
The WSEE configuration for the port provider handler I referenced in my
previous post appears in the web services deployment descriptor section of the
jBPM BPEL tutorial. That might be a good starting point.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=39547
Thats what even I was assuming
The example under annotated50 has aoppath element under aopc target which
specifies the path for jboss-aop.xml.
Is it necessary to provide this XML just as a directive to the aopc to check
for the new annotation marker
@org.jboss.cache.aop.annotation.PojoCacheable
jBPM BPEL uses the standard JSR-109 server deployment model to expose web
services, so that you can port it to other app servers and use the same
mechanism you'd use to secure "normal" web services.
However, the JWSDP deployment model does not adhere to JSR-109. I am positive
it is possible to
I'm out of the office until July 9, 2006. If you need assistance please
call Dave Horton at 202-514-4944
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Serve
Hello,
I try to implement the following behaviour using the seam framework:
Let say I need to implement an administrator module. One operation the admin
can perform is the creation of user.
When clicking on a "Create new user" button, a conversation is started. The
creation page shows up and a
Can someone explain how the lease parameter is used: Connector.getLeasePeriod()
?
As I understand it (which I might not), the lease period is the time in
milliseconds that a client that is connected to the connector has in order to
"ping" the connector in order to get a new lease. If the clien
Where can I find documentation on how to deploy EJB3 on another servlet
container? I understand that I don't necessarily need to run the full JBoss
4.0.4 GA application server -- I just need Hibernate and the microcontainer,
then I could theoretically deploy it on Tomcat or JRun? Anybody ever
[Nancy: you should start a separate thread since you are having an unrelated
issue]
I discovered two issues:
1) The file is only created after you shut down the server manually. This seems
like a bug, because the whole reason people would want to do this is to be able
to survive a machine cras
Hi all,
I'm trying to upgrade from 4.0.4.CR2 to GA. I had hoped that moving my
application's EAR over to the new server would just work, but it isn't. I'm
getting AnnotationExceptions now stating that I'm using @OneToMany to target an
unmapped class. I was under the impression that certain p
Hello,
I am using JBOSS 4.0.4GA, Portal 2.2sp3, and JDK 1.5.0_06 with Sybase 15 and
jconnect2.jar (which I believe is 5.5). The hibernate logs in and creates the
user tables as expected, but fails when trying to deploy the portal. I have
set the PortalDS to run with sybase, but didn't change
We are trying to migrate to JBoss 4.0.4 GA (from another app server). One of
the issues that we can't seem to get to work to our satisfaction is virtual
directories.
For WebLogic, there is the virtual-directory-mapping element in weblogic.xml
like:
| c:/usr/gifs
| /images/*
| *.j
Read manual about security.
1. you simply set FORm auth in web.xml
2. a bit more work
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954711#3954711
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954711
Using Tomcat bu
I'll go post my hibernate error in the hibernate forum (just noticed it).
Thanks for your help. Please let me know if there is a solution that will
allow wsrp to run behind a proxy.
Thanks again,
Mark
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954710#
It is better to use the Database LM because it does the job for you while
managing the subject population with roles.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954709#3954709
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=
Also, see
http://fisheye.jboss.com/viewrep/~raw,r=1.1/JBoss/JBossCache/docs/i18n.txt for
a guide to internationalising the docs.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954708#3954708
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=
+1. And you get lots of kudos on the docs and the jboss cache website as a
contributor. :-)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954707#3954707
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954707
Using To
Have made the code change. I checked into remoting CVS HEAD (so will be part
of 2.0.0 release).
Am checking into having remoting testsuite run under jdk 1.6 with cruisecontrol
to try and catch any jdk 1.6 issues.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&
Yes, if you go to http://localhost:8080/jbossws/ you can get a list of the
deployed services. If you click on a service you can view the generated wsdl
file
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954703#3954703
Reply to the post :
http://www.jboss.
Hi all,
I started 2 JBoss instances on a server.
To start each instance I type :
run.sh -c config1
and
run.sh -c config2
Now I'd like to shut down one of these instances. I didn't see how to shut down
a single instance anywhere.
The usual command is something like :
$JAVA_HOME/bin/ja
I would like for the list to be able pulled from a query so I that I can
control which entities are selected, the description, label, and in what order
they appear.
I do not mind putting annotation and or making my enties implement specific
interfaces.
I have not tried this, but maybe this cou
Yes, I am using IE to see the web service list. I just followed the
instructions in
http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch12.html#ch12.ws4ee-view.fig.
Is there no way to see the list of web services through a browser?
View the original post :
http://www.jboss.com/index.html?modul
Nevermind my last paragarph, I realize you can just do a TaskNode.getTasks(),
and that should give me tasks for each node (if I iterate over each node).
It still seems like a bug that there's no restriction over task names when
editing through the GPD or deploying, or... something.
View the o
In our web application, we are digesting the process definition to manipulate
it to our liking before we deploy it.
We take the .par file from the user, we go through the ProcessDefinition object
to add our events/actions/assignment handlers/etc, and then deploy that.
I ran into a problem today
I tried to deploy examples on resin or sun application server.
But both failed. What can I do?
I don't think a good framework is platform-dependent.
Can anyone help me? The log is too long, so I won't list here.
Is there someone else deploy it sucessfully?
I just deploy the war the tomcat used.
I h
The degug message got chopped off a little... :(
The full stack trace is:
DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] Exiting on IOE
java.net.SocketException: Socket closed
at java.net.SocketInputStream.read(SocketInputStream.java:162)
at java.io.BufferedInputStream.fi
You can't do a http get request to get to the webservice, you need to do a post
instead.
How are you trying to access the service? via a browser?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954695#3954695
Reply to the post :
http://www.jboss.com/index.h
I know this is a DEBUG log entry and I'm tempted to igonre it (and filter it
from the log).
I would, however, like to know more about this "error"...
Thanks
Dag
code use to send the message
| public void jmsSend (TextMessage textMessage) throws JMSException
| {
|
Workaround for me was to get jBPM source code and re-compile it
JIRA issue says this is fixed in Seam 1.1
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954691#3954691
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=395
Is there any example of using these two together?
I feel like I am jumping through hoops just to display a dropdown. Everything
else in seam is a breeze.
I know @DataBinder was added to give this kind of functionality, but a clear
example would be greatly appreciated.
This is the type of exam
I am converting my application to run on Oracle Express edition.
I know Oracle doesnt support column names/identifiers that are longer than 30
chars, so I have converted all my tables/code to make sure that is not problem.
However, when I the following EJB is run, I get an error.
SELECT DISTINCT
That was it! Thanks for your timely and accurate responses, Kabir.
If I may, I would suggest that an example like this be added to the AOP
documentation.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954686#3954686
Reply to the post :
http://www.jboss.com
I have jscook menu working with no problems. Put tomahawk in the following
directory.
default\deploy\jbossweb-tomcat55.sar\jsf-libs
It does not need to be in the lib or ear.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954684#3954684
Reply to the post :
No, I don't think so. I have had Xiaogang Cao and his team at hibernate.org.cn
translating my PojoCache article. But I don't believe the whole doc is
translated.
Send me an email (ben dot wang at jboss dot com) if you decide to go ahead. I
can do the review for you. :-)
-Ben
View the original
Do you have isolation on?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954682#3954682
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954682
Using Tomcat but need to do more? Need to support web services, security?
Ge
How can create a SQL Server Connection pool in JBOSS Application server 4.0.4
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954681#3954681
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954681
Using Tomcat but need to
Something is as well related to EJB-3.0 make sure JBoss is updated to use the
EJB-3.0 profile
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954680#3954680
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954680
Using T
If you want to file a bug report in our jira to allows someone to evaluate the
bytecode issue, use:
http://jira.jboss.com/jira/browse/JBAS
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954679#3954679
Reply to the post :
http://www.jboss.com/index.html?modul
Klusi,
I have a login module which does this as well. Is it good design? I am not
sure. One very imporant point to note (as you will see if you search this
forum) is that you can't secure the EJB that has authenticate(user,passwd)
method using the same application-policy (i.e. security-domai
Hi alesj,
Yes, you are totally right. Sorry. I mixed up org.jboss.mx and org.jboss.jms
packages.
But still the "jboss.mq:service=DestinationManager" is a JBossMQ thing, isn't
it? And the original question remains: Is it still possible to exchange the JMS
implementation if you are using the EJB
Then file a bug report with jbuilder or sun as google shows this is a common
problem with jbuilder+jdk5. Its outside of the scope of jboss.
http://www.google.com/search?q=VerifyError+JBuilder
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954676#3954676
Repl
Branch 1.0 currently includes dependencies that are only reflected in JBossXB
trunk. This means the build currently relies on a snapshot release.
In order to run this build against the AS branch 4.0, you'll need manually
replace the jboss-xml-binding.jar in JBOSS/client and JBOSS/lib with the on
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQSourceRepository
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954674#3954674
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954674
Using Tomcat but need to do more? Nee
wow, that was fast, thanks a lot!!!
yes, this would really be a nice feature in twiddle... because starting a JVM
for a single value every time is quite an overhead.
and thank you also for the wiki link, this seems to be exactly what I was
looking for!
cool, keep on going like this! :)
Vie
Hi All,
I am new to the JBoss,so I want to ask one
very basic question.
I am using JWSDP 2.0.Actually I like to invoke couple of secure services
running on seperate server.These services are using WS-security.So I am just
wondering Whether Process engine used by JBPM uses JWSDP,as our secu
"mneja82" wrote : "kukeltje" wrote : I'm not going to be nice (I think) but
could the problem be that you are a beginner in Java to?
|
| So please a solution
The problem is, this error is immediately obvious to someone with any decent
Java experience.
Unfortunately, this is not the place fo
This is something which is in the jbpm sample webapp.
I suggest you dig through the webapp code and become more familiar with their
code, as it has many examples.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954669#3954669
Reply to the post :
http://www.j
You still got no way to solve the problem? I have the same :(
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954668#3954668
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954668
Using Tomcat but need to do more? Need t
I want to be able to intercept methods of the Entity Beans using the latest
Embeddable container (alpha 8).
If I create a -aop.xml file and try to deploy it as in
Code:
| EJB3StandaloneBootstrap.deployXmlResource("jboss-aop.xml");
|
I get an exception: Caused by:
| org.jboss.xb.bindin
hi all,
I'm trying to create my own portlet of JBPM. I have used the jbpm webapp and I
would like to use a similar presentation of the active task and process. I have
tried to search in the javadoc, but I can find the function which can return
the active task and process.
If you know these fun
1 - 100 of 151 matches
Mail list logo