requestor
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2
Apache::ReverseProxy 0.07
Apache::ReverseProxy is an Apache mod_perl reverse proxy. more>>
Apache::ReverseProxy is an Apache mod_perl reverse proxy.
SYNOPSIS
# In Apache config file
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
< /Location >
# In rproxy.conf / http://www.cpan.org/
This is a reverse proxy module for Apache with mod_perl. It is intended to replace Apache::ProxyPass. Given a list of URI mappings, this module will translate an incoming URI, retrieve the contents for the translated URI, and return the contents to the original requestor. This module allows you to specify exact matching (instead of regular expression matching) and handles query string translations.
CONFIGURATION
You will need to set the ReverseProxyConfig perl variable in Apache to the path of the reverse proxy mapping file. For example:
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
# Optional configuration items:
#PerlSetVar ReverseProxyChain http://proxy.mycompany.com:8888/
#PerlSetVar ReverseProxyNoChain mycompany.com
< /Location >
ReverseProxyChain specifies a proxy server to use. This is sometimes called proxy chaining when one proxy server uses another proxy server. The ReverseProxyNoChain directive can specify a domain to not use proxy chaining on.
Reverse proxy configuration files have three fields, each separated by white space. The first field is the uri to look for, the second field is the replacement uri, and the third field is optional and allows you to specify comma separated options for the mapping. The only option that is currently supported is the exact parameter, which will make the reverse proxy use exact matching for the first parameter instead of using regular expressions. This feature is convenient when the first parameter contains characters that may need to be escaped or quotemetaed. Exact options are evaluated first. If there isnt an exact match, regular expression matches are performed. Configuration files may contain comments, which start with a pound sign. For example:
/news/ http://www.news.com/
/ http://www.perl.com/
/stats http://localhost/stats exact
# /stats maps exactly to http://localhost/stats
# /stats/b maps to http://www.perl.com/stats/b
/french/news http://www.news.com/?language=french
# /french/news/index -> http://www.news.com/index?language=french
# /french/news/index?a=b -> http://www.news.com/index?language=french&a=b
<<lessSYNOPSIS
# In Apache config file
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
< /Location >
# In rproxy.conf / http://www.cpan.org/
This is a reverse proxy module for Apache with mod_perl. It is intended to replace Apache::ProxyPass. Given a list of URI mappings, this module will translate an incoming URI, retrieve the contents for the translated URI, and return the contents to the original requestor. This module allows you to specify exact matching (instead of regular expression matching) and handles query string translations.
CONFIGURATION
You will need to set the ReverseProxyConfig perl variable in Apache to the path of the reverse proxy mapping file. For example:
< Location / >
SetHandler perl-script
PerlHandler Apache::ReverseProxy
PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf
# Optional configuration items:
#PerlSetVar ReverseProxyChain http://proxy.mycompany.com:8888/
#PerlSetVar ReverseProxyNoChain mycompany.com
< /Location >
ReverseProxyChain specifies a proxy server to use. This is sometimes called proxy chaining when one proxy server uses another proxy server. The ReverseProxyNoChain directive can specify a domain to not use proxy chaining on.
Reverse proxy configuration files have three fields, each separated by white space. The first field is the uri to look for, the second field is the replacement uri, and the third field is optional and allows you to specify comma separated options for the mapping. The only option that is currently supported is the exact parameter, which will make the reverse proxy use exact matching for the first parameter instead of using regular expressions. This feature is convenient when the first parameter contains characters that may need to be escaped or quotemetaed. Exact options are evaluated first. If there isnt an exact match, regular expression matches are performed. Configuration files may contain comments, which start with a pound sign. For example:
/news/ http://www.news.com/
/ http://www.perl.com/
/stats http://localhost/stats exact
# /stats maps exactly to http://localhost/stats
# /stats/b maps to http://www.perl.com/stats/b
/french/news http://www.news.com/?language=french
# /french/news/index -> http://www.news.com/index?language=french
# /french/news/index?a=b -> http://www.news.com/index?language=french&a=b
Download (0.006MB)
Added: 2007-07-30 License: Perl Artistic License Price:
816 downloads
HSE 2.0b2
HSE (Hibernate, Spring, Echo2) is a three-tier base application for Echo2. more>>
HSE (Hibernate, Spring, Echo2) is a three-tier base application for Echo2. It is designed to be a starting point for writing robust AJAX applications in Java, Spring, and Hibernate.
Main features:
Hibernate, Spring, Echo2 integration:
- All three technologies are matched cohesively together to provide a robust base for your AJAX applications.
3-Tier Architecture:
- Follows the established pattern of separating the application into data, business, and user-interface tiers.
Security:
- Allows username/password logon, logoff, and permission checking.
- Permissions can be queried using hasPermission(), or enforced using requirePermission().
- Enforcement is done in the business tier.
- Group-based Permission System:
- Permissions are group based, which means that users gain permissions based on their group membership (A user can be a member of only one group).
- Groups can have multiple permissions, and associate levels for each permission.
- The base application uses two methods for interpreting permission levels.
Input Validation:
- A simple and flexible validation system that can handle most common input field validations.
- The custom screen and requestor components can display validation error alerts, and can automatically set focus to the offending input field.
User Editor:
- Example on-screen CRUD editor allowing modification of user properties, as well as group membership.
Group Editor:
- Example on-screen CRUD editor allowing modification of group properties, as well as assigning permission levels.
<<lessMain features:
Hibernate, Spring, Echo2 integration:
- All three technologies are matched cohesively together to provide a robust base for your AJAX applications.
3-Tier Architecture:
- Follows the established pattern of separating the application into data, business, and user-interface tiers.
Security:
- Allows username/password logon, logoff, and permission checking.
- Permissions can be queried using hasPermission(), or enforced using requirePermission().
- Enforcement is done in the business tier.
- Group-based Permission System:
- Permissions are group based, which means that users gain permissions based on their group membership (A user can be a member of only one group).
- Groups can have multiple permissions, and associate levels for each permission.
- The base application uses two methods for interpreting permission levels.
Input Validation:
- A simple and flexible validation system that can handle most common input field validations.
- The custom screen and requestor components can display validation error alerts, and can automatically set focus to the offending input field.
User Editor:
- Example on-screen CRUD editor allowing modification of user properties, as well as group membership.
Group Editor:
- Example on-screen CRUD editor allowing modification of group properties, as well as assigning permission levels.
Download (8.2MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1102 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above requestor search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed