<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Payment Systems Blog &#187; General</title>
	<atom:link href="http://www.paymentsystemsblog.com/topics/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paymentsystemsblog.com</link>
	<description>David D. Bergert</description>
	<lastBuildDate>Sat, 10 Apr 2010 13:32:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>Copyright &#xA9; 2010 Payment Systems Blog </copyright>
		<managingEditor>podcast@paymentsystemsblog.com (Dave Bergert)</managingEditor>
		<webMaster>podcast@paymentsystemsblog.com (Dave Bergert)</webMaster>
		<category>posts</category>
		<ttl>1440</ttl>
		<itunes:keywords>Payment Systems, ISO8583, PABP, PA-DSS, PCI, Security, Credit, Debit</itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Payment Systems Podcast is a podcast that address the subject of Payments Systems, their operations, development, security and other experiences related to payment processing.</itunes:summary>
		<itunes:author>Dave Bergert</itunes:author>
		<itunes:category text="Technology"/>
<itunes:category text="Business"/>
<itunes:category text="Technology">
	<itunes:category text="Software How-To"/>
</itunes:category>
		<itunes:owner>
			<itunes:name>Dave Bergert</itunes:name>
			<itunes:email>podcast@paymentsystemsblog.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.paymentsystemsblog.com/images/pspodcast.png" />
		<image>
			<url>http://www.paymentsystemsblog.com/images/pspodcast.png</url>
			<title>Payment Systems Blog</title>
			<link>http://www.paymentsystemsblog.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Measuring External Duration of Endpoints</title>
		<link>http://www.paymentsystemsblog.com/2010/04/10/measuring-external-duration-of-endpoints/</link>
		<comments>http://www.paymentsystemsblog.com/2010/04/10/measuring-external-duration-of-endpoints/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 13:24:05 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/?p=678</guid>
		<description><![CDATA[
We performed load testing a of new application with a client recently and a recurring question repeatedly came up: &#8220;How long was the transaction in  OLS.Switch and how long was it at the endpoint ?&#8221;
It is an important question &#8211; one that is used to monitor application performance as well as to assist in [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.paymentsystemsblog.com/wp-content/uploads/2010/04/stopwatch.jpeg" alt="stopwatch.jpeg" border="0" style="margin: 5px; padding: 5px;0" width="87px" height="118px" align="left" /></p>
<p>We performed load testing a of new application with a client recently and a recurring question repeatedly came up: &#8220;How long was the transaction in  <a href="http://www.olsdallas.com">OLS.Switch</a> and how long was it at the endpoint ?&#8221;</p>
<p>It is an important question &#8211; one that is used to monitor application performance as well as to assist in troubleshooting purposes &#8211; and one we can clearly answer &#8211; the transaction took &#8211; a total of 5.6 seconds &#8211; and we waited up to our configured endpoint timeout of 5 seconds before we timed-out the transaction.  Or &#8211; the transaction took 156 ms &#8211;  26 ms of those against a local response simulator.</p>
<p>In our application we use a <a href="http://jpos.svn.sourceforge.net/viewvc/jpos?view=rev&#038;revision=2704">profiler</a> to trace execution time of each of our Transaction Participants: In which we see in our application logs as:</p>
<h5>A normal transaction:</h5>
<pre  name="code" class="java">
<profiler>
  open [0/0]
  parse-request [7/7]
  create-*******-tranlog [9/16]
  populate-********-tranlog [1/17]
  validate-********* [42/59]
  validate-********* [1/60]
  validate-******** [0/60]
  create-*********-request [24/84]
  query-****** [26/110]
  prepare-**********-response [40/150]
  close [6/156]
  send-response [0/156]
  end [157/157]
</profiler>
</pre>
<h5>A timed-out transaction:</h5>
<pre  name="code" class="java">
<profiler>
  open [2/2]
  parse-request [23/25]
  create-*******-tranlog [91/116]
  populate-*******-tranlog [1/117]
  validate-******* [67/184]
  validate-*******-card [31/215]
  validate-************** [1/216]
  create-********-request [32/248]
  query-******* [5000/5248]
  prepare-***********-response [67/5315]
  close [284/5599]
  send-response [0/5599]
  end [5600/5600]
</profiler>
</pre>
<p><em>(* note these traces are from a test app running on my macbook and are for illustrative purposes only *)</em></p>
<p>While we can answer the question by reviewing application logs &#8211; it is harder to perform any analysis on a series of transactions, specifically for external duration. We can do currently for total duration, however &#8211; this is valuable from the device perspective for how long a transaction took to process.</p>
<p>
Logging the external duration along with our total duration for switched-out transactions and we now have:</p>
<p><img src="http://www.paymentsystemsblog.com/wp-content/uploads/2010/04/duration.png" alt="duration.png" align="center" border="0" width="155" height="642" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2010/04/10/measuring-external-duration-of-endpoints/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OLS is PCI Compliant</title>
		<link>http://www.paymentsystemsblog.com/2010/03/25/ols-is-pci-compliant/</link>
		<comments>http://www.paymentsystemsblog.com/2010/03/25/ols-is-pci-compliant/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:06:30 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/?p=670</guid>
		<description><![CDATA[






Just a short note to share that OLS has received word from our QSA via a &#8220;PCI Certificate of Validation&#8221; Letter for our newly launched hosted payment service offering OLS.Host.
Congrats to our Operations, Systems and Security Gurus for all of their hard work on this !
]]></description>
			<content:encoded><![CDATA[<table>
<tr>
<td>
<img src="http://www.paymentsystemsblog.com/wp-content/uploads/2010/03/PCI.gif" alt="PCI.gif" border="0" width="341" height="109" />
</td>
</tr>
</table>
<p>Just a short note to share that <a href="http://www.olsdallas.com">OLS</a> has received word from our QSA via a &#8220;PCI Certificate of Validation&#8221; Letter for our newly launched hosted payment service offering OLS.Host.</p>
<p>Congrats to our Operations, Systems and Security Gurus for all of their hard work on this !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2010/03/25/ols-is-pci-compliant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sales Employment Opportunity Here</title>
		<link>http://www.paymentsystemsblog.com/2010/03/03/sales-employment-opportunity-here/</link>
		<comments>http://www.paymentsystemsblog.com/2010/03/03/sales-employment-opportunity-here/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:08:03 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2010/03/03/sales-employment-opportunity-here/</guid>
		<description><![CDATA[
OLS is in the market for a sales representative.
Please refer to our LinkedIn job posting for more details.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.paymentsystemsblog.com/wp-content/uploads/2010/03/201003030904.jpg" width="180" height="120" alt="201003030904.jpg" style="float:left; margin-top:5px; margin-right:5px; margin-bottom:5px; margin-left:5px; padding-top:10px; padding-right:10px; padding-bottom:10px; padding-left:10px;" /></p>
<p>OLS is in the market for a sales representative.</p>
<p>Please refer to <a href="http://www.linkedin.com/jobs?viewJob=&amp;jobId=881253">our LinkedIn job posting</a> for more details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2010/03/03/sales-employment-opportunity-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CaseSwitch &#8211; Source Port Routing</title>
		<link>http://www.paymentsystemsblog.com/2010/03/02/caseswitch-source-port-routing/</link>
		<comments>http://www.paymentsystemsblog.com/2010/03/02/caseswitch-source-port-routing/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:45:52 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2010/03/02/caseswitch-source-port-routing/</guid>
		<description><![CDATA[We have implemented a new component to our Java and jPOS fueled Payment Switch &#8211; OLS.Switch which we have called the CaseSwitch. The vast majority of our switching algorithms are based on either the determination of CardType &#8211; which dictates which outbound endpoint we send that transaction to, or on Card Bin Ranges.
An example of [...]]]></description>
			<content:encoded><![CDATA[<p><a title="We" href="http://www.olsdallas.com">We</a> have implemented a new component to our <a title="Java" href="http://java.com/en/">Java</a> and <a href="http://www.jpos.org">jPOS</a> fueled Payment Switch &#8211; <a title="OLS.Switch" href="http://www.olsswitch.com">OLS.Switch</a> which we have called the CaseSwitch. The vast majority of our switching algorithms are based on either the determination of CardType &#8211; which dictates which outbound endpoint we send that transaction to, or on Card Bin Ranges.</p>
<p><strong>An example of a Bin Range:</strong></p>
<table>
<tr>
<td>
<p style="text-align: center;"><img class="aligncenter" src="http://www.paymentsystemsblog.com/wp-content/uploads/2010/03/BinRanges.png" alt="BinRanges.png" width="480" height="281" /></p>
</td>
</tr>
</table>
<p>
If a CardNumber&#8217;s Bin or IIN &#8211; matches our Bin Range configurations &#8211; We will select the appropriate EndPoint. In this example if we have a VISA or MC Card we switch it out to a FDR Gateway. If we were connecting to a to MasterCard MIP or Visa VAP or DEX then we would have a MC and VISA EndPoint defined with our BankNet and VisaNet interfaces and switch the transactions to those endpoints.</p>
<p><strong>An example of a Card Type:</strong></p>
<p>We have certain transaction types that we know where they go because of their Card Type &#8211; Many of these are internal authorization hosts such as implementations of Authorized Returns, MethCheck, Loyalty, Couponing. Others are transactions where the transaction type also dictates the card type &#8211; such as those to GreenDot, InComm and other external hosts where a BIN Range lookup is unnecessary.</p>
<p><strong>Source (Port) Based Routing</strong></p>
<p>We recently had a requirement for Source-Based Routing &#8211; where depending on the source port that would dictate the outbound transaction path(s).</p>
<p>In our Server we accept the incoming transaction and then place a Context varaible we call PORT that tells us which Server Port the transaction came in on. One we have that additional data we can perform a Logic Branch in our Transaction Manager that looks like this.</p>
<p>This allows us to define transaction paths based on the incoming port of the server, so in this example.</p>
<pre><strong>&lt;participant class=”com.ols.switch.CaseSwitch” logger=”Q2″ realm=”Switch”&gt;
&lt;property name=”switch” value=”PORT” /&gt;
&lt;property name=”case 5001" value=”LookUpResponse Log Close Send Debug” /&gt;
&lt;property name=”case 5002" value=”QueryRemoteHost_xxx Log Close Send Debug” /&gt;
&lt;property name=”case 5005" value=”QueryRemoteHost_yyy Log Close Send Debug” /&gt;
&lt;property name=”default” value=”Log Close Debug” /&gt;
&lt;/participant&gt;</strong></pre>
<p>Port 5001 &#8211; we perform an authorization locally</p>
<p>Port 5002 &#8211; we switch out the transaction and reformat it to endpoint xxx &#8211; message format and interchanges requirements.</p>
<p>Port 5005 &#8211; we switch out the transaction and reformat it to endpoint yyy &#8211; message format and interchanges requirements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2010/03/02/caseswitch-source-port-routing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Signed Overpunch or Zoned Decimal or what are these weird characters in numeric fields ???</title>
		<link>http://www.paymentsystemsblog.com/2010/02/24/signed-overpunch-or-zoned-decimal-or-what-are-these-weird-characters-in-numeric-fields/</link>
		<comments>http://www.paymentsystemsblog.com/2010/02/24/signed-overpunch-or-zoned-decimal-or-what-are-these-weird-characters-in-numeric-fields/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:50:05 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2010/02/24/signed-overpunch-or-zoned-decimal-or-what-are-these-weird-characters-in-numeric-fields/</guid>
		<description><![CDATA[
We interface to many different systems and sometimes we get to talk to IBM Mainframes or message formats that uses Signed Overpunch
Where we see numberic values like &#8220;100000{&#8221; , &#8220;100999I&#8221;, or &#8220;100495N&#8221;
Signed Overpunch is used in order to save a byte the last character can indicate both sign (+ / -) and value.
These types are [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.paymentsystemsblog.com/wp-content/uploads/2010/02/cobol.jpg" width="90" height="139" alt="cobol.jpg" style="float:left; margin-right:10px; margin-left:10px; padding-right:10px; padding-bottom:10px;" /></p>
<p><a href="http:/www.olsdallas.com">We</a> interface to many different systems and sometimes we get to talk to IBM Mainframes or message formats that uses <a href="http://en.wikipedia.org/wiki/Signed_overpunch">Signed Overpunch</a></p>
<p>Where we see numberic values like &#8220;100000{&#8221; , &#8220;100999I&#8221;, or &#8220;100495N&#8221;</p>
<p>Signed Overpunch is used in order to save a byte the last character can indicate both sign (+ / -) and value.</p>
<p>These types are defined in COBOL Copybook this looks like:</p>
<p>S9(3)V9(4);</p>
<p>which equate to :</p>
<p>100000{ = 100.0000</p>
<p>100999I = 100.9999</p>
<p>100495N = -100.4955</p>
<p>Here is a snippet of Java Code that we use to handle this:</p>
<pre  name="code" class="java">
    public static final char[] gt_0 = {
        '{', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'
    };
    public static final char[] lt_0 = {
        '}', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R'
    };

   protected static String convertToCobolSignedString (String aString) {
        int aInt = Integer.parseInt(aString);
        char[] conv = (aInt >= 0) ? gt_0 : lt_0;
        int lastChar = (int) aInt % 10;
        StringBuffer sb = new StringBuffer (Integer.toString(aInt));
        sb.setCharAt (sb.length()-1, conv[lastChar]);
        return sb.toString();
    }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2010/02/24/signed-overpunch-or-zoned-decimal-or-what-are-these-weird-characters-in-numeric-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Velocity Manager and Velocity Profiles</title>
		<link>http://www.paymentsystemsblog.com/2009/11/24/velocity-manager-and-velocity-profiles/</link>
		<comments>http://www.paymentsystemsblog.com/2009/11/24/velocity-manager-and-velocity-profiles/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 22:32:36 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2009/11/24/velocity-manager-and-velocity-profiles/</guid>
		<description><![CDATA[I recently put together a document that describes our Issuer implementation of Transaction Velocity Checks during the authorization process. We use a facility called the Velocity Manager to implement authorization rules that are based on frequency of transactions over a given time period. Velocity profiles can be used to implement extensible velocity-based logic.


Here is the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently put together a document that describes <a href="http://www.olsdallas.com/">our</a> Issuer implementation of Transaction Velocity Checks during the authorization process. <span style="font-family: Arial; line-height: 18px;">We use a facility called the Velocity Manager to implement authorization rules that are based on frequency of transactions over a given time period. Velocity profiles can be used to implement extensible velocity-based logic.</span></p>
<p><!--StartFragment--><br />
<!--EndFragment--></p>
<p>Here is the data-structure that defines our Velocity Limits:</p>
<table align="center">
<tbody>
<tr>
<td>
<p>
        <img src="http://www.paymentsystemsblog.com/wp-content/uploads/2009/11/Velocity-Profile.png" width="480" height="352" alt="Velocity Profile.png" /></p>
</td>
</tr>
</tbody>
</table>
<p>Here is a snapshot of a configured Velocity Limit based on Accumulated Transaction Amounts:</p>
<table align="center">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td>
<p>
        <img src="http://www.paymentsystemsblog.com/wp-content/uploads/2009/11/500-limit.png" width="412" height="480" alt="500 limit.png" /></p>
</td>
</tr>
</tbody>
</table>
<p>Here is a snapshot of a configured Velocity Limit based on Transaction Counts over a given period:</p>
<table align="center">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td>
<p>
        <img src="http://www.paymentsystemsblog.com/wp-content/uploads/2009/11/10-txns.png" width="408" height="480" alt="10 txns.png" /></p>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2009/11/24/velocity-manager-and-velocity-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Freeze</title>
		<link>http://www.paymentsystemsblog.com/2009/11/19/the-freeze/</link>
		<comments>http://www.paymentsystemsblog.com/2009/11/19/the-freeze/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:33:57 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2009/11/19/the-freeze/</guid>
		<description><![CDATA[The &#8220;Freeze&#8221; is upon us in the Payments Space. Any and all system changes should of been made and time spend making sure your payments systems and infrastructure can handle the Black Thursdays, Fridays, and Holiday Season should be complete and in monitoring mode. Rather then expand more here &#8211; Andy Orrock wrote a excellent [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.paymentsystemsblog.com/wp-content/uploads/2009/11/2866522209_02285d877c.jpg" width="158" height="119" alt="2866522209_02285d877c.jpg" style="float:left; margin-right:10px; margin-bottom:10px;" />The &#8220;Freeze&#8221; is upon us in the Payments Space. Any and all system changes should of been made and time spend making sure your payments systems and infrastructure can handle the Black Thursdays, Fridays, and Holiday Season should be complete and in monitoring mode. Rather then expand more here &#8211; Andy Orrock wrote a excellent piece on this last year: <span style="font-size: 14px; font-weight: bold;"><a href="http://www.andyorrock.com/2008/11/everybody-freeze.html">Everybody Freeze!</a></span></p>
<p><span style="font-size: 14px; font-weight: bold;"><font face="Trebuchet MS" size="2">In the Payment Systems World, we’ve now entered “The Freeze.” This is the industry-wide term associated with the period running from approximately the Thursday before Thanksgiving (which is the last Thursday of November in the US) through to about the second full week in January. During that period, we don’t do any <a href="http://www.andyorrock.com/2008/08/improvements-to.html">production releases</a>, unless it’s a fix of a critical nature.</font> <font face="Trebuchet MS" size="2">We advocate the same practice for our clients. We also recommend that they not undertake material changes to hardware configurations, databases, scripts, or any other piece of supporting or underlying technology.</font></span></p>
<blockquote>
<p><font size="4"><span style="font-size: 14px;"><b><font face="Trebuchet MS" size="2">Traditionally, it’s been a good time for us to focus on big projects that have a Q1 delivery date. We can stay under the covers and make some serious progress on those bigger initiatives.</font></b></span></font></p>
<p><font size="4"><span style="font-size: 14px;"><b><font face="Trebuchet MS" size="2">We also send out a customer letter re-emphasizing how to get a hold of us. The letter stresses the importance of vigilance and watchfulness over key production systems. It reminds our clients that we’re <a href="http://www.olsdallas.com">Always Available</a>. Our firm was founded on the back of 24&#215;7x365 support of mission-critical production systems. We get paid to make sure our clients can – to the fullest extent possible – enjoy the holidays with their family knowing that we’ve got their back on support.</font></b></span></font></p>
<p><font size="4"><span style="font-size: 14px;"><b><font face="Trebuchet MS" size="2">Why all the heightened concern? It’s the nature of payment systems: there’s tremendous upsurge in volume in the freeze period. If you’ve got a latent bottleneck laying dormant and ready to strike, the unfortunate reality is that it’s going to nail you right between the eyes on a killer day like <a href="http://en.wikipedia.org/wiki/Black_Friday_%28shopping%29">Black Friday</a>, <a href="http://en.wikipedia.org/wiki/Cyber_Monday">Cyber Monday</a> or <a href="http://www.andyorrock.com/2008/01/december-24th.html">Christmas Eve</a>. We service some Stored Value authorization endpoints that get massive 20x surges in volumes on December 24th. So, you’ve got to be ready.</font></b></span></font></p>
<p><font size="4"><span style="font-size: 14px;"><b><font face="Trebuchet MS" size="2"><strong>We work the other ten-and-a-half months of the year to make this month-and-a-half as uneventful as possible.</strong></font></b></span></font></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2009/11/19/the-freeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now you&#8217;re the Switch &#8212; Successful Implementation Strategies</title>
		<link>http://www.paymentsystemsblog.com/2009/09/28/now-youre-the-switch-successful-implementation-strategies/</link>
		<comments>http://www.paymentsystemsblog.com/2009/09/28/now-youre-the-switch-successful-implementation-strategies/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 03:22:32 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2009/09/28/now-youre-the-switch-successful-implementation-strategies/</guid>
		<description><![CDATA[My colleague Andy Orrock wrote a blog post titled &#8220;Now, you&#8217;re the switch&#8221; where he summarizes challeges and witness poor implementions of some interfaces that we connect to:
But here’s the thing: once we send the transaction to you, now you’re the switch.&#160; What I mean by that is:&#160; your application is now beholden to the [...]]]></description>
			<content:encoded><![CDATA[<p>My colleague <a href="http://www.andyorrock.com/">Andy Orrock</a> wrote a blog post titled <a href="http://www.andyorrock.com/2009/09/now-youre-the-switch.html">&#8220;Now, you&#8217;re the switch&#8221;</a> where he summarizes challeges and witness poor implementions of some interfaces that we connect to:<br /><img style="max-width: 800px; float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px;" src="http://www.paymentsystemsblog.com/wp-content/uploads/2009/09/images-13.jpg" /><br />
<blockquote>But here’s the thing: once we send the transaction to you, now you’re the switch.&nbsp; What I mean by that is:&nbsp; your application is now beholden to the same throughput, speed, efficiency, extensibility and 24&#215;7x365 availability concerns that define our lives.&nbsp; And while there have been many that have been up to the task, there have been countless other instances where that’s not been the case.</p></blockquote>
<p>There are are few basic models that we have seen that work well:
<ol>
<li>OLS Implemented Business Logic based on customer developed prototypes.</li>
<li>OLS Implemented Business Logic and Customer provided Database or Flat File update feeds that drive authorization decisions.&nbsp; </li>
<li>OLS Transaction Participants that call Customer Provided Software and CustomerSecretSauceManger.process() methods within our processing framework.</li>
<li>Under our guidance, interface remotely to an local endpoint via TCP/IP Sockets or WebServices, handling concerns that we <a href="http://www.andyorrock.com/2009/09/now-youre-the-switch.html">address here</a> with tech savvy customers.</li>
</ol>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=7b743492-0cc2-8869-a2e9-7174661ebd96" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2009/09/28/now-youre-the-switch-successful-implementation-strategies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pre-Authorization data for completions and reversals and removal of Track II Data</title>
		<link>http://www.paymentsystemsblog.com/2009/09/28/pre-authorization-data-for-completions-and-reversals-and-removal-of-track-ii-data/</link>
		<comments>http://www.paymentsystemsblog.com/2009/09/28/pre-authorization-data-for-completions-and-reversals-and-removal-of-track-ii-data/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 03:02:39 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2009/09/28/pre-authorization-data-for-completions-and-reversals-and-removal-of-track-ii-data/</guid>
		<description><![CDATA[Late last week I received a email detailing a few message format specification changes for a processing gateway interface that OLS.Switch connects to. It discussed changes to the required data elements required for &#8220;match-up&#8221;, the data required in the original transaction that one must return in a reversal response message or in completion messages.&#160; We [...]]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px; float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px;" src="http://www.paymentsystemsblog.com/wp-content/uploads/2009/09/images1.jpg" />Late last week I received a email detailing a few message format specification changes for a processing gateway interface that <a href="http://www.olsdallas.com">OLS.Switch</a> connects to. It discussed changes to the required data elements required for &#8220;match-up&#8221;, the data required in the original transaction that one must return in a reversal response message or in completion messages.&nbsp; We leverage Host Reversals (note: these are not the same as refunds) when we don&#8217;t recieve a response from an authorizer for remove authorization, most typically on a time-out scenarios. We don&#8217;t know if the processor accepted the transaction and we just didn&#8217;t receive the response or if the processor never received the original transaction at all. In cases like these we are obligated to send reversal messages, to reverse the transaction. In a credit world where there are large open-to-buys and credit limits and expiring authorizations, this is less of a deal with debit. In the debit world mistakes here case pain for cardholders and duplicate charges occur.&nbsp; We SAF (Store and Forward) our reversals and retry for a set period of time with delay intervals until we receive an acknowledgment that our reversal transaction was received. Completions can be forced sales or post authorization transactions, or in certain industries completions with updated amounts that differ then the authorization (Think restaurant tip and gas pumps transactions here.)</p>
<p>The changes are listed below:</p>
<p><b><i>Track 2 data is no longer required for completion, reversal or void transaction types. With the elimination of the Track 2 Data (Field ID 35) these transaction types will now require the Account Number (Field ID 02) and Expiration Date (Field ID 14) to be provided. All clients should make these modifications prior to your next PCI assessment.</i></b></p>
<p>This is great news, the is one of the last processing gateways that we interface with that required the ISO8583 Data Element 35 &#8211; Track 2 Data for reversals and completions.&nbsp; If you ever noted the specific wording in the PCI DSS specification about &#8220;subsequent to the authorization&#8221; this is part of why I believe that wording was left there.&nbsp; The issue with this is while SAF queues are normally located in memory &#8211; there are times when they can be configured to be persisted to disk (If they are not, think of the cardholder impact of duplicate charges) This is less data, specifically pre-authorization data that is required to be stored prior to the authorization. We have leveraged &#8220;encrypted spaces&#8221; to help protect all types of SAF Queues and are happy Track 2 Data is not required for match-ups any more &#8211; Ideally, and we hope that processors will take this a step further and remove the requirement of sending the PAN, and leverage other unique transaction identifiers or composite identifiers: Take a look at one our our &#8220;FindOriginal&#8221; Transaction Participants for a MasterCard Interface:</p>
<p>CriteriaImpl(TranLog:this[][date&gt;=Thu Sep 17 09:11:41 CDT 2009, irc=1816, stan=000000087625, originalItc=100.00, acquirer=987654999, mid=123456789012345, tid=12234501, banknetReference=MQWWRJ4QW ])</p>
<p>No Card Number there !</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=15de6e42-dcb7-8842-bc38-fbd487be3493" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2009/09/28/pre-authorization-data-for-completions-and-reversals-and-removal-of-track-ii-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PCI Council : Wireless Security Guides for Payment Cards</title>
		<link>http://www.paymentsystemsblog.com/2009/07/15/pci-council-wireless-security-guides-for-payment-cards/</link>
		<comments>http://www.paymentsystemsblog.com/2009/07/15/pci-council-wireless-security-guides-for-payment-cards/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 22:43:03 +0000</pubDate>
		<dc:creator>db</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.paymentsystemsblog.com/2009/07/15/pci-council-wireless-security-guides-for-payment-cards/</guid>
		<description><![CDATA[There are few news articles today that reference this article. &#8211; That talks about the PCI Council &#8220;Publishing&#8221; a Wireless Security Guide for Payment Cards

Update July 17/2009 &#8211; The Guide is now listed on the PCI Co Website and direct link is here.
From the Article these appears to be the relevant things from the Guidelines:

The [...]]]></description>
			<content:encoded><![CDATA[<p>There are few news articles <a href="http://www.cio.com/article/497335/PCI_Council_Publishes_Wireless_Security_Guidelines_for_Payment_Cards">today</a> that reference this <a href="http://news.idg.no/cw/art.cfm?id=7DDF57DA-1A64-67EA-E45C6DA6C6A9F61A">article. &#8211; That talks about the PCI Council &#8220;Publishing&#8221; a Wireless Security Guide for Payment Cards<br />
</a></p>
<p>Update July 17/2009 &#8211; The Guide is now listed on the<a href="https://www.pcisecuritystandards.org/education/info_sup.shtml"> PCI Co Website </a>and direct link is <a href="http://bit.ly/inHJF">here</a>.</p>
<p>From the Article these appears to be the relevant things from the Guidelines:</p>
<ul>
<li>The guidelines requires &#8220;a firewall that demarcates the edge of the organization’s CDE &#8211; cardholder data environment</li>
<li>To combat the problem of the rogue access point, businesses will need to use a wireless analyzer or preventative measures   such as a wireless intrusion detection/prevention system (IDS/IDP) regularly</li>
<li>The council is advising large organizations to set up automated scanning using a centrally managed wireless IDS/IPS system.</li>
<li>The guidelines suggest   quarterly scans each year to detect rogue wireless devices that could be connected to the CDE at any location and have an   incident-response plan to deal with them.</li>
<li>To isolate wireless networks that don&#8217;t transmit, store or process cardholder data, a firewall must be used, and it has to   perform the functions of filtering packets based on the 802.11 protocol; performing stateful inspection of connections; and   monitoring and logging traffic allowed and denied by the firewall according to PCI DSS rule 10. The firewall logs would have   to be monitored daily and the firewall rules verified once every six months.</li>
<li>The wireless guideline also says &#8220;relying on a virtual LAN (VLAN) based on segmentation is not sufficient.&#8221;</li>
<li> For &#8220;in-scope wireless networks,&#8221; physical security should apply, with options that include mounting wireless access points   high up on a ceiling and disabling the console interface and factory rest options by using a tamper-proof chassis.</li>
<li>Change the default settings of the access points in terms of default administrative passwords, encryption settings, reset   function. Disable SNMP access to remote access points if possible. Do not advertise organization names in the SSID broadcast.</li>
<li>Use of AES encryption is recommended for WLAN networks. Specifically, information flowing through certain network segments,   including secure wireless devices that connect to the private WLAN through the access points, must be encrypted.</li>
<li>Wireless usage policies should be established for &#8220;explicit management approval to use wireless networks in the CDE.&#8221; Usage   policies require labeling of wireless devices with owner, contact information and purpose.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.paymentsystemsblog.com/2009/07/15/pci-council-wireless-security-guides-for-payment-cards/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
