Hi Scott,
you misunderstood me. I do not use the conf/jboss-service.xml file
to configure this. I have a file called TomcatSample-service.xml file, which
is located in the deploy directory of JBoss. This file references
a directory C:/jboss-4.0/TomcatSampleServlets_jboss/deploy/
where my exploded W
I am using Jboss 3.2.6. Whwn i deployed struts-example application in sun one,
it works fine . but the same thing does not work in Jboss.When i run a simple
jsp page with tag libs, it gives me the following error.
org.apache.jasper.JasperException: Unable to compile class for JSP
Generated ser
I've been evaluating JBoss 4.0.1RC2 and WebLogic 8.1SP2 to host an online
auction application. I'm now far enough along to have a few numbers, and I
thought others might be interested in the effects of different tuning
operations.
The test server setup is the same for both: a BigIP load balance
You need at least jboss-3.2.6 to use jdk1.5.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857828#3857828
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857828
---
hi all
i installed jboss3.2.3
but when i am runing jboss using the command run -c useradmin
i am getting error and giving message haulting jboss
i am using jdk1.5
is there anything to be configured if we use jdk1.5 ?
with regards
ravi
View the original post :
http://www.jboss.org/in
Unfortunately, no. The code should be
meth.setBody("{ int a = 1; return a; }");
Please read Section 4.3 of the tutorial for further hints.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857826#3857826
Reply to the post :
http://www.jboss.org/index.html?mo
Thanks for your suggestion genman. Right now, we are using 3.2.5. How different
is 3.2.6 from 3.2.5? Probably I'll have to go through the release notes.
Meanwhile, to update you, Scott, we did another round of testing with the JVM
IL. The results are excellent. For my testcase, with the same lo
If the tx is not committing in the tm timeout period, then this will also
result. You need to either increase the default timeout or use an ejb method
specific increased timeout.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857823#3857823
Reply to the post
I also encounted the same question.I think that the transaction is not
committed.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857821#3857821
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857821
--
Did you remove the hsqldb-ds.xml file from the deploy dir and copied the MySQL
JDBC drivers into the server/{yourconfig}/lib dir?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857820#3857820
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=p
Provide the lookup code and web-app.xml and jboss-web.xml files related to the
problem... But I think your problem is due to you have written somewhere
java:/comp/env/ and you have to write java:comp/env (without the first /...).
View the original post :
http://www.jboss.org/index.html?module=b
Hi,
I'm new to javassit and am trying to create a method with local variables. As
I couldn't find any examples I tried the code below. I was just wondering
whether this is the right way to do this or is there a better approach.
Thanks,
John.
meth.setBody(null);
|
It means you have problems with application deadlock.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857817#3857817
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857817
---
You have a memory leak and the garbage collector is spinning trying to reclaim
memory that it cannot.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857816#3857816
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857816
Hello Scott
I've got the thread dump and for my surprise, the "problematic" thread was the
JVM GC Thread. I've tried the -Xincgc flag (sun jvm) but have no success. Have
you ever experienced a situation like that?
Thank you!!!
Regards,
Rafael
PS.: When this thread begin to consume CPU (99,9%)
You need to upgrade to 3.2.6 where you can use a war/WEB-INF/context.xml to
control the war properties, for example a jmx-console.war/WEB-INF/context.xml:
|
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857814#3857814
Reply to the post :
http://w
For running two JBoss instances, take a look at:
http://docs.jboss.org/jbossas/admindevel326/html/ch10.html#d0e21029
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857813#3857813
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=r
I have been going through the "getting started" example (Bank)--for some reason
it started authentication for jmx-console. I have checked both
C:\jboss-4.0.0\server\default\deploy\jmx-console.war\WEB-INF\classes\jmx-console-roles.properties
and jmx-console-users.properties; here is the content:
Move under a subdir of WEB-INF directory. This dir is only accessible inside
the web-app, so nothing from the "outside" can see what it has...
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857811#3857811
Reply to the post :
http://www.jboss.org/index.html?m
Its not a bug. You cannot deploy a service from the conf/jboss-service.xml file
and have that see classes or resources from anything but the server/lib
directory and server/conf directory. The web app needs to be deployed as a war
that includes a seperate service configuration for the DynamicLog
You have to use the jboss-web.xml and jboss.xml files you provided, and change
the HASHMAP_CONTROLLER variable to "java:comp/env/ejb/HashMapControllerEJB"
(see that you missed the "env" at the begining? In the JNDI view you provided
is there...)
View the original post :
http://www.jboss.org/in
To your first question: if your session beans launch not Runtime exceptions and
you catch them, the transaction is not rolled back. You can create your own
exceptions to get this behaviour, for example...
To question a): deciding on one of the two approaches is subjective... For a
good design, y
Forgot to mention that data source is not an XA.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857802#3857802
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857802
I have been creating a simple application to help me get to used to JBoss. I
am using version 4,00 with Java1.5 and MySQL.
My application consists of two CMP EJB's, a Stateless Session EJB (which
accesses the two CMP EJB's) and then some JSP's which access the Session EJB.
When I attempt to us
I'm observing some strange behaviour with JBossMQ when JMS persistance is
configured to use MS SQL 2000 data source.
Looks like org.jboss.mq.pm.jdbc2.PersistenceManager creates its tables just
fine but org.jboss.mq.sm.jdbc.JDBCStateManager creates only JMS_USERS table. No
errors on creation of
Create a bug report with an example war that shows this problem as I have not
seen this particular failure before.
http://jira.jboss.com/jira/browse/JBWEB
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857799#3857799
Reply to the post :
http://www.jboss.org
A jms topic listener that sets the abort state in the interceptor could work.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857798#3857798
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857798
---
Yes.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857797#3857797
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857797
---
SF email is sponsored by - The IT Produc
That is the correct mechanism for loading the class.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857796#3857796
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857796
I'm building my first complicated EJB application and I've hit a problem to do
with declarative transaction settings. It's a subject that to date I've been
able to ignore - now I'm hoping somebody can help me with some general guidance.
I'm using the facade pattern where a stateless session bean
Hello,
I would lie to load a class by its name inside some EJB session code.
Since I never did that, I carefully read the Wiki documents dedicated to class
loaders and scoped applications. I realize the classes I want need to be loaded
by a JBoss-specific class loader (UnifiedClassLoader).
How
I'm trying to integrate some crystal reports into my application, and I can't
seem to configure things correctly. The crystal jars are found ok, but the
crystal config file is not found. Crystal tech support insists that the config
file simply needs to be "on the classpath". I guess I'm not s
The block has to explicitly use the security you set. The functionality is not
there by default. The permissions in the htmlModule are about the document, not
whether the block displays.
Sherman
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857792#3857792
Jboss 3,2,6 with Tomcat 5.
Trying to reploy a web app by touching the web.xml and receive the following
error:
2004-12-07 11:33:25,387 INFO [org.apache.catalina.startup.HostConfig]
restartContext()
2004-12-07 11:33:25,387 INFO [tomcat.localhost.ROOT.Context] Reloading this
Context has started
Hi
I wish to use jboss minimal confi as a base server with my application built
ontop of it. Can i sell the application as long as i state it is built on jboss
source - offcourse the jboss source is not touch as i am dealing with the
minimal binary server, so its my application ontop of jboss t
Hello,
I'm currently trying my hand at jsps on JBoss 3.2.6, and I have a particular
jsp fragment that I statically include into other pages (using <%@ include
file="" %>). The problem that I'm having is that the jsp fragment can be
viewed from the web, and since it has potentially sensitive in
Ah, now I see what you're saying. Thanks.
I suppose there'd be no good way to cluster the injected abort state without
doing an mbean lookup on every call rather than injecting to a static field in
the interceptor from the jmx manager, though. That's dealable with, however,
since in a cluste
If it's deadlocked, then even after 10 years it wouldn't work. You can get a
stack trace with CTRL-BREAK on Windows, or attach a debugger and see what's
going on during those 10 minutes.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857787#3857787
Reply to
hi you all, i dont know if this is the right place fro this question, but here
i go:
I have an ejb app running on jboss3.2.6, and , not always, but sometimes, after
the server has been up for a while, it starts sending me the following Warning:
WARN [TransactionImpl] Transaction TransactionImp
I'm using the latest JBoss IDE and AppServer. I am using Tutorial-1.3.0.pdf to
get started. I did not have a problem until I get to page 34. I can not click
debug as is described on that page. I can find the directory that the server
is at. The server is installed and running.
What can I d
In the advanced JBoss training, we were told that using JGroups encryption
would protect the cluster from rogue nodes joining the cluster. I can't start
the cluster with encryption enabled, nor do I see how it would provide the
desired protection, due to the fact that there is no unique key amon
Hello Permissions master,
Well looking at some of the other posting in this forum a lot of other folks
are having trouble setting permissions for blocks so only certain groups can
see them upon login. This seems like it shold be a simple permission (ie a
group views it or not).
I too am having
In the htmlblock Mbean view in the JMX Console there is a checkbox to set the
block to show for annonymous users or not.
DisplayedWhenAnonymous true false
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857780#3857780
Reply to the post :
http://www.jboss
By the way, the message cache is used to page messages out of memory,
regardless if you want to persist them or not. This is to avoid out of memory
conditions.
>From looking at the stack trace in the bug, it seems to want to page out a
>message that hasn't been added to the server yet, which
In 3.2.6 you can turn off soft referencing using the JMX attribute
"MakeSoftReferences" on the message cache.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857778#3857778
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply
I am running a Axis Webservice Client on my JBOSS server. The Axis Client is
trynig to access a webservice hosted on the internet. I am trying to figure out
how to configure the http proxy that I need to get to the internet (proxy host
name, port, proxy user and proxy password). Can you please h
Thread dumps and increased logging levels are your next action.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857776#3857776
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857776
-
See the references on the following wiki page:
http://www.jboss.org/wiki/Wiki.jsp?page=JBossJCA
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857775#3857775
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857775
That truststore is automatically used by the jsse layer so this configuration
would not be adding anything new. At this point you down to debugging the jdbc
driver ssl configuration and how it uses jsse as I have never used postgres.
View the original post :
http://www.jboss.org/index.html?modu
Scott,
I implemented your recommendations in the properties-service.xml file which I
placed in /server/default/deploy/:
|
| javax.net.ssl.trustStore = "/library/java/home/lib/security/cacert"
| javax.net.ssl.trustStorePassword = "changeit"
|
|
I tried the values
Classpath?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857771#3857771
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857771
---
SF email is sponsored by - The IT
You can have multiple MDBs for the same topic/queue. You just have to change
the to something unique. This must be unique per .ear I believe.
You can reuse the same class as well.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857770#3857770
Reply to th
Hello all,
I need to implement JCA 1.5 Message Inflow in an adapter project. I am trying
to find books/tutorials/articles/etc that have hands-on information on how to
develop a JCA 1.5 Message Inflow with code examples. I read the specification
but it hardly has any code examples. I would great
Hi Scott,
I located run.conf in /library/jboss-4.0.0/bin/. I added the following to
JAVA_OPTS:
| JAVA_OPTS=".
-Djavax.net.ssl.trustStore=/library/java/home/lib/security/cacert
-Djavax.net.ssl.trustStorePassword=changeit"
|
So now when I do ./run.sh I get confirmation of the above am
Not acceptable in whose eyes, ejb spec, god, country?
For the most part the ejb spec restrictions are meaningless unless you are
running with a security manager and have configured the server to restrict
application deployments from access to the spec stated operations. Other
containers run wit
I see no error. Could you be more specific about what you think is wrong? A
file name or a page number in the getting started guide that contains the error
would be very helpful.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857763#3857763
Reply to the p
See: http://www.jboss.org/wiki/Wiki.jsp?page=PropertiesService
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857761#3857761
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857761
--
ok, figured out what was wrong.
It was the wrong ...
Thanks
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857760#3857760
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857760
Hi all; i have this scenario:
I want that several MDBs are listening on a remote and durable topic; now by
following tips in the wiky tutorial i have been able to do this; now i have
this problem: if i have one MDB all works fine and all is deployed
successfully; if i have two o more MDBs i have
Then you'll either need to create a bug report with a complete example that
demonstrates the problem or get into the debugger and see why the
authentication fails.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857758#3857758
Reply to the post :
http://www.
Its a bug that has been fixed in the 4.0.1RC2 release.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857757#3857757
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857757
--
http://www.jboss.org/wiki/Wiki.jsp?page=ConfigDataSources
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857756#3857756
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857756
---
Hi,
I found where it comes from, they have an error in the jboss documentation,
the jndi name to access under hibernate to the sql database is wrong,
Nicolas
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857754#3857754
Reply to the post :
http://www.jbo
Hi,
I'm experiencing some threading problems in my production environment. After
some time of execution my production jboss generates a Thread consuming 99,9%
of the CPU. The other three processors are 100% idle while this thread is
running, decreasing the server performance.
My environment:
Thanks for the replyunfortunately it doesn't appear to work. I changed the
override attribute of the DefaultContext element in the server.xml file to
"false"but still got cookies.
I also tried putting a "context.xml" file in the META-INF (and WEB-INF -
shooting in the dark here) with
Hi,
was just reading some information about struts, where you can set a property on
a datasource like so:
|
|
|
|
|
|
|
|
|
What I want to be able to say in my postgres-ds.xml file is :
|
|
|
How do I go about acheiving this?
regard
Hi All,
OpenCMS works with tomcat 5.x . dose it supports Jboss also or it requires
any configuration changes.
thanks in advance
Kumaran r
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857742#3857742
Reply to the post :
http://www.jboss.org/index.html?mo
HI ,darranl
and thanks very much for u r interest .
i wnat one more help is that cant i run two config. directory like default and
other both simulteneously or not??
and if yes then at the time of shutdown which command i have to give.
so if u have any idea reagrding this then pls help me..
i think there was oracle instanse is running on the same port
earlear i was also faced same problem
mistake i was done was
after starting the system i was just started oracle instance
and then started JBOSS then it was not started
again i was restarted and immediately after starting the sys
Hi,
I have specified my postgres-ds.xml file as so:
|
|
|
jdbc:postgresql://localhost:5432/test?ssl=true
| org.postgresql.Driver
| *
| *
| 10
|
|
| PostgreSQL 7.2
|
|
|
|
and I need to add the additional properties
Juha, thanks for your reply.
I've just read the comments in the DTDs - and I'm still just as confused about
how I need to configure JBoss as before.
However I now see that the class loading may be in multiple configuration files
(so it appears much more complex than before).
This leads me to t
https still does not work but thanks for the help
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857736#3857736
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857736
---
Copy one of the configurations that most closely matches your needs and give it
a unique name.
Start JBoss with the command './run.sh -c {config-name}'
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857735#3857735
Reply to the post :
http://www.jboss.org/in
Hi,
further to my earlier post, I downloaded the source to my driver located at:
http://jdbc.postgresql.org/download.html
the source in question being pg80b1.308.src.tar.gz
located within /doc/pgjdbc.xml I came across the following snippet which
backsup earlier comment about using postgres-ds.x
Hello all,
i am using jboss 3.2.5 on linux fedora OS and want to add new configuration
directory like in jboss's server directory
we already have all default minimul like that i want to add new configuration
directory for that so any one of u have solution regarding this then please
help me.
hi all.
i'm using jboss 3.2.3... i'm having problem relating to cascase delete.
i have two tables in which pk of one table is fk on other as well as the
element of composite key... and i'm using mysql as a database in which
cascade delete is set... but when i delete row from parent ejb it
Sorry for not putting this info in the original post, but I am using JBoss 4.0
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857731#3857731
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857731
--
Hello,
I am experiencing some strange security behaviour during the first call to an
session bean after loggin in (using form based authentication and the database
login module).
When I am trying to acces a secured web resource I am persented the login page
and login. After this I am directed
Dear all,
I am new in j2ee and I tried the Fibo tutorial to experiment JBoss-Eclipse IDE.
I followed exactly step by step what is required in the pdf ; Everything
resulted fine in Eclipse but the execution of the apps throws an HTTP 500 error
:
javax.servlet.ServletException: Lookup of java:/c
anonymous wrote : Warning: The methods defined in the remote interface must
have a matching method in the bean's class with the same name and same number
and types of arguments.
Your remote interface methods take an int as a parameter, the methods in the
bean implementation take a double as th
Hi,
I want to reproduce an EJB tutorial and want to deploy Konto.jar into JBoss
4.0.0. So, I put it into the default/deploy directoy and I got the following
error message:
anonymous wrote : 13:29:33,581 WARN [verifier] EJB spec violation:
| Bean : KontoBean
| Method : public abstract doubl
Though if I start JBoss from the command line, it does not work any better...
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857725#3857725
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857725
--
Why should I not use optimistic locking? In the Admin Guide "CHAPTER 4
Transactions on JBoss - The JTA Transaction Service" it is mentioned as an
alternativ to pessimistic locking.
In my app I get sometimes deadlocks mostly on getting entities by different
transactions. This could be solved by
You will have to prove it with a testcase. There are testcases in JBoss'
testsuite for this.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857723#3857723
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857723
---
1) no
2) there could be NoRowsAffectedException. What we know is UPDATE statement
affected 0 rows but we don't know for what reason (and you might not use
optimistic locking at all).
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857722#3857722
Reply to the
There are more information that might be important to find out what is the
problem.
On the server side i have the following configuration:
srp-fw/AuthenticationCache
useFirstPass
The FwServerLoginModule is a login mod
This is not planned. But you are welcome to contribute.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857720#3857720
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857720
-
What do you mean by 'The port has been changed'?
Do you mean that someone has altered the configuration of the servlet container
to listen on a different port?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857719#3857719
Reply to the post :
http://www.
When starting jBoss on RedHat ES 3 with jdk 1.4.2_06 I get this error
?
What am I doing wrong here ?
=
JBoss Bootstrap Environment
JBOSS_HOME: /usr/jbo
First Login
12-07 12:02:59,127 TRACE [org.jboss.security.srp.SRPService] Cached SRP session
for user={username=nmeira, sessionID=0}
2004-12-07 12:02:59,127 TRACE [org.jboss.security.srp.SRPRemoteServer] verify,
completed {username=nmeira, sessionID=0}
Second
2004-12-07 12:23:12,190 TRACE [org
I'm experiencing the same problem. But I start JBoss from the IntelliJ IDEA
plugin...
Denis
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857716#3857716
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857716
---
I have not made any changes in Configuration.
JBoss starts without any errors.(When my application is not deployed)
All other beans are getting deployed except for the Message Driven Beans.These
Message driven beans work properly on JBoss-3.2.
I am porting my application from JBoss3.2 to JBoss-4.0
greets,
I have a problem with the configuration of ssl with java and jboss. I've read
thousands of posts but nothing is quite like my problem. I'm using jboss 4.0.0
and j2ee 1.4
I want to use mutual authentication on a https server. For that cause i did the
following:
i generated the Server Key
Hi Scott,
thanks for your reply. From reading various sources of documentation it is
clear that I need to implement the following:
java -Djavax.net.ssl.trustStore=/library/java/home/lib/security/cacert
application
Now, my confusion is this:
1. As I am running an a web application and jboss han
We know about this and until the scheduled rebuild of the database occurs in 2
weeks there is nothing that can be done but live with it.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857712#3857712
Reply to the post :
http://www.jboss.org/index.html?module=
That is a known bug in 3.2.6 that has been fixed for 3.2.7.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857711#3857711
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857711
-
I found the answer to my problem.
In my database a role was attributed to the principal. This role is
CallerPrincipal. And when this role is attributed to the principal, when you
call the GetName from the UserPrincipal, it returns the RoleName and not the
UserName.
So no it is working like this.
The forum database appears to be seriously corrupt, there are lots of post
appearing against the wrong author and even a number of threads that do not
make any sense as the wrong messages are chained together.
It also looks as if a number of posts have automatically moved to the wrong
forum.
Yes yes, I'm sure
my jar consists of:
+ hotline
|-+ beheerhotline
|--+ basisbestanden
|---+ initialen
|- InitialenHomeRemote
|- InitialenRemote
|- InitialenBean
+ META-INF
|- ejb-jar.xml
|- jboss.xml
|- jbosscmp-jdbc.xml
I putted the jar in my deploy dir together with the mysql-ds.xm
Hi all,
I'm currently trying to properly build in authentication into application
servlet/struts + ejb. There are following issues:
1. entity bean should log the user in DB;
2. some urls are accessed only with authorisation;
3. some are unauthorised;
- in this case one of the field of entity
1 - 100 of 130 matches
Mail list logo