[jboss-user] [EJB 3.0] - Re: Accessing EJB3 without a home interface

2008-07-14 Thread ALRubinger
nbhatia wrote : 1) Is this JNDI name 
(helloworldejb3-app-1.0/HelloWorldBean/remote) implementation specific? Is 
there any way to give it a more user friendly JNDI name, such as HelloWorld?

@RemoteBinding / @LocalBinding / @RemoteHomeBinding / @LocalHomeBinding are 
JBos-specific annotations to accomplish just that.  Also see jboss.xml 
equivalents.

nbhatia wrote : 2) Is there a nicer way to get a reference to the EJB in the 
client? As you can see, I am explicitly creating a context and using it to look 
us the bean. Can @EJB or @Resource annotations be used on the remote client to 
lookup the EJB or the Context?

Take a look at Java EE 5 Application Clients.

S,
ALR

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164144
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Bug in jpdl 3.2.3 using beanshell expression (not in 3.2

2008-07-14 Thread jbarrez
Ronald, thanks for taking a look! These are my remarks:

- Including jbpm.cfg.xml indeed fixed the test (I tried it before posting, I 
speak stacktrace ;-). The problem however is that the configuration file in my 
application isn't named 'jbpm.cfg.xml' ...

- Strangely I thought that it was bsh related. However, as you point out 
Ronald, it simply fails in every case.

So, I do think this is a bug. You think it's worth a Jira issue?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164149
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Using Seam to reference JBPM variables from JSF. Possible ?

2008-07-14 Thread fmarchioni
Hi all !
I have developed a web application which uses JSF to display a Tasklist created 
with jBPM.
I use in the main window a Datatable to display on every row the Task Name and 
all variables which I have added to the Task (via executionContext.addVariable).
I'd like to know: is there a way to reference in JSF the Task variable directly 
using Seam ?
Otherwise I have to create java Bean to host this variables and feed them to 
JSFbad tight coupling !!!
Has anybody got an example abotu it ?
thanks a lot
Francesco


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164147
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Bug in jpdl 3.2.3 using beanshell expression (not in 3.2

2008-07-14 Thread kukeltje
it surely is a regression in behaviour. Might be that the default.cfg.xml is 
not looked up correctly or that passing a name of your own config file does not 
work. Either way, file a jira issue. We can always add details later there.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164150
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM on GlassFish - HTTP status 500

2008-07-14 Thread kukeltje
the examples are certainly not incompatible, they are just plain jbpm workflow 
processes. Might be that there are some a4j issues (used in the jbpm4jsf tags). 
No idea what the errors mean

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164151
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Deploy the jBPM 3.2.3 JBoss 4.2 / 4.3

2008-07-14 Thread kukeltje
tnx

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164152
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Redirect the user to a page when entering a node

2008-07-14 Thread coolex
Hello!

I'm looking for a way to redirect my users to s specific page (e.g. index.html) 
when they are entering a node of a process. Maybe there is a java command I can 
use in a node action to solve the problem.

Thanks in advance.
Alex

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164153
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Using Seam to reference JBPM variables from JSF. Possibl

2008-07-14 Thread kukeltje
Francesco,

Seam uses a number of different variable resolvers. I thought there already was 
a jBPM resolver. Could be though that it only works in the scope of a task. If 
you are on a task list, you are not in the scope of an individual task. 

Some remarks:
- I would not display all taskvariables on that task list. Will become very 
slow (to many queries to the db)
- put as little variables as possible in the task or even the process. Put as 
many as possible in your domain model
- just show someprocess-level info in the tasklist e.g. the businesskey (key on 
the processlevel

In this case you do not need the resolver you are talking about

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164154
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Error 8. Lost connection to server

2008-07-14 Thread BenitoJuarez
Hello,

in my application i perform several queries to an odbc database. After 10 or 11 
queries, i get the Error 8. Lost connection to server and jboss restarts. If 
i do the same in an java desktop application, it works. 
I've no idea, what the error means or how to solve it.

thx for help
BJ

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164155
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - How could an aplication decide if it should be deployed or n

2008-07-14 Thread controlcho
  I'm using JBoss 4.2.2 and I'd like to know if there is a way for the 
application to decide if it should be deployed or not. 
  What I want to do is prevent the SysAdmin from deploying application archives 
that haven't been signed beforehand. So obviously the code that makes the 
decision should be in the signed ear file or it could be turned off. 
  I'd appreciate any thoughts on the subject. 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164158
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Annotation @TransactionTimeout not honoured for asynchronous

2008-07-14 Thread pdhaigh
Hi,

I have found that if I have method that requires a longer transaction timeout, 
I can use

  | @TransactionTimeout(1500)

Unless the method is scheduled using the EJB timer service:

async:timer-service-dispatcher/

, in which instance the timout modifier appears to simply be ignored.

Is this a known limitation? I am using Seam.

I posted this on the Seam forum, and was referrered here. (posting on seam 
forum 
http://www.seamframework.org/Community/AnnotationTransactionTimeoutNotHonouredForAsynchronousMethodUsingEjbTimerService)

cheers

phil


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164159
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - EJB timers ignoring start date

2008-07-14 Thread pdhaigh
Hi,

I am using the EJB timer scheduler for some recurring tasks in my application. 
There are 3 of them, designed to run overnight, every night (i.e. every 
24hours).

All works well when I deploy the application, and on subsequent deployments. 
However, when I restart JBoss, the timers run every 24 hours after the RESTART, 
rather than the proper scheduled time.

My timer table looks like:

select TIMERID, TARGETID, INITIALDATE, TIMERINTERVAL from TIMERS;
  | 
+---+---+-+---+
  | | TIMERID   | TARGETID  
| INITIALDATE | 
TIMERINTERVAL |
  | 
+---+---+-+---+
  | | 1215864788521 | 
[target=jboss.j2ee:service=EJB3,ear=wildfrontiers.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher]
 | 2008-07-09 02:00:06 |  8640 | 
  | | 1215864788522 | 
[target=jboss.j2ee:service=EJB3,ear=wildfrontiers.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher]
 | 2008-07-09 01:05:06 |  8640 | 
  | | 1215864788523 | 
[target=jboss.j2ee:service=EJB3,ear=wildfrontiers.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher]
 | 2008-07-09 01:00:06 |  8640 | 
  | 
+---+---+-+---+
  | 
So, it I restart JBoss at 6pm, July 12th, the tasks will next run at 6pm July 
13th, rather than the expected 1am, 1.05am and 2am 13th July.

Any help would be gratefully received!

cheers

phil 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164160
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Using Seam to reference JBPM variables from JSF. Possibl

2008-07-14 Thread fmarchioni
Hi Ronald,
thanks for your quick reply.
If I understand correctly your suggestion: an idea could be to remove variables 
from the Process and persist them in a table. Then back the table with an 
Entity Bean which could be easily referenced by Seam resolvers.
So I would use the Process Id to reference data in a table and keep the process 
light.
Your suggestions are always valuable, thanks !
Francesco

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164161
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Missing jboss-seam.jar on deploy of EAR app.

2008-07-14 Thread kot.filemon
[EMAIL PROTECTED] wrote : upgrade what ? Are you saying there still is a bug 
? Please report that in jira with steps to reproduce then - thanks ;)

here you are

http://jira.jboss.org/jira/browse/JBIDE-2512

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164162
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - My experience to promote jBPM on a large scale project

2008-07-14 Thread fmarchioni
Dear all,
sorry for pestering so much the forum today :-)
Not talking about bugs but I'd like to share commercial thoughts about jBPM. 
I have completed an analysis for re-engineering a BPM application which is 
using the old Oracle Workflow tool.

Though I have been able to explain to the management that jBPM is a layer to 
your processes written in Java which makes it quite flexible, scalable, easy to 
integrate with a mix of systems via the Service Bus etc. etc. critics came 
about the graphical interface of jBPM-plugin which is poor.

The Java 2D graphics isn't much exciting and it's not easy to draw very large 
processes with the Eclipse plugin, worse then all, all the Nodes are drawn with 
the same square icon while on huge workflows every kind of node has a different 
 icon and that's important because the User can understand much better the 
workflow when the icons are comprensive and clear.

Ok, you can use every kind of editor to draw your process and let the developer 
translate into into jPDL's XML.

Ok but at runtime ? ok do you show your workflow using the same graphics ? and 
most important you should be able to interact with the workflow for example 
clicking on Nodes you might get info / unlock a Node etc.

I have suggested to invest a little of the budget on creating a plugin (written 
in Flash since they like silly nice-looking gadgets :-) ) that draws an 
interactive client for the Workflow, based on the jPDL and the Process runtime 
data.

Yet the management is not quite convinced about jBPM and honestly speaking some 
critics about the graphical interface I think are true, or at least appear true 
for the basic user.

What do you think about it ?
Thanks for your time
Francesco




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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164165
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Problem with JBoss AS 5.0.0CR1

2008-07-14 Thread baz
Hello Max,
please take a look at 
http://www.jboss.com/index.html?module=bbop=viewtopict=138587

The problem seems to solved by the JBoss AS5 guys. 

After downloading a nightly build (from 9.07.2008) the deployment works.
But i ran into a jsf bug. The nightly contains jsf 1.2_08 which is known to NOT 
work well with richfaces. So i can not test further until this is solved.

Ciao,
Carsten

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164170
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: RMI Dynamic Classloading

2008-07-14 Thread dubacher
Hi there.

Unfortunately nobody replied to my initial post. With this post I would like to 
precise my initial post, hoping that somebody can help me:

My setup:
I have a JBoss (version 4.2.2) to which a war-file is deployed. The war-file 
contains a ServletContextListener which registers a ServerAccessService class 
in JNDI on startup. The ServerAccessService class extends from 
UnicastRemoteObject. So methods defined on ServerAccessService are accessible 
via RMI from remote clients. So far so good...

What do I want to do?
Let's assume ServerAccessService provides a method public Foo getFoo (int 
id). This method will return an instance of FooImpl which implements Foo. On 
the remote client I would like to deploy the Foo interface only (and not the 
class FooImpl). As RMI provides the feature of dynamic class loading it should 
be possible that FooImpl is loaded from the server as soon as an instance of 
FooImpl is transmitted to the client. So to wrap it up: When the remote client 
calls getFoo(..) it will get an instance of FooImpl which class should be 
dynamically loaded from the server.

The problem:
It doesn't work out!!! The configuration of the WebService in JBoss is as far 
as I know correct. WebService is running on port 8083; I  also tried to load 
the class with the tomcat server running on 8080; the system property 
java.rmi.server.codebase is set etc.

So now to my investigations:
When the FooImpl class is transmitted to the client, a codebase property is 
sent along with the instance (The codebase is finally used on the client as a 
hint where to load the class from). But different from the classes like 
ArrayList etc. the codebase of FooImpl is not something like 
http://myserver:8083; or http://myserver:8080; but something like 
file:/... So why that? The reason are ClassLoaders... obviously. 
When annotating the instances transmitted back to the client with the codebase, 
something like the following stack trace shows is executed:

Daemon System Thread [RMI TCP Connection(6)-10.130.202.179] (Suspended)  
LoaderHandler.getClassAnnotation(Class) 
line: 174  RMIClassLoader$2.getClassAnnotation(Class?) 
line: 639  JBossRMIClassLoader.getClassAnnotation(Class) line: 112  
RMIClassLoader.getClassAnnotation(Class?) 
line: 364  
ConnectionOutputStream(MarshalOutputStream).annotateClass(Class?) 
line: 75  
ConnectionOutputStream(ObjectOutputStream).writeNonProxyDesc(ObjectStreamClass, 
boolean) 
line: 1250  
ConnectionOutputStream(ObjectOutputStream).writeClassDesc(ObjectStreamClass, 
boolean) 
line: 1203  
ConnectionOutputStream(ObjectOutputStream).writeOrdinaryObject(Object, 
ObjectStreamClass, boolean) 
line: 1387  ConnectionOutputStream(ObjectOutputStream).writeObject0(Object, 
boolean) 
line: 1150  ConnectionOutputStream(ObjectOutputStream).writeObject(Object) 
line: 326  UnicastRef.marshalValue(Class?, Object, ObjectOutput) line: 
274  UnicastServerRef.dispatch(Remote, RemoteCall) 
line: 315  


Ok. So far so good. Classes like ArrayList are loaded initially loaded by 
SystemClassLoaders but the class FooImpl is loaded by theWebAppClassLoader 
(yes you are the author of this class :-)). In the class LoaderHandler the 
SystemClassLoader are registered to return the defined codebase (i.e. the one 
defined with java.rmi.server.codebase) when the method getClassAnnotation is 
called. The WebAppClassLoader however doesn't belong to this list. That's why 
the LoaderHandler will return as codebase the URLs returned by the method 
WebAppClassLoader(URLClassLoader).getURLs. This is obviously something like 
file:/

So the client gets a instance of FooImpl and its classes codebase is something 
like file:/. Obviously it cannot find the class FooImpl on the local file 
system as it has not been deployed  ClassNotFoundException is final result.


The question now: How do I solve this problem?
- Do I need to configure my app differently so that the LoaderHandler will 
return the codebase defined by java.rmi.server.codebase for the 
WebAppClassLoader as well?
- Is dynamic class loading not intended to be used with applications deployed 
as war?
- ...? 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164171
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM on GlassFish - HTTP status 500

2008-07-14 Thread naruszef
Hmm... I found where the problem is...

Now I can start and menage processess in jbpm-console...

The problem are some tags in jbpm-console xhtml files - errors occur in lines 
with  tag. Now i'm trying comment this lines - it helps... But what is bad in 
this tag?


Thanks for all help and Regards

jakub naruszewicz

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164173
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: does this design make sense?

2008-07-14 Thread twiceknightly
It should be plugable though, right ?  I have my own version of the persistence 
stuff although I'm not sure that includes the service class.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164176
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - what are the Codecs used in mobicents-all-1.2.0.BETA3'S JbOS

2008-07-14 Thread arpitkukreti
Dear All,
Can any one please let me know in mobicents-all-1.2.0.BETA3's jboss-4.2.2.GA 
server what are the codecs is been used for encoding/decoding 
,compression/decompression, coder/decoder please help in this issue 


Thanks Regards 
Arpit kukreti 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164178
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - richfaces scrollableDatatable header problem

2008-07-14 Thread nat.mohan
ii am new to JSF.i have created richfaces scrollabledatatable component.header 
is not visible
when i am setting valiues to table.

so pls tell solution for this problem.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164179
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: NPE deploying web services in service archive in CR1 rel

2008-07-14 Thread jhalliday
This is critical for the next JBossTS release. I'd really like to see it fixed 
in 3.0.3, not 3.0.4. Please consider rescheduling 
http://jira.jboss.com/jira/browse/JBWS-2246

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164186
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Determining taken transition on completed task instances

2008-07-14 Thread westdwestd
Hi,

I have a requirement to display a list of the previous task instances on the 
current task page for a process instance.

I am fetching the list of task instances using 
taskInstance.getTaskMgmtInstance().getTaskInstances() and checking whether each 
task is ended to get a list of the completed tasks.

Is there a way to determine which transition was taken for each completed task 
instance?

Thanks

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164188
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] Delivery Failure

2008-07-14 Thread Postmaster

-
The message you sent to ihorizons.net/garrison was rejected because it would 
exceed the quota for the mailbox.

The subject of the message follows: 
Subject: 
=?windows-1251?B?Mu7uOCDjLiAtIM7v8ujs6Ofg9uj/IO3g6+7j7uIg0PPq7uLu5Ojy5Q==?=


-

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


[jboss-user] [Installation, Configuration DEPLOYMENT] - Can not publish because...

2008-07-14 Thread RahulRocks
I am using jboss-4.2.2.GA server and JBoss Tools in Eclipse. I had deployed a 
EJB project and removed a project from eclipse workspace. After deleting the 
project, whenever I start JBoss server it gives the following error:

Error:

Can not publish because module EJBWebProject is closed or deleted

How to solve this problem? . I have googled and didn't got any right solution 
yet.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164191
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JCA/JBoss] - Re: one data source with multiple database users

2008-07-14 Thread diemon
The problem was in establishing database connections with different credentials 
in Seam components. I solved the problem in a very simple way. I've used 
hibernate configuration option hibernate.connection.provider_class where in 
getConnection method one can simply return new connection from data source with 
any username/password.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164194
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: deploying jboss with eclipse and mysql

2008-07-14 Thread celle2006
Hi flamant!

The file your searching for is mysql-ds.xml. The file is located in folder: 
../jboss/server/default(configurationName)/deploy.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164196
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Determining taken transition on completed task instances

2008-07-14 Thread jbarrez
Afaik, the straightforward way to do this is by querying the JBPM_LOG.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164198
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Redirect the user to a page when entering a node

2008-07-14 Thread jbarrez
This depends on 2 things:
1) Which is the GUI technology
2) How is jbpm used: workflow/pageflow/...

?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164199
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: Logs not appearing

2008-07-14 Thread prateek_n
That solved it. Thanks

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164200
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] Delivery Failure

2008-07-14 Thread Postmaster

-
The message you sent to m5/Postmaster was rejected because it would exceed the 
quota for the mailbox.

The subject of the message follows: 
Subject: 
=?windows-1251?B?Mu7uOOMuIC0gzu/y6Ozo5+D26P8g7eDr7uPu4iDk6/8g0PPq7uLu5A==?=


-

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


[jboss-user] [Security JAAS/JBoss] - Client IP in LoginModule

2008-07-14 Thread prateek_n
I have the same login-module for ejb/web layer. 
I want to retrieve the clientIP in the login module. 

Is there anyway to do it ? 
I used the PolicyContext to retrieve it when the request type is http. 

Object request = 
PolicyContext.getContext(javax.servlet.http.HttpServletRequest);
remoteIP = ((javax.servlet.http.HttpServletRequest)request)
   .getRemoteHost();
  
Is there anyway to get it when the call is for a ejb ?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164201
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: How to deploy an Application on a Remote Server

2008-07-14 Thread priyarao234
Hi Peter,
ThnkQ for your reply... Actually my problem is I have an ear file in my 
local machine.. and how to copy that in server/xxx/deploy directory... can u 
write the steps.

Regards,
Prriya.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164211
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: ServletContextListener -DataSource File

2008-07-14 Thread AlexPandiyan
One more refering Datasource file
code belowsin project folder/ build.xml file
jboss Version=4.0  
  |
datasource=java:/MyDataSourceMct1DS  
  |datasourceMapping=MS SQLSERVER2000 
 
  |
preferredRelationMapping=foreign-key  
  |createTable=false  
  |removeTable=false  
  |destDir=EJB/META-INF 
  | /jboss
  | valueobject/valueobject
  | 
  | 
  | /ejbdoclet
  |   /target
  | 
  | !-- Xdoclet Generation Ends --
  | 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164215
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache: Core Edition] - Re: Problem with transaction (jbossts) configuration in Tomc

2008-07-14 Thread [EMAIL PROTECTED]
Why do you need a transaction manager then (if you are not using crash recovery 
or a database)?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164216
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache: Core Edition] - Re: JDBCCacheLoader Problem

2008-07-14 Thread [EMAIL PROTECTED]
Hang on, I'm confused - so you don't use Hibernate and you don't make direct 
JDBC calls, am I correct?  You just want to use the JDBCCacheLoader?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164217
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache: Core Edition] - Re: Failure Detection when group coordinator dies

2008-07-14 Thread [EMAIL PROTECTED]
Have you tried using both?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164218
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: My experience to promote jBPM on a large scale project

2008-07-14 Thread salaboy21
I'm agree with you with some thoughts ... but remember that jBPM is not an End 
User Product.. I think right now is only a framework for developers... thats 
why we have this plug in to eclipse that is also developer tool...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164222
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: VPE Source tab gone in 2.1.0?

2008-07-14 Thread jstockton
Can one of the options in the userpreferences be to always hide the preview 
pane? Though I guess if fixed as you intended then this would happen 
automatically after hiding the first one.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164224
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache: Core Edition] - Re: Problem with transaction (jbossts) configuration in Tomc

2008-07-14 Thread jreeman
First, thx for your response.

I planned to use it only to manage in-memory locks but I realized after that I 
don't need a transaction manager to do that.

As a confirmation, I have read here 
http://www.jboss.com/index.html?module=bbop=viewtopict=138918 your message :

anonymous wrote : Isolation level applies to in-memory locking as well so it is 
relevant even if you are not using a TM. 

do this mean this attribute :

attribute name=IsolationLevelREAD_COMMITTED/attribute
  | 

would be taken into consideration by jboss cache for in memory cache even if 
there is no transaction manager ?



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164227
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Invalid user after successful login

2008-07-14 Thread kgoedert
Hi,

I created a custom login module to use in a ejb3 application. When I call login 
on my LoginContext the login is successful. But when I try to lookup a bean I 
get EJBAccessException invalid user.

Can anyone help?

Thanks

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164230
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - how to use Decision nodes??????

2008-07-14 Thread minam97531
I am newbie. i want to use decision node but i have some problems. first i 
tried one of the process definition examples 
(../jbpm-web/WEB-INF/definitions/websale_defintion) to see how it works but 
when i make new instance of websale, in check-for-another-web-order task, if 
i select either yes or no,i get the following error:

Entering node evaluate-another-web-order
ERROR [com.liferay.jbpm.WorkflowComponentImpl] Task has already ended

i thought maybe other ways could help me. so i tried this process definition:

?xml version=1.0 encoding=UTF-8?
process-definition
xmlns=urn:jbpm.org:jpdl-3.1
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xsi:schemaLocation=urn:jbpm.org:jpdl-3.1 
urn:jbpm.org/xsd/jpdl-3.1.xsd name=mytest
!--  Event Logging -- 

System.out.println(Entering node  + node.getName()); 


System.out.println(Leaving node  + node.getName()); 

!-- Swimlane --

start-state name=start


 



/start-state



variable name=aName mapped-name=mappedName/
executionContext.setVariable(mappedName, 7);












task-node name=task1


 
 


 
/task-node
task-node name=task2


 


 
/task-node
end-state name=end/end-state
/process-definition

i searched and i saw that someone use this definition. i made some changes and 
i tried it but i get:

Leaving node start
Entering node decision1
Leaving node decision1
Entering node task2

and then nothing. there isn't any task2 to be managed by swimlane buyer!
i don't know what is the problem!

could anyone help me and tell me how to use decision nodes??
i just wanted to see if i could use decision nodes in my definition process but 
now i am not sure that if it works properly.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164226
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: how to change Portlet Preferences

2008-07-14 Thread lampard
I defined a value at the portlet instance level but the preference doesn't 
change, it reflects the value declared in portlet.xml !

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164236
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: Sporadic failure to commit

2008-07-14 Thread ydzsidemiik
I know I'm stretching a bit here, but I can't convince my handlers to buy a 
support contract. If I was a high-powered contractor I'd have shelled out for 
my own by now, but I'm just a lowly junior developer. This application is my 
responsibility and I want it to work well. I have the resources I've been 
given, such as they are.

I'm basically begging for a bone. I genuinely don't think my own application is 
the cause of these issues, but I will openly entertain suggestions to the 
contrary, along with any other insight at all. I'm not asking anyone to debug 
my code. Just give me a clue; I promise to submit patches if any result.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164239
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: how to change Portlet Preferences

2008-07-14 Thread [EMAIL PROTECTED]
If you use XML descriptors, make sure that you used true see the reference guide

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164240
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Security JAAS/JBoss] - SSO config help?

2008-07-14 Thread bezdomny
I'm running blades that run jboss-eap-4.3 with mod_jk load balancing the 
servers. 

I'm using JAAS for authentication and I'd like to be able to authenticate on 
the primary server and have that authentication propagate to the other jboss 
instance if one of the servers goes down and jk moves the user to the other 
server. 
I have configured clustering with TCP and both blades seem to see each other in 
the cluster. 

The issue I'm seeing now is that when I authenticate sucessfully I can do what 
I need to do. When I kill that jboss instance, I'm properly routed to the other 
app server by mod_jk, but I have to re-log into the app. 

Can anyone give me any hints as to how to make this work. 

Thanks!

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164241
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: how to use Decision nodes??????

2008-07-14 Thread minam97531
oops, sorry! here's the code:


  | ?xml version=1.0 encoding=UTF-8?
  | process-definition
  | xmlns=urn:jbpm.org:jpdl-3.1
  | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  | xsi:schemaLocation=urn:jbpm.org:jpdl-3.1 
urn:jbpm.org/xsd/jpdl-3.1.xsd name=mytest
  | !--  Event Logging -- 
  | event type=node-enter
  | scriptSystem.out.println(Entering node  + node.getName());/script 
  | /event
  | event type=node-leave
  | scriptSystem.out.println(Leaving node  + node.getName());/script 
  |   /event
  | !--Swimlane--
  | swimlane name=buyer /
  | start-state name=start
  | task swimlane=user
  | controller
  | variable name=textarea:comments / 
  | /controller
  | /task
  | transition name=ok to=state1/transition
  | /start-state
  | state name=state1
  | event type=node-leave
  | script
  | variable name=aName mapped-name=mappedName/
  | expressionexecutionContext.setVariable(mappedName, 7);/expression
  | /script
  | /event
  | transition name= to=decision1/transition
  | /state
  | decision name=decision1
  | transition name=tr1 to=task1
  | condition expression=#{contextInstance.variables.mappedName le 5}/
  | /transition
  | transition name=tr2 to=task2
  | condition expression=#{contextInstance.variables.mappedName ge 5}/
  | /transition
  | /decision
  | task-node name=task1
  | task swimlane=buyer
  | controller
  | variable name=text:name access=read,write,required / 
  | variable name=number:tel access=read,write,required / 
  | /controller
  | /task
  | transition name=finish to=end / 
  | /task-node
  | task-node name=task2
  | task swimlane=buyer
  | controller
  | variable name=textarea:address access=read,write,required / 
  | /controller
  | /task
  | transition name=submit to=end / 
  | /task-node
  | end-state name=end/end-state
  | /process-definition
  | 

and i forgot to say i appreciate any help!
thanks! 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164243
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Stopping Jboss Server and Full Publish or Incremental Pu

2008-07-14 Thread Aaragus
Hey,

Thanks for the reply!!  When you say properly shuts down the server, what's the 
difference between killing it and shutting it down properly?  Memory leaks or 
something??

We are deploying an Ear file, I just went to do a full publish to paste the 
stack trace for you and viola!  it worked.  Must have changed something from 
when it was giving me this problem till now.  Oh well.  Thanks for the reply.. 
if the problem with the full publish comes back I'll post it here.

Darryl A. Sibeon


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164246
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: Web Service Client : Could not transmit message

2008-07-14 Thread Jbchs
Hi,
I have similar problem. Can you please let me know how you solved it.

Thanks,
JB

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164248
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Web Services Session management.

2008-07-14 Thread pramod_bs
I need some tips on what spec to us for Web Services Session management. I read 
some where there are specs like WS-Context, WS-Coordination etc. Not sure which 
one the industry is moving towards. Any opinions will be well appreciated.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164249
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: Sporadic failure to commit

2008-07-14 Thread ataylor
I have to agree with noelo, it looks like a disk problem. 

I would suggest running in a different environment to see if the error still 
occurs.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164250
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: No ClassLoaders Found Exception

2008-07-14 Thread [EMAIL PROTECTED]
And what JBoss Messaging version you're using?

As you're having a classloader problem, very old versions of JBoss Messaging 
used to play with it. so it sounds it's a very old version.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164251
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: Sporadic failure to commit

2008-07-14 Thread [EMAIL PROTECTED]
You're using the Properties Login Module in your security configuration. That 
will use a property file to store users and passwords.

If I were you I would change that to a database. It *might be* some limit on 
accessing that file. A database would control it better as you're having 
problems with high load.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164253
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Redirect the user to a page when entering a node

2008-07-14 Thread coolex
1.) JSF, RichFaces (SEAM)
2.) Workflow (normal long-running business process)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164254
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: how to change Portlet Preferences

2008-07-14 Thread lampard
What? I used read-onlyfalse/read-only.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164255
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: Invalid user after successful login

2008-07-14 Thread jaikiran
Please post the entire exception stacktrace, your code and the custom login 
configuration. Which version of JBoss and Java are you using?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164257
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - jboss 4.2 et eclipse 3.3 avec les ejb3 - j'ai un warning

2008-07-14 Thread guissemakan
Je suis un débutant avec les ejb3, j'utilise eclipse 3.4 et jboss 4.2 pour mon 
developpement des ejb3, à l'exécution j'ai les 2 lignes de warning suivantes :
l
og4j:WARN No appenders could be found for logger 
(org.jboss.security.SecurityAssociation).
log4j:WARN Please initialize the log4j system properly.

Bonjour ClientPremierEJB3 !!!

Quekqu'un peut il m'aider

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

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

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


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - org.hibernate.HibernateException: Found shared references to

2008-07-14 Thread vivekmk2006
Hi all,
 When i am trying to Iterate a collection recursively i am getting a 
exception like bellow.
 
 org.hibernate.HibernateException: Found shared references to a collection: 
com.camsoft.camera.common.entity.MenuItems.menuItemses
at 
org.hibernate.engine.Collections.processReachableCollection(Collections.java:163)
at 
org.hibernate.event.def.FlushVisitor.processCollection(FlushVisitor.java:37)
at 
org.hibernate.event.def.AbstractVisitor.processValue(AbstractVisitor.java:101)
at 
org.hibernate.event.def.AbstractVisitor.processValue(AbstractVisitor.java:61)
at 
org.hibernate.event.def.AbstractVisitor.processEntityPropertyValues(AbstractVisitor.java:55)
at 
org.hibernate.event.def.DefaultFlushEntityEventListener.onFlushEntity(DefaultFlushEntityEventListener.java:138)
at 
org.hibernate.event.def.AbstractFlushingEventListener.flushEntities(AbstractFlushingEventListener.java:196)
at 
org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:76)
at 
org.hibernate.event.def.DefaultAutoFlushEventListener.onAutoFlush(DefaultAutoFlushEventListener.java:35)
at 
org.hibernate.impl.SessionImpl.autoFlushIfRequired(SessionImpl.java:969)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1114)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:64)
... 90 more  

  Can anybody can please give me a hint about what is the above error.
  
 Thanks in advance
 Vivek

 
   

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164263
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: richfaces scrollableDatatable header problem

2008-07-14 Thread [EMAIL PROTECTED]
maybe better to ask in the richfaces forum ?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164265
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: VPE Source tab gone in 2.1.0?

2008-07-14 Thread [EMAIL PROTECTED]
yes - I suggest you open a jira for it so you can keep track of us ;)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164266
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Error in jbpm 3.2.3?

2008-07-14 Thread xigua
I few errors I noticed. When I started the websale sample server, I got a few 
errors:
09:52:46,875 ERROR [STDERR] Jul 14, 2008 9:52:46 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/gravel.jar!/META-INF/gravel-compat.taglib.xml
09:52:46,890 ERROR [STDERR] Jul 14, 2008 9:52:46 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/gravel.jar!/META-INF/gravel-nav.taglib.xml
09:52:46,906 ERROR [STDERR] Jul 14, 2008 9:52:46 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tf-compat.taglib.xml
09:52:46,921 ERROR [STDERR] Jul 14, 2008 9:52:46 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
09:52:46,921 ERROR [STDERR] Jul 14, 2008 9:52:46 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
09:52:46,968 ERROR [STDERR] Jul 14, 2008 9:52:46 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
09:52:47,000 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/gravel.jar!/META-INF/gravel-data.taglib.xml
09:52:47,015 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/gravel.jar!/META-INF/gravel-action.taglib.xml
09:52:47,031 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tfl.taglib.xml
09:52:47,046 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/gravel.jar!/META-INF/gravel-simple.taglib.xml
09:52:47,062 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
09:52:47,078 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tfl-compat.taglib.xml
09:52:47,125 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf.jar!/META-INF/core.taglib.xml
09:52:47,140 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf.jar!/META-INF/identity.taglib.xml
09:52:47,156 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tf.taglib.xml
09:52:47,171 ERROR [STDERR] Jul 14, 2008 9:52:47 AM 
com.sun.facelets.compiler.TagLibraryConfig loadImplicit
INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/
tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml

I can still connect to http://localhost:8080/jbpm-console though. But when I 
signle the process to enter the fork, I am getting the following exceptioN:

exception 

javax.servlet.ServletException: Servlet execution threw an exception

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)


root 

[jboss-user] [JBoss Portal] - Re: how to change Portlet Preferences

2008-07-14 Thread [EMAIL PROTECTED]
Sorry i got myself trapped by the stripped tags.

I meant:

  | overwritetrue/overwrite
  | 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164269
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: Sporadic failure to commit

2008-07-14 Thread ydzsidemiik
The FD limit is an interesting thought; it hadn't occurred to me. I will try 
raising it. If that doesn't work, I will try the database login module, and 
then moving the application to a different server.

Do either of you by any chance know under what circumstances JBM returns 
XA_RETRY on prepare to the TM?

Your help is much appreciated. Many thanks.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164271
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Getting Started Documentation] - Re: New bie: installing JBOSS

2008-07-14 Thread PeterJ
Yes, the server is now up and running. To access it, open a browser and point 
it to http://localhost:8080.

And yes, if you close the command prompt, then the server will go away.

Also, you are running a very old beta of 5.0. You should either download and 
use 5.0.0.CR1, or go back to 4.2.2.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164270
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - QuerySyntaxException class is not mapped

2008-07-14 Thread kennethrene
Hi, 

I have a jar file (acad.jar) than contain TemaIcfes Entity: 

package co.academico.entidades; 

import java.io.Serializable; 
import javax.persistence.Entity; 
import javax.persistence.Id; 
import javax.persistence.Table; 
import javax.persistence.GeneratedValue; 

import org.jboss.seam.annotations.Name; 

@Entity 
@Name(TemaIcfes) 
@Table(name = temas_icfes) 
public class TemaIcfes implements Serializable{ 

@Id 
@GeneratedValue 
private short tema; 
private String descripcion_tema; 

public short getTema(){ 
return tema; 
} 

public void setTema(short tema){ 
this.tema = tema; 
} 

public String getDescripcion_tema(){ 
return descripcion_tema; 
} 

public void setDescripcion_tema(String descripcion_tema){ 
this.descripcion_tema = descripcion_tema; 
} 
} 


The problem is that when I use it in another application through an EJB shows 
the following error: 

Exception during request processing: Caused by javax.el.ELException with 
message: javax.ejb.EJBTransactionRolledbackException: 
org.hibernate.hql.ast.QuerySyntaxException: TemaIcfes is not mapped [SELECT a 
FROM TemaIcfes a ORDER BY tema] 

Classes: 

HacerMantenimiento.java: 

package co.academico.admin; 

import java.util.List; 
import co.academico.entidades.TemaIcfes; 
import javax.ejb.Local; 

@Local 
public interface HacerMantenimiento{ 

public void crear(TemaIcfes tema); 
public List consultarTemaIcfes(); 
public void modificar(TemaIcfes tema); 
public void listar(); 
public void eliminar(TemaIcfes tema); 

public void destroy(); 
} 

HacerMantenimientoEJB.java: 

package co.academico.admin; 

import static org.jboss.seam.ScopeType.SESSION; 
import java.util.List; 
import co.academico.entidades.TemaIcfes; 
import org.jboss.seam.annotations.Destroy; 
import org.jboss.seam.annotations.Name; 
import org.jboss.seam.annotations.Scope; 
import org.jboss.seam.annotations.datamodel.DataModel; 
import javax.ejb.Remove; 
import javax.ejb.Stateful; 
import javax.persistence.EntityManager; 
import javax.persistence.PersistenceContext; 

@Stateful 
@Scope(SESSION) 
@Name(hacerMantenimiento) 
public class HacerMantenimientoEJB implements HacerMantenimientoTemaIcfes{ 

@PersistenceContext 
private EntityManager em; 

@DataModel 
private List temasIcfes; 

public void crear(TemaIcfes tema){ 
em.persist(tema); 
} 

public List consultarTemaIcfes(){ 
temasIcfes = em.createQuery 
(SELECT a + 
FROM TemaIcfes a + 
ORDER BY tema).getResultList(); 
return temasIcfes; 
} 

public void modificar(TemaIcfes tema){ 
em.merge(tema); 
em.flush(); 
} 

public void listar(){} 

public void eliminar(TemaIcfes tema){ 
em.remove(tema); 
} 

@Remove @Destroy 
public void destroy(){} 
} 


home.xhtml: 

!DOCTYPE composition PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; 
ui:composition xmlns=http://www.w3.org/1999/xhtml; 
xmlns:s=http://jboss.com/products/seam/taglib; 
xmlns:ui=http://java.sun.com/jsf/facelets; 
xmlns:f=http://java.sun.com/jsf/core; 
xmlns:h=http://java.sun.com/jsf/html; 
xmlns:rich=http://richfaces.org/rich; 
template=layout/template.xhtml 

ui:define name=body 

h:messages globalOnly=true styleClass=message/ 

rich:panel 
 
h:outputText 
value=No existen temas registrados 
rendered=#{temasIcfes != null and temasIcfes.rowCount==0}/ 

h:dataTable id=temasIcfes 
value=#{temasIcfes} 
var=tema 
rendered=#{temasIcfes.rowCount0} 
style= width : 377px; 

h:column 
f:facet name=headerCodigo/f:facet 
#{tema.tema} 
/h:column 
h:column 
f:facet name=headerDescripcion/f:facet 
#{tema.descripcion_tema} 
/h:column 
/h:dataTable 
 
/rich:panel 

/ui:define 
/ui:composition 

pages.xml: 

... 
page view-id=/home.xhtml action=#{hacerMantenimiento.consultarTemaIcfes} 
 
 
redirect view-id=/main.xhtml/ 
 
 
 ... 

What is the problem? 
They could help to solve this problem please?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164272
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - jbuilder 2007 and jboss-4.2.2.GA

2008-07-14 Thread samhar
hi there

i am new to jboss and i want to apologize at the beginnig because my question 
might be very silly one
i am trying to creat an ejb modeling project with jbuilder 2007
i have installed (unzip ) the jboss 4.2.2.GA package on C:\jboss 4.2.2.GA folde.

i have created an environment variable and run the run script and it seems that 
the server is working fine

but when i am choosing it in the jbuilder as a target runtime it give me the 
following error
Missing classpath entry C:\jboss-4.2.2.GA\server\default\lib\javax.servlet.jar

 i am able to go further because of this
so please if you can help me with this problem
thanks anyway

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164273
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: problem with mysql can't find jboss database

2008-07-14 Thread PeterJ
This error means that your MySQL server does not have a database called 
jboss. You will have to.create that database (using MySQL tools), and 
probably create the user and password that will be used for that database.

Here are the mysql statements I usually use to do this:

CREATE DATABASE ;
GRANT ALL PRIVILEGES ON xxx.* TO ''@'localhost' IDENTIFIED BY '' WITH 
GRANT OPTION;

where  is the database name (jboss in your case),  is the user name and 
 is the password. These values must match the values used in the *-ds.xml 
file that defines the datasource.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164275
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: ServletContextListener -DataSource File

2008-07-14 Thread PeterJ
I think the issue is that you provided a password for the sa account:

passwordsa/password

That account, in hsqldb, usually does not have a password:

password/password

Because the login information was incorrect, the data source was never 
deployed, hence the later datasource not bound message (which you first posted).

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164276
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Error 8. Lost connection to server

2008-07-14 Thread PeterJ
Please post the full stack trace for this error.

Also, what database are you using? And by saying odbc database are you 
implying that you are using the JDBC-to-ODBC driver to access the database?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164278
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JCA/JBoss] - Re: one data source with multiple database users

2008-07-14 Thread PeterJ
I hope you don't expect decent performance from your application, or that you 
have very few users. Establishing a database connection is a very expensive 
operation. Getting a new connection each time you need to access the database 
is a definite performance killer.

You do not, by any chance, have a mainframe background? What you want is 
typical in mainframes - the end user's identity is used to access the database 
thus enabling the db admin to lock down the database based on users or their 
roles.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164280
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: How to deploy an Application on a Remote Server

2008-07-14 Thread PeterJ
Um, I already gave you the steps (there are only two of them) in item #1.

Or are you asking for steps on copy the file to the server. For that, use 
ftp, a file share, an nfs mount, or whatever mechanisms the administrators on 
the server have provided to get the file on the server.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164281
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: problem with mysql can't find jboss database

2008-07-14 Thread MikePhoenix
Thanks Peter. I guess that I should have a little more specific in that I know 
that it is telling me that the jboss database wasn't created. I just thought 
that I might need something special in the way of tables or configuration of 
the jboss database. Anyhow, i'll try just dreting the database and see what 
happens. 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164282
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: jboss 4.2 et eclipse 3.3 avec les ejb3 - j'ai un warning

2008-07-14 Thread PeterJ
This error message is typically seen when you run a client app. Many of the 
JBoss client JARs will attempt to do logging, but is you have not provided a 
log4j.properties file for your client, you get this warning.

You can either ignore this warning, or supply a log4j.properties file.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164283
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - MySqlDS: lost all tables (and data)!

2008-07-14 Thread giaulo
Hi, I'm using Mysql as default data source. My EJB3.0 app runs and inserts 
correctly the data in the database, but when I restart JBoss (4.2.2.GA) all 
tables are destroyed (and with them all data)! Only one table continues to 
exists after the shutdown, and this is very strange... 
Why this appens?

This is my /deploy/mysql-ds.xml :

?xml version=1.0 encoding=UTF-8?
  | 
  | datasources
  |   local-tx-datasource
  | jndi-nameDefaultDS/jndi-name
  | 
connection-urljdbc:mysql://192.168.0.1:3306/AddressBook/connection-url
  | driver-classcom.mysql.jdbc.Driver/driver-class
  | user-nameroot/user-name
  | passwordroot/password
  | 
exception-sorter-class-nameorg.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter/exception-sorter-class-name
  | !-- corresponding type-mapping in the standardjbosscmp-jdbc.xml --
  | metadata
  |type-mappingmySQL/type-mapping
  | /metadata
  |   /local-tx-datasource
  | /datasources
  | 

deploy-hasingleton/jms/mysql-jdbc2-service.xml :

?xml version=1.0 encoding=UTF-8?
  | server
  |   mbean code=org.jboss.mq.server.jmx.DestinationManager 
name=jboss.mq:service=DestinationManager
  | depends 
optional-attribute-name=MessageCachejboss.mq:service=MessageCache/depends
  | depends 
optional-attribute-name=PersistenceManagerjboss.mq:service=PersistenceManager/depends
  | depends 
optional-attribute-name=StateManagerjboss.mq:service=StateManager/depends
  |   /mbean
  | 
  | 
  |   mbean code=org.jboss.mq.server.MessageCache
  |  name=jboss.mq:service=MessageCache
  | attribute name=HighMemoryMark50/attribute
  | attribute name=MaxMemoryMark60/attribute
  | attribute 
name=CacheStorejboss.mq:service=PersistenceManager/attribute
  |   /mbean
  | 
  |mbean code=org.jboss.mq.pm.jdbc2.PersistenceManager
  |  name=jboss.mq:service=PersistenceManager
  | depends 
optional-attribute-name=ConnectionManagerjboss.jca:service=DataSourceBinding,name=DefaultDS/depends
  | attribute name=SqlProperties
  |   BLOB_TYPE=BYTES_BLOB
  |   INSERT_TX = INSERT INTO JMS_TRANSACTIONS (TXID) values(?)
  |   INSERT_MESSAGE = INSERT INTO JMS_MESSAGES (MESSAGEID, DESTINATION, 
MESSAGEBLOB, TXID, TXOP) VALUES(?,?,?,?,?)
  |   SELECT_ALL_UNCOMMITED_TXS = SELECT TXID FROM JMS_TRANSACTIONS
  |   SELECT_MAX_TX = SELECT MAX(TXID) FROM JMS_MESSAGES 
  |   DELETE_ALL_TX = DELETE FROM JMS_TRANSACTIONS
  |   SELECT_MESSAGES_IN_DEST = SELECT MESSAGEID, MESSAGEBLOB FROM 
JMS_MESSAGES WHERE DESTINATION=?
  |   SELECT_MESSAGE_KEYS_IN_DEST = SELECT MESSAGEID FROM JMS_MESSAGES 
WHERE DESTINATION=?
  |   SELECT_MESSAGE = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGES 
WHERE MESSAGEID=? AND DESTINATION=?
  |   MARK_MESSAGE = UPDATE JMS_MESSAGES SET TXID=?, TXOP=? WHERE 
MESSAGEID=? AND DESTINATION=?
  |   UPDATE_MESSAGE = UPDATE JMS_MESSAGES SET MESSAGEBLOB=? WHERE 
MESSAGEID=? AND DESTINATION=?
  |   UPDATE_MARKED_MESSAGES = UPDATE JMS_MESSAGES SET TXID=?, TXOP=? WHERE 
TXOP=?
  |   UPDATE_MARKED_MESSAGES_WITH_TX = UPDATE JMS_MESSAGES SET TXID=?, 
TXOP=? WHERE TXOP=? AND TXID=?
  |   DELETE_MARKED_MESSAGES_WITH_TX = DELETE JMS_MESSAGES FROM 
JMS_MESSAGES, JMS_TRANSACTIONS WHERE JMS_MESSAGES.TXID = JMS_TRANSACTIONS.TXID 
AND JMS_MESSAGES.TXOP=?
  |   DELETE_TX = DELETE FROM JMS_TRANSACTIONS WHERE TXID = ?
  |   DELETE_MARKED_MESSAGES = DELETE FROM JMS_MESSAGES WHERE TXID=? AND 
TXOP=?
  |   DELETE_TEMPORARY_MESSAGES = DELETE FROM JMS_MESSAGES WHERE TXOP='T'
  |   DELETE_MESSAGE = DELETE FROM JMS_MESSAGES WHERE MESSAGEID=? AND 
DESTINATION=?
  |   CREATE_MESSAGE_TABLE = CREATE TABLE JMS_MESSAGES (MESSAGEID INTEGER 
NOT NULL, DESTINATION VARCHAR(150) NOT NULL, TXID INTEGER, TXOP CHAR(1), 
MESSAGEBLOB LONGBLOB, PRIMARY KEY (MESSAGEID, DESTINATION))
  |   CREATE_IDX_MESSAGE_TXOP_TXID = CREATE INDEX JMS_MESSAGES_TXOP_TXID ON 
JMS_MESSAGES (TXOP, TXID)
  |   CREATE_IDX_MESSAGE_DESTINATION = CREATE INDEX 
JMS_MESSAGES_DESTINATION ON JMS_MESSAGES (DESTINATION)
  |   CREATE_TX_TABLE = CREATE TABLE JMS_TRANSACTIONS ( TXID INTEGER, 
PRIMARY KEY (TXID) )
  |   CREATE_TABLES_ON_STARTUP = TRUE
  | /attribute
  | !-- Uncomment to override the transaction timeout for recovery per 
queue/subscription, in seconds --
  | !--attribute name=RecoveryTimeout0/attribute--
  | !-- The number of blobs to load at once during message recovery --
  | attribute name=RecoverMessagesChunk1/attribute
  |   /mbean
  | 
  | /server
  | 

deploy-hasingleton/jms/hsqldb-jdbc-state-service.xml:

?xml version=1.0 encoding=UTF-8?
  | server
  |   !-- A Statemanager that stores state in the database --
  |   mbean code=org.jboss.mq.sm.jdbc.JDBCStateManager
  |   name=jboss.mq:service=StateManager
  | depends 
optional-attribute-name=ConnectionManagerjboss.jca:service=DataSourceBinding,name=DefaultDS/depends
  | attribute name=SqlProperties
  |   

[jboss-user] [EJB 3.0] - Re: Invalid user after successful login

2008-07-14 Thread kgoedert
Hi,

I guess I solved part of my problem by removing the security domain 
configuration I had on my jboss.xml. My understanding was that when I looked up 
a bean my application was initiating a new login process instead of using the 
one that was returned when I called the login method explicitly on my 
LoginContext.

Now is left for me to figure out why I get classCastException when I try to 
cast the principal to my custom principal

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164286
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: jbuilder 2007 and jboss-4.2.2.GA

2008-07-14 Thread PeterJ
Looks like JBuilder thinks you are working with JBossAS 4.0.x - that is where 
the server jar is located in those versions (such as 4.0.5).  For JBossAS 
4.2.2, the servlet JAR is located at server/default/lib/servlet-api.jar.

I do not know how to change this in JBuilder.

Also, after you fix this one, you will probably run into several more missing 
JARs that have moved.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164287
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Problems deploying to JBoss 4.2.0

2008-07-14 Thread sunkaram
I am getting the same while migrating from 4.0.3-jdk1.4.2 to 4.2.2-jdk1.6. 
Anybody has any resolution for this??

java.lang.IncompatibleClassChangeError: Class org.jnp.server.NamingServer does 
not implement the requested interface org.jnp.interfaces.Naming
at org.jnp.interfaces.NamingContext.bind(NamingContext.java:591)
at org.jnp.interfaces.NamingContext.bind(NamingContext.java:552)
at 
org.jboss.web.AbstractWebDeployer.parseWebAppDescriptors(AbstractWebDeployer.java:495)
at 
org.jboss.web.AbstractWebDeployer$DescriptorParser.parseWebAppDescriptors(AbstractWebDeployer.java:878)
at 
org.jboss.web.tomcat.service.TomcatDeployer.performDeployInternal(TomcatDeployer.java:159)
at 
org.jboss.web.tomcat.service.TomcatDeployer.performDeploy(TomcatDeployer.java:104)
at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:375)
at org.jboss.web.WebModule.startModule(WebModule.java:83)
at org.jboss.web.WebModule.startService(WebModule.java:61)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
at $Proxy0.start(Unknown Source)
at org.jboss.system.ServiceController.start(ServiceController.java:417)
at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy42.start(Unknown Source)
at 
org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
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:597)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at 
org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
at 
org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
at 
org.jboss.wsf.container.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:87)
at 
org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
at 
org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy43.start(Unknown Source)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
at sun.reflect.GeneratedMethodAccessor50.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at 

[jboss-user] [Beginners Corner] - Re: problem with mysql can't find jboss database

2008-07-14 Thread PeterJ
If the database is for the JBossAS services (the DefaultDS data source), the 
services will create the necessary tables themselves.

If the database is for your app, then it depends on your app.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164289
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: jbp_user ?

2008-07-14 Thread Homer Mcfuzz
hey friends I need help !!


How disable this cryptograpy, ??

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164291
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: MyFaces Portlet called from a non-JSF request ..

2008-07-14 Thread viniciuscarvalho
We are facing the same problem here! Did you find another way around?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164292
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: problem with mysql can't find jboss database

2008-07-14 Thread MikePhoenix
It's the JBossAS services. I just created it as you suggested and everything is 
working fine now. Thanks so much for your help.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164293
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - JSF portlet in Jboss Portal

2008-07-14 Thread pasfer
Hi all,
I'm developing my first portlet for Jboss, using JSF. The portlet works 
correctly in jboss AS, but it doesn't appear in the list of portal portlets.
I search on google and I've understood I need to modify some resources. 

Can someone provide me a link to a tutorial/guide for my issue?

Thanks in advance,
Pas.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164295
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Security JAAS/JBoss] - Re: Client IP in LoginModule

2008-07-14 Thread prateek_n
Is there a non portable way to retrieve the client IP for an EJB request for 
Jboss 4.2.2.GA ?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164297
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS JBossMQ] - JMS Failure to Insert Message (ORA-01483)

2008-07-14 Thread ethanackerman
JBOSS AS version: 4.0.4.GA
JMS Version: JBOSS Messaging v.1.0.1 GA
OS: Windows 2003 Server
Database: Oracle 10g JDBC persistence

I have a webservice which receives some XML messages and then attempts to 
insert them into a JMS queue. Occasionally, I receive the following error / 
stack and the message is not inserted. (Note: MANY other transactions are 
working before and after the error.)

I've seen comments that this oracle error can be thrown when too large (4k) a 
value is inserted into a CLOB value, however from my application's perspective, 
only a small chunk of XML (~215 chars) is being inserted.

Here's a code-snippet of the JMS insert: ('ve removed a bunch of stuff that I 
didn't think was pertinent again, this code works fine for hundreds and 
thousand of transactions, but only fails occasionaly. i.e.) twice a day or so)

I've googled and searched for a report of something similar to no avail. Anyone 
have any ideas?

public class QueueAccess extends QueueSupport
{

private Queue m_queue = null;
private MessageProducer m_sender = null;

   public QueueAccess() throws Exception{


}

public void sendMessage(String strMessage) throws Exception
   {

TextMessage message = m_session.createTextMessage(strMessage);
m_sender.send(message);
log(The message was successfully sent to the  + m_queue.getQueueName() + 
 queue);

   }

ETHAN - Begin server.log stack trace

2008-06-12 14:12:42,227 DEBUG 

//ETHAN - here we see that my mbean received some XML

[com.spl.im.interfaceMBean.IntegrationManagerService] tID{594} Received 
Message: ?xml version=1.0 encoding=UTF-8?

1021

2008/06/12T14:12:42

2008-06-12 14:12:42,227 DEBUG 
[org.jboss.security.auth.spi.UsersRolesLoginModule] Loaded properties, 
users=[guest]
2008-06-12 14:12:42,227 DEBUG 
[org.jboss.security.auth.spi.UsersRolesLoginModule] Loaded properties, 
users=[guest]

//ETHAN - Begin error stack
2008-06-12 14:12:42,259 ERROR [org.jboss.messaging.core.ChannelSupport] Failed 
to handle message
java.sql.SQLException: ORA-01483: invalid length for DATE or NUMBER bind 
variable

at 
oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
at 
oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:213)
at 
oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:952)
at 
oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1160)
at 
oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3285)
at 
oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3368)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
at 
org.jboss.messaging.core.plugin.JDBCPersistenceManager.addReference(JDBCPersistenceManager.java:1678)
at 
org.jboss.messaging.core.ChannelSupport.handleInternal(ChannelSupport.java:851)
at 
org.jboss.messaging.core.ChannelSupport$HandleRunnable.run(ChannelSupport.java:1733)
at 
EDU.oswego.cs.dl.util.concurrent.QueuedExecutor$RunLoop.run(QueuedExecutor.java:89)
at java.lang.Thread.run(Thread.java:619)
2008-06-12 14:12:42,259 ERROR 
[org.jboss.jms.server.endpoint.ServerConnectionEndpoint] The message was not 
acknowledged by destination CoreQueue[5]
2008-06-12 14:12:42,259 ERROR [org.jboss.jms.util.ExceptionUtil] 
SessionEndpoint[-2147483643] send [a5a8j-ozz0c4-fhdg196u-1-fhdqa39v-af]
org.jboss.jms.util.MessagingJMSException: Failed to send message
at 
org.jboss.jms.server.endpoint.ServerConnectionEndpoint.sendMessage(ServerConnectionEndpoint.java:726)
at 
org.jboss.jms.server.endpoint.ServerSessionEndpoint.send(ServerSessionEndpoint.java:422)
at 
org.jboss.jms.server.endpoint.advised.SessionAdvised.org$jboss$jms$server$endpoint$advised$SessionAdvised$send$aop(SessionAdvised.java:83)
at sun.reflect.GeneratedMethodAccessor74.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
at 
org.jboss.jms.server.container.SecurityAspect.handleSend(SecurityAspect.java:150)
at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at 
org.jboss.aop.advice.PerInstanceAdvice.invoke(PerInstanceAdvice.java:130)
at 

[jboss-user] [EJB 3.0] - Re: Invalid user after successful login

2008-07-14 Thread kgoedert
My understanding was totally wrong. Doing what I described in the last post 
logged me in as an anonymous user.

How should I look up a bean after login() in LoginContext succeeds?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164298
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Use RichFaces ver 3.2

2008-07-14 Thread c0upal
JBIDE-2514

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164300
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Submit form and call bean method the an onBlur event

2008-07-14 Thread c0upal
How do you Submit the form and call a Session Bean method when the onblur 
event occurs on an inputText?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164302
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - CMS WYSIWYG IFRAME

2008-07-14 Thread flaviafvieira
Hello, 

I wonder if there is any way to include a piece of navigation to another site. 
I created a file in the CMS and placed within an IFRAME, 
the problem is that qdo edit the file and save the lost contents, as I had to  
tag will 
include without being able to wysiwyg. 
But when he is editing the file with the option enabled and can not change. 
And once again saved all content is lost. 

There is another way to do that? 

apologise for English. 


Thank you

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164304
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS WYSIWYG IFRAME

2008-07-14 Thread flaviafvieira
sorry

Hello, 

I wonder if there is any way to include a piece of navigation to another site. 
I created a file in the CMS and placed within an IFRAME, 
the problem is that qdo edit the file and save the lost contents, as I had to  
iframe  tag will 
include without being able to wysiwyg. 
But when he is editing the file with the option enabled and can not change. 
And once again saved all content is lost. 

There is another way to do that? 

apologise for English. 


Thank you

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164305
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] Jboos Application Server + JDiameter

2008-07-14 Thread Wilson O Ojwang

All,

I was wonder if there was an example that illustrate how to use 
Jdiameter with  Jboss Application server.


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


[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Session being stolen / assigned to wrong person

2008-07-14 Thread joeyxxx
Javaspack,
Did you evr find a resolution for this?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164307
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Security JAAS/JBoss] - JBoss vs. PKI

2008-07-14 Thread tungdd
Hello,

I'm working on a program that needs PKI (public key infrastructure). I plan to 
use JBOSS for this program and wonder whether JBOSS supports PKI. Please let me 
know whether or not JBOSS supports PKI.

Thanks a lot,
Thanh-Tung

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164309
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: jbp_user ?

2008-07-14 Thread Homer Mcfuzz
ok , I can put the password in DB to login, but in portal when the user use the 
UserPortlet to change your password , in DB your password was cryptografy again 
 anybody have some idea ??

thanks 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164310
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Session being stolen / assigned to wrong person

2008-07-14 Thread javaspack
No, we went back to JBoss 4.0.3sp1. Best guess, there is a problem with Tomcat 
6. The JBoss versions that uses Tomcat 5.5 don't have the problem.

We might try it again if we can get management to go along now that we have 
upgraded to Apache 2.0.63 and mod_jk 1.2.26.

We can't stay on 4.0.3sp1 forever, but 4.2.2 is still the latest version.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164311
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: JSF portlet in Jboss Portal

2008-07-14 Thread wesleyhales
http://www.jboss.org/files/portletbridge/docs/1.0.0.B3/en/html_single/index.html#archetypes

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164312
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: External User Interface

2008-07-14 Thread LosWochos
Hi Ronald,

thanks for your answer. Do you have an example, how I can reflect, which 
process variables I have to post to a specific task in order to go on with the 
process? I need a generic way to create a form on the fly which then posts the 
required info to the jbpm engine. Which api functions do I need?

Best regards,

Alex

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164314
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] Delivery Notification [EMAIL PROTECTED]

2008-07-14 Thread Postmaster
This is a delivery status notification, automatically generated by MTA 
mgate.raiffeisen.ru on Mon, 14 Jul 2008 23:48:14 +0400
Regarding recipient(s) : [EMAIL PROTECTED]
Delivery status : Failed. Message could not be delivered to domain 
raiffeisen.ru .Failed while initiating the protocol. [('[EMAIL PROTECTED]', 
550, '[EMAIL PROTECTED] No such user')]
MTA Response :550
The original message headers are included as attachment.
Reporting-MTA: dns; mgate.raiffeisen.ru

Final-Recipient: rfc822;nvoevodina@raiffeisen.ru
Diagnostic-Code: smtp; 550 nvoevodina@raiffeisen.ru... No such user
Remote-MTA: dns; 192.168.10.220
Action: failed
Status: 5.0.0
---BeginMessage---
*** Body Not Included ***
---End Message---
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Submit form and call bean method the an

2008-07-14 Thread [EMAIL PROTECTED]
ask in the richfaces forum ?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164315
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] Delivery Failure

2008-07-14 Thread Postmaster

-
The message you sent to fuel4arts.com/postmaster was rejected because it would 
exceed the quota for the mailbox.

The subject of the message follows: 
Subject: =?windows-1251?B?yuDqX/Ps5e38+Ojy/F/w5err4Ozt++Vf5+Dy8ODy+w==?=


-

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


[jboss-user] [JBoss jBPM] - Re: Error in jbpm 3.2.3?

2008-07-14 Thread kukeltje
2 things (and I do not want to sound rude, but going to say it anyway)

1: STFF, Google is your friend
2: Learn java (or use 1)





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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4164319
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


  1   2   >