cancel
Showing results for 
Search instead for 
Did you mean: 

Apache as reverse proxy - 400 Bad request

former_member182374
Active Contributor
0 Kudos

Hi all,

I'm configured apache as reverse proxy according to this blog:

When I try to navigate http://testcomp/irj I get "400 - Bad request"

See exception;

<i>Message : User Guest, IP address

Cannot parse the http request. Http error response [400 Bad Request] will be returned. Request is [Host: sapportal:50000

Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, /

Accept-Language: en,he;q=0.5

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)

Max-Forwards: 10

Via: 1.1 localhost

X-Forwarded-For: 10.0.0.4

X-Forwarded-Host: 10.0.0.6

X-Forwarded-Server: localhost

Connection: Keep-Alive

GET /irj HTTP/1.1

Host: sapportal:50000

Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, /

Accept-Language: en,he;q=0.5

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)

Max-Forwards: 10

Via: 1.1 localhost

X-Forwarded-For: 10.0.0.4

X-Forwarded-Host: 10.0.0.6

X-Forwarded-Server: localhost

Connection: Keep-Alive

].

com.sap.engine.services.httpserver.exceptions.HttpIllegalArgumentException: Incompatible field content in the MIME header.

at com.sap.engine.services.httpserver.lib.headers.MimeHeaderField.parse(MimeHeaderField.java:364)

at com.sap.engine.services.httpserver.lib.headers.MimeHeaders.init(MimeHeaders.java:504)

at com.sap.engine.services.httpserver.server.RequestAnalizer.initialize(RequestAnalizer.java:196)

at com.sap.engine.services.httpserver.server.Client.initialize(Client.java:84)

at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:143)

at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

at java.security.AccessController.doPrivileged(Native Method)

at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)

at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)

Severity : Error

Category :

Location : com.sap.engine.services.httpserver

Application :

Thread : SAPEngine_Application_Thread[impl:3]_32

Datasource : 9332850:C:usrsapPD9JC00j2eeclusterserver0logdefaultTrace.trc

Message ID : 000C29EFE9A300570000002D00000B9000043A81D3311894

Source Name : com.sap.engine.services.httpserver

Argument Objs :

Arguments :

Dsr Component :

Dsr Transaction : 5359e85066e411dcbf6b000c29efe9a3

Dsr User :

Indent : 0

Level : 0

Message Code :

Message Type : 0

Relatives :

Resource Bundlename :

Session : 2

Source : com.sap.engine.services.httpserver

ThreadObject : SAPEngine_Application_Thread[impl:3]_32

Transaction :

User : Guest</i>

The lines I added to http.conf

<i>#Enable reverse-proxying

ProxyVia on

ProxyTimeout 600

#disable forward-proxying

ProxyRequests Off

#proxy /irj both ways

ProxyPass /irj http://sapportal:50000/irj

ProxyPassReverse /irj http://testcomp/irj

#proxy /logon both ways

ProxyPass /logon http://sapportal:50000/logon

ProxyPassReverse /logon http://testcomp/logon</i>

I tried with apache version 2.2.3 & 2.0.59 with no success.

My J2EE/Portal version is 6.17.

Since this is a testing environment the two computers are under the same workgroup (no domain).

If I naviagte directly to the portal (without the reverse proxy) everything is working.

How can I solve it?

Regards,

Omri

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Try this configuration :

ProxyPreserveHost On

#proxy /irj both ways

ProxyPass /irj http://sapportal:50000/irj

ProxyPassReverse /irj http://sapportal:50000/irj

#proxy /logon both ways

ProxyPass /logon http://sapportal:50000/logon

ProxyPassReverse /logon http://sapportal:50000/logon

Hope this helps

Best Regards

Jakub Krecicki

former_member182374
Active Contributor
0 Kudos

Hi Jakub,

Thanks for the answer.

It's not working for me...

I'm attaching my httpd.conf file.

Also, what apache version do you use?

Can you send me your post your httpd.conf file?

Thanks,

Omri

httpd.conf

#

  1. This is the main Apache HTTP server configuration file. It contains the

  2. configuration directives that give the server its instructions.

  3. See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.

  4. In particular, see

  5. <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>

  6. for a discussion of each configuration directive.

#

  1. Do NOT simply read the instructions in here without understanding

  2. what they do. They're here only as hints or reminders. If you are unsure

  3. consult the online docs. You have been warned.

#

  1. Configuration and logfile names: If the filenames you specify for many

  2. of the server's control files begin with "/" (or "drive:/" for Win32), the

  3. server will use that explicit path. If the filenames do not begin

  4. with "/", the value of ServerRoot is prepended -- so "logs/foo.log"

  5. with ServerRoot set to "c:/apache" will be interpreted by the

  6. server as "c:/apache/logs/foo.log".

#

  1. NOTE: Where filenames are specified, you must use forward slashes

  2. instead of backslashes (e.g., "c:/apache" instead of "c:\apache").

  3. If a drive letter is omitted, the drive on which Apache.exe is located

  4. will be used by default. It is recommended that you always supply

  5. an explicit drive letter in absolute paths, however, to avoid

  6. confusion.

#

  1. ThreadsPerChild: constant number of worker threads in the server process

  2. MaxRequestsPerChild: maximum number of requests a server process serves

ThreadsPerChild 250

MaxRequestsPerChild 0

#

  1. ServerRoot: The top of the directory tree under which the server's

  2. configuration, error, and log files are kept.

#

  1. Do not add a slash at the end of the directory path. If you point

  2. ServerRoot at a non-local disk, be sure to point the LockFile directive

  3. at a local disk. If you wish to share the same ServerRoot for multiple

  4. httpd daemons, you will need to change at least LockFile and PidFile.

#

ServerRoot "c:/apache"

#

  1. Listen: Allows you to bind Apache to specific IP addresses and/or

  2. ports, instead of the default. See also the <VirtualHost>

  3. directive.

#

  1. Change this to Listen on specific IP addresses as shown below to

  2. prevent Apache from glomming onto all bound IP addresses (0.0.0.0)

#

#Listen 12.34.56.78:80

Listen 80

#

  1. Dynamic Shared Object (DSO) Support

#

  1. To be able to use the functionality of a module which was built as a DSO you

  2. have to place corresponding `LoadModule' lines at this location so the

  3. directives contained in it are actually available before they are used.

  4. Statically compiled modules (those listed by `httpd -l') do not need

  5. to be loaded here.

#

  1. Example:

  2. LoadModule foo_module modules/mod_foo.so

#

LoadModule actions_module modules/mod_actions.so

LoadModule alias_module modules/mod_alias.so

LoadModule asis_module modules/mod_asis.so

LoadModule auth_basic_module modules/mod_auth_basic.so

#LoadModule auth_digest_module modules/mod_auth_digest.so

#LoadModule authn_anon_module modules/mod_authn_anon.so

#LoadModule authn_dbm_module modules/mod_authn_dbm.so

LoadModule authn_default_module modules/mod_authn_default.so

LoadModule authn_file_module modules/mod_authn_file.so

#LoadModule authz_dbm_module modules/mod_authz_dbm.so

LoadModule authz_default_module modules/mod_authz_default.so

LoadModule authz_groupfile_module modules/mod_authz_groupfile.so

LoadModule authz_host_module modules/mod_authz_host.so

LoadModule authz_user_module modules/mod_authz_user.so

LoadModule autoindex_module modules/mod_autoindex.so

#LoadModule cern_meta_module modules/mod_cern_meta.so

LoadModule cgi_module modules/mod_cgi.so

#LoadModule dav_module modules/mod_dav.so

#LoadModule dav_fs_module modules/mod_dav_fs.so

#LoadModule deflate_module modules/mod_deflate.so

LoadModule dir_module modules/mod_dir.so

LoadModule env_module modules/mod_env.so

#LoadModule expires_module modules/mod_expires.so

#LoadModule file_cache_module modules/mod_file_cache.so

#LoadModule headers_module modules/mod_headers.so

LoadModule imagemap_module modules/mod_imagemap.so

LoadModule include_module modules/mod_include.so

#LoadModule info_module modules/mod_info.so

LoadModule isapi_module modules/mod_isapi.so

LoadModule log_config_module modules/mod_log_config.so

LoadModule mime_module modules/mod_mime.so

#LoadModule mime_magic_module modules/mod_mime_magic.so

<b>LoadModule proxy_module modules/mod_proxy.so</b>

#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so

#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so

#LoadModule proxy_connect_module modules/mod_proxy_connect.so

<b>LoadModule proxy_http_module modules/mod_proxy_http.so</b>

#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so

LoadModule negotiation_module modules/mod_negotiation.so

#LoadModule rewrite_module modules/mod_rewrite.so

LoadModule setenvif_module modules/mod_setenvif.so

#LoadModule speling_module modules/mod_speling.so

#LoadModule status_module modules/mod_status.so

#LoadModule unique_id_module modules/mod_unique_id.so

LoadModule userdir_module modules/mod_userdir.so

#LoadModule usertrack_module modules/mod_usertrack.so

#LoadModule vhost_alias_module modules/mod_vhost_alias.so

#LoadModule ssl_module modules/mod_ssl.so

  1. 'Main' server configuration

#

  1. The directives in this section set up the values used by the 'main'

  2. server, which responds to any requests that aren't handled by a

  3. <VirtualHost> definition. These values also provide defaults for

  4. any <VirtualHost> containers you may define later in the file.

#

  1. All of these directives may appear inside <VirtualHost> containers,

  2. in which case these default settings will be overridden for the

  3. virtual host being defined.

#

#

  1. ServerAdmin: Your address, where problems with the server should be

  2. e-mailed. This address appears on some server-generated pages, such

  3. as error documents. e.g. admin@your-domain.com

#

ServerAdmin @@ServerAdmin@@

#

  1. ServerName gives the name and port that the server uses to identify itself.

  2. This can often be determined automatically, but we recommend you specify

  3. it explicitly to prevent problems during startup.

#

  1. If your host doesn't have a registered DNS name, enter its IP address here.

#

ServerName localhost:80

#

  1. DocumentRoot: The directory out of which you will serve your

  2. documents. By default, all requests are taken from this directory, but

  3. symbolic links and aliases may be used to point to other locations.

#

DocumentRoot "c:/apache/htdocs"

#

  1. Each directory to which Apache has access can be configured with respect

  2. to which services and features are allowed and/or disabled in that

  3. directory (and its subdirectories).

#

  1. First, we configure the "default" to be a very restrictive set of

  2. features.

#

<Directory />

Options FollowSymLinks

AllowOverride None

Order deny,allow

Deny from all

Satisfy all

</Directory>

#

  1. Note that from this point forward you must specifically allow

  2. particular features to be enabled - so if something's not working as

  3. you might expect, make sure that you have specifically enabled it

  4. below.

#

#

  1. This should be changed to whatever you set DocumentRoot to.

#

<Directory "c:/apache/htdocs">

#

  1. Possible values for the Options directive are "None", "All",

  1. or any combination of:

  1. Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

#

  1. Note that "MultiViews" must be named explicitly --- "Options All"

  1. doesn't give it to you.

#

  1. The Options directive is both complicated and important. Please see

  1. http://httpd.apache.org/docs/2.2/mod/core.html#options

  1. for more information.

#

Options Indexes FollowSymLinks

#

  1. AllowOverride controls what directives may be placed in .htaccess files.

  1. It can be "All", "None", or any combination of the keywords:

  1. Options FileInfo AuthConfig Limit

#

AllowOverride None

#

  1. Controls who can get stuff from this server.

#

Order allow,deny

Allow from all

</Directory>

#

  1. DirectoryIndex: sets the file that Apache will serve if a directory

  2. is requested.

#

<IfModule dir_module>

DirectoryIndex index.html

</IfModule>

#

  1. The following lines prevent .htaccess and .htpasswd files from being

  2. viewed by Web clients.

#

<FilesMatch "^\.ht">

Order allow,deny

Deny from all

</FilesMatch>

#

  1. ErrorLog: The location of the error log file.

  2. If you do not specify an ErrorLog directive within a <VirtualHost>

  3. container, error messages relating to that virtual host will be

  4. logged here. If you do define an error logfile for a <VirtualHost>

  5. container, that host's errors will be logged there and not here.

#

ErrorLog logs/error.log

#

  1. LogLevel: Control the number of messages logged to the error_log.

  2. Possible values include: debug, info, notice, warn, error, crit,

  3. alert, emerg.

#

LogLevel warn

<IfModule log_config_module>

#

  1. The following directives define some format nicknames for use with

  1. a CustomLog directive (see below).

#

LogFormat "%h %l %u %t \"%r\" %>s %b \"%

  1. You need to enable mod_logio.c to use %I and %O
i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common <IfModule logio_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%i\" \"%{User-Agent}i\" %I %O" combinedio

</IfModule>

#

  1. The location and format of the access logfile (Common Logfile Format).

  1. If you do not define any access logfiles within a <VirtualHost>

  1. container, they will be logged here. Contrariwise, if you do

  1. define per-<VirtualHost> access logfiles, transactions will be

  1. logged therein and not in this file.

#

CustomLog logs/access.log common

#

  1. If you prefer a logfile with access, agent, and referer information

  1. (Combined Logfile Format) you can use the following directive.

#

#CustomLog logs/access.log combined

</IfModule>

<IfModule alias_module>

#

  1. Redirect: Allows you to tell clients about documents that used to

  1. exist in your server's namespace, but do not anymore. The client

  1. will make a new request for the document at its new location.

  1. Example:

  1. Redirect permanent /foo http://www.example.com/bar

#

  1. Alias: Maps web paths into filesystem paths and is used to

  1. access content that does not live under the DocumentRoot.

  1. Example:

  1. Alias /webpath /full/filesystem/path

#

  1. If you include a trailing / on /webpath then the server will

  1. require it to be present in the URL. You will also likely

  1. need to provide a <Directory> section to allow access to

  1. the filesystem path.

#

  1. ScriptAlias: This controls which directories contain server scripts.

  1. ScriptAliases are essentially the same as Aliases, except that

  1. documents in the target directory are treated as applications and

  1. run by the server when requested rather than as documents sent to the

  1. client. The same rules about trailing "/" apply to ScriptAlias

  1. directives as to Alias.

#

ScriptAlias /cgi-bin/ "c:/apache/cgi-bin/"

</IfModule>

#

  1. "c:/apache/cgi-bin" should be changed to whatever your ScriptAliased

  2. CGI directory exists, if you have that configured.

#

<Directory "c:/apache/cgi-bin">

AllowOverride None

Options None

Order allow,deny

Allow from all

</Directory>

  1. Apache parses all CGI scripts for the shebang line by default.

  2. This comment line, the first line of the script, consists of the symbols

  3. pound (#) and exclamation followed by the path of the program that

  4. can execute this specific script. For a perl script, with perl.exe in

  5. the C:\Program Files\Perl directory, the shebang line should be:

#!c:/program files/perl/perl

  1. Note you mustnot_ indent the actual shebang line, and it must be the

  2. first line of the file. Of course, CGI processing must be enabled by

  3. the appropriate ScriptAlias or Options ExecCGI directives for the files

  4. or directory in question.

#

  1. However, Apache on Windows allows either the Unix behavior above, or can

  2. use the Registry to match files by extention. The command to execute

  3. a file of this type is retrieved from the registry by the same method as

  4. the Windows Explorer would use to handle double-clicking on a file.

  5. These script actions can be configured from the Windows Explorer View menu,

  6. 'Folder Options', and reviewing the 'File Types' tab. Clicking the Edit

  7. button allows you to modify the Actions, of which Apache 1.3 attempts to

  8. perform the 'Open' Action, and failing that it will try the shebang line.

  9. This behavior is subject to change in Apache release 2.0.

#

  1. Each mechanism has it's own specific security weaknesses, from the means

  2. to run a program you didn't intend the website owner to invoke, and the

  3. best method is a matter of great debate.

#

  1. To enable the this Windows specific behavior (and therefore -disable- the

  2. equivilant Unix behavior), uncomment the following directive:

#

#ScriptInterpreterSource registry

#

  1. The directive above can be placed in individual <Directory> blocks or the

  2. .htaccess file, with either the 'registry' (Windows behavior) or 'script'

  3. (Unix behavior) option, and will override this server default option.

#

#

  1. DefaultType: the default MIME type the server will use for a document

  2. if it cannot otherwise determine one, such as from filename extensions.

  3. If your server contains mostly text or HTML documents, "text/plain" is

  4. a good value. If most of your content is binary, such as applications

  5. or images, you may want to use "application/octet-stream" instead to

  6. keep browsers from trying to display binary files as though they are

  7. text.

#

DefaultType text/plain

<IfModule mime_module>

#

  1. TypesConfig points to the file containing the list of mappings from

  1. filename extension to MIME-type.

#

TypesConfig conf/mime.types

#

  1. AddType allows you to add to or override the MIME configuration

  1. file specified in TypesConfig for specific file types.

#

#AddType application/x-gzip .tgz

#

  1. AddEncoding allows you to have certain browsers uncompress

  1. information on the fly. Note: Not all browsers support this.

#

#AddEncoding x-compress .Z

#AddEncoding x-gzip .gz .tgz

#

  1. If the AddEncoding directives above are commented-out, then you

  1. probably should define those extensions to indicate media types:

#

AddType application/x-compress .Z

AddType application/x-gzip .gz .tgz

#

  1. AddHandler allows you to map certain file extensions to "handlers":

  1. actions unrelated to filetype. These can be either built into the server

  1. or added with the Action directive (see below)

#

  1. To use CGI scripts outside of ScriptAliased directories:

  1. (You will also need to add "ExecCGI" to the "Options" directive.)

#

#AddHandler cgi-script .cgi

  1. For type maps (negotiated resources):

#AddHandler type-map var

#

  1. Filters allow you to process content before it is sent to the client.

#

  1. To parse .shtml files for server-side includes (SSI):

  1. (You will also need to add "Includes" to the "Options" directive.)

#

#AddType text/html .shtml

#AddOutputFilter INCLUDES .shtml

</IfModule>

#

  1. The mod_mime_magic module allows the server to use various hints from the

  2. contents of the file itself to determine its type. The MIMEMagicFile

  3. directive tells the module where the hint definitions are located.

#

#MIMEMagicFile conf/magic

#

  1. Customizable error responses come in three flavors:

  2. 1) plain text 2) local redirects 3) external redirects

#

  1. Some examples:

#ErrorDocument 500 "The server made a boo boo."

#ErrorDocument 404 /missing.html

#ErrorDocument 404 "/cgi-bin/missing_handler.pl"

#ErrorDocument 402 http://www.example.com/subscription_info.html

#

#

  1. EnableMMAP and EnableSendfile: On systems that support it,

  2. memory-mapping or the sendfile syscall is used to deliver

  3. files. This usually improves server performance, but must

  4. be turned off when serving from networked-mounted

  5. filesystems or if support for these functions is otherwise

  6. broken on your system.

#

#EnableMMAP off

#EnableSendfile off

  1. Supplemental configuration

#

  1. The configuration files in the conf/extra/ directory can be

  2. included to add extra features or to modify the default configuration of

  3. the server, or you may simply copy their contents here and change as

  4. necessary.

  1. Server-pool management (MPM specific)

#Include conf/extra/httpd-mpm.conf

  1. Multi-language error messages

#Include conf/extra/httpd-multilang-errordoc.conf

  1. Fancy directory listings

#Include conf/extra/httpd-autoindex.conf

  1. Language settings

#Include conf/extra/httpd-languages.conf

  1. User home directories

#Include conf/extra/httpd-userdir.conf

  1. Real-time info on requests and configuration

#Include conf/extra/httpd-info.conf

  1. Virtual hosts

#Include conf/extra/httpd-vhosts.conf

  1. Local access to the Apache HTTP Server Manual

#Include conf/extra/httpd-manual.conf

  1. Distributed authoring and versioning (WebDAV)

#Include conf/extra/httpd-dav.conf

  1. Various default settings

#Include conf/extra/httpd-default.conf

  1. Secure (SSL/TLS) connections

#Include conf/extra/httpd-ssl.conf

#

  1. Note: The following must must be present to support

  2. starting without SSL on platforms with no /dev/random equivalent

  3. but a statically compiled-in mod_ssl.

#

<IfModule ssl_module>

SSLRandomSeed startup builtin

SSLRandomSeed connect builtin

</IfModule>

<b>ProxyPreserveHost On

ProxyVia on

ProxyTimeout 600

#disable forward-proxying

ProxyRequests Off

#proxy /irj both ways

ProxyPass /irj http://sapportal:50000/irj

ProxyPassReverse /irj http://sapportal:50000/irj

#ProxyPassReverse /irj http://testcomp/irj

#proxy /logon both ways

ProxyPass /logon http://sapportal:50000/logon

ProxyPassReverse /logon http://sapportal:50000/logon

#ProxyPassReverse /logon http://testcomp/logon</b>;

Former Member
0 Kudos

Hi Omri

I think Your configuration is correct(my configuration is very similar).

You should increase the log level, and than check errors :

		LogLevel debug
		ErrorLog logs/error.log
		CustomLog logs/custom.log common

Best Regards

Jakub Krecicki

Former Member
0 Kudos

Pls check with the following

ServerName localhost:80 to servername(i.e testcomp) :80
i.e 
ServerName testcomp:80

in ur httpd file

Regards

Jayesh

Message was edited by:

Jayesh Ghodge

former_member182374
Active Contributor
0 Kudos

Hi Jacub,

Probably there was a problem with my Apache installation.

I reinstalled it and everything wokrs!

Thanks,

Omri

Answers (0)