We are investigating the use of HTTP Compression on an application being served up by JBoss. After making the setting change in the Tomcat SAR, we are seeing a compression of ... |
Is it possible to send pre-compressed files that are contained within an EARfile? More specifically, the jsp and js files within the WAR file. I am using Apache HTTP as the ... |
I want to set the emulateIE7 tag on per site basis. For that i'l need to set the same tag in http header. I am using jboss. So can anyone please ... |
I have a problem that causes all threads in JBOSS to block while reading the input stream. It does not happen predictably and the system can run for days (or longer) ... |
How can I enable HTTP Basic Authentication in JBoss 4 for a specific web application?
Having a fixed username/password will do.
|
How is gzip compression for Jboss 5.1.0 enabled?
Within the tomcat http connector right? I cant remember where this file is stored, server.xml?
|
I am trying to authenticate into JBoss,
and I got HTTP Status 408 - The time allowed for the login process has been exceeded.(full error message below)
this happens when I try to ... |
|
When the application is loading on a EAR re-deployment you get a 404 error, how do we trap this issue and provide a user friendly message to the end user accessing ... |
Implemented JAAS and SSL on jBoss 4.2.2 and found the issue with being unable to download .pdf's. after some poking around I found references to the Pragma: No-cache and Cache-Control: no-cache ... |
Following is our environment setup:
IIS 7 receives Http (.jsp) request from client (browser).
It blindly redirects it to JBoss using ISAPI_Redirect.dll.
Now we are trying to modify this setup in such a way ... |
the jboss server does not work if redirect to HTTPS url(port 8443), and here is WAR package web.xml configuration:
<security-constraint>
<web-resource-collection>
<web-resource-name>HtmlAdaptor</web-resource-name>
<description>Security for all ...
|
Whenever a URL having %2F is posted to my JBOSS Server, I am getting HTTP 400 Bad Request error message.
Url Having problem: "http://localhost:8080/application/abc%2Fhi?msg=hello"
If I remove the %2F from the URL ... |
I have the architecture where in a load balancer distributes the requests to Apache HTTP Servers which further sends the request to my application running on JBOSS. When the request reaches ... |
I have deployed a Webservice on JBossAS 5.1 GA. To use HTTP Basic Authentication, The SBC class is annotated the following way:
@Stateless
@SecurityDomain(value = ...
|
Currently my web application is running on jboss but I have an apache server that is used as a proxy to my application. I have the ability to upload XML files ... |
Background
Write an XML document to a browser's response stream and cause the browser to display a "Save As" dialog.
Problem
Consider the following download() method:
HttpServletResponse response = getResponse();
BufferedWriter bw ...
|
We have the following situation going on:
- Go to http://website/ and click on a link to http://website/appX
Check that the cookie shows JSessionID with secure = NO.
- Open another browser window or tab and ...
|
We currently use JBoss 5.1 as the application server and my application is mounted on http://<host>:<port>/<myapp>. Images are rendered via the following mount point
http://<host>:<port>/<myapp>/img?id=<image-id>
Currently the servlet rendering image is present ... |
i have a report which takes long to send response back to server.Is there possibility in the jboss server to increase the timeout value of http response.
|
Hello everybody I'm trying to make my own web site with framework JBoss Netty, server starts OK. But how I can load my website to server?
For example i all ready have ... |
I need to log the user ip ady's for every request to our JBoss Netty server. I thought:
MessageEvent e;
e.getChannel().getRemoteAddress();
was the correct answer, but this always returns 127.0.0.1 and I need the ... |
My application is deployed on JBoss-4.2 and Apache Server 2.2.
I want some of the url to be served on https(ssl),rest to be served on http.
I tried different solutions but,it is reflecting ... |