This link contains a failry thorough description of implementing JAAS support for your
application:
[url=http://www.jbossfaq.com/mvnforum/mvnforum/viewthread?thread=26]JBoss FAQ: Using
JAAS in JBoss[/url]
[EMAIL PROTECTED]
##
JBoss hosting provided by
[url=http://w
Hi,
i have installed jboss3.0.0 with JBuilder7 using a plugin. i tried an example
given by jbuilder. i compiled the project successfully and also deployed my bean now
when i try to run my client application it gives following error :
-- error --
javax.naming.Name
Ah, the Thread is back again. Meanwhile istarted another one with nearly the same
topic.
My Problem is solved. Thanks to everyone for your help.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836786#3836786
Reply to the post :
http://www.jboss.org/index.htm
OK ! have solved this propbem.
thanks for all help !!
thanks!
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836785#3836785
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836785
-
You have to key the SFSB1 with client1 using the unique session id of client1 to
ensure that your not mixing invocations from the clients. I assume your using the
HttpSession to do this as follows:
|protected void doRequest(HttpServletRequest req, HttpServletResponse res)
| throws
jbossweb-tomcat50.sar/server.xml
| ...
|
|
|
|
|
|
|
|
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836780#3836780
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mod
Unless the login module configuration being used here(which you do not show because
its hidden in the WaveAuth.createLoginContext) includes the
org.jboss.security.ClientLoginModule, there is no propagation of the security context
to the remote call. Get your debugger and find out if ClientLoginM
Okay Scott, I get that the http access logs SHOULD be in the same place, but they are
NOT being created...
which .xml file do I check/change to get them turned on???
Is it one of the .xml file in the tomcat 5.sar directory??
View the original post :
http://www.jboss.org/index.html?module=bb&o
my two ear my work at the same time by tbaer help!thanks!
but my ejb.jar can't work,
I will use two or more .war to access one ejb.jar.
thanks for help!
I have App_ONE.war and APP_TWO.war
| how to config jboss_web.xml of App_ONE.war and APP_TWO.war
| to ensure them don't influence each othe
my two ear my work at the same time by tbaer help!thanks!
but my ejb.jar can't work,
I will use two or more .war to access one ejb.jar.
thanks for help!
I have App_ONE.war and APP_TWO.war
| how to config jboss_web.xml of App_ONE.war and APP_TWO.war
| to ensure them don't influence each othe
Thanks for your reply jburugupalli, I believe I understand the thread local nature of
JAAS, and have coded the logout exactly as you have suggested.
Each request to the servlet I have is:
| Instantiating a LoginContext along with newly instantiated username/password
CallbackHandler.
|
Add a META-INF/jboss-app.xml to your ear to define a sar or -service.xml module.
You can find plenty of discussion in the forums, including defining dependencies
if you need to access other services like ejbs.
You can also deploy an MBean by adding a -service.xml in the top level
of an ejb jar.
X
Thanx for the replies, they really helped.
It seems easy to implement that way.
So I won't even need a MANIFEST file in my app JAR to run the service right? All the
info will be in the jboss-service.xml file is this correct?
If so my app will still be usuable as standalone.
Also please confirm
When I shut down JBoss 3.2.3, there was exception encountered for destroying topic. I
have the following code in MDB's ejbRemove
public void ejbRemove() {
ctx = null;
try {
if (session != null) session.close();
if (conn!= null) conn.close();
The fact it is not throwing a JMSException suggests to me your problem is with
jndi access not JMS.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836767#3836767
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836767
Argh! I forget that JMSException doesn't print the linked exception.
I can't see the real exception.
Can you download this class and change it to do:
http://cvs.sourceforge.net/viewcvs.py/jboss/jboss/src/main/org/jboss/ejb/plugins/jms/DLQHandler.java?annotate=1.11.2.9
| 163
Sorry Adrian, but here it comes:
15:40:10,140 ERROR [DLQHandler] Initialization failed
javax.jms.JMSException: Error creating the dlq connection: Not permitted: invali
d name or password
at org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:16
9)
at org.jboss.system
You can always rely on the container to figure out the java type from your abstract
cmp field methods.
The only thing you need to do in jbosscmp-jdbc is to define specific jdbc/sql mapping
(without saying anything about the java-type. So "[B" really is optional.
Here is an example in jbosscmp-j
What's wrong with this example?
http://www.jboss.org/wiki/Wiki.jsp?page=ExampleHelloWorldService
To run an app as an mbean in jboss you just need:
Thread thread;
| protected void startServce() throws Exception
| {
|thread = new Thread(new Runnable()
|{
| public void run
11:09:58,005 ERROR [STDERR] org.jboss.util.NestedSQLException: Could not create
connection; - nested throwable: (java.sql.SQLException: [informatica][Oracle JDBC
Driver]Error establishing socket. Connection refused); - nested throwable:
(org.jboss.resource.JBossResourceException: Could not creat
It looks ok, but PLEASE post the full stacktrace.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836754#3836754
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836754
-
You're on the right track. I first suggest downloading the sourcecode and stealing an
MBean example. The Wiki is a little thin on this, but the pay documentation has
something. I did find this online:
http://www.huihoo.com/jboss/online_manual/3.0/ch13s26.html
The example here is a little bi
You can create a .sar file with mostly empty jboss-service.xml. As .sar files are
deployed first, they will deploy your .jar files to the classloader without having to
clutter jboss/service/default/lib
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836751#3
I haven't done this in a long time, and I only did it for BMP, but the method is the
same for CMP.
You do it all in jboss.xml. Container configurations are defined as elements of the
jboss tag. Here's a sample BMP custom configuration:
|
|
| Custom BMP EntityBean
|
One thing to be aware of sometimes is if a dependant class was loaded earlier from
.sar (outside of a .ear) or .war file, this has been known to trip up the classloader.
I don't know if it's an issue in 3.2.4, though this issue isn't necessarily JBoss's
fault. It is easy to check if you're do
You can precompile your JSPs using JSPC in ant.
The web.inc is used as part of the web.xml file.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836748#3836748
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=re
Hi Adrian,
Just downloaded jBoss 3.2.3 and still getting the problem:
15:40:10,140 ERROR [DLQHandler] Initialization failed
javax.jms.JMSException: Error creating the dlq connection: Not permitted: invalid name
or password
Here's my standardjboss.xml file:
|
| message-driv
My problem is when I try and log into the console Jboss keeps asking me for a username
and password which I dont have and I cant figure out why it keeps asking me for it. I
was told that the 2 file below are the key files. Can anyone PLEASE help me resolve
this problem, I cant move forward becau
>From the 2 files above can anyone tell why JBoss keeps asking me to log into the
>admin page? It seems the security constraints are commented out.
PLEASE ADVICE
thanks
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836745#3836745
Reply to the post :
http:
Thanks Adrian.
That gives us a good reason to move to 3.2.3. :-)
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836743#3836743
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836743
--
Yes, I understand that. I was just trying to confirm if that would be the only way of
doing it or if I was missing something.
Personally I think a kind of configuration as ORION Server's is better since you don't
need to change any code on your application, but I understand that the way JBoss w
Precompile all your jsp's and put them in the war instead of the jsp's.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836741#3836741
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836741
You are out of luck, the ability to specify a user and password on the DLQ
connection wasn't added until JBoss-3.2.2
The configuration you want is in invoker-proxy-binding
DLQUser and DLQPassword
see jboss_3_2.dtd for more info
View the original post :
http://www.jboss.org/index.html?module=bb&o
See the FAQ on enabling debug.
Also check getWarnings() on the connection and statement
Look at the Oracle logs.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836739#3836739
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=repl
I got jBoss 3.2.1 to connect to TIBCO JMS without authentication but I have problems
trying to get it working with authentication.I am getting the following error
while starting jBoss:
13:42:18,296 INFO [DLQHandler] Creating
13:42:18,453 ERROR [DLQHandler] Initialization failed
javax.jms.JM
session.commit() in the sender or read the FAQ
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836737#3836737
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836737
-
That is horrible.
Here's the fix (org.jboss.mq.security.SecurityInterceptor) add the method
|
|// Check that a transaction request is authorized to send the messages
|public void transact(ConnectionToken dc, TransactionRequest t) throws
JMSException
|{
| if (t.messa
I have a web application,it works fine.only thing is I have to keep all of jsp file in
the war directory.when we give to client,they will see the source code.is there any
way only give them the compiled class file,instead give all of jsps and class files
thank you
View the original post :
http:
I am using jboss 3.2.3 on Windows 2000 server
Ron
17:02:45,756 INFO [Server] JBoss (MX MicroKernel) [3.2.3 (build: CVSTag=JBoss_
_2_3 date=200311301445)] Started in 53s:892ms
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836733#3836733
Reply to the post :
I have a message bean that reponds to a client submitting a queue
when I have
QueueSession session = qc.createQueueSession (false,Session.AUTO_ACKNOWLEDGE);
QueueSender sender = session.createSender(queue) ;
TextMessage tm = session.createTextMessage("Hello World");
qc.start() ;
sender.se
Hello
Trying to create a servlet that communicates with a orderbean - thats stateful.
This is supposed to maintain conversational state right between client right ? do I
need a degree in rocket science to get this to work then
situation below:
client 1 --> sessionbean 1
hbaxmann:
Thank you for posting the message with kinder English and approaching it technically
without commenting on a person's skill levels. I apologize if I was harsh on your
choice of words, or use of English.
I'll respond to the technical notions in your post now as best I can.
anonymou
You are already using an app server proprietary feature that will not port. There is
nothing in the specs that defines how to run a j2ee application client jar as part of
an ear using 'auto-start'. Your only option in jboss is to use an MBean service.
View the original post :
http://www.jboss.
Same place:
| [EMAIL PROTECTED] jboss-3.2.3]$ ls server/all/log/
| boot.log* cluster.log* localhost_access2004-05-28.log* server.log*
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836727#3836727
Reply to the post :
http://www.jboss.org/index.h
See:
http://www.jboss.org/wiki/Wiki.jsp?page=ExternalDirectories
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836726#3836726
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836726
---
Hello fellow developpers,
today, I found out what the reason for the messagedrivenbean problem was,
that I had: on those machines that had problems when they tried to start
jboss, they had deleted the hsqldb-ds.xml file (which configures access to
the hypersonic database that jboss uses to keep j
Hi,
I installed informatica poweranalyzer on a linux box with jboss 3.2.1 server. I
was able to start the server. But I had to reboot the linux box for some reasons, now
I am not able to restart the server. I am not an expert in system administration, but
I would be happy if I could get so
Basic setup is JBoss 3.2.3, default server, no config changes (save a datasource).
Swing client makes Stateless Session EJB calls.
On linux (RedHat 9.0), EJB calls behave normally; context is created, lookup occurs
quickly, call proceeds normally.
On both Windows 2000 and Windows XP, same subne
Are you sure your server is accessible from your client machine. Don't you have a
firewall between both ?
I always use myself this code snippet and it works fine:
| Properties prop = new Properties();
| prop.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
Hi,
I installed informatica poweranalyzer on a linux box with jboss 3.2.1 server. I
was able to start the server. But I had to reboot the linux box for some reasons, now
I am not able to restart the server. I am not an expert in system administration, but
I would be happy if I could get som
Here is the web file:
http://java.sun.com/dtd/web-app_2_3.dtd";>
The standard web descriptor for the html adaptor
HtmlAdaptor
org.jboss.jmx.adaptor.html.HtmlAdaptorServlet
ClusteredConsoleServlet
org.jboss.jmx.adaptor.html.ClusteredConsoleServlet
Weird. That looks fine. Post your web.xml too, I guess.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836718#3836718
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836718
Here is the content from jboss-web
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836717#3836717
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836717
---
Th
Hello,
Code that worked fine under commns-dbcp is not working under jboss. Essentially
subsequent read after write in same transaction is not seeing the records written.
Oracle's default behavior is to be able to see updates made within same transaction
even though not commited. Not sure why we
I have a JMS security configuration problem with JBoss 3.2.3 where I am using straight
JMS to write a message to a Queue from a Session Bean. I have configured the Session
Bean to use the JVM IL and am explicitly managing transactions within the JMS Session.
Since I am not providing login cred
Well, if you can, post the content of jboss-web.xml. If you comment the
security-domain out, the web.xml won't be tied to a JBoss security domain, which
should allow you to hit it w/o logging in.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836714#3836714
Ok, great, found it.
Now, your saying edit the jboss-web file not the web file right?
Thanks
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836713#3836713
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836713
-
JBOSS_HOME/server/default/deploy/jmx-console.war/WEB-INF
Let me know if that isn't there. I'm on jb3.2.1 at the moment.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836712#3836712
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mod
That is a DTD file. That's not an xml file. Don't touch those...
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836710#3836710
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836710
The place I found the file is
C:\jboss-3.2.3\docs\dtd
Im assuming this is wrong.
Can you provide the entire path for jmx-console/WEB-INF/jboss-web.xml please? I cant
find this particular path. As I said I dont see a jmx-console folder.
thanks
View the original post :
http://www.jboss.org/in
Ok, I found these 2 in the file:
Which one do I comment out, the first, second or both??
Thanks
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836709#3836709
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836709
jmx-console/WEB-INF/jboss-web.xml
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836708#3836708
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836708
---
This SF.
Right, but which web.xml file? There are a few in diff folders.
Thanks
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836707#3836707
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836707
Yes, but the configuration page only shows the fragment that needs to be added. The
full jboss-app.xml descriptors must be:
|
| app_1:loader=app_1.ear
|
|
|
| app_2:loader=app_2.ear
|
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic
Look in the jboss-web.xml file. There should be a security-domain or somethign like
that. Comment it out.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836705#3836705
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836
I just checked that web.xml file and it isnt the right one because there is no
element in it. I dont seem to have the path
"deploy/jmx-console/WEB-INF/web.xml", I dont see a deploy or jmx-console folder.
PLEASE ADVISE!!
Thanks
View the original post :
http://www.jboss.org/index.html?module=b
There was a leak of the Subject, but not the authentication info. See the patch
announcement for the fix and more info:
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836700#3836700
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836702#3836702
Rep
You forgot one:
then they troll your own forums.
Then you win.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836703#3836703
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836703
I am trying to use a image uploader with a wysiwyg for a CMS I am building. The image
uploader need a directory where it can copy files to. The directory needs to be
relative to the site root. I have the site built as a war file.
1. How can I accomplish this in Jboss?
2. Is there a way to pu
A leak of the authenticated JAAS Subject back to the tomcat thread pool exists in
3.2.3. The Subject associated with the thread was not being cleared, but the the
principal and credentials were. Although this does not affect authentication or
authorization, it can cause a previously authenticat
Is this the right path to the web file?
C:\jboss-3.2.3\docs\examples\tomcat\jbossweb-tomcat50.sar\ROOT.war\WEB-INF
There is a web.xml file in the WEB-INF folder.
If this is not the right path please provide me with the correct path to the web.xml
file I need.
Thanks in advance
View the origin
When using JB3.2.3 jetty my request logs (as well as server.log) used to be in the
/server/all/log directory...
Where does Tomcat put the request log?? Is there some parameter in the tomcat 5 .xml
files that I need to modify to turn on the request logs??
thanks in advance
tim
View the o
"mattcox" wrote : "marc fleury" wrote : > Rolf post again. Anyone want to implement
Slashcode
| | > and start a new TSS where Trolls automatically post
| | > at -1? How about we call it TheBetterSide?
| |
| |
| | TheBetterSide.com
| |
| | I like it
| |
| |
"marc fleury" wrote : > Rolf post again. Anyone want to implement Slashcode
| > and start a new TSS where Trolls automatically post
| > at -1? How about we call it TheBetterSide?
|
|
| TheBetterSide.com
|
| I like it
|
|
Screw all this nonsense. Hey Mark what about spendi
can you ping ur server from client? Check if xhosts is enabled or try adding an entry
in /etc/hosts
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836690#3836690
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836690
We have several web-apps. We're thinking it doesn't really seem to make sense to put
copies of all the struts jars in each individual war. (Many other shared 3rd party
libs as well).
Should these jars be packaged as part of each individual war file under WEB-INF/lib?
Or should they be put in
Do you check if you have double quotes or single quotes surrounding your values?
Double quotes may throw ORA-00972.
Google tells for example:
"The relevance of ' and " I suppose is this. By default Oracle is not case
sensitive about the names of database objects, but it is if when you create
Part of my post was auto formatted I guess...
Application.xml example should be:
...
(module)
(java)Monitor-Client.jar (/java)
(/module)
...
Replace '(' and ')' by '<' and '>'
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836685#3836685
Reply to the pos
Hi.
I currently deploy J2EE applications using ORION as my application Server. I've been
trying to test JBoss to see how it compares to ORION to future developments. I've
successfully configured JBoss to use most of what I need in my current applications
(EJB,Web Services,JMS,etc).
Still there
found the original:
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3828285
What about reading http://www.jboss.org/wiki/Wiki.jsp?page=JBossForums
bax
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836683#3836683
Reply to the post :
http://www.jbo
Google search:
"jboss jaas nt login module"
found http://www.junlu.com/msg/69273.html
which contains dead link to here and leads to:
http://free.tagish.net/jaas/doc.html
bax < happy to be your google >
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836682#
Thanks again for your help.
I have installed a Fedora Core 1 and I have recompiled a new monolitic linux kernel
(from kernel.org).
I should have enough information now to tune my server.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836681#3836681
Reply to
Because of 1.) the number of Java threads that are simultaneos working, 2.) the actual
OS-threading model of the kernel 3.) if you are using green or native threads (in
older JREs)
As I said: very roughly.
You should provide more detailed information, maybe your OS list is of more help.
bax
Hello Gentlemen. I have been looking at Nukes and how to possibly integrate existing
users and groups from our application with Nukes.
I read one post where it mentioned Nukes will be moving to a JAAS model for security.
I'm not familiar with JAAS, but my reasoning was to wait and see what thi
My mbean extends HASingletonSupport, which extends HAServiceMBeanSupport.
The HAServiceMBeanSupport class has two "convenience" methods called
getDistributedState and setDistributedState, which both delegate to the
DistributedStateService.
Therefore, I should be able to call getDistributedState
Is there any article or help in which I can use the JBoss Security to Authenticate
the users against an NT Domain Controller.Has anyone done the same using Jboss
Help will be gratly appreciated
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836676#3836676
R
Hi,
has anyone got a good example of a CORBA client talking to a session bean and
receiving a callback. I am using JACorb for the client also, although clients may well
be written in C++ etc, hence why i need to know how to do this.
I have been trying and I think I am nearly there. However not s
Ok, Thanks for your answer.
But there is still something I don't understand. How come, why when I use the default
kernel and I start jboss and I do some ps I have only one java line. But with the new
compiled kernel I still have 51 lines (when doing a ps -ax |grep java) when jboss has
completl
Thank's but finally I think that using, one datasource by user (a firm) and one jboss
instance by firm is a best choice, and remove the overhead of the context swtiching.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836673#3836673
Reply to the post :
http:
Hey Marc, based on this do you want me to get thebetterside.com up and running with
Nukes and a /. like module? ;)
Let's talk about it over beers after Silicon Valley JUG on June 9th.
-James
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836672#3836672
Rep
Hi...
I find the solutions
the solutions is change the timezone the solaris, its timezone correct you position
geographic.
in possible not utilies GMT
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836671#3836671
Reply to the post :
http://www.jboss.o
You can use javassist.rmi with standalone
Java programs. However, this package
uses HTTP for exchanging data between
server and client and hence the implementation
is not very efficient. You know, it's technology
demo.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewt
No. Unix, and this way Linux, is not a multi-threaded OS. It is a multi-process OS.
There are many many different implementations of threading libraries available, which
provide a faster context switching than processes and process pooling. Two of them are
for example pThreads and lThreads. Near
You mean the previous version? Please see:
https://sourceforge.net/project/showfiles.php?group_id=22866
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836668#3836668
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=38366
I have installed a linux machine with a new kernel (2.4.26).
I have installed j2sdk1.4.2_04 and jboss 3.2.3.
when I run jboss i can see many differents java processes! (when I do a ps -ax |grep
java I can see about 51 java processes!)
why?
Normaly there should be only one java process.
Thanks
Hi Scott,
is it right that I only have to complete the jboss-app.xml of each EAR with the
following lines?
app_1.ear:
app_1:loader=app_1.ear
app_2.ear
app_2:loader=app_2.ear
The result is that I get the same java.lang.VerifyError exception (see above)?
Thanks,
Tobi
View the origin
Unfortunately, no. You must use javac.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836664#3836664
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836664
---
This
Never mind. I've managed to solve the problem without using JBoss-NET, but rather
using AXIS direclty within JBoss.
Reiner
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836663#3836663
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting
Hi reader !
I have such problem:
When I launch client, that lookup ejb object, on a remote machine (trying on Windows
and Linux platform) i catch such Exception:
javax.naming.CommunicationException [Root exception is java.rmi.ConnectException:
Connection refused to host: 127.0.0.1; nested except
I just went thru this an got it to work..
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=50167
READ, the wiki link that Scott provided, then READ it again
If you look in the thread above you will see an example of what
the dot. com...In reading the doc you will see it MEANS nothing
1 - 100 of 163 matches
Mail list logo