<?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>Gridshore &#187; freddie</title>
	<atom:link href="http://www.gridshore.nl/author/freddie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gridshore.nl</link>
	<description>A weblog about software engineering, Architecture, Technology an other things we like.</description>
	<lastBuildDate>Tue, 13 Dec 2011 15:36:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Call for Action for the Java Hackers</title>
		<link>http://www.gridshore.nl/2009/06/30/call-for-action-for-the-java-hackers/</link>
		<comments>http://www.gridshore.nl/2009/06/30/call-for-action-for-the-java-hackers/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 17:15:18 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2009/06/30/call-for-action-for-the-java-hackers/</guid>
		<description><![CDATA[<p>I challenge the Java Hackers, read on&#8230;.</p> <p>As you probably all know by now, I have joined ISIS Papyrus a while ago and last week i was reading the Papyrus Objects Developer Guide again and suddenly lightning hit me and the question raised can this actually be done in Java and if so, how [...]]]></description>
			<content:encoded><![CDATA[<p>I challenge the Java Hackers, read on&#8230;.</p>
<p>As you probably all know by now, I have joined ISIS Papyrus a while ago and last week i was reading the Papyrus Objects Developer Guide again and suddenly lightning hit me and the question raised can this actually be done in Java and if so, how and how easy?</p>
<p>Be aware, reading further could put you in a depression but on the otherhand the real Hacker will find it a challenge. Are you the Hacker?</p>
<p><span id="more-815"></span>
<p>From the ISIS Papyrus Objects manual for Developers: Classes are the definitions of objects and their behavior designed by the Developer. Classes are required to define general properties of objects derived from these classes, namely attributes, methods, states, and child/parent reference definitions. All classes reside exclusively in the Repository. The object tree in the Repository reflects the inheritance chain. As child objects of a class reflect an inheritance relationship it inherits all properties (methods, attributes, states, state transitions, and parent/child relationships).</p>
<p><em>Big deal and obvious you may think. But did you noticed the fact that we talk here also about states, state transitions and parent/child relationships.</em></p>
<p>Papyrus has full support for those concepts without any line of programming. Besides this there is full support for Security (role, policy, privilege), Version control (you can even view the versions and each instance knows to what version it belongs). But more on that maybe later.</p>
<p>I would like to see and explained Java Implementations that cover the UML implementation of State Machine, Parent/Child and Constraints (OCL) as this is all standard in Papyrus Objects and does not require programming at all.</p>
<p><strong><em>Hackers, show me a simple application simulating for example a traffic light with some attributes and methods that have been constrained as well the state transition itself. You would be a super hacker if you also implement security.</em></strong></p>
<p>Need inspiration for your Java Hack? Read some parts of our ISIS Objects Manual for Developers and start Hacking. I am waiting for your solutions and i am sure other Hackers will comment on them so that at the end the best solution will be available to be compared to Papyrus Objects. SUCCESS</p>
<p><strong>Authorization Concepts</strong></p>
<p>In Papyrus Objects, authorization is established through Roles, Privileges, and Policies that give Users the authorization appropriate for their tasks. This structure allows the Security Administrator to precisely control access to objects, whatever the User&#8217;s needs are.</p>
<p>The Role/Policy concept used in Papyrus Objects is modelled after the CORBA standard of Role Based Access Control (RBAC). Since users are not assigned permissions directly, but only acquire them through their Role (or Roles), management of individual user rights becomes a matter of simply assigning the appropriate Role(s) to the user, which simplifies common operations such as adding a user, or changing a user&#8217;s department. The Policy controls the visibility and thus complex filtering for presentation into frames is not necessary if the Policies are well set.</p>
<p>Access to objects (and usually also their visibility) is granted by policies, i.e. the user must be using a Role that is referenced by any of the Policies defined on the object, to access it.</p>
<p>Access to attributes and methods of objects is granted by Privileges, i.e. the user must be using a Role with the required privilege. In addition this Role must also be referenced by any of the Policies defined on the object.</p>
<p><strong>State Machine</strong></p>
<p>A state machine consists of states and their state transitions, which define the life cycle of an object. Conditions can be defined, thus certain actions can only be applied to an object if it is currently in an appropriate state (e.g. Task in state &#8220;Completed&#8221; cannot be processed). The fields of the state machine in Papyrus Objects are similar to UML (Unified Modeling Language). The &#8220;state machine view&#8221; is a frame of the Class Editor and displays the whole state machine in a flow chart. It can be used as a graphical editor similar to the UML Case tools. The state machine lists the states that an instance can have, and the Transitions between those states. Therefore it defines the object&#8217;s behavior:</p>
<ul>
<li>What kind of information (event) is sent to other objects.</li>
<li>Which methods are available within the current state.</li>
<li>Which event sent by a program triggers a state transit</li>
</ul>
<p>The state change of an object can be:</p>
<ul>
<li>user driven</li>
<li>driven by events</li>
<li>driven by messages</li>
</ul>
<p>A State Change has Entry, Exit, and Do Events (actions).</p>
<p><strong>Child/Parent References</strong></p>
<p>Via child and parent references the relationship between parent and child objects can be defined. A child reference can be used to define which type of object may be added to the object via a parent reference it is possible to defined to which type of object the object may be added.</p>
<p><strong>Constraints</strong></p>
<p>Constraint fields are used to define whether access to or modifications on a part of an object is granted. This way it is possible to define conditions which decide that a state transition for instance may not be executed under certain circumstances or an attribute cannot be changed in a certain state. If the expression in a constraint field evaluates to TRUE (or the field is left blank) the respective part of the object may be accessed or modified. If a constraints field evaluates to a number, then any number other than zero is true, and zero is false.</p>
<p>The following sections of a class / template definition contain constraint fields:</p>
<ul>
<li>Object start (Constraints)</li>
<li>State (Send Modification Event if)</li>
<li>State Transitions (Change trigger, Guard)</li>
<li>Attribute (Constraints, View constraints, and Edit constraints)</li>
<li>Method (Pre constraints and Post constraints)</li>
<li>Child and Parent References (Constraints, View constraints, and Edit constraints)</li>
</ul>
<p><strong>Privileges</strong></p>
<p>To define which group of users should be able to call a method or view / edit an attribute, select the related Privilege(s) in the field &#8220;Privileges&#8221; of the method or &#8220;View Privileges&#8221; or &#8220;Edit Privileges&#8221; of the attribute. ISIS provides the following predefined Privileges, which are defined in the Privileges object below the Storage folder &#8220;Storage / System Collection&#8221;:</p>
<p><em>$_Developer &#8230; Create / modify classes and templates<br />
$_Administrator &#8230; Create / Modify templates<br />
$_Security Administrator &#8230; Manages access rights<br />
$_User &#8230; End user, cannot create / modify classes and templates, not all methods available.<br />
$_Guest &#8230; End user with very limited rights for viewing.<br />
$_Licence Administrator &#8230; Administrates product authorizations<br />
$_System Administrator &#8230; General administration (e.g. creation of Client Nodes, import of transfer files, etc.)<br />
$_Supervisor &#8230; System supervisor for the select of objects, which should generate an audit trail (with System Supervisor Role) or privileged end user for release tasks.</em></p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2009%2F06%2F30%2Fcall-for-action-for-the-java-hackers%2F&amp;title=Call%20for%20Action%20for%20the%20Java%20Hackers&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2009/06/30/call-for-action-for-the-java-hackers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XML is net zo overschat als de Magnetron</title>
		<link>http://www.gridshore.nl/2009/05/26/xml-is-net-zo-overschat-als-de-magnetron/</link>
		<comments>http://www.gridshore.nl/2009/05/26/xml-is-net-zo-overschat-als-de-magnetron/#comments</comments>
		<pubDate>Tue, 26 May 2009 05:46:09 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2009/05/26/xml-is-net-zo-overschat-als-de-magnetron/</guid>
		<description><![CDATA[<p>Based on a discussion on Linkedin i have created a Dutch post on Computable on the premises of XML and if they came true. Feel free to leave a comment there.</p> ]]></description>
			<content:encoded><![CDATA[<p>Based on a discussion on Linkedin i have created a Dutch post on Computable on the <a href="http://www.computable.nl/artikel/ict_topics/ecm/2955023/1277020/xml-is-net-zo-overschat-als-de-magnetron.html">premises of XML </a> and if they came true. Feel free to leave a comment there.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2009%2F05%2F26%2Fxml-is-net-zo-overschat-als-de-magnetron%2F&amp;title=XML%20is%20net%20zo%20overschat%20als%20de%20Magnetron&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2009/05/26/xml-is-net-zo-overschat-als-de-magnetron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The case against Flex-based application UIs</title>
		<link>http://www.gridshore.nl/2009/02/03/the-case-against-flex-based-application-uis/</link>
		<comments>http://www.gridshore.nl/2009/02/03/the-case-against-flex-based-application-uis/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 19:03:53 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Frontend Technology]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2009/02/03/the-case-against-flex-based-application-uis/</guid>
		<description><![CDATA[<p>I have once in a while discussions with Jettro on Flex, Ajax and what we do at ISIS Papyrus with our Papyrus EYE user interface. Post on Adobe`s Flex attracks a lot of visitors to our blog. So, now I ask all of you with real-world experience with Adobe`s Flex to be honest to [...]]]></description>
			<content:encoded><![CDATA[<p>I have once in a while discussions with Jettro on Flex, Ajax and what we do at <a href="http://www.isis-papyrus.com" target="_blank">ISIS Papyrus </a> with our <a href="http://www.isis-papyrus.com/e/pages/pressreleases/2/PR20080922.htm" target="_blank">Papyrus EYE</a> user interface. Post on Adobe`s Flex attracks a lot of visitors to our blog. So, now I ask all of you with real-world experience with Adobe`s Flex to be honest to your self and ask yourself is Flex something a business user can use to define his own User Interface? Or at least is it Flexible and manageable enough to do quick changes based on changing user requirements?</p>
<p>I recommend to read the two post below and also to leave your response.</p>
<p>Tony Byrne, analyst with CMSWatch, put out an interesting blog&#8221;<a href="http://www.cmswatch.com/Trends/1492-The-case-against-Flex-based-application-UIs" target="_blank">The case against Flex-based application UIs</a>&#8220;.</p>
<p>Max J. Pucher has written also an interesting blog-item on &#8220;<a href="http://isispapyrus.wordpress.com/2009/02/03/adobe-flex-versus-papyrus-eye/" target="_blank">Flex versus EYE</a>&#8220;.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2009%2F02%2F03%2Fthe-case-against-flex-based-application-uis%2F&amp;title=The%20case%20against%20Flex-based%20application%20UIs&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2009/02/03/the-case-against-flex-based-application-uis/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What did 800 visitors a day bring to our blog and why we are going to pass the 1000!</title>
		<link>http://www.gridshore.nl/2009/01/26/what-did-800-visitors-a-day-bring-to-our-blog-and-why-we-are-going-to-pass-the-1000/</link>
		<comments>http://www.gridshore.nl/2009/01/26/what-did-800-visitors-a-day-bring-to-our-blog-and-why-we-are-going-to-pass-the-1000/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 12:33:01 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2009/01/26/what-did-800-visitors-a-day-bring-to-our-blog-and-why-we-are-going-to-pass-the-1000/</guid>
		<description><![CDATA[<p>Curious?</p> <p>No it was not (yet) the news on ISIS Papyrus, neither was it the fact I almost won the Pullitzer price (I have first to write sensible things)</p> <p>read on&#8230;</p> <p> <p>It has all to do with a catching title (like this one) and of course an interesting topic like Offshore, Productivity but [...]]]></description>
			<content:encoded><![CDATA[<p>Curious?</p>
<p>No it was not (yet) the news on ISIS Papyrus, neither was it the fact I almost won the Pullitzer price (I have first to write sensible things)</p>
<p>read on&#8230;</p>
<p><span id="more-639"></span>
<p>It has all to do with a catching title (like this one) and of course an interesting topic like Offshore, Productivity but above all Technology Stuff. Ben and Allard write nice pieces see for example &#8220;<a href="http://www.gridshore.nl/2009/01/18/the-parable-of-the-lightbulb/">The parable of the light bulb changing</a>&#8221; that are highly educational but there is only one champion when it comes to new stuff which is <a href="http://www.gridshore.nl/author/admin/">Jettro</a>. Man what is that man productive and good in sharing his knowledge.</p>
<p>Give him an applaus and reward him with more than 1000 visitors on one day. Check out his articles on howto wire Java and <a href="http://www.gridshore.nl/tag/flex3/">Adobe Flex </a> together.</p>
<p>I am still wondering why anyone would put some much effort in this hardcoding programming while you could do the same and more with less effort using the <a href="http://www.isis-papyrus.com" target="_blank">ISIS Papyrus Platform</a>.</p>
<p>As Butler said in their upcoming Technology Audit Report &#8220;<em>In Butler Group&#8217;s opinion, the ISIS Papyrus Platform provides a real solution to a real problem. The problem is that organisations are caught up in implementing what they view as diverse systems; when, in fact, they are part of a total ecosystem (or at least should be seen as such). Once these systems or solutions are implemented there comes a need to integrate them to provide both the real value and to reduce management costs.&#8221;</em></p>
<p>But yes I know, I was myself a die hard Java Developer and I know its fun to code, but if its the best for the organization I am not so sure anymore.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2009%2F01%2F26%2Fwhat-did-800-visitors-a-day-bring-to-our-blog-and-why-we-are-going-to-pass-the-1000%2F&amp;title=What%20did%20800%20visitors%20a%20day%20bring%20to%20our%20blog%20and%20why%20we%20are%20going%20to%20pass%20the%201000%21&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2009/01/26/what-did-800-visitors-a-day-bring-to-our-blog-and-why-we-are-going-to-pass-the-1000/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Defects, Lean Software Development, Offshore, oh my &#8230;</title>
		<link>http://www.gridshore.nl/2008/12/30/defects-lean-software-development-offshore-oh-my/</link>
		<comments>http://www.gridshore.nl/2008/12/30/defects-lean-software-development-offshore-oh-my/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 22:00:49 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/12/30/defects-lean-software-development-offshore-oh-my/</guid>
		<description><![CDATA[<p>This blog item I have dedicated to zoom in on Bugs, a specific type of Waste (muda which is Toyta lexicon) aka DEFECTS as they have a huge effect on Productivity.</p> <p>But lets start with the Analysts and their magic 8-bal that has shown them that Lean Software Development will become the hit of [...]]]></description>
			<content:encoded><![CDATA[<p>This blog item I have dedicated to zoom in on Bugs, a specific type of Waste (muda which is Toyta lexicon) aka DEFECTS as they have a huge effect on Productivity.</p>
<p><img height="95" alt="drowning" src="http://www.gridshore.nl/wp-content/uploads/drowning.jpg" width="225" align="left" />But lets start with the Analysts and their magic 8-bal that has shown them that Lean Software Development will become the hit of 2009.</p>
<p>
Bloated applications, platforms and architectures slow application development and make QUALITY CONTROL and everyday usage time-consuming and nonproductive, said Forrester Research principal analyst John R. Rymer. Forrester&#8217;s <a href="http://www.forrester.com/Research/Document/Excerpt/0,7211,47830,00.html" target="_blank">newly-published report</a>, Lean Software is Agile, Fit-to-Purpose, and Efficient, lays out how software got so fat, costly and inefficient; the evidence that IT organizations are moving to lean software; the challenges involved in lightweight software development; and strategies for joining the movement.</p>
<p>There is a lot to say about Lean Software Development as I already mentioned in my blog item on the <a href="http://www.gridshore.nl/2008/12/13/the-real-cost-of-offshoring/#more-517" target="_blank">REAL cost of Offshore</a> .</p>
<p><span id="more-566"></span>
<p><img height="170" alt="lean software development books" src="http://www.gridshore.nl/wp-content/uploads/leansoftwaredevelopmentbooks.jpg" width="128" align="right" /> The best you can do is to read the book of Mary and Tom Poppendieck and of course The Toyota Way. The XP, Scrum and even some RUP adepts under the readers they know that it is all about being Agile (whatever it means).</p>
<p>
<em>&#8220;Agile development is independent of any technical platform or development approach &#8220;It&#8217;s a method. What&#8217;s neat about this is that people are delivering application features sometimes every two weeks or each month. Rather than deliver the big-bang project after years of work, they&#8217;re delivering applications in increments. They&#8217;re working in an incremental fashion to deliver features over time, providing value quickly and continue to add value. That&#8217;s a way to modulate your costs, to spread your costs and investment over a period of time.&#8221;</em></p>
<p>And Yes, it`s not easy to break through old habits as I know by experience that companies are really good in adopting RUP and then transform this iterative methodology into a Waterfall approach.</p>
<p><strong>What have DEFECTS to do with AGILE development and Offshore?</strong></p>
<p>Partly taken from <a href="http://www.yourdonreport.com/index.php/2007/02/13/michael-mah-offshore-developed-software-projects-have-28x-as-many-bugs-as-average-software-projects/">Yourdon Report</a>  on a presentation that Michael Mah(QSM) gave at the New York City SPIN group.</p>
<p>Assume, for the moment, that you&#8217;ve got a software development project where the end-users (or customers, stakeholders) and the developers (i.e., programmers, architects, database designers, business analysts, QA personnel, etc.) are all working in company X, local. And imagine that you have another software development project, of equivalent size and complexity, where the end-users are in company X, but the development team is located in an offshore outsourcing company on the other side of the world (e.g., China, India, Singapore, eastern Europe, etc.) Why is it that software metrics (from <a href="http://www.qsm.com" target="_blank">QSM</a>) are showing that project #2 will have approximately 2.8 times as many software defects as project #1?</p>
<p>Precisely because the end-users and the developers are not &#8220;co-located&#8221; (in contrast to many of the &#8220;agile&#8221; or XP development projects, where a &#8220;customer proxy,&#8221; or end-user representative, is literally sitting in the same office cubicles, alongside the programmers), communication problems escalate. Despite the tools, the world, is not flat: you can&#8217;t just assume that software developers can be sprinkled randomly around the globe, where they&#8217;ll participate in a complex software development effort with no problems at all.</p>
<p>The second reason for the higher defect rate is because offshore outsourcing firms typically offer an essentially unlimited number of technical personnel at a lower labor rate, many firms think they can achieve faster delivery schedules by hiring larger teams of offshore developers than they would if they staffed the project locally &#8211; and yet still save money. Which I have explained in my previous article on &#8220;<a href="http://www.gridshore.nl/2008/12/13/the-real-cost-of-offshoring/#more-517" target="_blank">The REAL cost of Offshore</a>&#8221; is wrong. Thus, if the firm had previously staffed a project with 10 &#8220;expensive&#8221; local programmers, they figure they can hire 20 &#8220;cheap&#8221; Indian programmers, and still save money &#8211; while (in theory) cutting the schedule in half, because they&#8217;re blissfully unaware of <a href="http://en.wikipedia.org/wiki/Brooks'_law" target="_blank">Brooks&#8217; Law</a> .</p>
<p>Aside from the schedule issue, it&#8217;s a known fact (but pity enough not to everyone) that software defects are strongly correlated to the number of &#8220;lines of communication&#8221; between the developers on the team; and that number increases combinatorially (i.e., N*(N-1)/2) as the size of the team increases (this is a variation on <a href="http://en.wikipedia.org/wiki/Conway's_Law" target="_blank">Conway&#8217;s Law</a> , <em>first articulated by computer programmer Melvin Conway in 1968, which says that the structure of a system is isomorphic to the structure of the organization that builds it). Hence, the number of defects in a software system increases in a manner proportional to the square of the number of developers; and as a result, he says, offshore projects are more likely to deliver buggy software.</em></p>
<p><strong>There is a lot more to tell about core metrics needed to measure, compare and predict productivity but let me stick to the topic of Defects.</strong></p>
<p>On an average, we introduce and detect 0.4 Defects (without Unit test defects) for every Staff day (including training, project management, requirements writing, testing, documentation, etc.) of effort I.o. in a medium project (10 people, 6 months) we can expect <strong>more than 500 defects</strong>!</p>
<p>You can find these research figures e.g. at the different SPIN presentations or use the QSM Slim tooling. <img height="332" alt="cost of defects" src="http://www.gridshore.nl/wp-content/uploads/costofdefects.jpg" width="450" />But there is more, it also a known fact that the longer a Defect is in the system the more it cost (time, money, risk) to repair it. A defect inserted while writing Requirements but discovered during Acceptance test can cause a lot of rework as it can have also its influence on other parts of the system and sometimes even the architecture.</p>
<p><img height="264" alt="testing too late" src="http://www.gridshore.nl/wp-content/uploads/testingtoolate-1.jpg" width="450" />Cumulative Defect Density (defect per kloc) versus actual found Defects is an important metric to avoid the big bang on Defects in the last stage of the project. You all know by experience what management decides. First we have to make overtime, then the project team size increases, both resulting in even a higher defect density. Testers are not getting enough time to test, which leads to another important metric, defect turnaround time (time needed to change the state of a defect). More and more fixes are not being able to test and then the inevitable happens, either the project is released with bugs or it is cancelled.</p>
<p><img alt="test turnaround time" hspace="0" src="http://www.gridshore.nl/wp-content/uploads/turnaroundtime.jpg" border="0" /></p>
<p>A lot of defects can already being found through reviews lowering the Cost of Quality as Testing is more costly, but there is an optimum to find. But as we all know, reviewing requirements is not easy and I advocate here the Test Driven Approach. You should write Test Scenarios based on the requirements and whenever you encounter a discussion on Testing/Reviewing most likely the Project manager / Customer complaining about the extra cost then there is only one answer to give.</p>
<p>&#8220;<strong>If its not worth Testing, it`s not worth Developing</strong>&#8220;`which leads actually to the biggest saver in your project as the Standish Group once has estimated that 55% of the software features are hardly or not used by its users. Another point for Agile techniques, by focusing on the most important requirements first.</p>
<p>This conclude my view and experience on Software Development in general and more specific on what are the most important reasons why projects hardly live up to the expectations of the stakeholders.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F12%2F30%2Fdefects-lean-software-development-offshore-oh-my%2F&amp;title=Defects%2C%20Lean%20Software%20Development%2C%20Offshore%2C%20oh%20my%20...&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/12/30/defects-lean-software-development-offshore-oh-my/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Inspirational moments</title>
		<link>http://www.gridshore.nl/2008/12/13/inspirational-moments/</link>
		<comments>http://www.gridshore.nl/2008/12/13/inspirational-moments/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 18:21:27 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/12/13/inspirational-moments/</guid>
		<description><![CDATA[<p>I needed of course a reason to write besides the 99 also the 101 Post.</p> <p>So two inspirational moments to do so:</p> 100 Posts on the Gridshore blog.That needs celebration. Every inspirational moment — well, 40 of them — you will ever need. The movie Human Assembly made by Bernhard Pucher of Iron Box [...]]]></description>
			<content:encoded><![CDATA[<p>I needed of course a reason to write besides the 99 also the 101 Post.</p>
<p>So two inspirational moments to do so:</p>
<ul>
<li>
<div>100 Posts on the Gridshore blog.That needs celebration. Every inspirational moment — well, <a href="http://www.youtube.com/watch?v=d6wRkzCW5qI" target="_blank">40 of them</a> — you will ever need.</div>
</li>
</ul>
<ul>
<li>The movie <a title="Human Assembly by Bernhard Pucher" href="http://www.youtube.com/watch?v=q4D2TUeOOfA" target="_blank">Human Assembly</a> made by Bernhard Pucher of <a href="http://www.ironboxmusic.com/films/">Iron Box Films</a>, Martin Richtsfeld playing the main character in it (a good colleague).</li>
</ul>
<p><a href="http://www.gridshore.nl/2008/12/13/inspirational-moments/"><img src="http://img.youtube.com/vi/q4D2TUeOOfA/default.jpg" width="130" height="97" border=0></a><br />
Enjoy</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F12%2F13%2Finspirational-moments%2F&amp;title=Inspirational%20moments&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/12/13/inspirational-moments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The REAL Cost of Offshoring</title>
		<link>http://www.gridshore.nl/2008/12/13/the-real-cost-of-offshoring/</link>
		<comments>http://www.gridshore.nl/2008/12/13/the-real-cost-of-offshoring/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 10:50:55 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/?p=517</guid>
		<description><![CDATA[<p>This blog I wrote to share some of my insights on Distributed Software Development (Offshore, Nearshore, Rightshore, GRIDSHORE, whatevershore).</p> <p>I will not go into cultural differences, intellectual differences, communication issues (human and technical), time and distance issues, etc.</p> <p> <p>Lets simplify it by stating that it adds WASTE to the Development Process but we [...]]]></description>
			<content:encoded><![CDATA[<p><img height="114" alt="offshore for dummies" src="http://www.gridshore.nl/wp-content/uploads/offshorefordummies.jpg" width="90" align="right" />This blog I wrote to share some of my insights on Distributed Software Development (Offshore, Nearshore, Rightshore, GRIDSHORE, whatevershore).</p>
<p>I will not go into cultural differences, intellectual differences, communication issues (human and technical), time and distance issues, etc.</p>
<p><span id="more-517"></span>
<p>Lets simplify it by stating that it adds <strong>WASTE</strong> to the Development Process but we don`t know how much as it depends on the situation, location experience, people involved, and so on.</p>
<p><font color="blue">WASTE is an important concept</font> to understand as it is by far the biggest influence factor in reducing time-to-market and cost reduction. Lean Software Development is a translation of lean manufacturing principles and practices to the software development domain and focusses on removing WASTE. Adapted from the Toyota Production System, a pro-lean subculture is emerging from within the Agile community. Everything not adding value to the Customer is considered to be waste. This includes:</p>
<ul>
<li>
<div>unnecessary code and functionality</div>
</li>
<li>
<div>bugs</div>
</li>
<li>
<div>delay in the software development process</div>
</li>
<li>
<div>unclear requirements</div>
</li>
<li>
<div>bureaucracy</div>
</li>
<li>
<div>slow internal communication</div>
</li>
</ul>
<p><em>The term Lean Software Development originated in a book by the same name, written by Mary Poppendieck and Tom Poppendieck.</em></p>
<p>I hear you saying, <font color="blue">what about <strong>Productivity</strong></font>? Productivity in economics refers to measures of output from production processes, per unit of input. Labor productivity, for example, is typically measured as a ratio of output per labor-hour, an input. Its known that there can be an enormous difference in productivity between one developer and the other. Also the development language and tools they use can make a difference. Again, I will not go into the discussion if Cobol, RPG, C##, Java, Ruby is more productive than the other, neither I will state in this article my opinion on architectures like SOA.</p>
<p>What is important to grasp is that Productivity depends on the team size. Adding people to a team does not have a lineair posive effect on the duration (it has sometimes a negative effect) and it has certainly not a positive effect on Productivity as the input (labor hours) increases and the waste (waiting time) too.</p>
<p>Brooks has written about it in his book the Mythical Man Month. Everyone knows the famous example &#8220;<strong>one women can get a baby in 9 months, 9 women can not get a baby in one month</strong>&#8220;. But why are planners still not taking this into consideration. In short &#8220;<strong>If one bricklayer can do a wall in 100 days and two can do it in 50 days the productivity remains the same (nothing said about the cost as salary can differ) but its unlikely that 10 bricklayers can do it in 10 days</strong>&#8220;. The SLIM tool of QSM used by a lot of companies can show nicely this effect. I did a lot of estimations, planning and collecting data in the past working for the big consulting firms and just to illustrate the effect I have included a screenshot of my spreadsheet tool.</p>
<p align="center"><img height="173" alt="effort and timesize" src="http://www.gridshore.nl/wp-content/uploads/effortandtimesize.jpg" width="450" /></p>
<p>If you take a project of 1000 Function Points, then the optimum in duration and effort would be around a duration of 10,2 month with 6 FTE resulting in 8531 hours. The same project (1000 FP) but now done in 9 Months (what is 1,2 month you would say) will take 11,8 FTE on average and cost 14586 hours which is almost double the hours. One remedy would be splitting the project into two projects but the architecture should allow this.  If you where able to split the project in a project of say 400 FP and 600 FP then you would see that with 400 FP it will take 2,9 FTE, 5,7 months and 1852 hours. The project of 600 FP will take 7,6 month with 4,5 FTE and cost 4769 hours. With some parallel development (if possible) we can meet the deadline of 9 Months and it will cost around the same as before.</p>
<p>Estimation of work is not equal to planning. A certain task say writing a use case, analyze a use case, design, code, test, deploy can be estimated (although not easy as re-use of existing classes comes into play). Planning although is arranging the tasks in the right order taking into consideration the dependencies on resources and other tasks. Planning of tasks takes most of the times place in the form of batches (writing requirements, analyze requirements, design, etc.) which is a form of WASTE.</p>
<p><font color="blue">So what has this to do with the REAL Cost of Offshoring?</font> The message I want everyone to understand is that introducing WASTE but not adjusting the duration will have a dramatical negative effect on the Productivity. And not understanding this up-front will cost only more as the natural reaction when not meeting deadlines is to add more people to the project. I also noticed in the past that the local (expensive) resources are longer needed on the project too making the business case for going Offshore completely worthless.</p>
<p><font color="blue">Is there a way to overcome this?</font> Yes, one way is to eliminate WASTE as much as possible by bringing more work Offshore (Analysis, Design, Test) and bring the local knowledge also Offshore (communication will improve a lot by doing this). But even more important, be aware of WASTE, try to eliminate it and adjust the planning (longer duration or decrease functionality) and release more often and in shorter cycles (agile).</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F12%2F13%2Fthe-real-cost-of-offshoring%2F&amp;title=The%20REAL%20Cost%20of%20Offshoring&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/12/13/the-real-cost-of-offshoring/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Optimist, the Pessimist and the Realist</title>
		<link>http://www.gridshore.nl/2008/12/13/the-optimist-the-pessimist-and-the-realist/</link>
		<comments>http://www.gridshore.nl/2008/12/13/the-optimist-the-pessimist-and-the-realist/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 09:24:29 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/12/13/the-optimist-the-pessimist-and-the-realist/</guid>
		<description><![CDATA[<p align="center">Given the media-hype on the CRISIS I want you to take a minute to think and react on</p> <p>the statement below.</p> <p align="center">&#8220;The optimist sees opportunity in every danger;</p> <p align="center">the pessimist sees danger in every Opportunity&#8220;</p> <p align="center">And the realist?</p> ]]></description>
			<content:encoded><![CDATA[<p align="center">Given the media-hype on the CRISIS I want you to take a minute to think and react on</p>
<p>the statement below.</p>
<p align="center"><strong><font color="blue">&#8220;The optimist sees opportunity in every danger;</font></strong></p>
<p align="center"><strong><font color="blue">the pessimist sees danger in every <em>Opportunity</em>&#8220;</font></strong><img height="155" alt="the optimist card" src="http://www.gridshore.nl/wp-content/uploads/theoptimistcard.jpg" width="450" /></p>
<p align="center">And the realist?</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F12%2F13%2Fthe-optimist-the-pessimist-and-the-realist%2F&amp;title=The%20Optimist%2C%20the%20Pessimist%20and%20the%20Realist&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/12/13/the-optimist-the-pessimist-and-the-realist/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Commodity and Ethics in IT, why a PoC is better than a RFP Process</title>
		<link>http://www.gridshore.nl/2008/11/16/commodity-and-ethics-in-it-why-a-poc-is-better-than-a-rfp-process/</link>
		<comments>http://www.gridshore.nl/2008/11/16/commodity-and-ethics-in-it-why-a-poc-is-better-than-a-rfp-process/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 15:42:07 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/11/16/commodity-and-ethics-in-it-why-a-poc-is-better-than-a-rfp-process/</guid>
		<description><![CDATA[<p>Ben his article “Consultancy” != “Cover your ass” is all about ethics and &#8220;How to Help your Customer in the Best Possible Way&#8220;. Recently, but also quite often in the past, I was involved in RFI &#38; RFP processes and i can say, I was good at it. Master in discovering the hot buttons [...]]]></description>
			<content:encoded><![CDATA[<p>Ben his article “<a href="http://www.gridshore.nl/2008/11/15/consultancy-cover-your-ass/">Consultancy” != “Cover your ass</a>” is all about ethics and &#8220;<strong>How to Help your Customer in the Best Possible Way</strong>&#8220;. Recently, but also quite often in the past, I was involved in RFI &amp; RFP processes and i can say, I was good at it. Master in discovering the hot buttons of all parties involved in the decision process, doing a great job at turning the customer’s scenario into a beautiful demo, hacking fancy user interfaces around the clock, write the right answers in the proposal. <a href="http://nl.wikipedia.org/wiki/Hans_Klok">Hans Klok</a> could not do it better <img src='http://www.gridshore.nl/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
<p>But I have learned that traditional Request For Proposal (RFP) process is often not bringing the best for the customer.</p>
<p align="center"><em><strong>“In a nutshell, customers learn very little if anything when asking service providers or vendors to go through such an RFP and bake-off process”.</strong></em></p>
<p>According to <a href="http://en.wikipedia.org/wiki/Request_for_Proposal" target="_blank">Wikipedia</a> &#8220;A Request for Proposal (referred to as RFP) is an invitation for suppliers, often through a bidding process, to submit a proposal on a specific <a href="http://en.wikipedia.org/wiki/Commodity">commodity</a> or service.&#8221;</p>
<p>Such a selection process usually takes 3 to 6 months. Once completed, the winning vendor deploys an army of consultants, not half as good as the one used for the RFP. And because the customer wasn’t really involved in the processes’ implementation to begin with, any hope that changes could be applied by the customer’s staff directly is just wishful thinking.</p>
<p align="center"><em><strong>Concrete has been poured, dried up, and is now solid as a rock.</strong></em></p>
<p>Opportunity cost are huge and what to think about the business who is waiting and waiting on IT and procurement while they have to keep up with competition and meet their KPI&#8217;s.</p>
<p>Let us be honest and <strong>admit</strong> that our industry (BPM, SOA, CMS, portal, intranet, wiki, enterprise search whatever) is <strong>young and immature</strong> and far from <a href="http://en.wikipedia.org/wiki/Commodity">commodity</a> and needs highly skilled consultants to do the job.</p>
<p>Would it not be better to do a <a href="http://en.wikipedia.org/wiki/Proof_of_concept">Proof of Concept</a> instead of going through the excersise of crafting huge laundry lists of features suggested by analyst firms and enriched by all possible stakeholders?</p>
<p>It has to be clear that executing a Proof of Concept in a <strong><u>partnership</u></strong> with the customer (with open books and as also the customer is participating and paying for it) is only in the interest of those suppliers that have indeed a good or great product and not relying on millions of marketing budget to cover up their weaknesses. Millions they could better invest in their R&amp;D, see for more on this theme the books &#8220;<a href="http://en.wikipedia.org/wiki/Blue_Ocean_Strategy">Blue Ocean Strategy</a>&#8221; and &#8220;<a href="http://www.amazon.com/Momentum-Effect-Ignite-Exceptional-Growth/dp/0132363429">the Momentum effect</a>&#8220;.</p>
<p>Some of the sentences i borrowed from this interesting <a href="http://itredux.com/2008/10/14/dont-rfp-just-diy/">article</a>.</p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F11%2F16%2Fcommodity-and-ethics-in-it-why-a-poc-is-better-than-a-rfp-process%2F&amp;title=Commodity%20and%20Ethics%20in%20IT%2C%20why%20a%20PoC%20is%20better%20than%20a%20RFP%20Process&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/11/16/commodity-and-ethics-in-it-why-a-poc-is-better-than-a-rfp-process/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ISIS Papyrus presenteert Whitepaper De Digitale Polis</title>
		<link>http://www.gridshore.nl/2008/11/05/isis-papyrus-presenteert-whitepaper-de-digitale-polis/</link>
		<comments>http://www.gridshore.nl/2008/11/05/isis-papyrus-presenteert-whitepaper-de-digitale-polis/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 20:52:11 +0000</pubDate>
		<dc:creator>freddie</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gridshore.nl/2008/11/05/isis-papyrus-presenteert-whitepaper-de-digitale-polis/</guid>
		<description><![CDATA[<p>Although initially sceptic I have decided after checking with Jettro to put the press release also on our Gridshore blog. I can not deny that we have around 400 to 500 hits a day, which is more than most sites can tell. The Whitepaper is in Dutch, it covers a specific Dutch topic and [...]]]></description>
			<content:encoded><![CDATA[<p>Although initially sceptic I have decided after checking with Jettro to put the press release also on our Gridshore blog. I can not deny that we have around 400 to 500 hits a day, which is more than most sites can tell. The Whitepaper is in Dutch, it covers a specific Dutch topic and is only of interest for people that have to do with certain types of Contracts that can be sent and signed digitally when a new Dutch law is approved. So think twice, if you want to sign-up for the whitepaper, i am going to contact you <img src='http://www.gridshore.nl/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
<p><strong>Amsterdam, 6 november 2008</strong> – <a href="http://www.isis-papyrus.com" target="_blank">ISIS Papyrus</a> een wereldwijde organisatie met 16 kantoren waaronder Nederland presenteert een nieuwe informatieve Whitepaper.</p>
<p><img height="183" alt="Digitale-Polis-Ad-image-01-1" src="http://www.gridshore.nl/wp-content/uploads/digitale-polis-ad-image-01-1-1.jpg" width="225" align="right" />Bedrijfsleven en burgers kunnen naar verwachting al op 1 januari 2009 kiezen voor een digitale verzekeringspolis in plaats van een papieren polis. Het wetsvoorstel dat hiervoor moet zorgen wordt naar verwachting in de 2e week van November 2008 door de kamer behandeld. De business case voor de digitale polis is vanuit het oogpunt van kostenbesparing snel gemaakt. Door het nagenoeg wegvallen van de kosten die gemoeid zijn met het maken en verzenden is het mogelijk de investering in maanden terug te verdienen. Besparingen van 1 miljoen euro per jaar die oplopen tot ettelijke miljoenen per jaar zijn niet uit te sluiten. Besparingen die gehaald kunnen worden in de processen rondom inkomende en uitgaande bedrijfscommunicatie.</p>
<p><strong><em>De communicatie via Internet in handen van IT, maar uw Business verantwoordelijk voor communicatie met de klant?</em></strong></p>
<p>Met ISIS Papyrus slecht u deze barrière. U geeft uw afdelingen de regie over hun communicatie. U opent nieuwe mogelijkheden via nieuwe communicatiekanalen. U kunt blijven voldoen aan de hogere eisen die aan u worden gesteld. De digitale polis is dan ook veel meer dan een PDF document en de tijd dringt. Onder de vlag van Sharing Experience™ zal ISIS Papyrus haar kennis en ervaring op het terrein van bedrijfscommunicatie en processen met u delen. In het bijzonder zullen we in deze Whitepaper stilstaan bij het wetsvoorstel en zullen we uitleggen hoe met ISIS Papyrus de verschillende eisen gerealiseerd kunnen worden waarbij de business weer de regie krijgt over het proces en de inhoud.</p>
<p>U kunt de Whitepaper aanvragen op <a href="http://www.isis-papyrus.com/digitalepolis">http://www.isis-papyrus.com/digitalepolis</a></p>
<p><span id="more-425"></span>
<p><strong>Over ISIS Papyrus Software</strong></p>
<p>ISIS Papyrus, opgericht in 1988 is een wereldwijd opererend bedrijf met 4 ontwikkel centraÂ´s die zich bevinden in Oostenrijk, Duitsland en Italie en heeft daarnaast kantoren in 16 landen waaronder de Verenigde Staten, Engeland, Nederland, Frankrijk, Spanje, Denemarken, Singapore, Korea, Taiwan. Het bedrijf is in particuliere handen en is marktleider in Europa en Azië voor zakelijke communicatie. Wereldwijd gebruiken meer dan 2000 bedrijven en overheidsinstanties het ISIS Papyrus Enterprise Communicatie en Proces Platform voor hun uitgaande en inkomende bedrijfscommunicatie en aanverwante processen. ISIS Papyrus haar expertise heeft zich in de loop van 20 jaar ontwikkeld door het automatiseren en managen van zakelijke communicatie en processen. Dit heeft geleidt tot uniek inzicht in people-to-people, people-to-document en document-op-aanvraag-interacties. ISIS Papyrus heeft een bewezen staat van dienst in het leveren van succesvolle oplossingen in de overheid, verzekerings-, bank- en telecommunicatie-industrie.</p>
<p>Meer informatie over het bedrijf en het ISIS Papyrus Enterprise Communicatie en Proces Platform is beschikbaar online op: <a href="http://www.isis-papyrus.com">http://www.isis-papyrus.com</a>.</p>
<p><strong>Contacten</strong></p>
<p>ISIS Papyrus Netherlands<br />
Freddie van Rijswijk+ 31 (0)20 799 7716<br />
<a href="mailto:Freddie.van.Rijswijk@isis-papyrus.com">Freddie.van.Rijswijk@isis-papyrus.com</a></p>
<p>&nbsp;</p>
<p>ISIS Papyrus Head Office<br />
Christian Berchtold, +43-2236-27551<br />
<a href="mailto:christian.berchtold@isis-papyrus.com">christian.berchtold@isis-papyrus.com</a></p>
<div class='dd_post_share'><div class='dd_buttons'><div class='dd_button'><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.gridshore.nl%2F2008%2F11%2F05%2Fisis-papyrus-presenteert-whitepaper-de-digitale-polis%2F&amp;title=ISIS%20Papyrus%20presenteert%20Whitepaper%20De%20Digitale%20Polis&amp;t=2' height='25' width='155' frameborder='0' scrolling='no'></iframe></div></div><div style='clear:both'></div></div><!-- Social Buttons Generated by Digg Digg plugin v4.5.3.4, 
    Author : Yong Mook Kim
    Website : http://www.diggdigg2u.com -->]]></content:encoded>
			<wfw:commentRss>http://www.gridshore.nl/2008/11/05/isis-papyrus-presenteert-whitepaper-de-digitale-polis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

