<?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/"
	>

<channel>
	<title>RiskHeads &#187; Insurance Agency Software</title>
	<atom:link href="http://www.RiskHeads.org/category/insurance-agency-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.RiskHeads.org</link>
	<description>Deep inside the insurance industry, insurance agency software, claims management and actuarial science.</description>
	<lastBuildDate>Wed, 09 Jun 2010 07:31:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to track affiliate referals to your insurance website without problems</title>
		<link>http://www.RiskHeads.org/track-affiliate-referals-insurance-website-without-problems/</link>
		<comments>http://www.RiskHeads.org/track-affiliate-referals-insurance-website-without-problems/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 11:46:36 +0000</pubDate>
		<dc:creator>Adam Bishop</dc:creator>
				<category><![CDATA[Insurance Agency Software]]></category>
		<category><![CDATA[MI Reports]]></category>

		<guid isPermaLink="false">http://www.riskheads.com/?p=310</guid>
		<description><![CDATA[There are a number of reasons that tracking referrals to your website from third-party websites can be problematic if you attempt to do so with server-side code.
This is a technical article intended for insurance software developers but the problem described affects all of us who work with affiliates and resellers and attempt to track referrals [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>There are a number of reasons that tracking referrals to your website from third-party websites can be problematic if you attempt to do so with server-side code.</p>
<p>This is a technical article intended for insurance software developers but the problem described affects all of us who work with affiliates and resellers and attempt to track referrals server-side.</p>
<p>Let me break it down so you see the process, and the flaws.</p>
<p>Before I start, let me just make it clear: REFERRER and REFERER are alternative spellings of the same word, I think probably UK and US respectively. Since I&#8217;m in the UK right now I&#8217;ll be sticking to &#8216;referrer&#8217; most of the time but forgive me if I lapse and switch <img src='http://www.RiskHeads.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2>The tracking process we usually use to capture referrer is as follows:</h2>
<ol>
<li>The affiliate (e.g. an aggregator like CompareTheMarket or MoneySupermarket, or an independent broker or authorised representative, or even a shopping affiliate like Froogle, Kelkoo, SiteRunner, Ciao) publishes a link with their ID and our ID on their website.</li>
<li>A visitor clicks on the link with the intention to buy from your site.</li>
<li>The link takes the visitor back to the site of the affiliate that logs the visit, referrer, etc. and sets a cookie in the visitor&#8217;s browser.</li>
<li>The visitor is redirected to your site, where you log the new visitor as coming from the affiliate either by reading an ID in the querystring or by reading the *referrer value* (HTTP_REFERER) server side.</li>
<li>The visitor proceeds to shop while we track them around the site with an id binding them to the original affiliate.</li>
<li>The visitor either leaves or places an order, in which case we record the affiliate details in the order/quote/policy record.</li>
</ol>
<h2>How affiliates usually track us:</h2>
<p>Since affiliates don&#8217;t trust their merchants to report this information back to them, there are two very similar methods they ask us to use to help them to capture more information:</p>
<ol>
<li>They give us a snippet of code to be embedded in the source code of the &#8216;Thank you&#8217; page that connects to the affiliate site notifying them the details of the successful transaction.</li>
<li>They give us an IMG tag to embed instead, linking to a server-side script on their site.</li>
</ol>
<p>Note that this is not reliable, since we could easily randomize or fake the reporting of click-through. They are very much at our mercy, just as &#8211; in the other direction &#8211; we are at theirs, as you will see&#8230;</p>
<h2><strong>The industry-wide problem with all of this is:</strong></h2>
<p>There is absolutely no way to guarantee the referral data, for a number of reasons. In some respects HTTP itself is a flawed protocol in this context: namely the HTTP_REFERER server variable that we all use is not reliable &#8211; often empty or containing fraudulent data &#8211; and this server variable is the only way to capture the origin of a click event required to credit an affiliate referrer.</p>
<p>It can be empty because:</p>
<ol>
<li>Some affiliates use a meta-refresh to redirect people to the merchant site (a-la Kelkoo), allowing them to deliver an extra banner ad, but often ditching the all important referrer info.</li>
<li>Some browsers don&#8217;t pass this variable at all.</li>
<li>Some browsers discard this variable if the site is opened in a new window, or if you drag a link and drop it on another window, or use a desktop/start menu shortcut, bookmark, etc.</li>
<li>Some people disable it manually, for privacy (usually outside of a single domain).</li>
<li>Some firewalls block it (e.g. Norton, usually outside of a single domain).</li>
<li>Many e-mail programs like Outlook filter it.</li>
<li>Most download managers don&#8217;t send it.</li>
</ol>
<p>Furthermore, in order to track the referrer as people move around the site it has to be stored in the session (usually the only solution for storing information about someone who hasn&#8217;t yet registered or logged-in, but a very volatile mechanism which can easily expire), or a cookie (which people often disable, firewalls block etc.).</p>
<p>Also, if people enter the domain name of the site manually or set a bookmark once they found us on the affiliate site and then return later, there is nothing to track or detect.</p>
<h2><strong>Are there any workarounds?</strong></h2>
<p>Unfortunately the entire system is based on trust between affiliate and merchant, and worse still, trust of the browser/software/network/pc of the visitor, all of which is unreliable, and data &#8211; however stored &#8211; can be faked, since there is not actual authentication between the affiliate and us.</p>
<p>However, there is a dim light at the end of the tunnel, if you squint and look hard enough&#8230;</p>
<ul>
<li>Javascript, client based tracking like <a href="http://www.google.com/analytics" target="_blank">Google Analytics</a>, <a href="http://haveamint.com/" target="_blank">Mint</a> or <a href="http://www.blvdstatus.com/" target="_blank">BLVDStatus</a> do a good job of telling you where visitors are coming from.  They&#8217;re not so good at showing clearly when visitors who originally came from a referrer return at a later date, because of the &#8216;<a href="http://www.seomoz.org/ugc/google-analytics-alternatives-measuring-beyond-last-click-wins" target="_blank">last click wins behaviour</a>&#8216;.  To get around this when using Google Analytics, you need to <a href="http://www.blogstorm.co.uk/how-to-override-google-analytics-last-click-wins-behaviour/" target="_blank">override the last click wins behaviour</a>.  You may also like to <a href="http://www.mortenbock.dk/blog/2007/04/15/google-analytics-outgoing-links.aspx" target="_blank">track all of your outgoing links</a>.</li>
<li>Alternatively or in addition, affiliates could provide authentication by SSL or a similar mechanism to prove to us that they are who they say they are and visa-versa, making the whole process of delivering customers a secure transaction.  I&#8217;ve not seen anything like this in practice but I&#8217;m sure it goes on.  <strong>If anyone has any examples, let me know!</strong></li>
<li>Often the only practical short-term solution is to create a different URL for each affiliate, which forces them to visit a different link to their counterparts, (e.g. http://www.yoursite.com/froogle ), but this can lead to resubmissions by fraudulent affiliates, since there is no way for us to stop it.</li>
</ul>
<p>In my experience, use every method you can and compare the data coming from each approach which will help you highlight any grey areas or holes, and pinpoint fraudulent activity by any web partners you are working with.</p>
<p>As ever, your comments are very welcome!</p>
<p>As always, based on any comments received I will update this article so it remains authoritative.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.RiskHeads.org/track-affiliate-referals-insurance-website-without-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web based insurance software is the future</title>
		<link>http://www.RiskHeads.org/web-based-insurance-software-future/</link>
		<comments>http://www.RiskHeads.org/web-based-insurance-software-future/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 21:14:10 +0000</pubDate>
		<dc:creator>Adam Bishop</dc:creator>
				<category><![CDATA[Insurance Agency Software]]></category>

		<guid isPermaLink="false">http://www.riskheads.com/?p=32</guid>
		<description><![CDATA[Do you think that web based insurance software is the best thing since sliced bread?  Is it the right fit for the insurance industry?
I would say so, but then I&#8217;ve always been a fan of web based, ever since Yahoo Mail (1998?). In any case the advantages are well known&#8230;


Never install anything
Always up-to-date
Safe &#38; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Do you think that web based insurance software is the best thing since sliced bread?  Is it the right fit for the insurance industry?</p>
<p>I would say so, but then I&#8217;ve always been a fan of web based, ever since Yahoo Mail (1998?). In any case the advantages are well known&#8230;</p>
<p><span id="more-32"></span></p>
<ol>
<li>Never install anything</li>
<li>Always up-to-date</li>
<li>Safe &amp; secure</li>
<li>Backed-up</li>
<li>Access from anywhere</li>
<li>Works on every operating system/cellphone</li>
<li>No IT staff are required</li>
<li>No servers required</li>
</ol>
<p>But for many insurance agencies, these advantages are not plain.  The reason is a simple one: many insurance broking companies have not had a chance yet to use web based software for work, and some not even at home.  Describing the advantages to the uninitiated can be a hurdle.</p>
<p>What do you think?  Is web based insurance agency software the panacea to deal with the distributed nature of our insurance operations, or is it all hype?</p>
<p>As the economic crisis begins to lift and people start to buy in to software again, we should decide!</p>
<p>Well?  Does it work for you or not?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.RiskHeads.org/web-based-insurance-software-future/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The insurance software platform you were waiting for.</title>
		<link>http://www.RiskHeads.org/the-insurance-software-platform-you-were-waiting-for/</link>
		<comments>http://www.RiskHeads.org/the-insurance-software-platform-you-were-waiting-for/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 12:00:07 +0000</pubDate>
		<dc:creator>Adam Bishop</dc:creator>
				<category><![CDATA[Insurance Agency Software]]></category>

		<guid isPermaLink="false">http://www.riskheads.com/?p=89</guid>
		<description><![CDATA[After many, many months of hard work, love, sweat, pain and great code(!), we&#8217;re pleased to unveil the new SchemeServe, version 4.4.
There are over 100 new features and improvements to look forward to in this release, and a list of the main features is here.  The most important new ones include:
Split Risk Rating Matrices now [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After many, many months of hard work, love, sweat, pain and great code(!), we&#8217;re pleased to unveil the new <a href="http://www.InsuranceAgencySoftware.net">SchemeServe</a>, version 4.4.</p>
<p>There are over 100 new features and improvements to look forward to in this release, and <a href="http://www. InsuranceAgencySoftware.net/why_schemeserve.html">a list of the main features is here</a>.  The most important new ones include:</p>
<h2>Split Risk Rating Matrices now editable by you.</h2>
<p style="padding-left: 30px;">Edit all types of auto-rating rules when cover is first held, at renewal and MTA (e.g. automatically charge more for specific coverage based on policy CLR for specific claim types).</p>
<h2>Create granular rules for auto-generation of static documents.</h2>
<p style="padding-left: 30px;">&#8230;alongside dynamic ones.  With this mix and match approach you can use dynamic documents when you need special fields, and PDF static docs can be attached at other times, for instance for summary of cover documents.</p>
<h2>Use dynamic text in your endorsement library.</h2>
<p style="padding-left: 30px;">&#8230;and control rules for automatic endorsement creation (e.g. conditions, terms and memoranda added to documentation generated).</p>
<h2>Improved Scheme Editor.</h2>
<p style="padding-left: 30px;">Launch new schemes even more easily in-house, making it a snap to mix direct and via-subbroker schemes, including with differing payment options (or if you prefer, take payment in-house).</p>
<h2>Even more graphs and reports.</h2>
<p style="padding-left: 30px;">Take a look through the new reporting and graphs section, split risk groups in particular has meant lots of changes.</p>
<h2>Even better system performance and speed!</h2>
<p style="padding-left: 30px;">There are a whole host of optimisations in there again this time, so you should find the product another order of magnitude faster again.</p>
<h2>Referral Authority levels.</h2>
<p style="padding-left: 30px;">Optionally only allow referals to be cleared by staff with the correct authority level for that specific type of referral).</p>
<h2>Policy Allocation.</h2>
<p style="padding-left: 30px;">Set rules to allocate users to manage only specific schemes and/or accounts, with overrides for staff absence.</p>
<h2>More payment options.</h2>
<p style="padding-left: 30px;"><span style="font-weight: normal; font-size: 13px;">If taking payments online with SchemeServe, now use Sage Pay (formerly ProtX) or PayPal.</span></p>
<h2>Improved Direct Scheme Support.</h2>
<p style="padding-left: 30px;">Get Quote process for direct schemes now easier than ever, making it a snap for clients to get quotes and go-oncover etc.</p>
<h2>Improved Questions Editor.</h2>
<p style="padding-left: 30px;">More powerful questions editor with more options to trigger new questions and pages, specify more field types, legal ranges, risk groups and modifiers.</p>
<h2>New Import/Export for rating matrices.</h2>
<p style="padding-left: 30px;">Export the underlying rating matrices for any scheme to Excel, edit, then re-import.</p>
<h2>New look Admin page.</h2>
<p style="padding-left: 30px;">New icons and Admin panel with improved accessibility to core features and navigation shortcuts.</p>
<p>&#8212;</p>
<p>As always, existing SchemeServe users need do nothing &#8211; you will automatically be given access to the new version of SchemeServe at the same URL, at no charge.</p>
<p>To celebrate the release of the new version we&#8217;ll be offering <a href="http://www.InsuranceAgencySoftware.net">£200 cash back to our first 100 sign-ups here</a>.</p>
<p>As always, we offer a no obligation 30-day free trial on all our plans, so check it out.</p>
<p>Let us know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.RiskHeads.org/the-insurance-software-platform-you-were-waiting-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ristechnophobia! Beating your technofear.</title>
		<link>http://www.RiskHeads.org/ristechnophobia-is-it-holding-your-insurance-business-back/</link>
		<comments>http://www.RiskHeads.org/ristechnophobia-is-it-holding-your-insurance-business-back/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 17:34:32 +0000</pubDate>
		<dc:creator>Adam Bishop</dc:creator>
				<category><![CDATA[Insurance Agency Software]]></category>

		<guid isPermaLink="false">http://www.riskheads.com/?p=58</guid>
		<description><![CDATA[Something that has continually amazed me the past few years is the level of Technofear in the insurance industry, or, as I&#8217;ve decided to call it right now: &#8220;Ristechnophobia&#8221;. (Think it will catch on?).
Edit: Thanks to Reinsurance Girl for the example above.
It&#8217;s true that most of us who work in the insurance industry have seen [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Something that has continually amazed me the past few years is the <a rel="nofollow" href="http://www.silicon.com/financialservices/0,3800010322,39155917,00.htm">level of Technofear in the insurance industry</a>, or, as I&#8217;ve decided to call it <em>right now</em>: &#8220;Ristechnophobia&#8221;. (Think it will catch on?).</p>
<blockquote><p>Edit: Thanks to <a href="http://www.rein4ce.co.uk/blog/">Reinsurance Girl </a>for the example above.</p></blockquote>
<p>It&#8217;s true that most of us who work in the insurance industry have seen countless insurance software programs which simply don&#8217;t work; and we&#8217;ve seen this again and again and again, with every software release.  But despite what some of us may think, in other industries software doesn&#8217;t get such a bad wrap.  So what&#8217;s going on?  Are we right: is it really time to string up the techies and go back to paper, or are we missing something?</p>
<p>Given the massive complexity of most underwriting operations it&#8217;s no surprise that software developers struggle to quickly put together meaningful &#8211; and adaptable &#8211; solutions.  Couple this with the ever-changing landscape and personality of any individual business and you have a recipe for sure-fire flaky and unfinished software implementations.</p>
<p>In this environment, with little or no solutions that match your distinctive trading style, and with nothing certain in this world(!), you&#8217;d be forgiven for having not taken the software plunge; abandoning tried and tested underwriting methods you know and trust for something you know can&#8217;t work.</p>
<p>But we know there are some websites out there providing a rich user experience throughout the insurance life-cycle without so much as a hickup. So how do they do it?</p>
<p>Well some of them have spent millions, and many man-years of research and development time on bespoke in-house software &#8211; but not all of them.  The truth is that the insurance software landscape is changing, and finally finding it&#8217;s feet.</p>
<p>There are great providers out there but you have to be really picky in comparing them.  Be sure to ask your provider:</p>
<ol>
<li><strong>How quickly and easily can i edit: </strong>
<ul>
<li>The questions I ask my customers and the answers allowed</li>
<li>Auto referral and endorsement rules</li>
<li>Auto rating rules throughout life-cycle</li>
<li>The documents generated and sent to clients and/or sub-brokers</li>
<li>My website</li>
<li>The commissions and fees I pay at each stage of the policy life-cycle?</li>
</ul>
</li>
<li><strong>Can I do all this for free without in-house programmers, risk, and extra costs?</strong></li>
<li><strong>How quickly can I get graphs of my data or export to Excel or PDF?</strong></li>
<li><strong>Is everything real-time, online and seamless?</strong></li>
<li><strong>Can I mix Sub-broker and Direct schemes with multiple currencies in the same software without extra upgrades?</strong></li>
<li><strong>How secure and backed-up are the servers you use?  Do you maintain them for free or do I need my own IT staff?</strong></li>
<li><strong>Does the software run on every operating system and Smart Phone?  Windows? Mac? Linux? iPhone? Blackberry?</strong></li>
<li><strong>How long has the software version I am buying been in production and active use?</strong></li>
</ol>
<p>And most importantly:</p>
<p style="padding-left: 30px;"><strong>9.   Can I see all of this working 100% with no obligation before I sign-up?</strong></p>
<p>If the answer to all of these answers is positive, you know you&#8217;re dealing with the right team.  The next generation of insurance software providers are finally here &#8211; really! &#8211; and they bring with them a customer experience which is hard to rival with ink and quill.</p>
<p>So what are you waiting for, there&#8217;s nothing to fear, you just might need to sift for a long time till you get the gold!</p>
<p>I hope this has been useful.  Let me know in the comments if you need any advice, I&#8217;m always on hand to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.RiskHeads.org/ristechnophobia-is-it-holding-your-insurance-business-back/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
