[jboss-user] [JBoss jBPM] - Re: Require JBPM tutorial

2008-12-14 Thread srohanrao
http://docs.jboss.org/jbpm/v3/userguide/introduction.html
http://www.redhat.com/docs/en-US/JBoss_SOA_Platform/4.2.2/html/JBPM_Users_Guide/

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196460#4196460

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196460
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Require JBPM tutorial

2008-12-14 Thread rinkigoyal
Hello ,

I am newbie to JBPM.

If anyone can provide some links for starting , it will be of gr8 help.

Thanks & Regards
Rinki


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196459#4196459

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196459
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Cannot reorder the web application deployment order!

2008-12-14 Thread ray.swc
Hi,

I'm having two web application to be deployed on the jboss, which named 
Apple.war and Doll.war. Yet, Apple.war should be started AFTER Doll.war. 
Otherwise, the ServletContextListener in Apple.war got stuck on startup of 
jboss coz it references to something only visible after Doll.war is deployed. 
The default sequence is following the lexical order which is not we should have.

Please advise on fixing this issue. Thanks so much!

Ray.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196458#4196458

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196458
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: JBPM-3.3.0 login issues

2008-12-14 Thread janvandeklok
They are missing in the 3.3.0 version. 
I took them from the 3.2.3 version:

create table JBPM_ID_GROUP (ID_ number(19,0) not null, CLASS_ char(1 char) not 
null, NAME_ varchar2(255 char), TYPE_ varchar2(255 char), PARENT_ number(19,0), 
primary key (ID_));
create table JBPM_ID_MEMBERSHIP (ID_ number(19,0) not null, CLASS_ char(1 char) 
not null, NAME_ varchar2(255 char), ROLE_ varchar2(255 char), USER_ 
number(19,0), GROUP_ number(19,0), primary key (ID_));
create table JBPM_ID_PERMISSIONS (ENTITY_ number(19,0) not null, CLASS_ 
varchar2(255 char), NAME_ varchar2(255 char), ACTION_ varchar2(255 char));
create table JBPM_ID_USER (ID_ number(19,0) not null, CLASS_ char(1 char) not 
null, NAME_ varchar2(255 char), EMAIL_ varchar2(255 char), PASSWORD_ 
varchar2(255 char), primary key (ID_));
create table JBPM_JOB (ID_ number(19,0) not null, CLASS_ char(1 char) not null, 
VERSION_ number(10,0) not null, DUEDATE_ timestamp, PROCESSINSTANCE_ 
number(19,0), TOKEN_ number(19,0), TASKINSTANCE_ number(19,0), ISSUSPENDED_ 
number(1,0), ISEXCLUSIVE_ number(1,0), LOCKOWNER_ varchar2(255 char), LOCKTIME_ 
timestamp, EXCEPTION_ varchar2(4000 char), RETRIES_ number(10,0), NAME_ 
varchar2(255 char), REPEAT_ varchar2(255 char), TRANSITIONNAME_ varchar2(255 
char), ACTION_ number(19,0), GRAPHELEMENTTYPE_ varchar2(255 char), 
GRAPHELEMENT_ number(19,0), NODE_ number(19,0), primary key (ID_));

You can populate them with this data for a starter:

INSERT INTO JBPM_ID_USER VALUES(1,'U','user','u...@sample.domain','user'); 
INSERT INTO JBPM_ID_USER 
VALUES(2,'U','manager','mana...@sample.domain','manager'); INSERT INTO 
JBPM_ID_USER VALUES(3,'U','admin','ad...@sample.domain','admin'); INSERT INTO 
JBPM_ID_USER VALUES(4,'U','shipper','ship...@sample.domain','shipper'); INSERT 
INTO JBPM_ID_GROUP VALUES(1,'G','sales','organisation',NULL); INSERT INTO 
JBPM_ID_GROUP VALUES(2,'G','manager','security-role',NULL); INSERT INTO 
JBPM_ID_GROUP VALUES(3,'G','hr','organisation',NULL); INSERT INTO JBPM_ID_GROUP 
VALUES(4,'G','admin','security-role',NULL); INSERT INTO JBPM_ID_GROUP 
VALUES(5,'G','user','security-role',NULL); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(1,'M',NULL,NULL,2,2); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(2,'M',NULL,NULL,2,4); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(3,'M',NULL,NULL,3,4); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(4,'M',NULL,NULL,2,5); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(5,'M',NULL,NULL,1,5); INSERT INTO JBPM_ID_ME!
 MBERSHIP VALUES(6,'M',NULL,NULL,4,3); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(7,'M',NULL,NULL,4,5); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(8,'M',NULL,NULL,3,5); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(9,'M',NULL,NULL,3,3); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(10,'M',NULL,NULL,2,3); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(11,'M',NULL,'boss',2,1); INSERT INTO JBPM_ID_MEMBERSHIP 
VALUES(12,'M',NULL,NULL,1,1);


It worked for me!!

Jan 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196457#4196457

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196457

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Server scoped cross site script filter

2008-12-14 Thread j2eebank
Hi,

All our applications on jboss-4.2.2 need to prevent  cross site scripting. We  
have a servlet filter for this. Instead of packaging the filter along with each 
application, is it possible configure a filter/service at server level ( 
centralised ) so that all request go via it first and then to application. 

Any help is appreciated.

Regards,

Jik

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196455#4196455

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196455
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: JBoss Portlet Container 2.0 released

2008-12-14 Thread fireflyc
jboss portlet container can run on weblogic or webshpere?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196453#4196453

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196453

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How to configure org.jbpm.web.JobExecutorLauncher?

2008-12-14 Thread vkozlov
"kukeltje" wrote : 
  | The title of your post does not match the question 
  | 

Sorry for my poor English, my native language is Java :)

"kukeltje" wrote : jbpm.configuration.resource parameter is used (as you could 
see in the source) as init parameters for either the filter or servlets and 
configured in the web.xml. This is one of the ways to specify a different 
config file than e.g. one named 'jbpm.cfg.xml' and putting it on your classpath

This is exactly what I want. I need to have two jbpm config files - one for my 
servlets (in which jbpm transaction support must be disabled) ant another for 
Job Executor (for example job_bot_jbpm.cfg.xml, in which jbpm transaction 
support must be enabled). But, how I can configure it in web.xml? 
JobExecutorLauncher isn't a servlet, it is a listener, so it not accepts 
 tag. Can you give me an example?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196452#4196452

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196452
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBPM-3.3.0 login issues

2008-12-14 Thread mr.sathya
Hi All..

Good Morning..

while accessing the jbpm console i am facing login problems.In the 
prev.versions there are some identity tables like jbpm-id-user,jbim-id-group 
etc,But i couldnt find those tables in the JBpm 3.3.0 script.i am using oracle 
Xe.Pls point me to those scripts locations or provide me any documentation how 
to acheive this...

sorry for my english..I couldnt find any scripts in the wiki.may be my search 
is not proper.Pls help me in this...
i found same question in the forum.but i coudnt find proper solution for this.

Pls as a beginner i am seeking ur help...

Thanking in advance...

Regards,
Sathya


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196451#4196451

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196451
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache: Core Edition] - Using TCP, Unable to reconnect. Don't know why?

2008-12-14 Thread nachiket_patel
Hello,
I have changed my communication from UDP to TCP, But when i diconnect and 
connect again, My application instances(2) does not get connected automatically 
but if i change back to UDP then it does. 

Snapshot of Configuration:



























View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196449#4196449

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196449
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache: Core Edition] - Re: How to listen to network connected and disconnected even

2008-12-14 Thread nachiket_patel
Yes, 
Thank you for guidance.
But i want to listen to own computer's events also,

When i disable Network, so application shows exception stack, which i think 
handled interally, I want to catch it in my code [or listen to events].


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196448#4196448

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196448
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: jboss 5 and ClassLoader problem

2008-12-14 Thread jaikiran
>From what i know, JBossAS5 stopped creating temp jar files for the deployed 
>ones. AS5 now works on the files that are in the deployment folder. 

Going by your code, you seem to be loading all xml files within a jar. If you 
know the xml file names, then there is a better way to doing this, where you 
don't have to worry about where the jar files are located.

By the way, there's specific forum for JBossAS5 questions here 
http://www.jboss.com/index.html?module=bb&op=viewforum&f=287

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196447#4196447

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196447
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: Please help~~deployment of webservice

2008-12-14 Thread jaikiran
rodosa,

Since this is a jbossws specific question, you might get an answer in the 
JBossWS forum http://www.jboss.com/index.html?module=bb&op=viewforum&f=200. And 
while posting there, please provide more details about your application and 
other version details.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196446#4196446

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196446
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - how to use xml and xsl in porltets

2008-12-14 Thread ngovindakrishna
HI

This is govinda. I am new to this forum and ofcourse porltets also.
Can anybody tell me how to send an xml document linked with an xsl to browser 
using portlets just like servlets.

please help me regarding this.

thanx in advance
govinda

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196445#4196445

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196445
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Microcontainer] - Re: DeploymentUnitRegistry: exists?

2008-12-14 Thread ALRubinger
Your example works well in my initial integration tests. :)

"alesj" wrote : I expect the blog when I wake up on Monday. ;-)

I'll take some more time to beef up the test coverage, make proper unit tests 
(mocking the MC SPIs).  But it works as advertised.  

S,
ALR



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196440#4196440

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196440
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Security & JAAS/JBoss] - getCallerPrincipal returns incorrect principal

2008-12-14 Thread ic.canb
In our web application when a user logs on we using their credentials to lookup 
and call session beans in the apps server.

To do this we holding their user name and password in session state and when we 
need to get a service we use these credentials to create an InitialContext and 
then lookup the service. This is where the first problem can happen some times 
we get the service with the wrong credentials, this is caused by user and 
password being held in static variables. We can stop this by setting the 
SecurityAssociation to server mode(uses thread locals to hold user and pass) by 
call SecurityAssociation.setServer();. Is this the correct way to do this or 
should we be doing something different.

The second problem, when we have a statefull service we keep the handle in 
session state for use the next time we need to call the service, this statefull 
service is holding some user data in the server. The problem is that some times 
when we make a call to the service the getCallerPrincipal() returns the wrong 
callerPrincipal however the service that has been called is the correct 
service. The callerPrincipal is the one from the last lookup on the thread(in 
server mode) and sometimes can be null if a new thread was used.


JBoss 4.2.2.GA
Tomcat 6.0.13
sun JVM 1.6.0_10


Thanks,

Ian.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196439#4196439

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196439
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: remote path for log4j logging

2008-12-14 Thread gan.gary
anyone?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196438#4196438

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196438
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: WS-Eventing and subscription expiration time

2008-12-14 Thread narensb
i am using jbossws 3.0.4 
The MAX_LEASE_TIME for subscription. is it configurable?
if not then is there any patch available for that? 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196436#4196436

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196436
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - jboss 5 and ClassLoader problem

2008-12-14 Thread johlon
I would like to load jboss published in the EAR file jar all xml, but not to 
load path, Jboss 4 in the original path:the jar's file path = D: / 
Java/Jboss/server/default/tmp/deploy/tmp29312liveos.ear- contents / liveos.jar, 
but in jboss 5 :the jar's file path = D: / Java / Jboss / server / default / 
deploy / liveos.ear / liveos.jar, why not the jar's file path = D: \ Java \ 
Jboss \ server \ default \ tmp \ vfs-nested.tmp/02804a5d_liveos.jar, such 
JarFile jarFile = new JarFile (filename); can not find jar

private void loadConfig() {
try {
String osName = System.getProperty("os.name");
ClassLoader loader = Thread.currentThread().getContextClassLoader();
String url = 
loader.getResource(BillConfigCache.class.getName().replace(".", "/") + 
".class").toString();
logger.debug("Current class's filepath : " + url);
String filename;
if (osName != null && osName.indexOf("Windows") != -1) {
logger.debug("Current class begin : " + 
url.substring(url.indexOf("/")) +"/"+url.substring(url.indexOf(".jar/")+4));
filename = url.substring(url.indexOf("/") + 1, 
url.indexOf(".jar/") + 4);
//filename = url.substring(url.indexOf("/") + 1, 
url.indexOf("!"));//Jboss 4
} else {
filename = url.substring(url.indexOf("/"), url.indexOf(".jar/") 
+ 4);
//filename = url.substring(url.indexOf("/"), 
url.indexOf("!"));//Jboss 4
}
filename = filename.replace("%20", " ");
logger.debug("jar's file path = " + filename);

JarFile jarFile = new JarFile(filename);
Enumeration entries = jarFile.entries();
while (entries.hasMoreElements()) {
JarEntry jarEntry = entries.nextElement();
String configFile = jarEntry.getName();
if (jarEntry.getName().toLowerCase().endsWith("xml")) {
logger.debug("Bill Config File : " + configFile);
InputStream inputStream = 
loader.getResourceAsStream(configFile);
List templateList = createBillTemplate(inputStream);
cacheBillTemplate(templateList);
}
}


} catch (Exception e) {
logger.error(e.getMessage(), e);
throw new PAOSBusinessException(e.getMessage(), e);
}
}

Any suggestions?thanks!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196435#4196435

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196435
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Getting Started Documentation] - Re: Missing examples under jboss\jboss-5.0.0.GA\docs\example

2008-12-14 Thread yogaatjboss
I am also facing same issue. I think some how docs\examples\jsfejb3 directory 
in not included in the jboss installation.

Please help and thanks in advance.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196434#4196434

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196434
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Clustering/JBoss] - Hosting files in clustered enviroment..

2008-12-14 Thread onur.aktas
Hi,
I am using JBoss 4.2.3 GA. and in a development stage of a web site project 
which allows users uploading their own videos and photos. 
I can successfully retrieve files from users (through website) but i don't know 
where to save the files i retrieved? 
I am in single developer machine so it is easy to save it under local 
directory, but what i wonder is what will i do if i need to add some cluster 
nodes in future? 

And also, do i need to save files to anywhere something like below?
/jboss-4.2.3.GA/server/default/deploy/MyWebProject.war/images/
/jboss-4.2.3.GA/server/default/deploy/MyWebProject.war/videos/

Or can i also map /mount any directory to JBoss like so all cluster nodes can 
view those directories?
Linux
/WebProject/images/
/WebProject/videos/

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196430#4196430

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196430
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: EAR won't deploy to server

2008-12-14 Thread ghtdak
I put the entire log output which, I believe, indicates where the unresolved 
dependencies are in the post to which you replied..

here it is again:

http://www.tarbox.org/eclipse/logspew.bz2 

The hidden folders are ~/workspace/.metadata with .log and the subsequent  .* 
directories underneath ~workspace/.metadata.  I was unaware of their existence 
until this problem came up because, while I've been using eclipse for a few 
years, I've never encountered this kind of problem.  Use ls -a in .metadata and 
an entire eclipse underworld is exposed.

-glenn


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196427#4196427

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196427
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: jboss.xml question AS 5

2008-12-14 Thread ALRubinger
Try instead "mapped-name".

If that works, please open a JBMETA JIRA issue?

S,
ALR

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196425#4196425

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196425
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: EAR won't deploy to server

2008-12-14 Thread max.ander...@jboss.com
Hi ghtdak, 

I seriously have a hard time understanding what you are talking about. 

What hidden folders ? You mean the deploy location of servers or ?

What installer ? There is an updatesite and that should tell you to get the 
remaining dependencies and not even allow you to install without them.

Birt is optional so again, do not understand why you point that out as an issue 
?

Would be good if you could pinpoint which issues/error messages you have - then 
I can much better figure out what to help with ;)



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196421#4196421

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196421
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Unknown context variable name:

2008-12-14 Thread max.ander...@jboss.com
If this is the JSF validator provided by WTP then it does not know about Seam 
components and thus it will continue to report such issues.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196420#4196420

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196420
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Using jBPM in components.xml

2008-12-14 Thread max.ander...@jboss.com
should ask about this in the seam forums.

And look in the server log it should give you and indication what might be 
wrong.

i.e. have you included the right jbpm.jar's in the project ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196419#4196419

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196419
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: UML plugin for Dev studio version 2

2008-12-14 Thread max.ander...@jboss.com
I don't know of anyone. Let me know if you want to contribute.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196418#4196418

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196418
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: XSD validation in Eclipse

2008-12-14 Thread max.ander...@jboss.com
what happens when you do codecompletion ? if you are using JBoss Tools we 
provide the XSD's so you don't even need a network connection and thus should 
just work.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196417#4196417

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196417
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Hibernate validation failure with Seamgen/MYSQL

2008-12-14 Thread max.ander...@jboss.com
this is the validator being wrong; the colum type is perfectly ok for that type.

Known issue in Hibernate jira.

To make the validator (wrongly) happy we should generate char[2] fields in your 
java code which would be wrong too (or do you prefer to have to manipulate 
arrays instead of strings ? if yes, you can use a reveng.xml to set the type 
for sql type char with length 2 to the hibernate type character)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196416#4196416

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196416
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: JBoss tools 3 daily Deployment failure due to spaces?

2008-12-14 Thread max.ander...@jboss.com
Ah found it - ok, that commit for JBIDE-3368 is also related to spaces but 
should not cause the exception bdlink is seeing here afaik.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196415#4196415

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196415
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: JBoss tools 3 daily Deployment failure due to spaces?

2008-12-14 Thread max.ander...@jboss.com
This has nothing to do with JBoss Tools afaik.

This is caused by a bug in hibernate entity manager which is fixed by using a 
more recent version.

Rob - what fix did you commit earlier that should relate to this ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196414#4196414

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196414
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: problems with jboss tools nightly CR and new JBOSS AS5 m

2008-12-14 Thread max.ander...@jboss.com
This was a very recent change in AS 5 lib layout and was not caught yet. You 
should report it in jira if it is still not fixed in nightly build (I haven't 
read everything yet because of being caught in Devoxx without real network)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196413#4196413

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196413
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: JDK 5 or 6 with JBoss AS 5, eclipse ganymede, JBoss tool

2008-12-14 Thread max.ander...@jboss.com
JBT 3 should be able to run with both JDK 5 and 6.

Would be great to get feedback if you bump into any issues (also if it just 
works ;)


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196412#4196412

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196412
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: add jboss-seam.jar as ejb remove it from the ear explode

2008-12-14 Thread max.ander...@jboss.com
It can also be caused by the WTP bug we fought against with respect to JBoss 
Tools 2.x.

See http://in.relation.to/8932.lace for details.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196411#4196411

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196411
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools Beta

2008-12-14 Thread max.ander...@jboss.com
mareshkau - we have had 64bit builds for Linux for a couple of months now ;)

rob - the xulrunner binaries are included in the download/update site so should 
just work.

PeterJ - using 32-bit will/should work; but I assume the reason meetoblivion is 
asking is to get a "pure" 64bit environment

meetoblivion - sorry for not answering before but I was busy at Devoxx and 
their network prevented me from doing almost any work.

Which version of JBoss tools have you installed ? Our latest beta at least has 
a 64bit linux build 
(http://download.jboss.org/jbosstools/builds/release/3.0.0.Beta1/)

If that still fails it might be a collision of xulrunner 1.9 being installed 
under you system preventing Xulrunner 1.8 to startupbut lets make sure you 
got a 64bit build first ;)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196410#4196410

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196410
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Starting/Stopping MDB via JMX

2008-12-14 Thread pbaker01
First I know that the questions below has been asked many times.  I have seen 
several posts where the replies say: "Search for the Answer".  I have searched 
and I can't find it... 

Problem:
I have a queue and a listener.  The listener is configured as an MDB.  I want 
to be able to:

o Start/Stop the Queue via JMX
o Start/Stop the Queue progrmatically


I cannot find an answer for either.  First the JMX issue

Environment:
JBoss: Jboss-5.0.0 GA
JDK:jdk1.6.0_10

Below is the code for my MDB:
import javax.ejb.ActivationConfigProperty;
  | import javax.ejb.MessageDriven;
  | import javax.jms.JMSException;
  | import javax.jms.Message;
  | import javax.jms.MessageListener;
  | import javax.jms.TextMessage;
  | 
  | @MessageDriven(mappedName = "jms/SSMListener", activationConfig = {
  | @ActivationConfigProperty(propertyName="messagingType", 
propertyValue="javax.jms.MessageListener"),
  | @ActivationConfigProperty(propertyName = "acknowledgeMode", 
propertyValue = "Auto-acknowledge"),
  | @ActivationConfigProperty(propertyName = "destinationType", 
propertyValue = "javax.jms.Queue"),
  | 
@ActivationConfigProperty(propertyName="destination",propertyValue="queue/SSMQueue")
 })
  | public class SSMListener implements MessageListener {
  | 
  | public void onMessage(Message arg0) {
  | // TODO Auto-generated method stub
  | TextMessage tm = (TextMessage) arg0;
  | try {
  | System.out.println("I'm alive - " + tm.getText());
  | } catch (JMSException e) {
  | // TODO Auto-generated catch block
  | e.printStackTrace();
  | }
  | }
  | }

JBoss.xml:

  |  
  |  
  |  SSMListener
  |  jms/SSMListener
  |  queue/SSMQueue
  |  
  |  
  | 
  | 

destinations-service.xml
  
  | jboss.mq:service=DestinationManager
  |   
  | 

Here is are two snapshots of my JMX console.

http://img.picbite.com/2008/12/14/22833fjhhs.png
http://img.picbite.com/2008/12/14/22835imemm.png

I don't see any JMX controls for startDelivery or stopDelivery. 
o What am I doing wrong here? 
o Do I need to configure the MDB as an mbean?  

Remember - beginner... 

For start/stoping programatically I have the following code:
ObjectName objectName;
  | try {
  | objectName = new ObjectName(
  | 
"jboss.j2ee:binding=message-driven-bean, jndiName=jms/SSMListener, 
plugin=invoker,service=EJB");
  | MBeanServer server = MBeanServerLocator.locateJBoss();
  | server.invoke(objectName, "stopDelivery", new Object[] 
{}, null);
  | } catch (MalformedObjectNameException e1) {
  | // TODO Auto-generated catch block
  | e1.printStackTrace();
  | } catch (NullPointerException e1) {
  | // TODO Auto-generated catch block
  | e1.printStackTrace();
  | } catch (InstanceNotFoundException e) {
  | // TODO Auto-generated catch block
  | e.printStackTrace();
  | } catch (MBeanException e) {
  | // TODO Auto-generated catch block
  | e.printStackTrace();
  | } catch (ReflectionException e) {
  | // TODO Auto-generated catch block
  | e.printStackTrace();
  | }

This code generates exception:
anonymous wrote : 10:55:55,157 ERROR [STDERR] 
javax.management.InstanceNotFoundException: 
jboss.j2ee:binding=message-driven-bean, jndiName=jms/SSMListener, 
plugin=invoker,service=EJB is not registered.
  | 10:55:55,158 ERROR [STDERR] at 
org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
  | 10:55:55,158 ERROR [STDERR] at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:662)
  | 10:55:55,158 ERROR [STDERR] at 
com.sita.wab.service.SsimService.startLoad(SsimService.java:65)
  | 10:55:55,158 ERROR [STDERR] at 
com.sita.wab.ejb.ssim.SsimEjbBean.startLoad(SsimEjbBean.java:32)

I suspect once I get the JMX issue resolved the answer to this problem will be 
obvious. 

Other than the starting/stopping the queue, everything else works well.

Please be cognizant that I have posted this on the "Beginners Corner" forum and 
I am not that familure with the details of JMX.

Any help will be greatly appreciated.   


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196406#4196406

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196406
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - How to maintain order of message processing?

2008-12-14 Thread aleksander.lech
Hi, 
I have one MDB for which the order of message processing is crucial, but the 
container creates few instances of MDB and does not wait for one message to 
finish processing. Is this possible to achieve this using MDB?

As I said, I need to have messages processed one after another, one by pone. 
Thank You for Your help. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196405#4196405

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196405
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How to configure org.jbpm.web.JobExecutorLauncher?

2008-12-14 Thread kukeltje
The jobexecutor is configured via the jbpm config file as is in the docs

The title of your post does not match the question 

jbpm.configuration.resource parameter is used (as you could see in the source) 
as init parameters for either the filter or servlets and configured in the 
web.xml. This is one of the ways to specify a different config file than e.g. 
one named 'jbpm.cfg.xml' and putting it on your classpath

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196399#4196399

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196399
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Jbpm-3.3.0 installation problems

2008-12-14 Thread kukeltje
anonymous wrote : type-mapping is not initialized: java:/JbpmDS was not depl
  | oyed or type-mapping was not configured.
  | 

This is the error.

anonymous wrote : I tried many ways.

What did you try? We can't all guess most likely your datasourcedefinition 
is not correct. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196398#4196398

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196398
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: Upgrading to JBoss 5.0

2008-12-14 Thread catman1958
What class/method would we cut?  Could you show an example?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196396#4196396

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196396
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Move jars from WAR to Jboss/server/default/lib folder. A

2008-12-14 Thread a.a.nixon
Any ideas! please!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196394#4196394

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196394
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Jbpm-3.3.0 installation problems

2008-12-14 Thread mr.sathya
Hi All..

Good Evening..

I am facing a problem while starting jboss server.

Here,i am explaining  clearly what i did  till now so that u can easily 
understand where i did wrong...
 
I installed jbpm3.3.0 using jbpm-installer-3.3.0GA.jar by using the command 
java -jar jbpm-installer-3.3.0.GA.jar.

I manually downloaded jboss-4.2.3.GA and installed.while installing the 
jbpm3.3.0,i mentioned this path when it asked for Jboss Path.

Installation is successfully completed.then I started the Jboss server using 
run command.

Then i got this exception.

  | 17:26:56,906 WARN  [config] Unable to process deployment descriptor for 
context '/jbpm-userguide'
  | 17:26:58,575 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, 
warUrl=.../deploy/jmx-console.war/
  | 17:26:58,700 INFO  [EARDeployer] Init J2EE application: 
file:/F:/jboss-4.2.3.GA/server/default/deploy/jbpm/jbpm-enterprise-bundle.ear/
  | 17:26:59,464 INFO  [EjbModule] Deploying TimerEntityBean
  | 17:26:59,605 INFO  [EjbModule] Deploying CommandServiceBean
  | 17:26:59,620 INFO  [EjbModule] Deploying CommandListenerBean
  | 17:26:59,651 INFO  [EjbModule] Deploying JobListenerBean
  | 17:27:00,041 WARN  [ServiceController] Problem starting service 
jboss.j2ee:service=EjbModule,module=jbpm-enterprise-beans.jar
  | org.jboss.deployment.DeploymentException: type-mapping is not initialized: 
java:/JbpmDS was not deployed or type-mapping was not configured.
  | at 
org.jboss.ejb.plugins.cmp.jdbc.metadata.JDBCEntityMetaData.getTypeMapping(JDBCEntityMetaData.java:1103)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.initStoreManager(JDBCStoreManager.java:427)
  | at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:368)
  | at 
org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:172)
  | at org.jboss.ejb.EjbModule.startService(EjbModule.java:414)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
  | at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
  | at $Proxy0.start(Unknown Source)
  | at 
org.jboss.system.ServiceController.start(ServiceController.java:417)
  | at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy31.start(Unknown Source)
  | at org.jboss.ejb.EJBDeployer.start(EJBDeployer.java:662)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
  | at 
org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
  | at 
org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
  | at 
org.jboss.wsf.container.jboss42.DeployerInterceptor.start(DeployerInterceptor.j

[jboss-user] [JBoss jBPM] - How to configure org.jbpm.web.JobExecutorLauncher?

2008-12-14 Thread vkozlov
As I can see in documentation, the JobExecutorLauncher's jbpm configuration 
file path can be configured using jbpm.configuration.resource parameter.

But, org.jbpm.web.JobExecutorLauncher is a listener, not servlet, and I user in 
web.xml such snippet:

 
  |   Starts the job executor
  |   org.jbpm.web.JobExecutorLauncher
  |  
  |  
  |   Closes the jBPM configuration
  |   org.jbpm.web.JbpmConfigurationCloser
  |  

So, where I can insert jbpm.configuration.resource parameter?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196391#4196391

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196391
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: Problems accessing SSL webservice

2008-12-14 Thread dominic_kid
I'm having the same issue. Can anybody post a solution to the problem?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196390#4196390

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196390
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: EAR won't deploy to server

2008-12-14 Thread ghtdak
haven't navigated the eclipse site in a while and had forgotten its breadth... 
and was immediately reminded of the difficulty of finding plugin urls (perhaps 
the design team focusing on hidden files and directories is in charge eclipse 
site navigation...:-)

Anyway, I put the log dump up at:

http://www.tarbox.org/eclipse/logspew.bz2

maybe it will help the next poor soul save a few days.

As for me, the warm embrace of emacs and seeing something compile and run will 
be a welcome respite.

thanks for listening...

-glenn


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196389#4196389

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196389
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: EAR won't deploy to server

2008-12-14 Thread ghtdak
Looking inside the highly classified hidden log file inside the hidden metadata 
directory (eclipse loves hidden directories and files.. maybe someone thought 
it would save disk space :-)

Anyway, I'm beginning to see where all the spew is going.  apparently, there 
are a very large number of dependencies which aren't checked by the jboss tools 
install... including equinox, leading to something in birt... eventually 
leading to osgi.  The required packages aren't part of the eclipse package as 
downloaded, and google seems not to help much..

and, the install went without a hitch.  at a minimum, it appears as though 
jboss tools doesn't refer to these requirements so must be part of what the 
developers use as their baseline... or I might have seen something in the 
forums... anywhere... unless I'm one of the first non-developers to try and get 
this to work after the recent releast of AS 5.

I'll post after I run this down...

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196388#4196388

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196388
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: Number of topic subscribers

2008-12-14 Thread noelo
Hi Tim, Clebert,
Any further comments/suggestions on this matter and the correct approach to 
take..

ta
Noel

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196387#4196387

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196387
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - EAR won't deploy to server

2008-12-14 Thread ghtdak
I have the simplest of test cases having been cut it down to 3 or 4 lines of 
code over the last few days... after being somewhat surprised when stumbling on 
"no support for 64 bit" afterthought in the forums I got a temporary mental 
lift... maybe thats it!!!

So, I did a full redeploy on 32 bit (ubuntu linux).  Virgin everything... 
ganymede j2ee, JBoss Tools from the nightly builds... everything.  (BTW, this 
is jboss-5.0 from svn and I am using the correct server  "by Red Hat" seems to 
be necessary according to other posts somewhere... this can't be a version 
thing...)

Thing is I'm able to build and test everything without any difficulty when I 
manually export an EAR into the deploy directory.  And I'm used to eclipse 
"doing the right thing" when running... but with eclipse and JBoss tools, it 
just seems to "do nothing".

It generates the files in the usual obscure hidden within hidden directories 
(thank you find :-).  And I tried changing the server deployment from using the 
workspace to using the jboss deploy directory... nothin...

Eclipse simply won't copy the EAR content into the server or do whatever other 
magic it must use to look into the workspace...  

I'm sure it must work for some folks or there'd be more chatter.  Or I'm 
missing some massive design / use issue which is so obvious I can't see the 
forest for the trees.

I'm pretty much at a total loss here.  The server starts just fine from scratch 
(i.e. without any deployed packages)... and looking in the JBoss AS 
perspective, I can see the EJB and its "synchronized".  As there are no other 
buttons or right click stuff... I figure it should just run.

no joy here after a couplea days of this.

Hopefully somebody can point out the simple boneheaded thing I'm doing wrong.

-glenn


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196385#4196385

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196385
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user