server « JBoss « Java Enterprise Q&A





1. How to get the status of a JBOSS server    stackoverflow.com

I am working on writing a Highly Available agent for JBOSS to run on Solaris Open HA Cluster. As I don't know much of JBOSS, can someone please tell me how ...

2. What is the best messaging server for communicating across java and .net?    stackoverflow.com

We've been using jbossmq and csil. The implementation has been successful in production for 6 years, but I'm wondering if something better is available. One issue is jbossmq's ...

3. Running JBoss 4.2.3 and JBoss 5.1 on the same server    stackoverflow.com

I want to run JBoss 4.2.3 and JBoss 5.1 on the same server, but not simultaneously. I just need to be able to switch back and forth between the two for ...

4. How do you go on about learning enterprise Java application servers?    stackoverflow.com

Alright, the question might be broad. We've been looking at Jboss and a few other similar app. servers. From the feature list it would be perfect for replacing our soon to be ...

5. How can I use the hostname of the server instead of localhost with JBoss?    stackoverflow.com

I setup JBoss 4.2.2 GA on a local server of mine. I am able to access the JBoss Application Server by going to http://localhost:8080. However, I would like to ...

6. 502 Bad Gateway... invalid response from upstream server (apache and jboss)    stackoverflow.com

I'm using apache on one machine to serve requests to jboss on another machine. Everything works fine when I startup jboss and I'm able to access the web app, but ...

7. Does anyone know if there is a way to use JBoss (4.2.3) as an SMTP server?    stackoverflow.com

I'm after a way of not having to poll an inbox to receive messages, but to receive them directly in JBoss instead. Does anyone know how I can achieve this? ...

8. JBoss Application Server redeploy    stackoverflow.com

I need a windows shell script which will redeploy my .ear file. I wrote one:

net stop "JBAS50SVC"
copy /y O:\TEMP\app.ear C:\jboss-4.2.3.GA\server\default\deploy\app.ear
net start "JBAS50SVC"
But the problem is that when I try to stop ...

9. Determine Which Application Server our application is deployed to?    stackoverflow.com

Our J2EE Application is deployed to JBoss and sometimes to OC4J . Can I know which one is being used? I hope there is a method returning the container information ...





10. j2ee: I have a problem regarding jboss server    stackoverflow.com

I am using jboss 4.2 server and oracle xe both have same port ie 8080 so I want to change my jBoss port for run our application please tell ...

11. Introduction book for JBoss Application Server    stackoverflow.com

I joined a programming competition that requires participant to use JBoss Application Server platform. Do you guys have any recommendation on what books or articles I could use?

12. How to access local files on server in JBoss application?    stackoverflow.com

I am looking to access all files in a local directory in a JBoss application. I can put the directory anywhere in my war including WEB-INF if necessary. I then want ...

13. jboss server root folder    stackoverflow.com

how can i find which folder is the jboss root dir? where can i find the root folder variable mentioned in a war file

14. problem to start Jboss server?    stackoverflow.com

i am download Jboss jboss-5.0.0.CR2-jdk6.zip file and extract the zip,then i am set system variable JBOSS_HOME=F:\jboss-5.0.0.CR2.when i run the jboss on double click on run.bat. it execute for a while and then ...

15. How to configure a page to display while server is in planned maintenance in Jboss?    stackoverflow.com

How to configure in Jboss, when server is in planned maintenance(not completely down), to display an error page? thanks.

16. jboss application server newbie question    stackoverflow.com

I am starting to learn JBoss.
Went to the download page http://www.jboss.org/jbossas/downloads.html but I can not understand what is the official version i.e. GA.
There is 7.0.0.Alpha1 6.0.0.CR1 6.0.0.M5 6.0.0.M4 etc
I ...





17. how to use postgresql with jboss server    stackoverflow.com

hi i want to know how i can connect to postgresql server with my application which will deploy on jboss 4.2.2 server. please reply me as soon as possible. Thank you.

18. JBoss Library, ClassNotFoundException and the Other Problems    stackoverflow.com

We were using tomcat for our projects here and we started to think of using JBoss. But i couldnt manage to run any of our projects. I tried to solve the ...

19. JBoss AS 5 over WAS 7    stackoverflow.com

Can someone please help with advantages of JBoss over WAS? Any help or reference is appreciated. Thanks.

20. CAS SSO Server Setup on JBoss 4.2.2    stackoverflow.com

I'm trying to deploy CAS Single Sign On Server on JBoss 4.2.2 but can't find a good guide/documentation/tutorial on that. FYI, It's running smoothly on Apache Tomcat 6 but I'm really ...

21. Java Date Issue On the Jboss Server    stackoverflow.com

I have a web and mobile application. The application has kind of items that user can add using either the website or mobile app. Both add item forms have date field ...

22. Configure multiple sites in jboss application server    stackoverflow.com

I am using a jboss application web server, and have war files deployed already and running a website . how do i configure another site using httpd.conf and jboss to run ...

23. trouble in starting jboss server    stackoverflow.com

I'm trying to start jboss but the it's not getting started. It gives the following error

  JBoss Bootstrap Environment

  JBOSS_HOME: /opt/portal/jbossPayments/jboss-5.1.0.GA

  JAVA: /usr/jdk/jdk1.6.0_19/bin/java

  JAVA_OPTS: -Dprogram.name=run_pmnts_ports_01.sh -server -Xms2650m ...

24. Difference Between Jboss Application server ConnectionListener.DESTROY and doDestroy(cl);    community.jboss.org

Could you please tell the difference in between the removal of connection event listener and destroying the connection objects. if we remove the connection event listsener means that connection object could ...

25. How to restart the jboss server through java    coderanch.com

Dear all, i am trying to run and restart the jboss server through the java programm where server present in C:\jboss\bin. Please can any one help how to make this . my code to run the run.bat file goes below String cmd = "C:\\jboss\\bin\run.bat"; try{ Runtime runtime = Runtime.getRuntime(); Process porc = runtime.exec(cmd); } but i need to restart aslo.......their is ...

27. Keystore file in JBoss server    coderanch.com

Hi, I am new to the keystore concept and hence my question could be quite silly. I have created a new keystore and have added the private and public key certificates into the keystore using the keytool commands and also got my test application to work fine using the keystore. Now, when i ran the test class from my IDE, i ...

28. How to create an access folder for a project in the Jboss server    java-forums.org

I am using JBOSS 4.0.2 server i have a requirement that user have to create a directory dynamically in the server(jboss) that is independent of operating system. I tried to create a folder by getting the path from ServletContext application = getServletConfig().getServletContext(); String absolutePath = application.getRealPath("\\"); System.out.println("absolutePath:"+absolutePath); File fDir = new File(absolutePath+"\\uploadedFiles\\"); boolean b = fDir.mkdir(); i am able to create ...

29. How to use JBOSS server    forums.oracle.com

30. JBoss Virtual server    forums.oracle.com

31. Shut down jboss server    forums.oracle.com

Hi I have to do some checks when the applicaitons starts. I am doing these checks while the server is coming up. I want to halt the server if thses checks fails. I tried org.jboss.system.server.shutdown(). but since the server is not completely up, i am getting an error message like "Server not started" I tries halt() and exit() but i am ...

32. Search a file in jboss server    forums.oracle.com

33. easy setup CRM app on JBoss server    forums.oracle.com

Hi! I need a easy setup CRM app to install it on JBoss server. I have Windows 7, Netbeans 6.7.1, with JBoss server installed, I have Glassfish too, but I don't have the permission to use it. I've already tried to setup CentraView, ofBiz, oeCrm, SugarCE, vTigerCrm, but didn't managed. I want an app with a nice interface(skins, templates). Can someone ...

34. server starting problem with Jboss and eclips    forums.oracle.com

I am using eclipse 3.4.2 and jboss-5.0.1.GA while starting jboss server the following error is getting 17:54:29,156 ERROR [AbstractKernelController] Error installing to Instantiated: name=TransactionManager state=Described java.lang.ExceptionInInitializerError: java.net.MalformedURLException: unknown protocol: e 17:54:30,109 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS): Deployment "jboss:service=proxyFactory,target=ClientUserTransaction" is missing the following dependencies: Dependency "jboss:service=invoker,type=unified" (should be in state "Create", but ...

35. JBOSS 4.0 Application Server start up problem?    forums.oracle.com

1. JBOSS Application Server start up problem? I have installed the JBOSS 4.0 application server in eclipse 3.4(Ganymede) in order to work with the adempiere open source ERP.When I start the JBOSS server,It displays the message Server started in Xm:XXs:XXXms in the console window.But the progress bar in server window is still running.Once the time out is over,it displays the message ...