jBoss Response Header Configuration
Can URL-encoded response header sent by web server be stored in sessionStorage area on client side as per new feature of HTML 5 introduced in IE8?? ...
Can URL-encoded response header sent by web server be stored in sessionStorage area on client side as per new feature of HTML 5 introduced in IE8?? ...
I added following file deployers\jbossweb.deployer\server.xml <Connector compression="force" compressionMinSize="512" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html,text/xml,image/png,text/css,text/javascript"> </Connector> But fiddler shows that jboss does not compress responses. How to ...
I'm in the process of porting a prototype application developed under Tomcat to JBoss for production. Part of our app is an applet for uploading data onto the web server. Here's the code for the applet: <applet id="UploaderApplet" name="UploaderApplet" code="com.initech.uploader.AppletFrontend.class" archive="jar/Initech.Uploa...
I am trying to bind connection to the DB using JNDI in my application that runs on JBoss. I did the following: I created the datasource file oracle-ds.xml filled it with the relevant xml elements: <datasources> <local-tx-datasource> <jndi-name>bilby</jndi-name> ... </local-tx-datasource> </datasources> and put it...
in continuation to the question from last week: http://stackoverflow.com/questions/2828237/problem-configure-jboss-to-work-with-jndi I'm trying to bind datasource in JBoss and use it in my application. In my struggling, I already managed to avoid the javax.naming.NameNotFoundException by: 1. using in java new InitialContext().lookup(co...
Hi All, I have ear deployed in jboss 5.0.1, on windows 2008 which is 64 bit machine and we are using 64jvm, with this combination our VFS temp size increases a lot eventually all our physical hard drive space is used by replicating files. but if we change our JVm from 64 to 32 every thing looks ok. does any one one what is reason ?and...
Sorry for opening new thread every time for the same problem. It's just that I'd like to refine my question during my investigation and it's hard to do it in stackoverflow structure on the same question (maybe on purpose). Anyway, in continuation to this thread http://stackoverflow.com/questions/2843218/problem-configure-jboss-to-work-w...
Our commercial application used to run on different application server and letely we started adjust it to run on JBoss server. The problem is that that application runs JBoss cache and as part of the integration with this framework, the web-inf\lib contains the follwing jars: jboss-aop.jar, jbosscache-core.jar, jboss-common.jar, jboss-c...
I'd like to improve the performance of my Seam apps and JBoss appserver, particularly by removing things that aren't necessary in the standard configuration. Ideally, I'd like to be able to run it using the "minimal" profile. Can anyone give me any guidance as to what is needed to run a Seam app using "minimal"? Here are the kind of t...
An application is deployed to context that uses security for the entire context. I need create a new file that will serve as a ping for our loadbalancer. This file can have NO security associated with it. How do I set up this file in web.xml to disable any security for it? ...
I'd like to know if the default behavior of JBoss server (4.2.3.GA in my case) is loading the classes in parent-first or parent-last mode. And in case it work as I suspect in parent-last mode (i.e. first trying to load classes from the application's WEB-INF/lib and only if they are not found go to server\lib), how can I configure it to w...
Hi, How can I upgrade JBoss AS 4.0.5 to TCL Filter, so that it supports separate application logs. Any help is appreciated in advance. Thanks, Ram ...
Our application runs succesfully on Tomcat, Websphere and Weblogic and as part of it uses Jboss Cache version 3.1.0.G. Now we would like adjust our app to run also in Jboss server environment. Is there any Jboss server version that can co-exist working together with JBoss cache of this version (3.1)? I couldn't find a match in a compat...
I want to call ejb from servlet via remote interface. Maybe it is a RTFM question but i cannot find solution via Google or documentation. What configuration steps I need to do than ejb be accessible for webapps I use Jboss 4.2, Java 1.6 Thanks for your answer! ...
I looked at this article that talks about JBoss class-loading, but still got scenario that I'd like to verify: in case I have got a utility class that is located both in the application's archive (myApp/WEB-INF/lib) and in the server/default/lib but with different version in each one of the archives. Now I'd like that classes from my ...
Seam 2.1 and JBoss 4.2.2 I have set up the first App to have the EJB in the EAR with a local interface. the 2nd app can look up JDNI name "ear-name/ejbname/local" but fails with "NoClassDefFound". Does the EJB .jar need to be outside of the EAR? Is this a classloader visibility issue or Is this a JBoss version issue? or something el...
Hey , I am new to servlet and jboss, I just deploy my servlet on jboss 4.2 .jboss console shows me it is deployed successfully my web.xml contain <display-name>Notification_Auth_server_simulator</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</we...
I just went through a few resources on the web to write WebServices using annotations and they claim that the web service is exposed as a servlet. But, it doesn't seem to work for me. It throws a ClassCastException. The code is below: import javax.jws.WebMethod; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import java...
Hi! I need to send parameters in my EL Expression. So i put jboss-el jar. as well, I added the tag: <context-param> <param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name> <param-value>org.jboss.el.ExpressionFactoryImpl</param-value> </context-param> in my web.xml of the project. But it seems to me that it stil uses...
I just downloaded the JBoss Portal Server 2.7.2 (JBoss Portal + JBoss AS 4.2.3 bundle to be precise) and tried deploying portlets just as the SimpleHelloWorld provided in the samples. The portlet gets deployed fine but when I put it on a page I get the following exception. I tried adding other Portlets as well (such as the booking MVC po...