<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Serverphorums.com - HAProxy</title>
        <description>HAProxy is a free, very fast and reliable solution offering high availability, load balancing, and proxying for TCP and HTTP-based applications.  Archive started on 2009/08/31.</description>
        <link>http://www.serverphorums.com/list.php?10</link>
        <lastBuildDate>Wed, 19 Jun 2013 13:39:02 +0200</lastBuildDate>
        <generator>Phorum 5.2.18</generator>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,728561,728561#msg-728561</guid>
            <title>ACL file encoding/ACE (1 reply)</title>
            <link>http://www.serverphorums.com/read.php?10,728561,728561#msg-728561</link>
            <description><![CDATA[ Hi.<br />
<br />
I love that you can specify to use a file in the acl like this for domain<br />
switching:<br />
<br />
acl is_backend1 hdr(Host) -f /etc/haproxy/backend1.txt<br />
<br />
In Norway our customers can register domains with the norwegian letters<br />
æøå. Does this switch work with haproxy if the norwegian letters are used?<br />
If so, what encoding should we use on the txt file? Can we specify the<br />
domains in ACE format insted?<br />
<br />
Thanks<br />
<br />
Daniel]]></description>
            <dc:creator>Daniel Storjordet</dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 19 Jun 2013 10:30:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,728331,728331#msg-728331</guid>
            <title>RFC: set-tos followup (1 reply)</title>
            <link>http://www.serverphorums.com/read.php?10,728331,728331#msg-728331</link>
            <description><![CDATA[ Hi!<br />
<br />
I gave the new set-tos option a try, and I noticed two things:<br />
<br />
- addr.to.ss_family is never AF_INET, addr.from.ss_family is what we are<br />
  looking for (after this change, it works for IPv4)<br />
- the IPv6 related part is missing (TOS/DSCP has the same meaning in IPv6<br />
  than in IPv4, so if addr.from.ss_family is AF_INET6, we can imho go<br />
  ahead and set IPV6_TCLASS from set-tos)<br />
<br />
<br />
The attached preliminary diff does those two things (and a small doc fix),<br />
however I need some commentary about:<br />
<br />
- if IPV6_TCLASS is not defined, we abort (even though IP_TOS may be<br />
  defined, and IPv4 TOS/DSCP could be set) - is this acceptable? The only<br />
  way around this would be a dedicated option for IPv6, but that seems<br />
  overkill<br />
<br />
- when haproxy listens on both families with one bind statement, it sees<br />
  IPv4 connection in the AF_INET6 family (like ::ffff:10.0.0.3 instead of<br />
  10.0.0.3): when this happens, we set IPV6_TCLASS, but it has no effect.<br />
  Probably expected kernel behavior and I believe most of the people use<br />
  dedicate (per address-family) sockets anyway.<br />
<br />
<br />
Let me know what you guys think about this.<br />
<br />
Willy, do you prefer such a diff like this to be splitted in 2 or 3 patches<br />
or as-is? It would probably be better to split at least the technical ones<br />
into different commits (so a git-bisect is more meaningful).<br />
<br />
<br />
<br />
Regards,<br />
<br />
Lukas]]></description>
            <dc:creator>Lukas Tribus</dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 19 Jun 2013 11:40:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,728233,728233#msg-728233</guid>
            <title>'SSL handshake failure' errors (2 replies)</title>
            <link>http://www.serverphorums.com/read.php?10,728233,728233#msg-728233</link>
            <description><![CDATA[ Hi,<br />
<br />
We are seeing a fair amount of 'SSL handshake failure' errors in our log,<br />
and we are running HAProxy 1.5-dev18.<br />
<br />
The pattern of errors is:<br />
<br />
Jun 17 20:00:28 localhost.localdomain haproxy[26060]: 68.xxx.xx.216:56030<br />
[17/Jun/2013:20:00:28.002] public/2: SSL handshake failure<br />
<br />
The following are the relevant frontend settings in our config:<br />
<br />
frontend public<br />
        mode    http<br />
        bind    0.0.0.0:80 <a href="http://0.0.0.0/" target="_blank"  rel="nofollow">http://0.0.0.0/</a><br />
        bind    0.0.0.0:443 ssl crt /etc/haproxy/ssl_wc/site.pem no-sslv3<br />
ciphers RC4:HIGH:!EXP:!LOW:!RC2:!3DES:!SEED:!aNULL:!eNULL:!MD5:!EDH<br />
        option  forwardfor except 127.0.0.1<br />
        reqadd  X-Forwarded-Proto:\ https if { ssl_fc }<br />
        reqadd  X-Forwarded-Proto:\ http if !{ ssl_fc }<br />
        redirect scheme https if !{ ssl_fc }<br />
<br />
Any idea what causes these 'SSL handshake failure' errors? Given our whole<br />
site uses SSL, this is impacting usability for users.<br />
<br />
Best regards,<br />
<br />
Merton]]></description>
            <dc:creator>Merton Lister</dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 19 Jun 2013 02:20:02 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,728224,728224#msg-728224</guid>
            <title>Handling SSL and non-ssl on the same port (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,728224,728224#msg-728224</link>
            <description><![CDATA[ Is there a good way to handle SSL and non-ssl on the same port, with ssl handled by HAProxy <br />
<br />
I can do ex:<br />
frontend maybessl<br />
bind *:443<br />
        bind localhost:1443 ssl crt example.pem<br />
<br />
        acl client_hello req_ssl_hello_type 1<br />
<br />
<br />
        use_backend ssl if client_hello<br />
<br />
default_backend clear<br />
<br />
backend ssl<br />
        server ssl localhost:1443<br />
<br />
But then each SSL socket going through the load balancer is making an extra connection to localhost.  For my use case, I'm planning to have large numbers of long running connections, so extra sockets and file descriptors is unpleasant.  Some way of turning on SSL after the socket started could be helpful for STARTTLS use cases as well (not sure if there's a lot of demand for that though).<br />
<br />
<br />
Thanks,<br />
<br />
Richard]]></description>
            <dc:creator>Richard Russo</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 18 Jun 2013 22:30:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,727929,727929#msg-727929</guid>
            <title>HAProxy 1.5-dev18 logs messages twice (1 reply)</title>
            <link>http://www.serverphorums.com/read.php?10,727929,727929#msg-727929</link>
            <description><![CDATA[ Hello<br />
<br />
HAProxy 1.5-dev18 seems to log the same message twice when &quot;log global&quot;<br />
is specified in the &quot;defaults&quot; section, and again in a frontend section.<br />
 Here are the relevant extracts from our haproxy.cfg:<br />
<br />
	global<br />
        	<br />
	        log 127.0.0.1   local4<br />
        	log 127.0.0.1   local5 notice<br />
<br />
		[ ... ]<br />
<br />
	defaults<br />
        	log        global<br />
	        mode       http<br />
        	option     httplog<br />
	        option     dontlognull<br />
<br />
		[ ... ]<br />
<br />
	frontend http 0.0.0.0:80<br />
	        log             global<br />
        	maxconn         25000<br />
	        option          forwardfor except 127.0.0.1<br />
        	option          httpclose<br />
	        capture request header X-Forwarded-For len 40<br />
<br />
		[ ... ]<br />
<br />
	frontend https<br />
	        bind 0.0.0.0:443 ssl crt /etc/haproxy/&lt;certfile&gt; \<br />
				no-sslv3 ciphers HIGH:RC4:!aNULL:!MD5<br />
	        log             global<br />
        	maxconn         25000<br />
	        option          forwardfor except 127.0.0.1<br />
        	option          httpclose<br />
	        capture request header X-Forwarded-For len 40<br />
<br />
and here is the extract from rsyslog.conf:<br />
<br />
	$template<br />
DailyHaproxyDetailLog,&quot;/var/log/haproxy/haproxy-detail-%$year%-%$month%-%$day%.log&quot;<br />
	if $syslogfacility-text == 'local4' and $programname == 'haproxy' then<br />
-?DailyHaproxyDetailLog<br />
	&amp; ~<br />
	if $syslogfacility-text == 'local5' and $programname == 'haproxy' then<br />
-/var/log/haproxy/haproxy-info.log<br />
	&amp; ~<br />
<br />
I notice that each request is logged once, then logged again immediately<br />
before the next request is logged.  If there is no &quot;next&quot; request, the<br />
request is logged a second time after a pause of between 60 and 70 seconds.<br />
<br />
If I comment out the &quot;log global&quot; line from the frontend configuration,<br />
only one request is logged.<br />
<br />
This did not used to happen with HAProxy 1.4<br />
<br />
Is this a bug?<br />
<br />
Chris<br />
<br />
<br />
Please access the attached hyperlink for an important electronic communications disclaimer: <a href="http://lse.ac.uk/emailDisclaimer" target="_blank"  rel="nofollow">http://lse.ac.uk/emailDisclaimer</a>]]></description>
            <dc:creator>Chris Fryer</dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 19 Jun 2013 12:20:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,727660,727660#msg-727660</guid>
            <title>HAProxy for failover (2 replies)</title>
            <link>http://www.serverphorums.com/read.php?10,727660,727660#msg-727660</link>
            <description><![CDATA[ Hello all,<br />
<br />
I am using HAProxy for MYSQL failover. It is a MySQL master-slave replication environment. When master is UP, all reads and writes go to master. In case the master is down, reads and writes will go to the slave. Once the master is down and HAProxy redirects all reads/writes to the slave, we do not want any writes/reads to go to the master even if it comes up automatically. We want to ensure that there will be some kind of manual intervention before a master, once marked down, gets requests again. Is this possible?<br />
<br />
<br />
Regards,<br />
Jayadevan<br />
<br />
<br />
<br />
DISCLAIMER: &quot;The information in this e-mail and any attachment is intended only for the person to whom it is addressed and may contain confidential and/or privileged material. If you have received this e-mail in error, kindly contact the sender and destroy all copies of the original communication. IBS makes no warranty, express or implied, nor guarantees the accuracy, adequacy or completeness of the information contained in this email or any attachment and is not liable for any errors, defects, omissions, viruses or for resultant loss or damage, if any, direct or indirect.&quot;]]></description>
            <dc:creator>Jayadevan M</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 18 Jun 2013 15:00:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,727341,727341#msg-727341</guid>
            <title>Measuring queued requests to gunicorn (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,727341,727341#msg-727341</link>
            <description><![CDATA[ Hi folks, how can I measure the number of requests that are queueing in a HAProxy to gunicorn setup? HAProxy says 0, but gunicorn is a blackbox.<br />
<br />
Image of HAProxy stats for gunicorn: <a href="http://cl.ly/PiPP" target="_blank"  rel="nofollow">http://cl.ly/PiPP</a><br />
<br />
<br />
Thanks!<br />
<br />
Sam]]></description>
            <dc:creator>Samuel Clay</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 18 Jun 2013 05:00:02 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,726882,726882#msg-726882</guid>
            <title>Re: Product order access for (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,726882,726882#msg-726882</link>
            <description><![CDATA[ As an imprtant member,<br />
I've reserved you a special<br />
download access link to a new tool<br />
that allows you to &quot;take&quot; commissions <br />
using your moible phone.<br />
<a href="http://url7.me/wkJu" target="_blank"  rel="nofollow">http://url7.me/wkJu</a><br />
If you don't have one, then <br />
ignore this email]]></description>
            <dc:creator>小欧</dc:creator>
            <category>HAProxy</category>
            <pubDate>Mon, 17 Jun 2013 18:30:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,726874,726874#msg-726874</guid>
            <title>Single Source Multicast load balancing (4 replies)</title>
            <link>http://www.serverphorums.com/read.php?10,726874,726874#msg-726874</link>
            <description><![CDATA[ Hi,<br />
<br />
I am looking to use HA proxy to load balance a couple of video streaming servers. I am just beginning this process and am wondering if there are any show stoppers or hurdles that I might encounter when trying to load balance a couple of servers that are dependent upon SSM?<br />
<br />
In theory, I think HA proxy will do what we need it to do but I am about to begin a proof of concept to see if it will work or not. If so, we plan on deploying this across many of our clients solutions. At least that's what I'd like to do if we can pass the POC.<br />
<br />
So far, I like what HA proxy can do but I'm not certain yet this will work for us.<br />
<br />
Any ideas or suggestions would be most appreciated.<br />
<br />
Thank you,<br />
-Steve<br />
<br />
<br />
Steven Ryder<br />
Solutions Architect<br />
<br />
[cid:image001.jpg@01CE5623.8069BB20]<br />
<br />
6825 Flanders Drive<br />
San Diego, CA  92121<br />
(858) 677-7800<br />
www.verimatrix.comhttp://www.verimatrix.com/<br />
<br />
This communication may contain information that is confidential in nature and unauthorized use or disclosure is strictly prohibited.  If you are not the intended recipient, kindly reply or call at the number above to alert us.. Afterward, please delete this communication in its entirety.]]></description>
            <dc:creator>Steve Ryder</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 18 Jun 2013 19:40:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,726761,726761#msg-726761</guid>
            <title>[ANNOUNCE] haproxy-1.5-dev19 and 1.4.24 (security update) (1 reply)</title>
            <link>http://www.serverphorums.com/read.php?10,726761,726761#msg-726761</link>
            <description><![CDATA[ Hi all,<br />
<br />
Here's an important update for 1.4 and 1.5, please read it, it contains<br />
an important security fix.<br />
<br />
When a config makes use of hdr_ip(x-forwarded-for,-1) or any such thing<br />
involving a negative occurrence count, the header is still parsed in the<br />
order it appears, and an array of up to MAX_HDR_HISTORY entries is created.<br />
When more entries are used, the entries simply wrap and continue this way.<br />
    <br />
A problem happens when the incoming header field count exactly divides<br />
MAX_HDR_HISTORY, because the computation removes the number of requested<br />
occurrences from the count, but does not care about the risk of wrapping<br />
with a negative number. Thus we can dereference the array with a negative<br />
number and randomly crash the process.<br />
    <br />
The bug is located in http_get_hdr() in haproxy 1.5, and get_ip_from_hdr2()<br />
in haproxy 1.4. It affects configurations making use of one of the following<br />
functions with a negative &lt;value&gt; occurence number :<br />
    <br />
   - hdr_ip(&lt;name&gt;, &lt;value&gt;)  (in 1.4)<br />
   - hdr_*(&lt;name&gt;, &lt;value&gt;)   (in 1.5)<br />
<br />
It also affects &quot;source&quot; statements involving &quot;hdr_ip(&lt;name&gt;)&quot; since that<br />
statement implicitly uses -1 for &lt;value&gt; :<br />
    <br />
   - source 0.0.0.0 usesrc hdr_ip(&lt;name&gt;)<br />
    <br />
A workaround consists in rejecting dangerous requests early using<br />
hdr_cnt(&lt;name&gt;), which is available both in 1.4 and 1.5 :<br />
    <br />
   block if { hdr_cnt(&lt;name&gt;) ge 10 }<br />
    <br />
This bug has been present since the introduction of the negative offset<br />
count in 1.4.4 via commit bce70882. It has been reported by David Torgerson<br />
who offered some debugging traces showing where the crash happened, thus<br />
making it significantly easier to find the bug!<br />
    <br />
CVE-2013-2175 was assigned to this bug.<br />
<br />
For those who want to quickly deploy a fix, please use this patch for 1.5,<br />
it also applies to 1.4 :<br />
<br />
   <a href="http://git.1wt.eu/web?p=haproxy.git;a=commitdiff;h=67dad2715b" target="_blank"  rel="nofollow">http://git.1wt.eu/web?p=haproxy.git;a=commitdiff;h=67dad2715b</a><br />
<br />
1.4.24 has only two other fixes from 1.4.23 :<br />
  - BUG/MEDIUM: checks: disable TCP quickack when pure TCP checks are used<br />
  - BUG/MAJOR: backend: consistent hash can loop forever in certain circumstances<br />
<br />
For 1.5, no less than 28 bugs were fixed since 1.5-dev18, but as usual, either<br />
you were not affected by them or were already using a more recent snapshot :-)<br />
 <br />
Bugs apart, 1.5 has received long-awaited updates, among which :<br />
<br />
  - error reporting for acl/fetch was improved, log-format can now indicate<br />
    where a bad keyword was detected ;<br />
<br />
  - the stats page allow the output to be filtered to certain proxies only <br />
<br />
  - transparent proxy is now supported on FreeBSD/OpenBSD<br />
<br />
  - new ACL fetch full_hdr() works on a full header line, as opposed to<br />
    hdr() which works on a comma-delimited list of values. This is useful<br />
    with some new user-agents which include commas and could not be matched ;<br />
<br />
  - health-checks try to drain server response first to avoid to emit a<br />
    TCP reset whenever possible ;<br />
<br />
  - new &quot;http-response&quot; rule sets allows some processing to be performed<br />
    based on the response (eg: add/set header) ;<br />
<br />
  - new actions for http-request/http-response :<br />
    + set-nice : change the task's priority : allows high-bandwidth,<br />
      low importance tasks to be deprioritized (useful for compression<br />
      as well) ;<br />
<br />
    + set-log-level : change the log level of current request, with<br />
      possibility to completely disable it (eg: log POSTs with higher<br />
      severity or stop logging statics, etc...) ;<br />
<br />
    + set-tos : set the DSCP field of outgoing packets to the specified<br />
      value. Can be useful to route certain responses over different<br />
      links ;<br />
<br />
    + set-mark : set a netfilter mark on all outgoing packets to the<br />
      specified value. Can be used as an alternative to DSCP above, or<br />
      to blacklist some IPs (when combined with ipset for example) ;<br />
<br />
  - new action &quot;expect-proxy layer4&quot; for &quot;tcp-request connection&quot;. This<br />
    allows the PROXY protocol to be conditionally enabled on incoming<br />
    connections. For example, when you rely on an external haproxy farm<br />
    whose addresses are known, the PROXY protocol can be enabled just<br />
    for them.<br />
<br />
  - a new &quot;env()&quot; fetch keyword was added to retrieve an environment<br />
    variable. This allows a same config to be used in various modes by<br />
    just changing an environment variable during a reload (eg: prod/maint).<br />
    Other usages include passing the Via header to servers.<br />
<br />
  - stick-counters have been increased to 3 (sc0, sc1, sc2), because most<br />
    often when combining to criteria, it was not possible to have both 1,<br />
    2 and 1+2 at the same time.<br />
<br />
  - ACL usage simplification : fetch methods of types boolean, integer<br />
    or IP address are automatically usable in ACLs without having to<br />
    specify &quot;-m $type&quot;. This permitted to significantly clean the code<br />
    by removing many double references to same keywords. Contributors<br />
    will probably appreciated.<br />
<br />
  - the ACL/fetch doc experienced a major lift up to avoid referencing the<br />
    same keywords twice. It was by far the hardest change of this whole<br />
    version!<br />
<br />
I receive about twice a week a question asking &quot;when will 1.5 become stable ?&quot;.<br />
<br />
We're still focusing primarily on this task, but the changes introduced in<br />
last september had a lot of impact and were not trivial to fix. Server-side<br />
keep-alive is still the condition to switch to 1.5-stable. In the mean time,<br />
some issues with buffer management still need to be adressed in order to be<br />
able to fix compression (which is disabled for chunked encoding right now).<br />
Another big deal is to propagate the process binding to listeners to fix some<br />
issues with peers and stats socket in multi-process mode. I already have<br />
patches for this but they're broken, dependencies are too deep and they need<br />
to be redesigned. The rest is not very important and can be postponed.<br />
<br />
It seems reasonable to think about 1.5-stable by the end of the summer, so<br />
all in all it's as always &quot;in 3 months&quot;... The good thing is that I'm getting<br />
more time dedicated to this task at Exceliance, so this never-ending promise<br />
might become true.<br />
<br />
Usual links below :<br />
                                                                        <br />
     Site index       : <a href="http://haproxy.1wt.eu/" target="_blank"  rel="nofollow">http://haproxy.1wt.eu/</a><br />
     Sources   (1.4)  : <a href="http://haproxy.1wt.eu/download/1.4/src/" target="_blank"  rel="nofollow">http://haproxy.1wt.eu/download/1.4/src/</a><br />
     Changelog (1.4)  : <a href="http://haproxy.1wt.eu/download/1.4/src/CHANGELOG" target="_blank"  rel="nofollow">http://haproxy.1wt.eu/download/1.4/src/CHANGELOG</a><br />
     Sources   (1.5)  : <a href="http://haproxy.1wt.eu/download/1.5/src/devel/" target="_blank"  rel="nofollow">http://haproxy.1wt.eu/download/1.5/src/devel/</a><br />
     Changelog (1.5)  : <a href="http://haproxy.1wt.eu/download/1.5/src/CHANGELOG" target="_blank"  rel="nofollow">http://haproxy.1wt.eu/download/1.5/src/CHANGELOG</a><br />
     Cyril's HTML doc : <a href="http://cbonte.github.com/haproxy-dconv/configuration-1.5.html" target="_blank"  rel="nofollow">http://cbonte.github.com/haproxy-dconv/configuration-1.5.html</a><br />
<br />
Do not forget to upgrade or patch,<br />
Willy]]></description>
            <dc:creator>Willy Tarreau</dc:creator>
            <category>HAProxy</category>
            <pubDate>Mon, 17 Jun 2013 20:40:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,726163,726163#msg-726163</guid>
            <title>hdr(host) includes port? (1 reply)</title>
            <link>http://www.serverphorums.com/read.php?10,726163,726163#msg-726163</link>
            <description><![CDATA[ Hi there,<br />
<br />
Is the port part of a HTTP header hostname? It looks like, because<br />
depending on the frontend port I have to do something like this:<br />
<br />
if { hdr(host) -i haproxy-rulez.net:8181 }<br />
....if the frontend is bound to :8181<br />
<br />
I'd prefer to just write<br />
if { hdr(host) -i haproxy-rulez.net }<br />
....no matter what port the frontend is bound to.<br />
<br />
That way I wouldn't have to remember to change the port in the ACL if I<br />
decide to change the frontend port. I know I probably could use hdr_beg<br />
instead but I'd prefer a full hostname match.<br />
<br />
Cheers]]></description>
            <dc:creator>pechspilz</dc:creator>
            <category>HAProxy</category>
            <pubDate>Sun, 16 Jun 2013 19:00:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,726158,726158#msg-726158</guid>
            <title>Integrating IT with Intelligent Business Processes (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,726158,726158#msg-726158</link>
            <description><![CDATA[ If you're having trouble viewing this email, please click here.<br />
<br />
<br />
  <br />
    <br />
    <br />
    <br />
  <br />
  <br />
    &amp;nbsp;<br />
    <br />
    &amp;nbsp;<br />
  <br />
  <br />
    &amp;nbsp;<br />
    &amp;nbsp;<br />
    &amp;nbsp;<br />
  <br />
  <br />
    &amp;nbsp;<br />
    <br />
    	Changing markets, economic pressures and evolving customer demands are important factors which have laid greater stress on IT to deliver greater speed with better flexibility.<br />
        Business Process Management (BPM) is an approach to align business strategy with execution. The intention is to gain performance agility through a unified approach and alter management objectives at various stages.<br />
        Service Oriented Architecture (SOA) comprises of multiple applications that are brought together to attain efficiency and productivity from the entire IT process.<br />
It is important to have a sound system with effective Monitoring &amp; Intelligence capabilities that helps master the ability to map information technology infrastructure.<br />
It is important to use the winning combination of BPM &amp; SOA to help enterprises execute critical business processes.<br />
        <br />
        <br />
    <br />
    &amp;nbsp;<br />
  <br />
  <br />
    &amp;nbsp;<br />
    <br />
      <br />
        <br />
          <br />
            Key benefits:<br />
            <br />
          <br />
            <br />
            &amp;nbsp;<br />
            Cost effective<br />
          <br />
          <br />
            <br />
            &amp;nbsp;<br />
            Operational &amp; business visibility<br />
          <br />
          <br />
            <br />
            &amp;nbsp;<br />
            Innovation that helps build flexibility <br />
          <br />
          <br />
            <br />
            &amp;nbsp;<br />
            Improves efficiency<br />
          <br />
          <br />
        <br />
        <br />
        <br />
        &amp;nbsp;<br />
        <br />
      <br />
    <br />
    &amp;nbsp;<br />
  <br />
  <br />
    <br />
    <br />
    <br />
  <br />
<br />
<br />
You have received this mailer from us because you indicated that you would like to receive special offers. To unsubscribe from this offer, please click here to unsubscribe.]]></description>
            <dc:creator>YouMint.com</dc:creator>
            <category>HAProxy</category>
            <pubDate>Sun, 16 Jun 2013 16:20:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,726154,726154#msg-726154</guid>
            <title>Resume - Storage and Virtualization Admin\ Cloud Computing Expert\ IT Infrastracture Admin\ DataCenter Admin (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,726154,726154#msg-726154</link>
            <description><![CDATA[ Dear Sir\Ma'am,<br />
                        Please find attached herewith Resume for your favorable action.<br />
<br />
Name - Jatin Chopra<br />
Organization: Interra Information Technologies Inc.(www.interrait.com <a href="http://www.interrait.com/" target="_blank"  rel="nofollow">http://www.interrait.com/</a>)<br />
Designation : MTS Level-6 (Multi-Tasking Staff)<br />
Total Exp: 8+ years<br />
Expected CTC: INR 12 lakh p.a <br />
Current Location: Delhi\NCR<br />
Preferred Location ; Delhi, Guragon, Noida, Faridabad.<br />
<br />
-<br />
Thanks &amp; Regards<br />
Jatin]]></description>
            <dc:creator>Jatin Chopra</dc:creator>
            <category>HAProxy</category>
            <pubDate>Sun, 16 Jun 2013 15:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725847,725847#msg-725847</guid>
            <title>Costume de baie 2013 modele WOW. Intra sa le vezi si alege! (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725847,725847#msg-725847</link>
            <description><![CDATA[ Ati primit un email de la costume-baie.ro<br />
Deoarece programul dvs. de email nu poate citi corect acest mesaj,<br />
va rugam dati click aici:<br />
<a href="http://inbocs.net/iem/display.php?M=1754485&amp;C=a460f82affabdca41a22eda911f27d5a&amp;S=7&amp;L=3&amp;N=11" target="_blank"  rel="nofollow">http://inbocs.net/iem/display.php?M=1754485&amp;C=a460f82affabdca41a22eda911f27d5a&amp;S=7&amp;L=3&amp;N=11</a><br />
<br />
Daca nu mai doriti si alte mesaje, dati click aici:<br />
<a href="http://inbocs.net/iem/unsubscribe.php?M=1754485&amp;C=a460f82affabdca41a22eda911f27d5a&amp;L=3&amp;N=7" target="_blank"  rel="nofollow">http://inbocs.net/iem/unsubscribe.php?M=1754485&amp;C=a460f82affabdca41a22eda911f27d5a&amp;L=3&amp;N=7</a>]]></description>
            <dc:creator>Costume Baie Vara 2013</dc:creator>
            <category>HAProxy</category>
            <pubDate>Sat, 15 Jun 2013 10:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725670,725670#msg-725670</guid>
            <title>Fwd: Very odd behavior with 'cookie' only working intermittently (1 reply)</title>
            <link>http://www.serverphorums.com/read.php?10,725670,725670#msg-725670</link>
            <description><![CDATA[ Hello, we have two machines with identical haproxy configurations, set up<br />
to load balance each other, with Tomcat on the back end.<br />
<br />
We're seeing the SERVERID cookie only being set intermittently, despite the<br />
fact that as per our understanding it should be set with every response.<br />
<br />
When the cookie is NOT set, the request isn't printed when haproxy is<br />
running in debug mode, and the backend &quot;Total Sessions&quot; doesn't increment<br />
on the status page.<br />
<br />
Here's our configuration, we'd sincerely appreciate any hints anyone may<br />
have.<br />
<br />
Thanks,<br />
-Chris<br />
-----<br />
global<br />
 log 127.0.0.1   local2 info<br />
maxconn 4096<br />
ulimit-n 8250<br />
 chroot /home/haproxy<br />
user haproxy<br />
group haproxy<br />
 daemon<br />
quiet<br />
pidfile /home/haproxy/haproxy.pid<br />
<br />
defaults<br />
log     global<br />
mode    http<br />
option  httplog<br />
 option  dontlognull<br />
retries 3<br />
redispatch<br />
maxconn 2000<br />
 contimeout      5000<br />
clitimeout      60000<br />
srvtimeout      60000<br />
 stats uri /gz-haproxy-status<br />
120<br />
cookie SERVERID insert indirect nocache<br />
no option transparent<br />
<br />
<br />
frontend haproxy *:85<br />
default_backend tomcat<br />
<br />
backend tomcat<br />
        balance roundrobin<br />
 option httpchk GET /warehouse/static/images/gazelle_logo_tm.png<br />
server stg_wh_1 10.94.246.222:8181 cookie i-9b333efb check inter 9000 ri<br />
se 2 fall 3 port 8181 maxconn 1000<br />
server stg_wh_2 10.223.37.147:8181 cookie i-73b5be11 check inter 9000 ri<br />
se 2 fall 3 port 8181 maxconn 10]]></description>
            <dc:creator>Chris Patti</dc:creator>
            <category>HAProxy</category>
            <pubDate>Fri, 14 Jun 2013 23:50:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725486,725486#msg-725486</guid>
            <title>Randomly added byte in GET request line with HAProxy 1.5 + OpenSSL (4 replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725486,725486#msg-725486</link>
            <description><![CDATA[ Hello all,<br />
<br />
we see some strange errors in our logs after having introduced HAProxy <br />
1.5 snapshot 20130611 before our nginx.<br />
<br />
It seems like HAProxy sometimes (seldom) inserts a rather random byte as <br />
the second byte of a GET request line on SSL requests. Some (anonymized) <br />
log lines follow:<br />
<br />
1.1.1.1:30893 [13/Jun/2013:08:41:50.443] front~ master/gemini <br />
369/0/0/500/869 500 817 - - ---- 3/2/0/0/0 0/0 &quot;GNET /login HTTP/1.1&quot;<br />
2.2.2.2:50771 [13/Jun/2013:16:03:17.488] front~ special/gemini <br />
184/0/0/-1/184 502 4410 - - PH-- 0/0/0/0/0 0/0 &quot;G3ET /foo HTTP/1.1&quot;<br />
3.3.3.3:37310 [13/Jun/2013:16:13:52.495] front~ master/gemini <br />
911/0/0/-1/911 502 4410 - - PH-- 0/0/0/0/0 0/0 &quot;GqET / HTTP/1.1&quot;<br />
<br />
and more of that. Inserted characters that I have seen include<br />
<br />
A J H I U Q N 3 % ~ + ! $ . ' o z q<br />
<br />
They are always inserted before the E in GET. We have only seen this <br />
behavior on GET requests. All other HTTP verbs are completely unaffected.<br />
<br />
I can reproduce this error every time with the following conditions:<br />
* HAProxy is compiled with a self-compiled openssl 1.0.1d<br />
* The client is an IE on Windows 7<br />
<br />
Other browsers don't show this issue. Also, when I compile HAProxy <br />
against the default OpenSSL 0.9.8o in Debian Squeeze, it works fine too.<br />
<br />
I can reproduce the issue with even the most simple (ssl-) configs, on <br />
the current snapshot, dev18 and dev17.<br />
<br />
I'm a bit worried that this might be the symptom of a larger issue. But <br />
it might just be that I'm not competent enough to compile my own <br />
OpenSSL. I would appreciate, if someone could give me some input here.<br />
<br />
# uname -a<br />
Linux gemini 2.6.32-5-amd64 #1 SMP Fri May 10 08:43:19 UTC 2013 x86_64 <br />
GNU/Linux<br />
<br />
# cat /etc/debian_version<br />
6.0.7<br />
<br />
I compiled openssl 1.0.1d with<br />
<br />
../config no-idea no-mdc2 no-rc5 zlib enable-tlsext no-ssl2 <br />
--openssldir=/opt/haproxy/openssl<br />
make<br />
make test<br />
make install<br />
<br />
Haproxy is compiled as follows (using <br />
<a href="https://github.com/meineerde-cookbooks/haproxy/blob/master/recipes/source.rb" target="_blank"  rel="nofollow">https://github.com/meineerde-cookbooks/haproxy/blob/master/recipes/source.rb</a>): <br />
<br />
<br />
# haproxy -vv<br />
HA-Proxy version 1.5-dev18 2013/04/03<br />
Copyright 2000-2013 Willy Tarreau &lt;w@1wt.eu&gt;<br />
<br />
Build options :<br />
TARGET = linux2628<br />
CPU = generic<br />
CC = gcc<br />
CFLAGS = -m64 -march=x86-64 -O2 -g -fno-strict-aliasing<br />
OPTIONS = USE_ZLIB=1 USE_OPENSSL=1 USE_PCRE=1<br />
<br />
Default settings :<br />
maxconn = 2000, bufsize = 16384, maxrewrite = 8192, maxpollevents = 200<br />
<br />
Encrypted password support via crypt(3): yes<br />
Built with zlib version : 1.2.3.4<br />
Compression algorithms supported : identity, deflate, gzip<br />
Built with OpenSSL version : OpenSSL 1.0.1d 5 Feb 2013<br />
Running on OpenSSL version : OpenSSL 1.0.1d 5 Feb 2013<br />
OpenSSL library supports TLS extensions : yes<br />
OpenSSL library supports SNI : yes<br />
OpenSSL library supports prefer-server-ciphers : yes<br />
Built with PCRE version : 8.02 2010-03-19<br />
PCRE library supports JIT : no (USE_PCRE_JIT not set)<br />
Built with transparent proxy support using: IP_TRANSPARENT <br />
IPV6_TRANSPARENT IP_FREEBIND<br />
<br />
Available polling systems :<br />
epoll : pref=300, test result OK<br />
poll : pref=200, test result OK<br />
select : pref=150, test result OK<br />
Total: 3 (3 usable), will use epoll.<br />
<br />
The full make line is this:<br />
<br />
make TARGET=linux2628 USE_PCRE=1 CPU=generic ARCH=x86_64 <br />
PREFIX=/opt/haproxy/haproxy USE_OPENSSL=1 USE_ZLIB=1 <br />
PCREDIR=&quot;/opt/haproxy/openssl/lib -L/usr&quot; DEFINE= <br />
SILENT_DEFINE=-I/opt/haproxy/openssl/include ADDLIB=-lz -ldl ADDINC=<br />
<br />
Any hints or help would be greatly appreciated.<br />
<br />
Regards,<br />
Holger]]></description>
            <dc:creator>Holger Just</dc:creator>
            <category>HAProxy</category>
            <pubDate>Sat, 15 Jun 2013 02:40:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725314,725314#msg-725314</guid>
            <title>haproxy mysql-check (23 replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725314,725314#msg-725314</link>
            <description><![CDATA[ Hi,<br />
<br />
I was trying to make HAProxy's mysql-check option work with the MySQL<br />
Servers on Windows. HAProxy is on linux, MySQL on windows.There are 2 MySQL<br />
servers - Server1 and Server2. It was not working (HAProxy was always<br />
marking the servers down). I tried changing one of the MySQL server entries<br />
point to MySQL on a linux box and it was working. Won't HAProxy's<br />
mysql-check work if the target MySQL is on windows? Output from a strace of<br />
HAProxy -<br />
<br />
connect(5, {sa_family=AF_INET, sin_port=htons(3406),<br />
sin_addr=inet_addr(&quot;192.168.8.37&quot;)}, 16) = -1 EINPROGRESS (Operation now in<br />
progress)<br />
sendto(5, &quot;\16\0\0\1\0\200\0\0\1haproxy\0\0\1\0\0\0\1&quot;, 23,<br />
MSG_DONTWAIT|MSG_NOSIGNAL, NULL, 0) = -1 EAGAIN (Resource temporarily<br />
unavailable)<br />
<br />
connect(5, {sa_family=AF_INET, sin_port=htons(3306),<br />
sin_addr=inet_addr(&quot;192.168.2.27&quot;)}, 16) = -1 EINPROGRESS (Operation now in<br />
progress)<br />
sendto(5, &quot;\16\0\0\1\0\200\0\0\1haproxy\0\0\1\0\0\0\1&quot;, 23,<br />
MSG_DONTWAIT|MSG_NOSIGNAL, NULL, 0) = 23<br />
<br />
192.168.2.27 is linux and 192.168.8.37 windows. I am able to connect to the<br />
MySQL server on windows, from mysql command line client on 192.168.2.27. So<br />
it is not a port blocked issue.<br />
<br />
Regards,<br />
Jayadevan]]></description>
            <dc:creator>Jayadevan M</dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 19 Jun 2013 05:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725260,725260#msg-725260</guid>
            <title>hi (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725260,725260#msg-725260</link>
            <description><![CDATA[ What's up! Now I am and searching for boyfriend!]]></description>
            <dc:creator>Valaria Lenard</dc:creator>
            <category>HAProxy</category>
            <pubDate>Fri, 14 Jun 2013 10:40:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725087,725087#msg-725087</guid>
            <title>nice of Nike spread world wide (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725087,725087#msg-725087</link>
            <description><![CDATA[ Yes, the <a href="http://www.nikeshoesukonlinesale.co.uk" target="_blank"  rel="nofollow">nike shoes</a> is a great running footwear. It includes the runner an appropriate feel because of improved heel for landing and durability purposes. Furthermore , it provides you with cushioning due to full-length shox beneath the shoe.<a href="http://www.nike.com" target="_blank"  rel="nofollow">http://www.nike.com</a>  Ecosystem Cole Haan Sneakers performance the truly great technology that make donning A lot of sneaker hassle-free than whenever you want before facing forward! Your own personal slimest soles all over the chicest large heel shoes setting up ashore your have Cole Haan web-site could features your Nike Air flow technologies which will make each and every tiny detail sense simply because while you are searching towards nike australia the cushiony smoke cigars Nike Air Yeezy Zen Gray.<br />
<a href="http://www.nikeshoesukonlinesale.co.uk" target="_blank"  rel="nofollow"><img src="http://www.nikeshoesukonlinesale.co.uk/media/catalog/product/cache/1/small_image/175x/9df78eab33525d08d6e5fb8d27136e95/n/i/nike_air321.jpg" class="bbcode" border="0" /></a><br />
<br />
From Nike cooperate with NBA in 1970s, nice of <a href="http://www.nikeshoesukonlinesale.co.uk" target="_blank"  rel="nofollow">nike shoes uk</a>  spread over the world. The majority of people knows Nike, from kids to olders, expecially NBA fans, just how much is above others. A lot of them want to own some Nike shox shoes which in turn is capable of doing their star dream. Much like Kobe or Jordan in NBA field, they can find their position within the pub baseball games. However, the orginal purchase of Nike shox is pricey, this may unhappy people who prefer to play basketball for themselves. Neverless to say those whose remuneration may simply slove the mealtime job, what can they are doing Just quit their dreams No, the roll-bankrupt online reap the benefits of convinence and help simple to use for getting discount Nike shox shoes, you need to simply try to look for Nike Shoes Sale or Discount Nike shoes, others like cheap Nike allows you to obtain the how does someone buy really cheap Nike shoes which in turn your family lavatory afraid.<br />
<br />
once I looked at the <a href="http://www.nikeshoesukonlinesale.co.uk" target="_blank"  rel="nofollow">nike shoes uk online shop</a> box I noticed we have a toughie which usually displays any babys' experience, your numbers racket zero-3 along with the 'no' circle/slash symbol. Any idea why this sticker is within the box? The label states how the technique is stated in Taiwan. Would be the shoes created using bad real that is certainly harmful pertaining to infants?It really is that's doubtful an undesirable shoe. It may be a better idea to invest a bit more and search for a store that sells running shoes exclusively Since which will be better on your own feet and legs.<br />
<br />
expert nike air jordan,Basket Nike Pas Cher,Nike Jordans Retro partisan, de fournir Basket Nike Pas Cher, la qualité garantie à 100% de Basket Air Jordan Chaussures,Air Jordan rétro Chaussures et Nike Air Jordan enrichir votre équipement de basket-ball, libres d'expédition chaussures de basket-ball jordans Nous promettons solennellement:Pas satisfait les chaussures nike Jordan gratuitement la mise en accusation. Si vous trouvez des problèmes de qualité des air jordan, nous avons remplacé gratuitement. <a href="http://www.nikeshoesukonlinesale.co.uk" target="_blank"  rel="nofollow">http://www.nikeshoesukonlinesale.co.uk</a>]]></description>
            <dc:creator>laaese</dc:creator>
            <category>HAProxy</category>
            <pubDate>Fri, 14 Jun 2013 04:10:02 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725081,725081#msg-725081</guid>
            <title>Absence du bureau : Nike Shox Barato such an creature off-line tote (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725081,725081#msg-725081</link>
            <description><![CDATA[ Retour le vendrdi 14<br />
Mes mails ne sont pas redirigés.<br />
Pour toute question concernant SYK contactez la boite Syca St<br />
Pour GMS / BRS / ASV : boîte BRS DIB<br />
autres sujets (MT) =&gt; vos interlocuteurs ME]]></description>
            <dc:creator>VIGUIER Frederic</dc:creator>
            <category>HAProxy</category>
            <pubDate>Fri, 14 Jun 2013 04:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725080,725080#msg-725080</guid>
            <title>Nike Shox bought at Hibbett Sports having a dagger of the newborns face (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725080,725080#msg-725080</link>
            <description><![CDATA[ <a href="http://www.nikeshoxaustraliaonlinesale.com" target="_blank"  rel="nofollow">nike shox</a> purchased at Hibbett Sports that has a sticker of the baby's face, the quantity 0-3 and a &quot;No' circle implies that the shoes are not for sale in those numbers pool. The shoes usually are not created using bad material, it is made with allow air through and sturdy material. Unbelievable Ease and comfort and superiority cause them to become suitable for. Well, the initial place I'd personally pay attention to these footwear is Nike's website. These people have a wide range of discounted products on the site and you could be able to find them there. I also notice that you will find Pink <a href="http://www.nike.com" target="_blank"  rel="nofollow">http://www.nike.com</a>  Shox on sites like Eastbay, Finish Line, and Boom. Actually the best place to take a look could be Amazon-it is indeed my pet buying place and also you can never predict what will you find with small prices.<br />
<a href="http://www.nikeshoxaustraliaonlinesale.com" target="_blank"  rel="nofollow"><img src="http://www.nikeshoxaustraliaonlinesale.com/media/catalog/product/cache/1/small_image/175x175/9df78eab33525d08d6e5fb8d27136e95/N/i/NikeShox283_2.jpg" class="bbcode" border="0" /></a><br />
<br />
With all the heat of World Cup, beyond the topic of teams,<a href="http://www.nikeshoxaustraliaonlinesale.com" target="_blank"  rel="nofollow">nike shox australia</a> Mercurial Vapor may also be the mian topic among students. Considering the new compilation of Mercurial Vapor, it contunies the real key distinctive line of speed. Also the colors and fashoins can match the necessity of 90's. For football players gonna school football team, no take most widely used inside football field. Students who wish to be considered a prefessional football player may purchase one to get. Also the modern sale within this you'll be able to stimulate students to get one because of their teamate. Can school without the need of Nike, it may be impossible, the modern play invent of self-lacing Nike shox shoes will expand the greater sell to kids whose lacing lose day by day, also for these who will be lazy to lace shoes from the class. While using increasing sales of Nike shox shoes, the strom to varsity stands out as the new trend to new Nike shox shoes.<br />
<br />
You can get them online on Nikes website, or <a href="http://www.nikeshoxaustraliaonlinesale.com" target="_blank"  rel="nofollow">nike shox australia online</a>  store or outlet locations. They're also on amazon.com, or you might check eBay. In case you have an area Foot Locker store, even if they don't really contain the ones you desire in store, they'll order them available for you.2010 is an excellent year for Nike, with all the beginning of World Cup in South Africa, Nike offers various of products into market. Additionally, from NBA to football, Nike has followed its purpose - Simply sleep together. The original meaning may be used to basketball games. But after age period, they've got extended into each area. nike shox r3 men's shoe is a shoe that appears sharp rolling around in its deep set colors. The shoe comes in a very good blue, black red or blue color, which has a transparent Nike symbol quietly. It possesses a great rubber outsole for grip and sturdiness. It gives air sole unit cushioning and cushioning with premium leather for that upper areas. here you are at our web shop:<a href="http://www.nikeshoxaustraliaonlinesale.com" target="_blank"  rel="nofollow">http://www.nikeshoxaustraliaonlinesale.com</a>]]></description>
            <dc:creator>laaese</dc:creator>
            <category>HAProxy</category>
            <pubDate>Fri, 14 Jun 2013 04:07:35 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,725079,725079#msg-725079</guid>
            <title>Nike Shox Barato such an creature off-line tote (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,725079,725079#msg-725079</link>
            <description><![CDATA[ My spouse and i inserted an order intended for <a href="http://www.nikeshoxnzukonline.co.uk" target="_blank"  rel="nofollow">nike shox</a> plus they didn't send a verification e mail. These people responded to an e-mail so it could well be over a couple weeks to even ship the shoes which was contradicting to their rescue insurance plan of two days. <a href="http://www.nike.com" target="_blank"  rel="nofollow">http://www.nike.com</a> I emailed and demanded a reimbursement. The tutor said it would be 7-20 days to get your money back. 20 days gone no amounts. Chances are they said the bucks could be during my account today. It were refunded once again. DON'T order readily available cozenage artists!!! You will lose your hard earned money.<br />
<a href="http://www.nikeshoxnzukonline.co.uk" target="_blank"  rel="nofollow"><img src="http://www.nikeshoxnzukonline.co.uk/media/catalog/product/cache/1/small_image/175x/9df78eab33525d08d6e5fb8d27136e95/n/i/nikeshoxnz6.jpg" class="bbcode" border="0" /></a><br />
<br />
<a href="http://www.nikeshoxnzukonline.co.uk" target="_blank"  rel="nofollow">nike shox uk</a> type of shoes functions very cushioned teachers along with genuine shock from the heels in the shoes. This lines are suited to the larger runner who wants one of the most cushioning available. Nike Shox are ideal for utilizing the pounding beyond running on hard surfaces like tangible and concrete. Nike Shox brand of Nike running sneakers allows your foot to mimic barefoot running play with no distressful in relation to hazard of treading on sharpened objects. These sneakers are exceedingly flexible and minimally cushioned to boost natural foot motility. They certainly require time to have helpful to, but they're very very theraputic for building up this base lowering quads.<br />
<br />
cloth with the performer to <a href="http://www.nikeshoxnzukonline.co.uk" target="_blank"  rel="nofollow">nike shox r4</a> run locate the optimal structure regarding type concerning sneakers, lacoste via the internet, Original, actually might be a medley a part of footwear, or maybe fundamentally, these as discounted setting most footwear also simply because informal footwear blend. This unique nike air-move, a variety of forms, shop lacoste, may perhaps have their individual personalized spot for a hear the finest varieties Adidas Glow In The Dark<br />
<br />
 Tenis Nike Shox they keep lead the popularity inside the craze world. When you haven't bought one last winter weather, you cannot miss the thrill in 2011. With Nike Shox Barato this animal offline handbag, setup wear the most efficient T-shirt extremely jeans, even though you peer stylish and elegant as the optimal pop figure. Cl[filtered word]ic handbagsIn regarding that wardrobe, there could be at nominal one handbag showcasing cl[filtered word]ic forming and ridge. These reliable handbags, which doesn't walk out style, can match your complete wardrobe for years and won't to be able to highlight well-being cl[filtered word]ic and trendy style.  thanks for visiting our web store: <a href="http://www.nikeshoxnzukonline.co.uk" target="_blank"  rel="nofollow">http://www.nikeshoxnzukonline.co.uk</a>]]></description>
            <dc:creator>laaese</dc:creator>
            <category>HAProxy</category>
            <pubDate>Fri, 14 Jun 2013 04:04:16 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,724852,724852#msg-724852</guid>
            <title>Japan Order (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,724852,724852#msg-724852</link>
            <description><![CDATA[ Hello Sales,<br />
I am interested in purchasing some of your products, I will like to know if you can ship directly to Japan, I also want you to know my mode of payment for this order is via credit card (Issued US master and visa card) Get back to me if you can ship to that destination and also if you accept the payment type I indicated. Kindly return this email with your Website.<br />
<br />
Await a your quick response to the question/inquiry so as to forward you the purchase needed immediately.<br />
Kind Regards.<br />
<br />
<br />
Joe Suzuki<br />
<br />
Tsdj Stores<br />
ARCA East 12F, 3-1, Kinshi 2-Chome, Sumida-ku, Tokyo 130-0013, Japan<br />
<br />
Fax:- (072)728-1139<br />
Tel :- (072)708-8110]]></description>
            <dc:creator>Joe Suzuki</dc:creator>
            <category>HAProxy</category>
            <pubDate>Thu, 13 Jun 2013 20:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,724845,724845#msg-724845</guid>
            <title>create new backend hosts by unix socket (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,724845,724845#msg-724845</link>
            <description><![CDATA[ I'm trying to understand if the 'enable server' command to haproxy socket<br />
[1] requires the hosts to be predefined in configuration. It seems it needs<br />
to be predefined according to the documentation, but I saw a discussion<br />
about a patch in a github branch [2]. Is the patch already included<br />
upstream? Any plans to do it?<br />
<br />
Thanks!<br />
<br />
[1] <a href="http://alex.cloudware.it/2011/10/simple-auto-scale-with-haproxy.html" target="_blank"  rel="nofollow">http://alex.cloudware.it/2011/10/simple-auto-scale-with-haproxy.html</a><br />
<br />
[2] <a href="http://marc.info/?l=haproxy&amp;m=132857644029501&amp;w=2" target="_blank"  rel="nofollow">http://marc.info/?l=haproxy&amp;m=132857644029501&amp;w=2</a><br />
<br />
-- Andres]]></description>
            <dc:creator>Andrés More</dc:creator>
            <category>HAProxy</category>
            <pubDate>Thu, 13 Jun 2013 20:00:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,724769,724769#msg-724769</guid>
            <title>Get more income from your website (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,724769,724769#msg-724769</link>
            <description><![CDATA[ Not received in your language? Click here:<br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D</a><br />
<br />
 <a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D</a><br />
<br />
 Dear Webmaster,<br />
<br />
 While navigating your website, we noticed you host advertising<br />
spaces.<br />
<br />
 We are contacting you because we would like to introduce our digital<br />
services for Web Publishers.<br />
<br />
 We are able to purchase any advertsing space (ad unit) you may have<br />
available or unsold. Our RTB technology purchases your impressions CPM<br />
based on your website surfers behavior. 							 <br />
<br />
 *SOME OF YOUR ADVANTAGES:* <br />
<br />
 •<br />
 $ 25.00 Credit Bonus to register your website. <br />
<br />
 •<br />
 CPM: Your Ad Units are sold CPM, based on your website surfers<br />
behavior, in Real Time Bidding. <br />
<br />
 •<br />
 Are you approved by Adsense? Increase your income by adding the 4th<br />
DoubleClick Ad Unit in each page. <br />
<br />
 •<br />
 Does your website generate millions of impressions? A dedicated<br />
account manager will work with you to optimize your income. <br />
<br />
 •<br />
 Pass-Back Tag: If you are eligible, we purchase only the impressions<br />
according to your requested minimum CPM. <br />
<br />
 •<br />
 No Exclusive Contract: Our system enables full compatibility with<br />
your usual ad providers. <br />
<br />
 •<br />
 …and much more… <br />
<br />
 OxaMedia is a Global Adnetwork of Advertisers and Publishers.<br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D</a><br />
<br />
 The OxaMedia RTB Technology offers the opportunity for *registered<br />
Publishers to sell their impressions* based on the website users<br />
behavior.<br />
<br />
 In the list on the left you can find some of the *many advantages<br />
that we guarantee to our publishers.* <br />
<br />
 If you wish to learn more about us or to register, please click here<br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D</a><br />
, or contact our Support Team<br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcW0kIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcW0kIARgEUlwOCFs%3D</a><br />
.. <br />
<br />
 We are always available to respond to any information requests and we<br />
hope to have you among our Top Publishers as soon as possible.<br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D</a><br />
<br />
 Thank you for your consideration and we apologize for any<br />
inconvenience this e-mail may have caused you. <br />
<br />
 Best Regards, <br />
<br />
 OxaMedia Publisher Team<br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcVEkIARgEUlwOCFs%3D</a><br />
<br />
<br />
<br />
--<br />
If you do not want to receive any more newsletters, <br />
<a href="http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcWkkIARgEUlwOCFs%3D" target="_blank"  rel="nofollow">http://mailservice.nextwebcorp.com/lists/lt.php?id=bEQGDAJTCQpcWkkIARgEUlwOCFs%3D</a>]]></description>
            <dc:creator>Reid Lewis for Publishers</dc:creator>
            <category>HAProxy</category>
            <pubDate>Thu, 13 Jun 2013 18:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,723996,723996#msg-723996</guid>
            <title>Community &amp; educational development (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,723996,723996#msg-723996</link>
            <description><![CDATA[ PRESS RELEASE<br />
<br />
The American Grants and Loans Catalog is now available. Our new and revised<br />
2013 edition contains more than 2800 financial programs, subsidies, scholarships,<br />
grants and loans offered by the US federal government.<br />
<br />
In addition you will also have access to over 2400 programs funded by private<br />
corporations and foundations. That is over 5200 programs available through<br />
various sources of financial providing organizations.<br />
<br />
NEW: You will also have access to our live Database that is updated on a daily<br />
basis. This product also provides daily email alerts as programs are announced.<br />
<br />
The Database is also available with IP recognition. This allows you to login<br />
without a username or password (Great for libraries or educational institutions<br />
who want their users to access the database).<br />
<br />
Businesses, students, researchers, scientists, teachers, doctors, private individuals,<br />
municipalities, government departments, educational institutions, law enforcement<br />
agencies, nonprofits, foundations and associations will find a wealth of information<br />
that will help them with their new ventures or existing projects.<br />
<br />
The document is a fully searchable PDF file for easy access to your particular<br />
needs and interests. Simply enter your keywords to search through the publication.<br />
<br />
It is the perfect tool for libraries and educational institutions to use as a<br />
reference guide for students who require funds to pursue their education.<br />
<br />
<br />
Contents of the Directory:<br />
<br />
-Web link to program announcement page<br />
-Web link to Federal agency or foundation administering the program<br />
-Authorization upon which a program is based<br />
-Objectives and goals of the program<br />
-Types of financial assistance offered under a program<br />
-Uses and restrictions placed upon a program<br />
-Eligibility requirements<br />
-Application and award process<br />
-Regulations, guidelines and literature relevant to a program<br />
-Information contacts at the headquarters, regional, and local offices<br />
-Programs that are related based upon program objectives and uses<br />
<br />
<br />
Programs in the Catalog provide a wide range of benefits and services<br />
for categories such as:<br />
<br />
Agriculture<br />
Business and Commerce<br />
Community Development<br />
Consumer Protection<br />
Cultural Affairs<br />
Disaster Prevention and Relief<br />
Education<br />
Employment, Labor and Training<br />
Energy<br />
Environmental Quality<br />
Food and Nutrition<br />
Health<br />
Housing<br />
Income Security and Social Services<br />
Information and Statistics<br />
Law, Justice, and Legal Services<br />
Natural Resources<br />
Regional Development<br />
Science and Technology<br />
Transportation<br />
<br />
<br />
CD version: $69.95<br />
Printed version: $149.95<br />
<br />
To order please call: 1 (800) 610-4543<br />
<br />
<br />
Please do not reply to the sender's email address as this address is only for outgoing mail.<br />
<br />
If you do not wish to receive information from us in the future please reply here:<br />
<a href="mailto:&#114;&#101;&#109;&#111;&#118;&#101;&#64;&#98;&#99;&#115;&#116;&#110;&#101;&#116;&#46;&#105;&#110;&#102;&#111;">&#114;&#101;&#109;&#111;&#118;&#101;&#64;&#98;&#99;&#115;&#116;&#110;&#101;&#116;&#46;&#105;&#110;&#102;&#111;</a><br />
<br />
This is a CANSPAM ACT compliant advertising broadcast sent by:<br />
American Publishing Inc. , 7025 County Rd. 46A, Suite 1071, Lake Mary, FL, 32746-4753]]></description>
            <dc:creator>AP</dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 12 Jun 2013 16:40:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,723924,723924#msg-723924</guid>
            <title>мыслите иметься превосходнейшим партнером? (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,723924,723924#msg-723924</link>
            <description><![CDATA[ Любая мадам изведает Оргазм <a href="http://goo.gl/yTqWt?/QDuw?/uIMizbC" target="_blank"  rel="nofollow">http://goo.gl/yTqWt?/QDuw?/uIMizbC</a>]]></description>
            <dc:creator>Артем Глебович  </dc:creator>
            <category>HAProxy</category>
            <pubDate>Wed, 12 Jun 2013 14:10:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,723843,723843#msg-723843</guid>
            <title>Meaning of hrsp_2xx in show_stat (4 replies)</title>
            <link>http://www.serverphorums.com/read.php?10,723843,723843#msg-723843</link>
            <description><![CDATA[ Hi All,<br />
<br />
I'm trying to collect some statistics of haproxy server. Here is what <br />
I'm not able to understand.<br />
If possible any body can help me out with this.<br />
<br />
This is the command which is running and giving stats to collectd and <br />
the graphs are generated on graphite.<br />
        &quot; echo 'show stat' | socat - UNIX-CLIENT:$sock &quot;<br />
<br />
<br />
The problem is that the &quot;rate&quot; is showing something different and the <br />
hrsp_2xx is showing something different.<br />
Can any one have any idea how does the htsp_2xx stats are collected from <br />
haproxy. I mean whether it is per seconds/hits all through the logs or <br />
anything.<br />
<br />
This is what it is there in <br />
<a href="http://haproxy.1wt.eu/download/1.4/doc/configuration.txt" target="_blank"  rel="nofollow">http://haproxy.1wt.eu/download/1.4/doc/configuration.txt</a><br />
<br />
# 33. rate: number of sessions per second over last elapsed second<br />
# 39. hrsp_1xx: http responses with 1xx code<br />
# 40. hrsp_2xx: http responses with 2xx code<br />
# 41. hrsp_3xx: http responses with 3xx code<br />
# 42. hrsp_4xx: http responses with 4xx code<br />
# 43. hrsp_5xx: http responses with 5xx code<br />
<br />
I can share the script if any body wants to have a look.<br />
<br />
-- <br />
- Ashish]]></description>
            <dc:creator>Ashish Jaiswal</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 18 Jun 2013 04:30:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,723096,723096#msg-723096</guid>
            <title>Вступить в СРО строителей (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,723096,723096#msg-723096</link>
            <description><![CDATA[ ПО МИНИМАЛЬНОЙ СТОИМОСТИ в МИНИМАЛЬНЫЕ сроки!!! Предлагаем получить сертификат И С О 9001 и СРО<br />
<br />
Так же поможем Вам в оформлении:<br />
<br />
- образовательной лицензии - от 70 тысяч рублей<br />
<br />
- лицензии Минздрава - от 70 тыс рублей<br />
<br />
- лицензии МЧС - от 75 тысяч руб..<br />
<br />
- допуска СРО в области Энергоаудита - от 30 тысяч рублей<br />
<br />
- аттестации ИТР, в том числе по промышленной безопасности - от 5 т. рублей<br />
<br />
- лицензии ФСБ - от 150 т. р.<br />
<br />
- Разрешении на применение Ростехнадзора - от 250 тыс рублей<br />
<br />
С Р О в проектировании:<br />
<br />
- Оформление страхования (гражданской ответственности) – от 10000 рублей/в год.<br />
<br />
- Членские взносы - от 5 тысяч руб./месяц<br />
<br />
- Вступительный взнос – 5000 р. (отсутствует).<br />
<br />
- Размер взноса в компенсационный фонд* – 150 тыс. рублей (возможна рассрочка!)<br />
<br />
- Услуги по подготовке документов с гарантированной выдачей допуска – от 30000 р.<br />
<br />
Срок – 2 - 4 рабочих дня с начала момента оплаты!<br />
<br />
С Р О в сфере строительства:<br />
<br />
- Взносы членские - от 5 тыс. руб./мес.<br />
<br />
- Взнос (вступительный) – от 5 тысяч руб.<br />
<br />
- Взнос в компенсационный фонд – 300000 рублей (возможна рассрочка!)<br />
<br />
- Гарантированная выдача Свидетельства о допуске, подготовка документов «под ключ» - от 30 тыс. рублей;<br />
<br />
- Оформление страхования гражданской ответственности – от 10 тыс.рублей;<br />
<br />
Максимальный cрок оформления допуска - 2 - 4 рабочих дня с момента оплаты!<br />
<br />
 +7   [ ч95   ]   737   о0  .    22   <br />
<br />
Рады сотрудничеству! Звоните!<br />
<br />
С Уважением, ведущий специалист компании]]></description>
            <dc:creator>Светлана Игоревна</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 11 Jun 2013 13:40:02 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?10,722921,722921#msg-722921</guid>
            <title>It would be so pleasurable for you to get enjoyment in a company of these beauties. (no replies)</title>
            <link>http://www.serverphorums.com/read.php?10,722921,722921#msg-722921</link>
            <description><![CDATA[ Didn't have sex withing last few years?. Hot as hell and naughty babes want sex.<br />
<br />
<a href="http://r.experiencefinderarticles.pw" target="_blank"  rel="nofollow">http://r.experiencefinderarticles.pw</a><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
Unsubscribe: <br />
<a href="http://uns.bulkershop.com" target="_blank"  rel="nofollow">http://uns.bulkershop.com</a><br />
<br />
736597]]></description>
            <dc:creator>root@volam.pw</dc:creator>
            <category>HAProxy</category>
            <pubDate>Tue, 11 Jun 2013 05:30:02 +0200</pubDate>
        </item>
    </channel>
</rss>
