[jboss-user] [JBoss jBPM] - Re: HOw to create user so that no one can see others tasks..

2008-06-22 Thread alok0007_07
hi Ronald

I got now what was your point but actually it is just writing mistake here in 
the post... sorry for that...

I did the right entry in db .for user and group 


but still getting the same error... 

please suggest...

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

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


[jboss-user] [JNDI/Naming/Network] - How to Access EJB over HTTP in remote machine?

2008-06-22 Thread ritesh163
hello everybody,

I am having problem to access EJB over HTTP in remote machine. I have to access 
EJB which is running in remote server. In between two EJBs, there is routing IP 
as these are running in different network connected by radio link. I am given 
with routing IP to connect with remote EJB by my client, that routing IP will 
map to remote EJB server. 
Remote EJB server is running in [internal IP] and I have to connect remote EJB 
with [Routing IP or External IP]. Can I access this remote EJB over HTTP?

I am using JBoss-4.0.4.GA and  Java version: 1.5.0_15. OS: RHEL 4. 

If I access the web page through my server by "http://[routing IP]:[port]" then 
welcome screen of Jboss is displayed but through application, the connection is 
not found.

The code of client's remote machine for 
http-invoker.sar\META-INF\jboss-service.xml is given below:

  | 
  | 
  |   
  |   
  |  
  |  
  |  http://[Internal 
IP]:[port]/invoker/EJBInvokerServlet
  |  http://
  |  :8080/invoker/EJBInvokerServlet
  |  false
  |   
  | 
  |
  |
  |   
  |   jboss:service=Naming
  |   
  |   
  |   http://[Internal 
IP]:[port]/invoker/JMXInvokerServlet
  |   http://
  |   :8080/invoker/JMXInvokerServlet
  |   false
  |   
  |   org.jnp.interfaces.Naming
  |   
  |   
  |   
  |  
org.jboss.proxy.ClientMethodInterceptor
  |  org.jboss.proxy.SecurityInterceptor
  |  
org.jboss.naming.interceptors.ExceptionInterceptor
  |  
org.jboss.invocation.InvokerInterceptor
  |   
  |   
  |
  | 
  |
  |
  |http://[Internal 
IP]:[port]/invoker/JMXInvokerServlet
  |   jboss:service=Naming
  |   http://
  |   :8080/invoker/readonly/JMXInvokerServlet
  |   false
  |   org.jnp.interfaces.Naming
  |   
  |   
  |   
  |  
org.jboss.proxy.ClientMethodInterceptor
  |  org.jboss.proxy.SecurityInterceptor
  |  
org.jboss.naming.interceptors.ExceptionInterceptor
  |  
org.jboss.invocation.InvokerInterceptor
  |   
  |   
  |
  | 
  | 
  | 

Also connecting code of my server is given below:

  | props.put("java.naming.factory.initial", 
  | "org.jboss.naming.HttpNamingContextFactory");
  | props.put("java.naming.factory.url.pkgs",   
"org.jboss.naming:org.jnp.interfaces");
  | props.put("java.naming.provider.url", "http://"; + routingIP + ":"
  | + port+ "/invoker/JNDIFactory");
  | 
  | InitialContext ic = new InitialContext(props);
  | Object objRef = ic.lookup("ejb/EjbTxn");
  | ejbTxnHome home = (ejbTxnHome) PortableRemoteObject.narrow(
  | objRef, ejbTxnHome.class);
  | ejbTxn = home.create();
  | 

Will I have to use invoker in my server also or not? Error that occur during 
connection is also given below:

  | 16:45:52,869 INFO  [STDOUT] Unable to lookup home: ejbTxnHome Operation 
failed
  | 16:45:52,869 ERROR [STDERR] javax.naming.CommunicationException: Operation 
failed [Root exception is java.rmi.ServerException: IOE; nested exception is: 
  | java.net.ConnectException: Connection timed out]
  | 16:45:52,870 ERROR [STDERR] at 
org.jboss.naming.interceptors.ExceptionInterceptor.invoke(ExceptionInterceptor.java:65)
  | 16:45:52,870 ERROR [STDERR] at 
org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
  | 16:45:52,870 ERROR [STDERR] at 
org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:74)
  | 16:45:52,870 ERROR [STDERR] at 
org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
  | 16:45:52,870 ERROR [STDERR] at $Proxy65.lookup(Unknown Source)
  | 16:45:52,870 ERROR [STDERR] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
  | 16:45:52,870 ERROR [STDERR] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
  | 16:45:52,870 ERROR [STDERR] at 
javax.naming.InitialContext.lookup(InitialContext.java:351)
  | 16:45:52,870 ERROR [STDERR] at 
org.apache.jsp.trans_005fdetail_jsp.getNpgTxn(trans_005fdetail_jsp.java:124)
  | 16:45:52,870 ERROR [STDERR] at 
org.apache.jsp.trans_005fdetail_jsp._jspService(trans_005fdetail_jsp.java:722)
  | 16:45:52,870 ERROR [STDERR] at 
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
  | 16:45:52,871 ERROR [STDERR] at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | 16:45:52,871 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
  | 16:45:52,871 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  | 16:45:52,871 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  | 16:45:52,871 ERROR [STDERR] at 
javax.servlet.http.HttpServlet.service(HttpServl

[jboss-user] [JBoss Portal] - Re: Personalization of Portlets and Themes

2008-06-22 Thread tamil_jboss
I hope that some one could tell me if the personalization of portlets / themes 
is possible to implement or not.It will help me to move to the correct 
direction.

regards,
Tamil

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

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


[jboss-user] Delivery Notification <[EMAIL PROTECTED]>

2008-06-22 Thread Postmaster
This is a delivery status notification, automatically generated by MTA 
Atsp.moxa.com on Mon, 23 Jun 2008 14:11:25 +0800
Regarding recipient(s) : [EMAIL PROTECTED]
Delivery status : Failed. Message could not be delivered to domain 
 .Failed while initiating the protocol. <[('[EMAIL PROTECTED]', 
550, '5.1.1 User unknown')]>
MTA Response :550
The original message headers are included as attachment.
Reporting-MTA: dns; Atsp.moxa.com

Final-Recipient: rfc822;harry_hsiao@moxa.com.tw
Diagnostic-Code: smtp; 550 5.1.1 User unknown
Remote-MTA: dns; 192.168.1.35
Action: failed
Status: 5.0.0
--- Begin Message ---
*** Body Not Included ***
--- End Message ---
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: HOw to create user so that no one can see others tasks..

2008-06-22 Thread alok0007_07
Thanks for Reply...


But its not possible to change the values of USER and GROUP column.. cause it 
gives me an error that parent key not found...

may i m not gettting your point.. can u elaborate your point...

Thanks for response...

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

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


[jboss-user] [JBoss Tools (users)] - deployment error 404

2008-06-22 Thread bmuralirao1980
iam using jboss ideiam getting error stuts code 404 while deploying my 
applicationcan any one tell me how to correct this 

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

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


[jboss-user] [JBoss Messaging] - Re: I got some performance problem while sending a lot of me

2008-06-22 Thread gary.c.chen
timfox, could you please give me a reply ? thanks.

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

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


[jboss-user] [JBoss Messaging] - Re: C++ Clinets for JBOSS Messaging

2008-06-22 Thread armgong
another option is sun's openmq(https://mq.dev.java.net) ,it support c++ client 
,I also evaluate jbm activemq openmq, I found JBM is the best but it can't 
support C++,activemq is not so stable,openmq stable but preformance not so good 
but it can support c++ client ,and have lots docs, and rich admin application.
so now i will choose jbm or openmq

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

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


[jboss-user] [JBoss Portal] - Re: Your account is disabled

2008-06-22 Thread avagarwal
Hi,

Issue resolved. I was using "mysql-connector-java-3.0.17-ga-bin.jar" instead of 
"mysql-connector-java-5.1.6-bin.jar" which was causing the issue's. 
Surprisingly however the using the former (3.0.17) the database is created and 
you can even create new user's in the same. Not sure weather this is a bug. 

Thanks

Anurag

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

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


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: trying to increase thoroughput to server, what am I miss

2008-06-22 Thread jamicide
Thanks for the response.

I have ran JMeter from 3 seperate machines (never the same machine as JBoss) 
both seperately and simulataneously, all with the same cumulative thoroughput 
of ~50 per second. This led me to believe that the the problem was on the JBoss 
box.

The processor load is around 85% at its peak.

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

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


[jboss-user] [JBoss Messaging] - JBOSS configuration for multiple brokers.

2008-06-22 Thread Milochanzy
Hi,

I am trying to connect my application to listen to a Queue that has multiple 
brokers. Code below:


  | 
  | tcp://blah.blah1.COM:4211,tcp://blah.blah2.COM:4211,tcp://blah.blah3.COM:4211
  | userID
  | password
  | 3
  | 1
  | true
  | 
  | 
  | 

I am getting following error


  |  java.lang.NumberFormatException: For input string: 
"tcp://blah.blah2.COM:4211,tcp://blah.blah3.COM:4211" 
  | 

I have tested each of brokers individually and are working fine.

Please Suggest.

Thanks and Regards,
Milan.

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

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


[jboss-user] [JBoss Messaging] - Re: Interesting performance numbers with 2.0 alpha, 1.4 & AM

2008-06-22 Thread seattle.golfer
"timfox" wrote : 
  | 
  | 1) I'd strongly recommend against running all tests on the same box. You'll 
probably find the results won't give you a real picture of performance since 
you really need a network in play (minimum 1GB network).
  | 
  | 

We are designing each node in this role so it is horizontally scalable. What 
that means is that the JMS Broker runs on each node, and all message producers 
only publish messages to their local JMS broker. Message consumers can live on 
other nodes, and use a piece of custom (spring) code to perform the 
subscription multiplexing to all the topics they are interested in. (*)

So, that is a long winded way of saying, on the producing side,  network 
latency & bandwidth shouldn't matter, and on the receiving side, I'm not overly 
concerned because the producers are the only ones in the real time code flow.

"timfox" wrote : 
  | 
  | 2) For JBM 1.4 - are you using out of the box config? If so JBM 1.4 out of 
the box in the app server uses HSQLDB which isn't a "real" database - has not 
tx, and is in memory. It may give high perf figures because it's not actually 
persisting to disk. If you replace HSQLDB by a real db like Oracle or MySQL 
you'll probably see a difference in the perf.
  | 
  | 

Yup, out of the box JBM 1.4 config. HSQL is fine with us because of the 
architecture I mentioned above, as long as HSQL is configured to persist to 
disk for durable storage across restarts (which it is by default it appears).

"timfox" wrote : 
  | 3) JBM 2.0 - I'd strongly recommend running the server on linux if you're 
not already and installing libaio (see userguide) - this will make the journal 
even faster.
  | 
  | 4) AMQ by default does not by default sync tx to disk - make sure you 
switch this on.
  | 
  | 5) I'd also try with larger transaction sizes. If you're using tx size of 
1, there's little point you may as well just send a single persistent message 
outside a tx. The JBM journal will shine even more with larger or more real 
world transactions.
  | 

Good info to have, thanks!


"[EMAIL PROTECTED]" wrote : 
  | Is this Linux? Are you using libaio? What disk you have in your config? 
  | 
  | If you are using linux/libaio, when you add more clients you should scale 
even higher. I mean. 
  | 
This was on a MacBook, but all our servers run linux with a recent 2.6 kernel. 
So we should be able to utilize all the performance the ASYNCIO provides!

"[EMAIL PROTECTED]" wrote : 
  | Our target for BETA is to maximize your disk... say.. if your disk can do 
up to 20K messages a second on the disk, you would be able to add 20 more 
producers and you would still have 800/1K messages per second on each producer.
  | 

Is there a tentative date for the Beta or the Release? 


Thanks for the responses guys, much appreciated. 

I'm going to recommend we switch to JBM 1.4 from AMQ for now, and plan on 
upgrading to 2.0 once it is released. I



(*) We designed things this way because AMQ's network of brokers feature didn't 
work as advertised, and JBM 1.4's clustering still required a central database. 
When we are ready to adopt 2.0, we'll look at using a distributed 
destination/clustering within JBM.



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

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


[jboss-user] [JBoss AOP] - Re: Multiple ClassLoaders problem?

2008-06-22 Thread fr0w
Any clue?

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

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


[jboss-user] [Beginners Corner] - Virtual Hosts

2008-06-22 Thread jhall01
So I am trying to deploy a webapp on jboss and can't seem to figure out whats 
going on (I have switched my actual domain name with domain.com:

I have apache2 running in the front, jboss 4.2.2.

I setup my apache directives with the following:
ServerName www.domain.com
  | ProxyPass / http://www.domain.com:8080/
  | ProxyPassReverse / http://www.domain.com:8080/

created a war:
./servers/default/deploy/domain.war

in the war I have my WEB-INF/jboss-web.xml with:

  | /
  | domain.com
  | 

I defined my ./jboss-web.deployer/server.xml with the host:
 
  | www.domain.com
  | domain.com
  | 
  | 
  | 
  | 
  | 

and when i try to access my app from www.domain.com my apache log reads:
[Sun Jun 22 13:05:39 2008] [error] (111)Connection refused: proxy: HTTP: 
attempt to connect to xxx.xxx.xxx.xxx:8080 (www.domain.com) failed
  | [Sun Jun 22 13:05:39 2008] [error] ap_proxy_connect_backend disabling 
worker for (www.domain.com)
  | [Sun Jun 22 13:05:41 2008] [error] proxy: HTTP: disabled connection for 
(www.domain.com)
  | [Sun Jun 22 13:05:42 2008] [error] proxy: HTTP: disabled connection for 
(www.domain.com)
  | 

am I missing something, if i change the apache directive from:
ProxyPass / http://www.domain.com:8080/
to
ProxyPass / http://localhost:8080/ 
I get the default ROOT.war context as expected which shows my JBOSS default 
page, so I know jboss is running and accepting proxy requests from apache, but 
trying to define my own context seems to cause an issue. 

Any Ideas? (total noob to jboss)



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

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


[jboss-user] [JBoss Tools (users)] - Re: tools.jar not being detected

2008-06-22 Thread [EMAIL PROTECTED]
You have to do it only once if you add it to the JVM defintion.

In any case I don't think we can do much about it since its done by WTP and we 
don't otherwise require tools.jar on the classpath afaik.

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

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


[jboss-user] [JBoss Tools (users)] - Re: tools.jar not being detected

2008-06-22 Thread Elhananm
the fact that you have to do more then once( and that you have to search for 
the solution in the first place)

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

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


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: not accessible from localhost

2008-06-22 Thread PeterJ
Yes, if you do "-b hostname" then you will not have access from localhost.

And you still did not post the line I asked for. Without that, I cannot help 
you.

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

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


[jboss-user] [JBoss Getting Started Documentation] - Re: Getting started with JBoss4.0 - Ant Build Error

2008-06-22 Thread PeterJ
Please post the full stack trace you get from the ant build. Also, you should 
add the -v option to the ant command line to get more information about the 
problem.

I am not sure about the cause of the error dialog. It looks like a 16-bit app 
is being run at some point, but the 16-bit virtual device manager (ntvdm.exe) 
is having problems running (could be a faulty XP install).

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

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


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: trying to increase thoroughput to server, what am I miss

2008-06-22 Thread PeterJ
Is JMeter running on the same machine as JBossAS? Perhaps JMeter, or the 
network connection between the JMeter machine and the JBossAS machine, is where 
the problem is.

What processor utilization are you seeing?

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

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


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: JasperException: Need classpath for JSP compile

2008-06-22 Thread PeterJ
There is no global configuration to do this. Adding the import statement to the 
JSP is the correct way to do this. The mechanism provide by WebLogic Server 
(WLS) is proprietary to WLS and is not portable.

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

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


[jboss-user] [Beginners Corner] - Re: Target Unreachable, identifier 'employeeList' resolved t

2008-06-22 Thread PeterJ
What you posted was the failed deployment report printed at the end of startup. 
Earlier in the console output there should be a stack trace, please post that. 
(If there are multiple stack traces, post only the first one.)

Also, post the *-ds.xml file for your data source, just in case.

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

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


[jboss-user] [JBoss Getting Started Documentation] - Re: Documentation for jboss-5.0.0

2008-06-22 Thread henk53
C'mon you guys... how hard can answering such a question be? At least you could 
say you are not going to answer the question because "insert reason here"

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

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


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: not accessible from localhost

2008-06-22 Thread nickarls
I've tried just a -b hostname on one of our local servers (Linux) and end up 
with the same thing - no go from localhost.

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

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


[jboss-user] [JBoss Messaging] - Re: C++ Clinets for JBOSS Messaging

2008-06-22 Thread jmsid4jboss
Tim thanks your response.

We succeeded in C++ clients sending messages to ActiveMQ also succeeded in 
integrating ActiveMQ to JBOSS. 
But we wanted to explore if there are any C++ clients that can send messages to 
JBOSS Messaging since we want to stick to JBOSS Messaging for better product 
support.

We are toll industry planning 250 + installations of our MOM based application 
with C++ clients sending messages to JMS for every vehicle. We are evaluating 
JBOSS for this requirement.

Is it better to use ActiveMQ integrated with JBOSS or use Stop connector with 
JBOSS Messaging?
Your suggestion is greatly appreciated. 


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

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


[jboss-user] [JBossWS] - wsconsume https

2008-06-22 Thread argol1278
hi all

I want to develop web service over https but i have problem with generating 
artifactes from https:
-
1) It is possible to generate artifactes from https://site/wsdl.wsdl ?
--
I configure tomcat ssl 
jboss-4.2.2.GA\server\default\deploy\jboss-web.deployer\servers  
and web.xml in my application


  | 
  |Protected Context
  |  /*
  |  -->
  | 
  | 

[jboss-user] [JBoss Messaging] - Re: Interesting performance numbers with 2.0 alpha, 1.4 & AM

2008-06-22 Thread [EMAIL PROTECTED]
anonymous wrote : Our target for BETA is to maximize your disk... say.. if your 
disk can do up to 20K messages a second on the disk, you would be able to add 
20 more producers and you would still have 800/1K messages per second on each 
producer. 

Of course I meant... 20 producers at the small transaction size.

If you use higher transaction sizes, you would be pretty impressed with the 
rates you would achieve with a single producer.

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

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


[jboss-user] [JBoss Messaging] - Re: Interesting performance numbers with 2.0 alpha, 1.4 & AM

2008-06-22 Thread [EMAIL PROTECTED]
Is this Linux? Are you using libaio? What disk you have in your config?

If you are using linux/libaio, when you add more clients you should scale even 
higher. I mean.

Our target for BETA is to maximize your disk... say.. if your disk can do up to 
20K messages a second on the disk, you would be able to add 20 more producers 
and you would still have 800/1K messages per second on each producer. 


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

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


[jboss-user] [JBoss Tools (users)] - Re: tools.jar not being detected

2008-06-22 Thread [EMAIL PROTECTED]
im not sure what the problem is by having to add tools.jar manually ?

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

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


[jboss-user] [JBoss jBPM] - Re: TaskInstance.setActorId(String) causes set TaskInstance

2008-06-22 Thread kukeltje
to work or to load? That is what I asked... were you able to load it at all 
without modifications? The changes you made are known for a very long time and 
mentioned in the wiki. And still then, *what version* of MySQL are you using? 
and on what platform. Only if we get details on that, we can include somthing 
decent in the releasenotes

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

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


[jboss-user] [JBoss jBPM] - Re: What's JBPM Server do you use?

2008-06-22 Thread kukeltje
no if you read the docs you can see that jBPM can also be used embedded as 
a library in a standalone app

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

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


[jboss-user] [JBoss jBPM] - Re: HTTP Status 403 - Access to the requested resource has b

2008-06-22 Thread kukeltje
as mentioned in the other post, the _user and _group  numbers are reversed

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

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


[jboss-user] [Security & JAAS/JBoss] - Jboss SecurityDomaijn Annotation

2008-06-22 Thread sofi80
Hi,

I have an EJB which is marked with SecurityDomain annotataion.
I want that some of the methods in it will not be in the SecurityDomain, (so 
they will not go through the Jboss Security Interceptors).
Is there a way to exclude a method from the security domain?
(PermitAll does not help me, since It still perform login check via Jboss)

Thanks

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

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


[jboss-user] [JBoss/Spring Integration] - Re: spring deployer -- NoClassDefFound exception (works on L

2008-06-22 Thread alesj
"odigokid" wrote : 
  | I am now getting this NoClassDef Exception when I can clearly see that the 
class is located in the spring-core.jar file that is in the server/default/lib 
folder and is also located in the jboss-spring.deployer package that is in the 
deploy directory.
Keep just one version of spring-core.jar.
Probably the one in server/default/lib - if your app uses Spring outside 
spring-deployer notion.

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

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


[jboss-user] [JBoss Tools (users)] - tools.jar not being detected

2008-06-22 Thread Elhananm
hi all... 

i saw this in :https://bugs.eclipse.org/bugs/show_bug.cgi?id=126239

and i believe that this is till an issue with eclipse europa, i have added 
manually the tools.jar in jre settings in eclipse, and other ideas?

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

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


[jboss-user] [Installation, Configuration & DEPLOYMENT] - Clustering for failover

2008-06-22 Thread gan.gary
While trying to setup a new JBoss apps, I come across with failover clustering, 
does anyone have any advices on this, other than the link at Jboss doc: Chapter 
16. Clustering  
http://docs.jboss.org/jbossas/jboss4guide/r4/html/cluster.chapt.html ?

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

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


[jboss-user] [JBoss jBPM] - What's JBPM Server do you use?

2008-06-22 Thread youhaodeyi
Where do you deploy JBPM application? There must be some kind of Server to 
invoke the business process.

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

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


[jboss-user] [JBoss Cache: Core Edition] - Re: getting

2008-06-22 Thread dorbd
Any one has a solution for this problem of mine ? 
Is it JGroup problem which i should ask there or is it the new version of jboss 
cache exception. 
Any one on jboss cache team ?

Regards,
Dor

"dorbd" wrote : I am getting the following exception:
  | 
  | 08:18:25,820 ERROR [CacheMarshaller210] Unknown Magic Number 97
  | 08:18:25,821 ERROR [RpcDispatcher] exception marshalling object
  | java.lang.Exception: Unknown magic number 97
  | ...
  | Regards,
  | Dor

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

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