[JBoss-user] [J2EE Design Patterns] - jms durableSubscriber problem

2006-04-19 Thread koteswarat
Hi iam running Topicpublisher and creating a durableSubcriber(), iam gettign 
the following error when running the subcriber .. the code was pasted below 

public class TopicPublisherDemo
{
public static void main(String args[])
throws Exception
{

String jndi_name =
org.jnp.interfaces.NamingContextFactory;

Properties p = new Properties();

p.put(Context.INITIAL_CONTEXT_FACTORY,jndi_name);

p.put(Context.URL_PKG_PREFIXES,
org.jboss.naming rg.jnp.interfaces);

p.put(Context.PROVIDER_URL, localhost:1100);

Context ctx = new InitialContext(p);

Object obj = ctx.lookup(ConnectionFactory);

TopicConnectionFactory topicFactory =
( TopicConnectionFactory ) obj;

TopicConnection conn =
topicFactory.createTopicConnection();

conn.start();

TopicSession session =
conn.createTopicSession
(false, TopicSession.AUTO_ACKNOWLEDGE);

Topic  _topic = (Topic) ctx.lookup(topic/testDurableTopic);


TopicPublisher publisher =
session.createPublisher( _topic );

TextMessage txtMsg =
session.createTextMessage();

txtMsg.setText(args[0]);

publisher.publish(
txtMsg,
Message.DEFAULT_DELIVERY_MODE,
Message.DEFAULT_PRIORITY,
1 );

System.out.println(Message Sent Successfully);

session.close();
conn.close();
}
}
ian getting the following error 


Exception in thread main javax.jms.JMSSecurityException: Connection not 
authorized to do durable subscription on topic: testDurableTopic
at 
org.jboss.mq.security.ServerSecurityInterceptor.subscribe(ServerSecurityInterceptor.java:135)
at org.jboss.mq.server.TracingInterceptor.subscribe(TracingInterceptor.java:816)
at org.jboss.mq.server.JMSServerInvoker.subscribe(JMSServerInvoker.java:297)
at 
org.jboss.mq.il.uil2.ServerSocketManagerHandler.handleMsg(ServerSocketManagerHandler.java:166)
at org.jboss.mq.il.uil2.SocketManager$ReadTask.handleMsg(SocketManager.java:369)
at org.jboss.mq.il.uil2.msgs.BaseMsg.run(BaseMsg.java:377)
at 
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
at java.lang.Thread.run(Thread.java:534)

can any one give solution to this problem 
i had configured the jndi name in jms-dx xml .

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938060#3938060

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938060


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Problems bindings EJBs on JNDI

2006-04-19 Thread aear77
Thank jaikiran,

  It could be only a DEBUG message but why do you think about the 
RuntimeException?

  The problem is that this EJB is not registered on JNDI so we can't call it 
after.

  Thank you very much.

Regards,

  aear77

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938061#3938061

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938061


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam Remoting Refactored

2006-04-19 Thread deniss.parhomenko
Thank you , i'll check it later

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938062#3938062

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938062


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - java.lang.NoSuchMethodError: javax.servlet.http.HttpServletR

2006-04-19 Thread nishu_saini
I am using HttpNamingContextFactory for looking up an EJB Home deployed on 
server. I am using JBoss 4.0.4-RC1 and I get the following error:


java.lang.NoSuchMethodError: 
javax.servlet.http.HttpServletResponse.resetBuffer()V
at 
org.jboss.invocation.http.servlet.InvokerServlet.processRequest(InvokerServlet.java:193)
at 
org.jboss.invocation.http.servlet.InvokerServlet.doGet(InvokerServlet.java:214)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:868)
at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:663)
at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
at java.lang.Thread.run(Thread.java:595)




Can you please suggest the solution ? I think there is some incompatible jar 
from which HttpServletResponse class is being loaded and the method 
resetBuffer() must have been present at compile time.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938063#3938063

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938063


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Start Node with node-enter Action

2006-04-19 Thread Saviola
Hi, Luca!
The thing you are missing is that a start-node doesn't have a node-enter event.
Think about it - you don't enter a start-node, you just leave it. The same is 
valid for an end-node - you never leave an end-node, tha't why it is called 
end-node.

Reagrds, 
Saviola

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938065#3938065

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938065


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: non-en problem

2006-04-19 Thread gedel
but when I upload file on UTF-8 with russian characters - all correct.
I think that cms saves the content in one byte encoding (cp1250 or same).
Should I put this bug to JIRA ??
Or wich source file contains this bug ???



anybody say me anithing !!!
am I crazy ? or Is this forum about MS SharePoint ???

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938067#3938067

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938067


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: XDoclet Error

2006-04-19 Thread skumarsamy
Hi,

Download j2se 5.0 and get it installed with the run time.

Startup your Eclipse IDE.

After that right click on to your project and choose properties, in the tree 
choose the Java Compiler and in the right pane Enable project specific 
settings, then select the JDK Compliance to 5.0, select Use default compliance 
settings. 

This is the new configuration setting, hence there will be a message down the 
pane asking to configure the JRE, from there you are moved another dialog, 
where you are asked to give a name for the JRE and to browse to the new jre 
home, once selected you will get all the libraries related to it. Click ok, 
will return your project properties.

Now choose the Java Build Path from the tree, then open the libraries tab, then 
remove your early jre1.4 and select the new jre5.0 then click ok.

Now go to your project right click and click Run XDoclet.

this will will run and generate your required files.
regards
kumar

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938068#3938068

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938068


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam outjection problem, is this a bug?

2006-04-19 Thread kh2ouija
Yes, there was a redirect tag there, got rid of it and now it works. I wouldn't 
have thought of that...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938070#3938070

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938070


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam outjection problem, is this a bug?

2006-04-19 Thread kh2ouija
Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938071#3938071

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938071


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: TaskAssignment works but findTaskInstances fails

2006-04-19 Thread Saviola
Hi aamonten!
Here you can read more about the warnign:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1367
http://forums.hibernate.org/viewtopic.php?t=941507view=nextsid=bcc76fb6a152498bed5a05c6f0cb1d4f
I had read a documentation (I think it was Hibernate's) with a very simple 
explanation of the issue but I can't find it at the moment. It was something 
that Hibernate extends the objects while quering the database. and this breaks 
the == operation.
Unfortunatelly I am not able to explain that in detail :(

Regards,
 Saviola

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938072#3938072

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938072


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Using the s:link tag

2006-04-19 Thread TrippCCN
I'm trying to use the s:link tag as follows:


  | s:link view-id=/view.cn
  | action=#{charitySearch.search}
  | value=Test Link
  | propagation=true/
  | 

I imported the taglib like this:  %@ taglib 
uri=http://jboss.com/products/seam/taglib; prefix=s %

But I'm getting the error message:


  | ERROR [[jsp]] Servlet.service() for servlet jsp threw exception
  | org.apache.jasper.JasperException: /charities/find.jsp(1,1) The absolute 
uri: http://jboss.com/products/seam/taglib cannot be resolved in either web.xml 
or the jar files deployed with this application
  | 

Any ideas why I keep getting this error?  I am using the seam CVS from April 
18th and JBoss CR2.

Thanks,
Chad

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938073#3938073

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938073


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Using the s:link tag

2006-04-19 Thread [EMAIL PROTECTED]
Yeah, I have not yet made s:link work in JSP. Only in facelets right now.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938074#3938074

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938074


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: overriding xalan/xerces packages with jboss 3.2.6

2006-04-19 Thread [EMAIL PROTECTED]
The testcase was just added at 4.0.x, shouldn't be different with 3.2.x, but it 
uses a scoped .sar not a .war.

Maybe you can try scoping an empty sar, with the new xml jars inside, and the 
.war as a nested subdeployment.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938076#3938076

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938076


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Incomplete Deployment listing (for the nth time)

2006-04-19 Thread [EMAIL PROTECTED]
The EJBTimer service needs the Default datasource, that you have probably 
removed. Either add it back, or point the ejbtimer service to use your primary 
DB.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938077#3938077

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938077


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: Using Java 1.5 JVM Tool Interface for Bytecode Instrumen

2006-04-19 Thread Kmantis
Javassist's HotSwapper already does this. Check the documentation of 
javassist.tool.HotSwapper for more details on how to use it.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938078#3938078

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938078


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Calculator problem with jBoss 4.0.4 RC2

2006-04-19 Thread olymp
Actually, I figured out after some manipulations,
that when installing jboss server I choose j2ee 1.4 (all ) server config 
option. After reinstalling with EJB3 confid option the problem vanished. Now 
it's OK.
Thank you.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938079#3938079

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938079


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread timfox
Actually, this is to be expected.

Coming back to to your use case. From my understanding your application needs 
to read 1000 messages from the queue, process them, then write a record into 
the database to say that a batch of 1000 is complete?

If so, then why not just count the messages as you process them in the consumer 
and write the row into the db saying the batch is complete when you reach the 
count.

Not sure why you need to insert counter messages...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938080#3938080

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938080


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - The jboss-hibernate.deployer directory missing in 4.0.3

2006-04-19 Thread tex123
Hello. I am following instructions in book JBoss at Work: A pratical guide and 
there it says that I must include directory
anonymous wrote : $JBOSS_HOME/server/default/deploy/jboss-hibernate.deployer to 
build dir.

But this directory doesn't exist in JBoss 4.0.3. Am I missing something or was 
this directory moved in new version.

I have other xxx.deploy directories in default/deploy:
anonymous wrote : $JBOSS_HOME/server/default/deploy/jboss-aop.deployer
  | $JBOSS_HOME/server/default/deploy/jboss-bean.deployer
  | 
Thanks for reply

br

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938082#3938082

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938082


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - JBOSS EJB3 Context

2006-04-19 Thread tamri
I have EJB3 project, deployed with jboss-4.0.4.CR2  , his projects .jar file is 
in jboss_home/server/default/deploy catalog.  and I have a client java file 
where I call ejb's remote inteface
   Hashtable properties = new Hashtable();
properties.put(java.naming.factory.initial,
   org.jnp.interfaces.NamingContextFactory);
properties.put(java.naming.factory.url.pkgs,
   =org.jboss.naming:org.jnp.interfaces);
properties.put(java.naming.provider.url, localhost:1099);
Context context = new InitialContext(properties);

 SessionEJBRemote 
obj=(SessionEJBRemote)context.lookup(SessionEJBRemote.class.getSimpleName() + 
/remote);
   obj.calculate(1,2,3d,5d);

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938083#3938083

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938083


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - JBOSS EJB3 Context Problem

2006-04-19 Thread tamri
I have EJB3 project, deployed with jboss-4.0.4.CR2  , his projects .jar file is 
in jboss_home/server/default/deploy catalog.  and I have a client java file 
where I call ejb's remote inteface
   Hashtable properties = new Hashtable();
properties.put(java.naming.factory.initial,
   org.jnp.interfaces.NamingContextFactory);
properties.put(java.naming.factory.url.pkgs,
   =org.jboss.naming:org.jnp.interfaces);
properties.put(java.naming.provider.url, localhost:1099);
Context context = new InitialContext(properties);

 SessionEJBRemote 
obj=(SessionEJBRemote)context.lookup(SessionEJBRemote.class.getSimpleName() + 
/remote);
   obj.calculate(1,2,3d,5d);

this code throws exception :

javax.naming.CommunicationException [Root exception is 
java.lang.ClassNotFoundException: org.jboss.ejb3.JBossProxy (no security 
manager: RMI class loader disabled)]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:728)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)

how can I correct this, what can I do?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938085#3938085

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938085


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Accessing RMI-server from multiple networks

2006-04-19 Thread surak
Hi!

We are having a JBoss which we are using as RMI-server. This server is being 
accessed from several networks which is what is causing the problem. When jboss 
receives a RMI-packages from a client in foreign network he ignores them, that 
is packages coming from an interface other than the one specified with 
java.rmi.server.hostname. This makes it quite impossible to use the RMI-server 
from other networks.

My question is simply; is it possible to specify multiple ips to be used so 
that the server can be used from multiple networks? To specify multiple 
java.rmi.server.hostnames so to say. 

Thanks and Cheers!
 Johan

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938086#3938086

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938086


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Incomplete Deployment listing (for the nth time)

2006-04-19 Thread jpebe
Hi Dimitris, and all those who care for a read,

A partial improvement!

Needless to say I changed the ejb-deployer.xml config file to depends 
optional-attribute-name=DataSourcejboss.jca:service=DataSourceBinding,name=MySqlDS/depends
(was pointing to the now defunct DefaultDS) but I still get the following 
deployment errors on JBoss startup:

  | 10:12:50,953 ERROR [URLDeploymentScanner] (URLDeploymentScanner.java:507) - 
Incomplete Deployment listing:
  | MBeans waiting for other MBeans:
  | ObjectName: jboss:service=KeyGeneratorFactory,type=HiLo
  |  state: CONFIGURED
  |  I Depend On:  jboss:service=TransactionManager
  |  jboss.jca:service=DataSourceBinding,name=DefaultDS
  | 
  |  Depends On Me:
  | 
  | MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
  | ObjectName: jboss.jca:service=DataSourceBinding,name=DefaultDS
  |  state: NOTYETINSTALLED
  |  I Depend On:
  |  Depends On Me:  jboss:service=KeyGeneratorFactory,type=HiLo

Again, I have searched for all DefaultDS in the whole JBoss home directory and 
have found no live instances (all commented out).

I cannot find any instances of HiLo either.

Can someone please explain about this ?  The mystery intensifies.

Maltese Jboss User
JP

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938089#3938089

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938089


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - hibernate.deployer directory?

2006-04-19 Thread gdrews
Hello,
I installed JBoss4.0.3 (OS:WindowsXP). I am planning to deploy an ear file of 
an open source product. The installation guide of these product requires to add 
or replace some jars in the 
jboss_home/server/default/deploy/hibernate.deployer directory. 
Unfortunately I cannot find such a directory. Do I have missed something during 
the installation of JBoss?
best regards, Günter

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938093#3938093

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938093


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: The jboss-hibernate.deployer directory missing in 4.0.3

2006-04-19 Thread tex123
I found hibernate3.deployer on page
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHibernateSwitching

But I think that this file should be accessible from more obvious location. 
Can any one tell me primary download page for this file.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938094#3938094

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938094


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How Can I deploy a Standard MBean on JBoss by using a SA

2006-04-19 Thread ilya1982
HI

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938095#3938095

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938095


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: how to use duedate? (in a task, NOT timer)

2006-04-19 Thread cwad0000
I want to be able to extract the information for each task, when it was 
created/started/when it is due
(to be able to show this information in a todo list for the user and as overall 
information for managers, e.g. highlight all tasks where the due date is 
overdue etc)

In the jbpm_taskinstance I have all this info, which would mean that I wouldnt 
have to lookup the timers (which I think will be a pain, if I am wrong, please 
provide any pointers how it could be done).
Unfortunately I cannot find a single example that actually uses the due date in 
 a taskinstance.

Is this duedate deprecated? I would be thankful for any information.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938096#3938096

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938096


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: BMC/Remedy AR System and jBPM

2006-04-19 Thread magsy
There is a need for clientside workflow actions, as AR System provides. I'm not 
suggesting it should be complex, and a lot of the ARS stuff is just a hack on 
a hack (such as events), but basic event drive support to update fields - 
i.e. user selects something drop down box, presses 'search' and gets a list of 
returns



John

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938098#3938098

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938098


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How Can I deploy a Standard MBean on JBoss by using a SA

2006-04-19 Thread ilya1982
You have to check package in META-INF\jboss-service.xml !!!

Maybe there write
 

  
Hello World
  


but When you compile yourself class HelloWorldService  your  package was 
likely my.com.HelloWorldService

 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938099#3938099

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938099


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Task doesn't end

2006-04-19 Thread rafaelle
Hi

I have made a flow with a node like this:

  |task-node name=Wait Ftp   
  |   task swimlane=user1 name=Wait Ftp/task
  |   event type=node-enter
  |  action name=CreateTimer 
class=com.ccp.myapp.actions.CreateTimerFtp
  | timeOutTransitionNametimeout/timeOutTransitionName
  | timerNameTemp/timerName
  |  /action
  |   /event
  |   transition name=tr1 to=join1/transition
  |   transition name=timeout to=Ftp/transition
  |/task-node
  | 
  | 
The action class com.ccp.myapp.actions.CreateTimerFtp creates a Timer, 
setting the timer's name with Temp and the timeout transition to timeout. 
The due date is 22:00 always.

If I close the task manually with my web browser, the transition will be tr1. 
This is well coded and it works all right.

But, if I keep task alive, when the timer expires, the token is activated and 
it takes the timeout transition as set in timer creation, and flow continue 
correctly.

The problem is that the taskinstance stills not ended. I mean, if I look at the 
database, in jbpm_taskinstance table, the END_ field is NULL.

This is a problem, because the application have a task manager that shows all 
taskinstances not ended. But in this case, the task should be expired and not 
to be shown.

What can I do??

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938102#3938102

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938102


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Class Browse Button/Dialog not working

2006-04-19 Thread [EMAIL PROTECTED]
I moved the discussion to the developer's forum

Regards,
Koen

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938103#3938103

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938103


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: Incomplete Deployment listing (for the nth time)

2006-04-19 Thread [EMAIL PROTECTED]
Have you tried searching the wiki?

http://wiki.jboss.org/wiki/Wiki.jsp?page=ChangeTheDatabase

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938104#3938104

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938104


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Looking up IONA EJBs

2006-04-19 Thread gvespucci
Hi 
I'm trying to lookup some EJBs deployed on a IONA ASP 6.0 from a webapp 
deployed on a JBoss 4.0.3SP1 - my JDK is 1.4.2_10.

After reading forums I found that in conf/jndi.properties I must set only 
java.naming.factory.initial=org.jboss.iiop.naming.ORBInitialContextFactory

But in my stacktrace I can read:
javax.naming.NameNotFoundException: com not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:514)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:522)
at org.jnp.server.NamingServer.getObject(NamingServer.java:528)
at org.jnp.server.NamingServer.lookup(NamingServer.java:252)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:610)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:572)
at javax.naming.InitialContext.lookup(InitialContext.java:347)

It seems that InitialContext.lookup() is instantiating 
org.jnp.interfaces.NamingContext and not the ORBInitialContextFactory...

Someone can help? 
TIA
--
Giorgio

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938105#3938105

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938105


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - SQLException handling: Best practice

2006-04-19 Thread armita
I am looking for the best practice for handlin SQLExceptions. Any suggestion?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938106#3938106

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938106


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Transaction not created

2006-04-19 Thread seb55555
Hello,
I use jboss 3.2.5
I have create a Queue and MDB.
This is ejb-jar.xml

  |   enterprise-beans
  | 
  | message-driven
  | ejb-nameReceveurMessageBean/ejb-name
  | ejb-classfr.asso.aaa.timmat.mdb.Receveur/ejb-class
  | transaction-typeContainer/transaction-type
  | message-driven-destination
  | destination-typejavax.jms.Queue/destination-type
  | 
subscription-durabilityDurable/subscription-durability
  | acknowledge-modeAuto-acknowledge/acknowledge-mode
  | /message-driven-destination
  |  resource-ref
  | res-ref-namejms/QueueConnectionFactory/res-ref-name
  | res-typejavax.jms.QueueConnectionFactory/res-type
  | res-authContainer/res-auth
  |  /resource-ref
  | /message-driven
  | 
  | assembly-descriptor
  |  container-transaction
  |method
  |  ejb-nameReceveurMessageBean/ejb-name
  |  method-name*/method-name
  |/method
  | trans-attributeRequired/trans-attribute
  |/container-transaction
  |/assembly-descriptor
  | 
  |   /enterprise-beans
  | 

and jboss.xml

  |enterprise-beans
  | 
  | message-driven
  |   ejb-nameReceveurMessageBean/ejb-name
  |   configuration-nameStandard Message Driven 
Bean/configuration-name
  |   
destination-jndi-namequeue/exampleQueue/destination-jndi-name
  |  !--  mdb-userguest/mdb-user
  |   mdb-passwdguest/mdb-passwd
  | mdb-subscription-idAdmin/mdb-subscription-id--
  | /message-driven
  | 
  |/enterprise-beans
  | 

The MDB receive messages but if I call setRollbackOnly() in onMessage() method, 
I have the following exception :

  | 10:40:14,428 INFO  [STDOUT] java.lang.IllegalStateException: 
setRollbackOnly must only be called in the context of a transaction (EJB 2.0 - 
15.5.1)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.MessageDrivenEnterpriseContext$MessageDrivenContextImpl.setRollbackOnly(MessageDrivenEnterpriseContext.java:214)
  | 10:40:14,428 INFO  [STDOUT] at 
fr.asso.aaa.timmat.mdb.Receveur.onMessage(Receveur.java:83)
  | 10:40:14,428 INFO  [STDOUT] at 
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | 10:40:14,428 INFO  [STDOUT] at 
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | 10:40:14,428 INFO  [STDOUT] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | 10:40:14,428 INFO  [STDOUT] at 
java.lang.reflect.Method.invoke(Unknown Source)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:458)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:62)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:282)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:90)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:372)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.Container.invoke(Container.java:723)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:914)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1208)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:276)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:871)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:159)
  | 10:40:14,428 INFO  [STDOUT] at 
org.jboss.mq.SpySession.run(SpySession.java:347)
  | 10:40:14,428 INFO  [STDOUT] at 

[JBoss-user] [JBossWS] - Re: change in run-time the soap:address location of wsdl.

2006-04-19 Thread hbraun
Stub._setProperty(ENDPOINT_ADDRESS_PROPERTY, 
http://tulip.imagine-com.local:12124;) should be working. You might have to 
cast your Port to Stub though.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938108#3938108

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938108


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: special character in string parameter

2006-04-19 Thread hbraun
Thanks for pointing this out. Could you create JIRA issues for both cases?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938109#3938109

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938109


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Deploy Process Archive

2006-04-19 Thread hungvy
Hello,

Currently I'm using JBoss jBPM GPD Feature 3.0.9 with eclipse 3.1.1. I could 
create Process Project and Process Definition successfully, but I could not 
deploy my process to JBoss jBPM. The fact is that I could not see Deploy 
Process Archive option. Please let me know how to solve this problem.
Thanks a lot,

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938110#3938110

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938110


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Serialize EJB3 collections

2006-04-19 Thread hbraun
JAX-RPC 1.1 doesn't support collection types. You need to turn your collection 
into an array: Collection.toArray()

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938111#3938111

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938111


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Deploy Process Archive

2006-04-19 Thread try_catch_finally
Hi,

make sure that u right clicked on ur .par file and then u will find the deploy 
process archive.

Let me know...what happnes then..

thnx

~Neeraj S.
chkout_chkin @ Y !

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938112#3938112

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938112


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread mwaschkowski
Actually, I produce a batch of a 1000 at a time, but I am going to consume each 
message one by one. I can only optimize from the production side...

Mark

PS. Ovidiu, my performance tests were with MQ, not Messaging, although it 
sounds like the same thing is going to happen with Messaging

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938114#3938114

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938114


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Deploy Process Archive

2006-04-19 Thread hungvy
Hello,

For the new release (3.0.9), we could not see *.par. I found that we had 
process folder only. And I selected the root folder which stored gpd.xml, 
processdefintion.xml and processimage.jpg and right mouse clicked on it. But I 
could not see anything like Deploy Process Archive.
BTW, for the old release 3.0.8, I could see *.par, but I do not want to 
rollback to use the old plugin.
Do I need to use the old one?
Thanks,

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938115#3938115

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938115


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Configure portal2.2.1RC1 for chinese word (big5 or UTF8

2006-04-19 Thread bdaw
http://wiki.jboss.org/wiki/Wiki.jsp?page=UTF8InPortlet

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938116#3938116

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938116


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Messaging on Oracle

2006-04-19 Thread nm_pereira
Hi, 

 I am using Messaging 1.0 with JBoss 4.03SP1. I have configured Messaging to 
use Oracle Persistence (9.2.0.4.0) using th files found in FishEye 
(/jboss-jms/docs/examples/config/):

 oracle-jdbcchannelmapper-service.xml

 oracle-jdbcpersistencemanager-service.xml

 This files will be included in Messaging 1.0.1.

 I am having problems with this files after configuring Messaging i get this 
error (Invalid column index):

2006-04-19 12:26:28,475 ERROR [org.jboss.messaging.core.ChannelSupport] Failed 
to handle message
java.sql.SQLException: Indice di colonna non valido
at 
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at 
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
at 
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
at 
oracle.jdbc.driver.OraclePreparedStatement.setIntInternal(OraclePreparedStatement.java:4571)
at 
oracle.jdbc.driver.OraclePreparedStatement.setInt(OraclePreparedStatement.java:4563)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.setInt(WrappedPreparedStatement.java:97)
at 
org.jboss.messaging.core.plugin.JDBCPersistenceManager.storeMessage(JDBCPersistenceManager.java:4066)
at 
org.jboss.messaging.core.plugin.JDBCPersistenceManager.addReference(JDBCPersistenceManager.java:1654)
at 
org.jboss.messaging.core.ChannelState.addReference(ChannelState.java:211)
at 
org.jboss.messaging.core.ChannelSupport.handle(ChannelSupport.java:129)
at 
org.jboss.jms.server.endpoint.ServerConnectionEndpoint.sendMessage(ServerConnectionEndpoint.java:744)
at 
org.jboss.jms.server.endpoint.ServerSessionEndpoint.send(ServerSessionEndpoint.java:366)
at 
org.jboss.jms.server.endpoint.advised.SessionAdvised.org$jboss$jms$server$endpoint$advised$SessionAdvised$send$
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:324)
at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
at 
org.jboss.jms.server.container.SecurityAspect.handleSend(SecurityAspect.java:150)
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:324)
at 
org.jboss.aop.advice.PerInstanceAdvice.invoke(PerInstanceAdvice.java:130)
at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at 
org.jboss.jms.server.container.ServerLogInterceptor.invoke(ServerLogInterceptor.java:105)
at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
at org.jboss.aop.Advisor.dynamicInvoke(Advisor.java:719)
at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:99)
at 
org.jboss.jms.server.remoting.JMSServerInvocationHandler.invoke(JMSServerInvocationHandler.java:126)
at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:831)
at 
org.jboss.remoting.transport.local.LocalClientInvoker.invoke(LocalClientInvoker.java:72)
at org.jboss.remoting.Client.invoke(Client.java:527)
at org.jboss.remoting.Client.invoke(Client.java:490)
at 
org.jboss.jms.client.delegate.DelegateSupport.invoke(DelegateSupport.java:112)
at 
org.jboss.jms.client.delegate.ClientSessionDelegate$send_N3028277934545793941.invokeNext(ClientSessionDelegate$
at 
org.jboss.jms.client.container.TransactionAspect.handleSend(TransactionAspect.java:151)
at 
org.jboss.aop.advice.org.jboss.jms.client.container.TransactionAspect11.invoke(TransactionAspect11.java)
at 
org.jboss.jms.client.delegate.ClientSessionDelegate$send_N3028277934545793941.invokeNext(ClientSessionDelegate$
at 
org.jboss.jms.client.container.ClosedInterceptor.invoke(ClosedInterceptor.java:130)
at 
org.jboss.aop.advice.PerInstanceInterceptor.invoke(PerInstanceInterceptor.java:117)
at 
org.jboss.jms.client.delegate.ClientSessionDelegate$send_N3028277934545793941.invokeNext(ClientSessionDelegate$
at 
org.jboss.jms.client.container.ExceptionInterceptor.invoke(ExceptionInterceptor.java:69)
at 
org.jboss.jms.client.delegate.ClientSessionDelegate$send_N3028277934545793941.invokeNext(ClientSessionDelegate$
at 
org.jboss.jms.client.container.ClientLogInterceptor.invoke(ClientLogInterceptor.java:107)
at 
org.jboss.jms.client.delegate.ClientSessionDelegate$send_N3028277934545793941.invokeNext(ClientSessionDelegate$
at 

[JBoss-user] [JBossCache] - Re: NullpointerException in FileCacheLoader

2006-04-19 Thread [EMAIL PROTECTED]
See http://jira.jboss.com/jira/browse/JBCACHE-579

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938118#3938118

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938118


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Start Node with node-enter Action

2006-04-19 Thread lfaggioli
Hi Saviola,
thanks for the reply!

Two things then:
1. I guess the eclipse plug-in has to be fixed: right now it allows you to 
define a node-enter action for a start node.
2. What you say makes sense, but I still do not understand why a start-node, 
which contains a task like any task node, cannot have an action which does some 
chores on the variable before the webform is presented to the user.

I think this situation is quite common in BPM: e.g., having the start date 
automatically pre-filled, or a unique process instance ID automatically 
generated and shown in the first form, and so on... am I wrong?

How am I suppose to pre-fill the variables? Any idea?

Bye
Luca

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938119#3938119

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938119


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread mwaschkowski
As well, I was hoping to avoid 100,000 database hits, one with each consumption 
of a message...

Mark

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938120#3938120

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938120


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: how to ensure the deployed sequence of different Jars wh

2006-04-19 Thread vincent.yuan
I need your help .
thank you.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938121#3938121

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938121


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Configure portal2.2.1RC1 for chinese word (big5 or UTF8

2006-04-19 Thread gedel
Boleslaw, what about HTML-editor in CMSadmin. 
When I input ru-characters in the text area it has been puted into table in 
native encoding (cp1251) - !!! not UTF-8. But pages are sends in UTF-8, and it 
damaged.

I think that I have to encode the request in UTF-8 ??? 
Connector port=8080 ad URIEncoding=UTF-8/ do not solve this problem. 
Or I must configure Jackrabbit ???

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938122#3938122

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938122


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: NullpointerException in FileCacheLoader

2006-04-19 Thread jaikiran
Thanks Manik

-Jaikiran

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938123#3938123

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938123


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Few questions on FileCacheLoader

2006-04-19 Thread jaikiran
A few questions regarding FileCacheLoader:

- Does the location to which the FileCacheLoader stores, need to be cleaned out 
on every application restart?

- What happens if the drive is full. Is this taken care of? Looking into the 
code of FileCacheLoader, i believe IOException may occur on disk being full, 
right?

- Can FileCacheLoader be used in a production environment?

P.S. The reason behind using FileCacheLoader along with maintaining a eviction 
policy, is to avoid additional database queries that would be fired in case the 
object was evicted from cache because of over-capacity(number of nodes 
exceeding maxNodes).





 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938124#3938124

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938124


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How to push data to JMX components?

2006-04-19 Thread ragsta
this is the solution i've found:

my stateless session bean:

  | public class CounterBean implements SessionBean {
  | 
  |public static MovementsMgr myMBean=null;
  | 
  |public void ejbCreate() throws CreateException {
  |  if (myMBean == null){
  | myMBean= new com.alblab.management.MovementsMgr();
  | MBeanServerLocator.locateJBoss().registerMBean(myMBean,new 
bjectName(xxx:name=movements));
  | System.out.println(MovementsMgrMBean registered); 
  |  }
  |}
  |
  |.
  |.
  |.
  |// my Ejb remote business method
  |public String putMoney(int amount) {
  |   myMBean.setInbound(amount); //my method on MovementsMgr not exposed 
in the MBean Interface
  |  .
  |  .
  |}
  | }

MBean interface:

  | public interface MovementsMgrMBean extends ServiceMBean{
  | public int getInbound();
  | .
  | .
  | .   
  | }

MBean Implementation:

public class MovementsMgr extends ServiceMBeanSupport implements 
MovementsMgrMBean {
  | 
  | private int inbound;
  | public MovementsMgr(){
  | inbound=0;
  | }
  | 
  | .
  | .
  | .
  | 
  | public int getInbound() {
  | return inbound;
  | }
  | 
  | //not exposed in the MBean interface
  | public void setInbound(int amount){
  | inbound=inbound+amount;
  | }
  | }

Is this a right way to do it?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938125#3938125

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938125


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - 4.0.4.CR2 Namespace issue with Session EJB-based WS

2006-04-19 Thread brownjamese
I have encountered an issue regarding namespaces with a web service based on a 
stateless sesssion bean.  First, my environment:
* JBoss 4.0.4 CR2
* JBuilder 2006
* Windows XP
* JDK 1.5 update 6

The issue is that it appears that all classes must reside in the same 
package/namespace; otherwise, exceptions such as the following occur:
anonymous wrote : javax.xml.rpc.JAXRPCException: 
org.jboss.ws.binding.BindingException: javax.xml.bind.JAXBException: Failed to 
parse source: Failed to resolve class name for request: No ClassLoaders found 
for: sample.Request
  | 

The problem is that Request resides in sample.data not sample as you can see 
from the following directory structure listing:


  | +---src
  | |   +---sample
  | |   |   |   SampleBean.java
  | |   |   |   SampleLocal.java
  | |   |   |   SampleLocalHome.java
  | |   |   |   SampleWebService.java
  | |   |   |
  | |   |   \---data
  | |   |   BusinessRequest.java
  | |   |   BusinessResponse.java
  | |   |   PaymentRequest.java
  | |   |   PaymentResponse.java
  | |   |   Request.java
  | |   |   Response.java
  | 


If collapsed to a single package/namespace, no errors are encountered.

The classes in sample.data nothing more than shells - for example:

  | package sample.data;
  | 
  | public class BusinessRequest {
  | private String policyNumber;
  | 
  | public BusinessRequest() {
  | policyNumber = null;
  | }
  | 
  | public BusinessRequest(String policyNumber) {
  | this.policyNumber = policyNumber;
  | }
  | public String getPolicyNumber() {
  | return policyNumber;
  | }
  | 
  | public void setPolicyNumber(String policyNumber) {
  | this.policyNumber = policyNumber;
  | }
  | 
  | }
  | 

The EJB is even simpler:

  | package sample;
  | 
  | import javax.ejb.SessionBean;
  | import javax.ejb.SessionContext;
  | import javax.ejb.CreateException;
  | import sample.data.Response;
  | import sample.data.Request;
  | 
  | public class SampleBean implements SessionBean {
  | SessionContext sessionContext;
  | public void ejbCreate() throws CreateException {
  | }
  | 
  | public void ejbRemove() {
  | }
  | 
  | public void ejbActivate() {
  | }
  | 
  | public void ejbPassivate() {
  | }
  | 
  | 
  | public void setSessionContext(SessionContext sessionContext) {
  | this.sessionContext = sessionContext;
  | }
  | 
  | public Response test(Request request) {
  | // do nothing
  | return new Response();
  | }
  | }
  | 


And the WSDL looks correct as well:

  | wsdl:definitions targetNamespace='http://sample' 
xmlns:apachesoap='http://xml.apache.org/xml-soap' xmlns:impl='http://sample' 
xmlns:intf='http://sample' 
xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/' 
xmlns:tns2='http://data.sample' xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/' 
xmlns:wsdlsoap='http://schemas.xmlsoap.org/wsdl/soap/' 
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  |  wsdl:types
  |   schema targetNamespace='http://data.sample' 
xmlns='http://www.w3.org/2001/XMLSchema'
  |import namespace='http://schemas.xmlsoap.org/soap/encoding/'/
  |complexType name='BusinessRequest'
  | sequence
  |  element name='policyNumber' nillable='true' type='xsd:string'/
  | /sequence
  |/complexType
  |complexType name='PaymentRequest'
  | sequence
  |  element name='account' nillable='true' type='xsd:string'/
  | /sequence
  |/complexType
  |complexType name='Request'
  | sequence
  |  element name='businessRequest' nillable='true' 
type='tns2:BusinessRequest'/
  |  element name='paymentRequest' nillable='true' 
type='tns2:PaymentRequest'/
  | /sequence
  |/complexType
  |complexType name='BusinessResponse'
  | sequence/
  |/complexType
  |complexType name='PaymentResponse'
  | sequence
  |  element name='transactionID' nillable='true' type='xsd:string'/
  | /sequence
  |/complexType
  |complexType name='Response'
  | sequence
  |  element name='businessResponse' nillable='true' 
type='tns2:BusinessResponse'/
  |  element name='paymentResponse' nillable='true' 
type='tns2:PaymentResponse'/
  | /sequence
  |/complexType
  |   /schema
  |  /wsdl:types
  |  wsdl:message name='testRequest'
  |   wsdl:part name='request' type='tns2:Request'/
  |  /wsdl:message
  |  wsdl:message name='testResponse'
  |   wsdl:part name='testReturn' type='tns2:Response'/
  |  /wsdl:message
  |  wsdl:portType name='SampleLocal'
  |   wsdl:operation name='test' parameterOrder='request'
  |wsdl:input message='impl:testRequest' name='testRequest'/
  |wsdl:output message='impl:testResponse' name='testResponse'/
  |   /wsdl:operation
  |  /wsdl:portType
  |  wsdl:binding name='SampleLocalSoapBinding' type='impl:SampleLocal'
  |   wsdlsoap:binding style='rpc' 

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: request.getRequestURI() in an include filter

2006-04-19 Thread j2ee_junkie
Adam,

I would expect this behavior.  If you do not understand this then review the 
Java API for RequestDispatcher.

cgriffith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938127#3938127

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938127


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Where to put a custom Login Module

2006-04-19 Thread j2ee_junkie
pemo,

I believe this is an acceptable location.  Are you having problems?

cgriffith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938130#3938130

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938130


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - javax.naming.CommunicationException [Root exception is java.

2006-04-19 Thread sandello
Hi, All
I have got a problem and can't understand it :-(
Problem was appeared after migration from JBoss4.0.2 to JBoss4.0.4

When my console client tries to connect to JBoss, an exception appears:

  | javax.naming.CommunicationException [Root exception is 
java.io.InvalidClassException: org.jboss.invocation.InvokerInterceptor; unable 
to create instance]
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:722)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
  | at javax.naming.InitialContext.lookup(InitialContext.java:351)
  | at 
com.uralcom.radius3.transport.Theorem2Radius3.request(Theorem2Radius3.java:69)
  | at 
com.uralcom.radius3.transport.Theorem2Radius3Access.authenticate(Theorem2Radius3Access.java:15)
  | at 
com.theorem.radserver3.RADIUSSession.access(RADIUSSession.java:604)
  | at 
com.theorem.radserver3.RADIUSSession.process(RADIUSSession.java:535)
  | at com.theorem.radserver3.RADIUSSession.run(RADIUSSession.java:214)
  | at java.lang.Thread.run(Thread.java:595)
  | Caused by: java.io.InvalidClassException: 
org.jboss.invocation.InvokerInterceptor; unable to create instance
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1700)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
  | at org.jboss.proxy.Interceptor.readExternal(Interceptor.java:80)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1753)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1711)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
  | at org.jboss.proxy.Interceptor.readExternal(Interceptor.java:80)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1753)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1711)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
  | at org.jboss.proxy.Interceptor.readExternal(Interceptor.java:80)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1753)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1711)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
  | at 
org.jboss.proxy.ClientContainer.readExternal(ClientContainer.java:156)
  | at 
java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1753)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1711)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
  | at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1912)
  | at 
java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1836)
  | at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1713)
  | at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
  | at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
  | at java.rmi.MarshalledObject.get(MarshalledObject.java:135)
  | at 
org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:72)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:652)
  | ... 8 more
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938128#3938128

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938128


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - what is behind the scene ?

2006-04-19 Thread try_catch_finally
Hi all,

I read the GettingStarted docs and it's excellent...really very well explained.
With the help of gettingStarted guide i created my own app and it's running
successfully.

I m very much interested to use JBPM api and want to write my own java classes 
and jsp's to implement the work flow.

As i m newbie in JBoss JBPMso  i have some doubts 

1. When i  did the deploy process archieveand then when i open the jbpm 
to see my process ...then it is there and working fineBUT where it is 
exactly deployed..on jbpm server..i didn't found any folder related to my 
process project.

2. the deployed application is running perfectly but i don't understand the 
exact flow.say when i click on save and close where exactly control 
transfer since i only created the gpd.xml file and no actionHandler java files.

3.  When we create the process project and process definition the IDE generates 
some default folders and files in there.so when these default created files 
comes into picture like MessageActionHandler.java

4.  What if i want to write my own code to handle every action from the work 
flow. Say when i click save and close button then my actionHandler should get 
call where i can get my task...and e.t.c... ...

5. i want to do every thing form initiate a process to end by with the help of 
JBPM api's..so pls guide me what class files do i need to write and what 
are the things that i need to learn...

Very very thnx in advance.

Waiting for reply


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938129#3938129

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938129


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: request.getRequestURI() in an include filter

2006-04-19 Thread adamw
Hello,
   I've read the javadocs, but in description of the include method there is no 
explition mention about how the request object is modified (as opposed to 
forward - For a RequestDispatcher obtained via getRequestDispatcher(), the 
ServletRequest object has its path elements and parameters adjusted to match 
the path of the target resource.). And if I include a resource, logically, the 
requestURI does change.

Also, behaviour of this is different in portlets - there, if you include a 
resource in exactly the same way (except that the request dispatcher is 
obtained with a PortletRequest, not a ServletRequest), the requestURI is 
changed.

-- 
Adam

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938131#3938131

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938131


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread timfox
Sorry still don't follow.

My would you have 100 000 database hits?

Could you explain your use case again?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938132#3938132

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938132


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - How to detect all instances of an EJB Class that are instanc

2006-04-19 Thread micho
I want to send all instances of a Statefull Sessionbean an Message (methodcall) 
that some information has to be invalidated,
Therfore I have to detect all instances of that EJB Class in the server.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938133#3938133

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938133


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How to push data to JMX components?

2006-04-19 Thread [EMAIL PROTECTED]
There is an issue with the lifecycle with the mbean, i.e. how it gets 
destroyed/deregistered?

My initial idea would be to have an mbean service deployed together with the 
ejb as an embedded .sar

The mean would be a frond-end to a data object (pojo) holding the actual 
metrics. The mbean would register this pojo to the internal jndi, so the ejb 
can look it up and update it. You need to synchronize access to that pojo, as 
it will be accessed by many threads (there maybe a performance issue there).

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938134#3938134

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938134


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: Messaging on Oracle

2006-04-19 Thread timfox
Nuno-

The version in CVS has a slightly different db structure than the 1.0.0 version 
you are using, hence the error when you try to use the config from CVS.

1.0.1 will be released very shortly, if you can wait until then it will be 
greatly appreciated.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938135#3938135

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938135


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Cache Distribution Question

2006-04-19 Thread micho
thx, sounds great!

when do you expect JBossCache 1.4.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938136#3938136

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938136


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: Messaging on Oracle

2006-04-19 Thread timfox
If you desperate to get it working now, you should be able to just add a dummy 
column on the JMS_MESSAGE table:


  | INSERT_MESSAGE=INSERT INTO JMS_MESSAGE (MESSAGEID, RELIABLE, EXPIRATION, 
TIMESTAMP, PRIORITY, COREHEADERS, PAYLOAD, CHANNELCOUNT, TYPE, JMSTYPE, 
CORRELATIONID, CORRELATIONID_BYTES, DESTINATION_ID, REPLYTO_ID, JMSPROPERTIES, 
DUMMY) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) 
  |  
  |  CREATE TABLE JMS_MESSAGE (MESSAGEID INTEGER, RELIABLE CHAR(1), EXPIRATION 
INTEGER, TIMESTAMP INTEGER, PRIORITY INTEGER, COREHEADERS BLOB, PAYLOAD BLOB, 
CHANNELCOUNT INTEGER, TYPE INTEGER, JMSTYPE VARCHAR2(255), CORRELATIONID 
VARCHAR2(255), CORRELATIONID_BYTES RAW(254), DESTINATION_ID INTEGER, REPLYTO_ID 
INTEGER, JMSPROPERTIES BLOB, DUMMY INTEGER, PRIMARY KEY (MESSAGEID))
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938138#3938138

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938138


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Configure portal2.2.1RC1 for chinese word (big5 or UTF8

2006-04-19 Thread [EMAIL PROTECTED]
This is likely a bug in the CMS. Can you create a jira for it and maybe attach 
a test document that I can use?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938139#3938139

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938139


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Class not found on

2006-04-19 Thread urswag
Who can help me?
I have checked ejb-jar.xml, jboss.xml the clases are in the jar file. The other 
beans are working fine.


anonymous wrote : 
  | Bean   : ShoppingCartEJB
  | Section: 22.2
  | Warning: The Bean Provider must specify the fully-qualified name of the 
Java class that implements the enterprise bean's business methods in the 
ejb-class element.
  | Info   : Class not found on 
'com.sun.j2ee.blueprints.cart.ejb.ShoppingCartLocalEJB': No ClassLoaders found 
for: com.sun.j2ee.blueprints.cart.ejb.ShoppingCartLocalEJB
  | 
  | 
  | 2006-04-19 14:50:53,207 ERROR [org.jboss.deployment.MainDeployer] Could not 
create deployment: 
file:/C:/Programme/JBoss/server/default/tmp/deploy/tmp7568petstore.ear-contents/petstore.jar
  | org.jboss.deployment.DeploymentException: Verification of Enterprise Beans 
failed, see above for error messages.
  | at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:594)
  | 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.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
  | at $Proxy36.create(Unknown Source)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:953)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:943)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
  | at sun.reflect.GeneratedMethodAccessor6.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.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.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
  | at $Proxy6.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:334)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:504)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:207)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:218)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:197)
  | 2006-04-19 14:50:53,207 DEBUG 
[org.jboss.deployment.scanner.URLDeploymentScanner] Failed to deploy: [EMAIL 
PROTECTED] url=file:/C:/Programme/JBoss/server/default/deploy/petstore.ear, 
deployedLastModified=1145450794441 }
  | org.jboss.deployment.DeploymentException: Verification of Enterprise Beans 
failed, see above for error messages.
  | at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:594)
  | 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 

[JBoss-user] [JNDI/Naming/Network] - Re: [java] java.rmi.ServerException: RemoteException occur

2006-04-19 Thread RGR
Did you find a solution for this problem? If so, could you share it with me...I 
am running into the same problem.
Thanks,
RGR

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938141#3938141

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938141


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: setExceptionListener() warnings in clustered environment

2006-04-19 Thread jukvaa
No, I mean that we had to drop MDB load balancing altogether and deploy the MDB 
as ha-singleton (the EJB jar). The actual message queue is always ha-singleton, 
I think. 

We had very limited time to solve this so didn't have time to research what's 
causing this... 

IIRC, in JBoss 4.0.3 sp1 this worked ok, but other clustering problems there 
prevented our upgrade. If you have the possibility, you could try 4.0.4..?

But really I don't know what this was... Could even be some configuration 
error. And if you find a solution, I'd be willing to know... ;)



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938142#3938142

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938142


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Problem publishing messages to a remote Queue

2006-04-19 Thread stevech10
Thank you for your interest.

Here is the initial context lookup - although I was hoping not to have to hard 
code this:

Properties properties = new Properties();
properties.put(Context.INITIAL_CONTEXT_FACTORY,
org.jnp.interfaces.NamingContextFactory);
properties.put(Context.URL_PKG_PREFIXES,
org.jboss.naming:org.jnp.interfaces);
properties.put(Context.PROVIDER_URL, URL_NAME);
jndiContext = new InitialContext(properties);


Also, here's my JMS loader provider from jms-ds.xml (remoteserver replaced with 
actual server):

  
QueuehostJMSProvider
org.jboss.jms.jndi.JNDIProviderAdapter
!-- The combined connection factory --
XAConnectionFactory
!-- The queue connection factory --
XAConnectionFactory
!-- The topic factory --
XAConnectionFactory
!-- Connect to JNDI on the host queuehost port 1099 --

   java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
   java.naming.factory.url.pkgs=org.jnp.interfaces
   java.naming.provider.url=remoteserver:1099

  

Finally, I have a remote proxy binding setup up in jboss.xml that I 
successfully invoke to consume from a remote topic. I was hoping I could use 
the same proxy binding to publish to the remote queue:

   invoker-proxy-bindings
  invoker-proxy-binding
 my-mdb-invoker
 invoker-mbeandoes-not-matter/invoker-mbean
 
proxy-factoryorg.jboss.ejb.plugins.jms.JMSContainerInvoker/proxy-factory
 proxy-factory-config
QueuehostJMSProvider
StdJMSPool
1
3
15
1

   10
   
  queue/DLQ
  10
  0
   

 /proxy-factory-config
  /invoker-proxy-binding
   /invoker-proxy-bindings



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938143#3938143

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938143


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Jboss 3.2.1, eclipse, lomboz, DAO

2006-04-19 Thread rinjet
Hello everyone, i am new in jboss develpment, and i am asking about your 
experiences in building applications using dao persistence, with jboss

Have nowone tried this tutorial, and succeeded building application mentioned 
there?
http://www.tusc.com.au/tutorial/html/chap1.html.

I got my jboss 3.2.1 installed, and with lomboz and eclipse. jboss 3.2.1 won't 
shut down in eclipse, i guess this does not matter.

Thank you everyone! please tell me your experiences and tips.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938144#3938144

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938144


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - No ManagedConnections available within configured blocking t

2006-04-19 Thread udayn
Hi,
We are using jboss 4.0.3 server. 
Oracle 9I is the DB.
The app server was working fine , but from last month it has started going 
down. The server is shutting down after evrey 5-6 days because of following 
error. 
org.jboss.util.NestedSQLException: No ManagedConnections available within 
configured blocking timeout ( 3 [ms] ); - nested throwable: 
(javax.resource.ResourceException: No ManagedConnections available within 
configured blocking timeout ( 3 [ms] ))

There is no regular pattern for occurence of these errors. After 3-4 such 
failuers the server goes down. We have tried following modifications  in 
oracle-ds.xml
1) Incresing the min and max connection Pool Size for data source.
 min-pool-size50/min-pool-size
 max-pool-size75/max-pool-size
2) Reduce idle time out from 20 to 10
idle-timeout-minutes10/idle-timeout-minutes

3) Incresing the blocking timeout from default 3 
blocking-timeout-millis5/blocking-timeout-millis

What we have not tried is 
1) Incraesing the therad pool size in server.xml? Will that help??
 
2) Adding minSpareThreads and maxSpareThreads paramtere? Will that help??

Has anyone face the similar problem? 
Is there any other configaration parameter which we are missing??
Is there any specific reason  for this problem??

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938145#3938145

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938145


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How to push data to JMX components?

2006-04-19 Thread ragsta
I like the idea but I've a question about.
Does it work in a clustered evironment?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938146#3938146

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938146


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Few questions on FileCacheLoader

2006-04-19 Thread [EMAIL PROTECTED]
jaikiran wrote : 
  | - Does the location to which the FileCacheLoader stores, need to be cleaned 
out on every application restart?
  | 

Nope.  If you do this you won't be persisting anything! 

jaikiran wrote : 
  | - What happens if the drive is full. Is this taken care of? Looking into 
the code of FileCacheLoader, i believe IOException may occur on disk being 
full, right?
  | 

Yes

jaikiran wrote : 
  | - Can FileCacheLoader be used in a production environment?
  | 

I wouldn't recommend it!  :-)  File systems are inherently bad at dealing with 
concurrency and transactional integrity.  I'd recommend BDBJE.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938147#3938147

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938147


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread mwaschkowski
Sorry Tim, let me summarize.

Basically, I would like to place a bunch of messages onto a queue and then 
process them one by one and, in an alternate reality, write an sql statement 
like:
select * from jms where id=x and processing_status = pending
whenever a user visited a web page just to let them know how far along the job 
was. Of course, JMS doesn't work this way, but this is the idea.

Now, here are my specific implementation details:
1) Going to be putting 100k+ messages onto a queue
2) Going to be putting the 100k+ messages onto the queue in batches of, say, 
1000. Each batch of 1000 is going to be part of a single JMS transaction
3) There are going to be listeners on the queue that will process each of the 
messages from the batches one by one
ie. the listeners on the queue will not be optimized to handle mutliple 
messages at once, the listeners will handle each message individually (and this 
is required, I can't change this)
4) I would like to be able to be able to monitor the overall progress of the 
processing of the 100k+ messages

4 was the problem because JMS doesn't act like a RDBMS and can't quickly give 
me a count of something based on a criteria, at least through the standard JMS 
API, although different implementations could allow for it (through 
optimizations, proprietary means etc.).

Of course, I could just have each of the listeners update the database and 
increment a counter as they process each message. However, I don't really want 
to do this as it takes a lot of processing time for such a fine grained update, 
so thats why I was going along the lines of just updating the counter every 
1000 messages. As well, in the future, the 100k+ messages could turn out to be 
1M+ messages, and when you have multiple clients each running jobs 
simultaneously you will end up with a huge number of database hits just to 
increment a counter! Just doesn't smell right to me...but, I could be confused 
or missing something too.

Any suggestions welcome!

Thanks,

Mark

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938149#3938149

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938149


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Problem publishing messages to a remote Queue

2006-04-19 Thread stevech10
Sorry, I noticed the invoked binding and JMS remote loader did not paste 
correctly, here they are again:

JMS remote loader in jmd-ds.xml:

  mbean code=org.jboss.jms.jndi.JMSProviderLoader
  |  
name=jboss.mq:service=JMSProviderLoader,name=RemoteJMSProvider,server=purple05.ed.ray.com
  | attribute name=ProviderNameQueuehostJMSProvider/attribute
  | attribute 
name=ProviderAdapterClassorg.jboss.jms.jndi.JNDIProviderAdapter/attribute
  | !-- The queue connection factory --
  | attribute name=QueueFactoryRefXAConnectionFactory/attribute
  | !-- The topic factory --
  | attribute name=TopicFactoryRefXAConnectionFactory/attribute
  | !-- Connect to JNDI on the host queuehost port 1099 --
  | attribute name=Properties
  |java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
  |java.naming.factory.url.pkgs=org.jnp.interfaces
  |java.naming.provider.url=purple05.ed.ray.com:1099
  | /attribute
  |   /mbean
  | 


Proxy binding in jboss.xml:

   invoker-proxy-bindings
  |   invoker-proxy-binding
  |  namemy-mdb-invoker/name
  |  invoker-mbeandoes-not-matter/invoker-mbean
  |  
proxy-factoryorg.jboss.ejb.plugins.jms.JMSContainerInvoker/proxy-factory
  |  proxy-factory-config
  | 
JMSProviderAdapterJNDIQueuehostJMSProvider/JMSProviderAdapterJNDI
  | 
ServerSessionPoolFactoryJNDIStdJMSPool/ServerSessionPoolFactoryJNDI
  | MinimumSize1/MinimumSize
  | KeepAliveMillis3/KeepAliveMillis
  | MaximumSize15/MaximumSize
  | MaxMessages1/MaxMessages
  | MDBConfig
  |ReconnectIntervalSec10/ReconnectIntervalSec
  |DLQConfig
  |   DestinationQueuequeue/DLQ/DestinationQueue
  |   MaxTimesRedelivered10/MaxTimesRedelivered
  |   TimeToLive0/TimeToLive
  |/DLQConfig
  | /MDBConfig
  |  /proxy-factory-config
  |   /invoker-proxy-binding
  |/invoker-proxy-bindings
  | 

And here's the initial context lookup:


  | Properties properties = new Properties();
  | properties.put(Context.INITIAL_CONTEXT_FACTORY,
  | org.jnp.interfaces.NamingContextFactory);
  | properties.put(Context.URL_PKG_PREFIXES,
  | org.jboss.naming:org.jnp.interfaces);
  | properties.put(Context.PROVIDER_URL, URL_NAME);
  | jndiContext = new InitialContext(properties);
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938150#3938150

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938150


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: .war classpath issue in 4.0.3SP1

2006-04-19 Thread gbrits
I've got the exact same problem.

Did you solve your problem in the mean time? anf if so, how?

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938153#3938153

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938153


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: TaskAssignment works but findTaskInstances fails

2006-04-19 Thread kukeltje
Saviola,

Thanks, someone who knows how to use searchfunctionality. But. The jbpm 
forum search functionality would have provided this link:

http://www.jboss.com/index.html?module=bbop=viewtopict=73123

Ronald

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938155#3938155

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938155


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Long running conversations and entity managers, a bit co

2006-04-19 Thread andrew.rw.robinson
Thanks as always Gavin. One more question if you don't mind. If I am using this 
method, it begs the question why use session beans at all? POJOs would be 
easier (no interface to maintain). Then the combination would be POJO + EJB3 
entities. This pattern would be easier and yet still use EJB3 instead of 
hibernate for persistence since that is more the standard now.

The question I have, is if an EntityManager can be used with POJOs?

@Name(pojo)
public class POJO {
@In(create=true)
private EntityManager entityManager;

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938157#3938157

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938157


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: How can one find the jboss version that is installed?

2006-04-19 Thread fbiaggi
Hi,

try:


  | Package mainPkg = Package.getPackage( org.jboss );
  |  String v = mainPkg.getImplementationVersion(  );
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938158#3938158

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938158


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread timfox
I agree - updating a db on processing of each message doesn't sound a very 
scaleable solution.

Having a consumer update the db after having processed 1000 messages/sec seems 
somewhat better but I still don't understand why you'd need a special counter 
message to do this - can the consumer not keep count itself?

Another solution would be to send a special progress message to another queue 
when the listener has processed 1000 or 1 messages (or whatever).

You're application could then inspect the progress queue to see the current 
progress. The progress messages could perhaps be non-persistent (depending on 
your application requirements) so not requiring any db hits (unless you have a 
lot of them)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938160#3938160

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938160


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread timfox
On a related note, count functionality is almost always an expensive 
operation - especially in highly scaleable systems.

This is even true for RDMS's, since often counts have to be re-calculated each 
time (often by table scan), since maintaining counters for the table requires 
locking which is a barrier to scalability.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938161#3938161

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938161


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Pb with dvd store

2006-04-19 Thread medjbpm
I don't no what is exectly the problem
i think there are file to configurate
any one know these file ?
thanks


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938163#3938163

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938163


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: selector performance

2006-04-19 Thread mwaschkowski
I agree - updating a db on processing of each message doesn't sound a very 
scaleable solution.
OK, good.

Having a consumer update the db after having processed 1000 messages/sec 
seems somewhat better but I still don't understand why you'd need a special 
counter message to do this - can the consumer not keep count itself?
Well, I'm not sure about that. The consumer will be handling messages from 
various jobs, and messages from different jobs may be posted simultaneously. 
Are you suggesting that the consumer hold state and keep a map along the lines 
of [job id, count] and then when count reaches a certain size, then do a 
counter update? If so, how would the listener know when all the messages for a 
particular job were done? 
ie. the listener (with a threshold of 1000) got to a count of 812 (for example) 
and then there were no more messages...

Another solution would be to send a special progress message to another 
queue when the listener has processed 1000 or 1 messages (or whatever).
Yes, this would be fine and is similiar to a db update.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938165#3938165

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938165


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Server Log

2006-04-19 Thread ScottDawson
The message comes from Hibernate code - the 
org.hibernate.jdbc.ConnectionManager class.  I'm running Portal 2.2.1RC3 with 
JBoss AS 4.0.4RC1 and it's become a DEBUG-level message, not INFO.

There's a post about this on the Hibernate forum but it's not very informative:
http://forums.hibernate.org/viewtopic.php?t=943262view=previoussid=67e6877b1bc0acc5710fe63ccd57f53b

I wonder if the message indicates a minor Hibernate configuration problem.

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938168#3938168

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938168


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: request.getRequestURI() in an include filter

2006-04-19 Thread j2ee_junkie
Adam,

I am not sure how to make you understand the difference.  The API is very clear 
as far as I can tell.  The include description does not mention changing the 
request because it does not change the request.

Maybe if you consider the request/response cycle things will become more clear. 
 When a request is processed, if an forward is called, the request is altered 
to new resource and the response is cleared.  This would be kind of like 
starting the request/response cycle over only keeping any request processing in 
tact.  If an include is called, the request is not changed.  The included 
resource is called using same request object and the output is appended to the 
response.

Does this help? cgriffith

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938169#3938169

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938169


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: Messaging on Oracle

2006-04-19 Thread nm_pereira
Thank you Tim.

 It is  working, but we will install version 1.0.1 as soon as it is available.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938170#3938170

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938170


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Not able to configure roles

2006-04-19 Thread vinodramu
Hi,

Let me explain the problem before I publish my code. I have configured web.xml 
file with the security constrains--I have configures the database structure in 
the way the JBoss JAAS requires--I have configured the login-config.xml file. I 
have problems to login with an user having specific roles. In my web.xml file, 
if I have a specific role as shown in the code below then the user will not be 
able to login. He gets the resource not available error message

auth-constraint 
role-nameadmin/role-name 
/auth-constraint

If I remove the role constrain by setting role-name*/role-name in web.xml 
file then the user is able to get the web page.  

I have been trying to resolve this from past 2 weeks. Could any one of you 
please help me with this issue?

Here are the respective codes

1. Web.xml 

 security-constraint
web-resource-collection 
  web-resource-nameSecure Content/web-resource-name 
  url-pattern/jsf/*/url-pattern 
 /web-resource-collection 
 auth-constraint 
  role-nameadmin/role-name 
 /auth-constraint
 /security-constraint 

 login-config
  auth-methodFORM/auth-method
  form-login-config
form-login-page/logon.faces/form-login-page
form-error-page/error.faces/form-error-page
  /form-login-config
 /login-config

 security-role 
The role required to access restricted content 
role-nameadmin/role-name 
 /security-role

2. login-config.xml 

application-policy name=sam
   
   login-module 
code=org.jboss.security.auth.spi.DatabaseServerLoginModule flag=required
module-option name=dsJndiNamejava:ds/sam/module-option
module-option name=principalsQueryselect password from users where 
username=?/module-option
module-option name=rolesQueryselect Role, RoleGroup from Roles 
where username=?/module-option
/login-module

/application-policy

3. Database tables.

CREATE TABLE users (
  username  varchar(64) default NULL,
  password  varchar(64) default NULL
) ;

INSERT INTO users (username, password) VALUES ('admin','admin');

CREATE TABLE Roles (
  username varchar(64) NOT NULL,
  Role   varchar(32) NOT NULL,
  RoleGroupvarchar(32) NOT NULL  
);

INSERT INTO Roles (username, Role, RoleGroup) VALUES ('admin','admin', 'admin');

4. Jboss verion is jboss-4.0.3SP1, Database is PostgresSQL8.1

Please let me know if there are any details that I have missed out. 

Thank you,
VinodRamu


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938171#3938171

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938171


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: How to push data to JMX components?

2006-04-19 Thread [EMAIL PROTECTED]
Clustering has nothing to do with this, or I don't get you?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938173#3938173

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938173


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Parameter names in woven class changed from original to 'in[

2006-04-19 Thread nthx

Hi there!

Normally compiled class contain information about original parameter names of 
all methods. When woven with [aopc], those names are lost. 
They're replaced with something like 'in[0-9]'.

What is interesting it only happens for simple Long, String (etc..) types. 
Parameters of custom classes' parameters are left unchanged.

That was not a problem for us before. But since we use Axis for automatic wsdl 
generation, it happens that instead of 'Long objectId' .NET guys see 'Long in1'.
The former is more intuitive.

Is there any way to left the names unchanged?

Thanks -- Tomasz



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938174#3938174

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938174


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jbPM and WebLogic

2006-04-19 Thread kukeltje
out of the box? If so, that would be a great entry for the wiki. Or if there 
are some special steps (other than e.g. the tomcat library issues, we'd 
appreciate it very much if you could add a wiki entry for this.

Ronald

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938175#3938175

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938175


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: website discrepancies

2006-04-19 Thread kukeltje
It will be. The restructuring in general takes a little more time than 
expected. Thanks for reminding us anyway.

Ronald

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938176#3938176

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938176


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Linux virutal server and servlet not responding

2006-04-19 Thread dbufarini
Hi all,
I've just finished to set up a jboss cluster, which is composed of two nodes 
behind a linux virtual server machine which is redirecting the incoming calls 
(port 80) to the two jboss nodes (port 8080). The linux virtual server is 
configured with a round robin police.
The jboss console works very well with this configuration, but not my 
application: When I try to invoke a servlet, the resulting page I get is empty. 
If I call a non existing servlet name, I get the usual error The requested 
resource (/aw/servlet/FOO) is not available.
I'm using jboss 4.0.1sp1 with jdk 1.5.0_06 under Fedora Core 4.
Any suggestions?
Thank you!

Daniele

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938178#3938178

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938178


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: BMC/Remedy AR System and jBPM

2006-04-19 Thread kukeltje
ahh... ok... 'actions' in this sense. This could be solved with combining jsf 
with your own backingbeans in combination with jBPM (or look at seam, another 
jboss project)

I'm in the process of creating a web example that uses pageflow with jbpm with 
own backingbeans etc, without the dependency on seam or maybe even the jbpm 
form file (which will be in 3.2)

Maybe we could take a small ARS example... any suggestions?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938179#3938179

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938179


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Server Log

2006-04-19 Thread ScottDawson
Here's the Hibernate code (release 3.1.2) from 
org.hibernate.jdbc.ConnectionManager.  It looks like maybe the message is just 
informational because the aggressiveRelease method closes the JDBC Connection.


  | /**
  |  * To be called after execution of each JDBC statement.  Used to
  |  * conditionally release the JDBC connection aggressively if
  |  * the configured release mode indicates.
  |  */
  | public void afterStatement() {
  | if ( isAggressiveRelease() ) {
  | if ( batcher.hasOpenResources() ) {
  | log.debug( skipping aggresive-release due to open 
resources on batcher );
  | }
  | else if ( borrowedConnection != null ) {
  | log.debug( skipping aggresive-release due to borrowed 
connection );
  | }
  | else {
  | aggressiveRelease();
  | }
  | }
  | }
  | 

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938180#3938180

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938180


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: what is behind the scene ?

2006-04-19 Thread kukeltje
1: in the database
2: this is default implemented in the taskbean that comes with the webapp
3: if you call them from your process. Remember, they are just example files. 
You could delete them if not needed
4: Look at the taskbean. (learn a little how jsf works, just the externals)
5: look at the homebean and taskbean. You can learn a lot from there

Ronald

Remember, the source is your friend

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938181#3938181

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938181


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Long running conversations and entity managers, a bit co

2006-04-19 Thread [EMAIL PROTECTED]
Well, in the last operatipon of the conversation, you *do* need a txn, in order 
to flush the pc inside a tx.

So you are going to have one method where you want a declarative txn.

Also, I am kindof a fan of ejb method-level security.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938183#3938183

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938183


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Problem with JBoss 404cr2 and EJB3rc6

2006-04-19 Thread HenkoMannen
Hi,

I'm in the middle of the process of migrating from JBoss 403sp1 with EJB3rc3 to 
JBoss 404cr2 with EJB3rc6 and I'm having problems.

When deploying my .ear package (containing an application.xml file in the 
META-INF directory pointing out one jar containing session beans and two other 
jars containing entity beans) the following exception is thrown:


  | 16:18:32,021 INFO  [EARDeployer] Init J2EE application: 
file:/opt/UMC/jboss/server/all/deploy/axessity.ear
  | 16:18:34,725 INFO  [Ejb3Deployment] EJB3 deployment time took: 1035
  | 16:18:34,924 INFO  [Ejb3Deployment] EJB3 deployment time took: 179
  | 16:18:35,106 INFO  [Ejb3Deployment] EJB3 deployment time took: 162
  | 16:18:35,444 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=RegisterBean,service=EJB3
  | 16:18:35,445 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=RegisterBean,service=EJB3
  | 16:18:35,445 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=UserBean,service=EJB3
  | 16:18:35,446 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=UserBean,service=EJB3
  | 16:18:35,446 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=AxessityConfigBean,service=EJB3
  | 16:18:35,447 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=AxessityConfigBean,service=EJB3
  | 16:18:35,447 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=CompanyBean,service=EJB3
  | 16:18:35,447 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=CompanyBean,service=EJB3
  | 16:18:35,448 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=IspCustomerBean,service=EJB3
  | 16:18:35,448 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=IspCustomerBean,service=EJB3
  | 16:18:35,449 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=PersonBean,service=EJB3
  | 16:18:35,450 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=PersonBean,service=EJB3
  | 16:18:35,450 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=PlugBean,service=EJB3
  | 16:18:35,450 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=PlugBean,service=EJB3
  | 16:18:35,451 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=RegisterEquipmentBean,service=EJB3
  | 16:18:35,451 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=RegisterEquipmentBean,service=EJB3
  | 16:18:35,452 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=ServiceBean,service=EJB3
  | 16:18:35,452 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=ServiceBean,service=EJB3
  | 16:18:35,452 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=SubscriberBean,service=EJB3
  | 16:18:35,453 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=SubscriberBean,service=EJB3
  | 16:18:35,453 WARN  [ServiceController] Ignoring request to stop nonexistent 
service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=UserUtilsBean,service=EJB3
  | 16:18:35,454 WARN  [ServiceController] Ignoring request to destroy 
nonexistent service: 
jboss.j2ee:ear=axessity.ear,jar=axessity-beans.jar,name=UserUtilsBean,service=EJB3
  | 16:18:35,715 WARN  [ServiceController] Problem starting service 
jboss.j2ee:service=EJB3,module=axessity-beans.jar
  | java.lang.TypeNotPresentException: Type javax.ejb.PostConstruct not present
  | at 
sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:98)
  | at 
sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:107)
  | at 

[JBoss-user] [JBoss jBPM] - Re: Start Node with node-enter Action

2006-04-19 Thread kukeltje
1: work has been done on this, but it was to complex to maintain in the xsd. It 
could be that it is in the ide itself to, then I agree that it should be fixed

2: I am thinking of extending the 'start process' method to pass it a map of 
variables so that it can be passed on when the process starts.

Ronald

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938186#3938186

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938186


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - EJB3 RC5- RC6 - Cannot deploy

2006-04-19 Thread gmichalk
Hi,

conf is: jboss 4.0.3SP1+EJB3 RC6

since I changed from RC5 to RC6, i am not able to deploy an EJB3 SLSB anymore:

I always get this message when trying to deploy:

java.lang.NoSuchMethodError: 
org.jboss.xb.binding.UnmarshallerFactory.setFeature(Ljava/lang/String;Ljava/lang/Object;)V

16:53:00,098 WARN  [ServiceController] Problem creating service 
jboss.j2ee:service=EJB3,module=Toto01-EJBModule.jar
java.lang.NoSuchMethodError: 
org.jboss.xb.binding.UnmarshallerFactory.setFeature(Ljava/lang/String;Ljava/lang/Object;)V
at 
org.jboss.ejb3.Ejb3DescriptorHandler.parseDescriptors(Ejb3DescriptorHandler.java:551)
at 
org.jboss.ejb3.Ejb3HandlerFactory$DDFactory.(Ejb3HandlerFactory.java:42)
at 
org.jboss.ejb3.Ejb3HandlerFactory.getInstance(Ejb3HandlerFactory.java:79)
at org.jboss.ejb3.Ejb3Deployment.deploy(Ejb3Deployment.java:505)
at org.jboss.ejb3.Ejb3Deployment.create(Ejb3Deployment.java:461)
at org.jboss.ejb3.Ejb3Module.createService(Ejb3Module.java:125)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:245)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:228)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:943)
at $Proxy0.create(Unknown Source)
at org.jboss.system.ServiceController.create(ServiceController.java:341)
at org.jboss.system.ServiceController.create(ServiceController.java:284)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy27.create(Unknown Source)
at org.jboss.ejb3.EJB3Deployer.create(EJB3Deployer.java:365)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
at 
org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
at $Proxy28.create(Unknown Source)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:935)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:925)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:789)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:753)
at sun.reflect.GeneratedMethodAccessor17.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
at 

[JBoss-user] [JBossWS] - Re: jboss4.0.4.CR2 with old ws14 stuff?

2006-04-19 Thread dennisj
ok, better - I went back to the wiki and release notes just to make sure I am 
not a complete idiot, and the way I read this:

In JBoss 4.0.4 we switched the J2EE web services stack from our Axis based 
version...

(http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWS404Compatibility)

and, this from the release notes:
JBoss webservices updated to the new JBossWS stack

There is nothing about selecting ejb3 profile, I would suggest the docs need to 
make this a bit more clear.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938188#3938188

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938188


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: TaskAssignment works but findTaskInstances fails

2006-04-19 Thread Saviola
Hi, kukeltje!
This exactly was the document that I was talking about.
The jBPM forum was the last place where I would have searched for since the 
answer is quite technical oriented and concerning hibernate.
Anyway, thank you for the reminder and the advice!

Saviola

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938189#3938189

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938189


---
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 Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   >