<?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>Online Database, CRM and PaaS - The LongJump Blog &#187; Applications</title>
	<atom:link href="http://www.longjumpblog.com/blog/category/applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.longjumpblog.com/blog</link>
	<description>Discussions of SaaS, Cloud Computing, PaaS &#38; Online Database Apps</description>
	<lastBuildDate>Tue, 09 Aug 2011 20:12:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Know Your History, Using the PRIORVALUE() Function</title>
		<link>http://www.longjumpblog.com/blog/2011/07/28/history-priorvalue-function/</link>
		<comments>http://www.longjumpblog.com/blog/2011/07/28/history-priorvalue-function/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 00:13:56 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Online Database]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[change management]]></category>
		<category><![CDATA[change notification]]></category>
		<category><![CDATA[change tracking]]></category>
		<category><![CDATA[formula]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=680</guid>
		<description><![CDATA[One deeply set feature in LongJump is the ability to find out what the value of a previous field was. It&#8217;s immensely helpful, however, when you&#8217;re building data policies to be notified of changes to records, but only specific changes. To accomplish this, you&#8217;d use the PRIORVALUE() boolean function in LongJump&#8217;s formula expression engine. To [...]]]></description>
			<content:encoded><![CDATA[<p>One deeply set feature in LongJump is the ability to find out what the value of a previous field was. It&#8217;s immensely helpful, however, when you&#8217;re building data policies to be notified of changes to records, but only specific changes. To accomplish this, you&#8217;d use the <strong>PRIORVALUE()</strong> boolean function in LongJump&#8217;s formula expression engine.</p>
<p>To demonstrate, I&#8217;ll actually use a real world example: <strong>ours</strong>.</p>
<p>When users sign up for a <a title="free trial online database paas and crm" href="https://na.longjump.com/networking/Service?t=2308">free trial</a> on LongJump, a record is added in the backend, and we store the information about them as if they were a paying customer account. That record also has a TRUE/FALSE field called <strong><em>trial_account</em></strong>. Our payment system automatically flips that switch from TRUE to FALSE, once that customer converts (signs up for a paid account).</p>
<p>Because I&#8217;m a nosy marketing person, I wanted to know the exact moment that happens. It&#8217;s informative, but it also gives me a psychological lift of &#8220;<strong>Hey, we have a new paying customer!</strong>&#8221;</p>
<p>Now, I could have written a simple policy that said anytime that record is updated and the <em><strong>trial_account</strong></em> field is FALSE, send me an email. In fact, I tried that. But then anytime that record would be updated for any reason, that email would go out, and I was deluged with unusable notifications.</p>
<p>That&#8217;s where the <strong>PRIORVALUE</strong> function comes in. Here&#8217;s what it looks like. (Click on the screenshot if you want the full size view)</p>
<p><a href="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/convert-from-trial-data-policy.png"><img class="alignnone size-medium wp-image-681" title="convert-from-trial-data-policy" src="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/convert-from-trial-data-policy-300x188.png" alt="" width="300" height="188" /></a></p>
<p>This is an action-based policy that runs whenever the record is updated and it compares the PRIORVALUE of trial_account to the current value using the formula-based criteria. The key is to build the expression to check for both the prior and current value.</p>
<p style="padding-left: 30px;">(PRIORVALUE(trial_account) = TRUE) &amp;&amp; (trial_account = FALSE)</p>
<p>When that change happens on a record, the policy executes a simple email notification action to me that includes the name of the company that converted and the number of users. I could also send this to multiple team members.</p>
<p><a href="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/customer-conversion-notification.png"><img class="alignnone size-medium wp-image-682" title="customer-conversion-notification" src="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/customer-conversion-notification-300x293.png" alt="" width="300" height="293" /></a></p>
<p>Of course, this basic logic could be used for a host of process situations and results. Let&#8217;s say you have an employee candidate that goes from prospective to hired. Or let&#8217;s say as part of this policy, I also want to update another field in the record. Or I want to start following that record in <a title="social enterprise" href="http://lj.platformatyourservice.com/wiki/Relay">Relay</a>. Or, through the beauty of LongJump&#8217;s data policies, you could string up multiple actions to take place. You can do a lot of process automation, simply by recognizing your historical values. PRIORVALUE can even be the basis for a view or report.</p>
<p>Have other examples of how you might use PRIORVALUE()? Submit a comment below as I&#8217;m sure we&#8217;d love to know about them.</p>
<p>For more information on <a title="data policies in LongJump" href="http://lj.platformatyourservice.com/wiki/Data_policies">Data Policies, go here</a>. And for more on our <a title="formula expressions in longjump" href="http://lj.platformatyourservice.com/wiki/Formula_Functions">Formula Expressions, go here</a>.</p>
<p>&nbsp;</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/change+management' rel='tag' target='_self'>change management</a>, <a class='technorati-link' href='http://technorati.com/tag/change+notification' rel='tag' target='_self'>change notification</a>, <a class='technorati-link' href='http://technorati.com/tag/change+tracking' rel='tag' target='_self'>change tracking</a>, <a class='technorati-link' href='http://technorati.com/tag/formula' rel='tag' target='_self'>formula</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2011/07/28/history-priorvalue-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile and Social Interfaces for LongJump Online Database and PaaS</title>
		<link>http://www.longjumpblog.com/blog/2011/06/20/mobile-social-online-database-paas/</link>
		<comments>http://www.longjumpblog.com/blog/2011/06/20/mobile-social-online-database-paas/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 12:46:34 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Online Database]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[mobile computing]]></category>
		<category><![CDATA[mobile database]]></category>
		<category><![CDATA[online database]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[social computing]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=664</guid>
		<description><![CDATA[We&#8217;re announcing our new release of LongJump, the online database and PaaS that helps your business compete! See the complete press release here! The biggest addition? LongJump Javelin. Need access to LongJump apps while you’re at a customer site, in line at the airport, or at your kid’s little league game? As part of Version [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re announcing our new release of LongJump, the online database and PaaS that helps your business compete! <a title="LongJump Javelin Relay Press Release" href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=78:longjump-unveils-innovative-service-to-socialize-and-mobilize-business-data-on-the-fly&amp;catid=24:news&amp;Itemid=93">See the complete press release here</a>!</p>
<p>The biggest addition? <a title="Mobile Online Database" href="http://longjump.com/javelin">LongJump Javelin</a>. Need access to LongJump apps while you’re at a customer site, in line at the airport, or at your kid’s little league game? As part of Version 8.1, you’ll be introduced to <span class="highlight"><strong>LongJump Javelin</strong> – where you can take your business with you on your <strong>iPhone, iPad, or Android phones and tablets</strong></span>.</p>
<p><img src="http://longjump.com/crm/wp-content/uploads/2011/05/crm-mobile-iphone.png" alt="" width="456" height="228" /></p>
<p>LongJump Javelin is accessible anywhere you have a network connection. With Javelin, you’ll be able to:</p>
<ul>
<li> Add, edit, and delete records</li>
<li>Add and manage your tasks</li>
<li> Monitor changes of your team’s status using Relay and make comments</li>
<li>Take action on workflow items</li>
</ul>
<p><a href="http://www.youtube.com/watch?v=WmPd6XkRDhk"><img style="margin-right: 10px;" src="http://www.longjumpblog.com/blog/wp-content/uploads/2011/05/playjavelinvideo.png" border="0" alt="" align="left" /></a> <a href="http://www.youtube.com/watch?v=WmPd6XkRDhk"><strong>Watch this short YouTube video</strong></a> of our CEO Pankaj takes a spreadsheet, turns it into a LongJump app, then accesses it from his iPhone.              To get you excited about Javelin, we are letting all customers use it <strong>free this summer until September 30, 2011</strong>. After that, Javelin access will be available at $4 per user per month for every user on your account.</p>
<p>You can access Javelin from <a title="Mobile Online Database and CRM" href="http://m.longjump.com">m.longjump.com</a> and downloadable native apps will be available soon.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/mobile+computing' rel='tag' target='_self'>mobile computing</a>, <a class='technorati-link' href='http://technorati.com/tag/mobile+database' rel='tag' target='_self'>mobile database</a>, <a class='technorati-link' href='http://technorati.com/tag/online+database' rel='tag' target='_self'>online database</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/social+computing' rel='tag' target='_self'>social computing</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2011/06/20/mobile-social-online-database-paas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Excellent REST Resources</title>
		<link>http://www.longjumpblog.com/blog/2010/12/06/10-excellent-rest-resources/</link>
		<comments>http://www.longjumpblog.com/blog/2010/12/06/10-excellent-rest-resources/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 20:10:50 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[architectural style]]></category>
		<category><![CDATA[representational state transfer]]></category>
		<category><![CDATA[rest]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=577</guid>
		<description><![CDATA[Roy Fielding&#8217;s REST-style architecture is brilliantly simple and adaptable, but it can be difficult finding comprehensive information on how to apply its concepts or get help from the development community. There are many great resources for developers or even those with some basic web development skills to learn and apply REST APIs to their front-end [...]]]></description>
			<content:encoded><![CDATA[<p>Roy Fielding&#8217;s REST-style architecture is brilliantly simple and adaptable, but it can be difficult finding comprehensive information on how to apply its concepts or get help from the development community. There are many great resources for developers or even those with some basic web development skills to learn and apply REST APIs to their front-end web projects. Here are just a few really great places to go for information beyond the <a title="REST on Wikipedia" href="http://en.wikipedia.org/wiki/REST">REST page on Wikipedia</a>.</p>
<p><span id="more-577"></span></p>
<p><strong>REST Primers, Tutorials and Examples</strong></p>
<ul>
<li><a title="How I Explained REST to My Wife" href="http://tomayko.com/writings/rest-to-my-wife">How I Explained REST to My Wife</a> &#8211; Ryan Tomako&#8217;s great plain-speak story of REST is the stuff of legends. Someone needs to turn it into an Xtranormal movie.</li>
<li><a title="Roy Fielding REST" href="http://www.ics.uci.edu/%7Efielding/pubs/dissertation/top.htm">Architectural Styles and the Design of Network-based Software Architectures</a> &#8211; The complete dissertation by Dr. Fielding published in 2000 for UC Irvine. Think of it as the opposite of explaining it to your wife</li>
<li><a title="Learn REST" href="http://rest.elkstein.org/">Learn REST</a> &#8211; A deep online training session by Dr. M. Elkstein that takes you into making REST calls from a variety of languages including Java, Javascript, Perl, PHP, Python and Ruby. It also can be used to design wrappers around a variety of REST APIs in your language of choice.</li>
<li><a title=".NET REST" href="http://blogs.msdn.com/b/dotnetinterop/archive/2008/03/20/how-to-build-a-rest-app-in-net-with-wcf.aspx">How to Build a REST app in .NET</a> &#8211; MSDN offers information on using the Windows Communication Foundation to call REST APIs.</li>
</ul>
<p><strong>REST Development and Testing Tools</strong></p>
<ul>
<li><a title="RESTClient" href="http://hypertopic.org/index.php/RESTClient">RESTClient</a> &#8211; A Mozilla Firefox extension that replicates calls made via REST and displays responses right from the browser.</li>
<li><a title="jquery json-rest plugin" href="http://blogs.msdn.com/b/dotnetinterop/archive/2008/03/20/how-to-build-a-rest-app-in-net-with-wcf.aspx">jQuery JSON-REST plugin</a> &#8211; A plugin to jQuery that enables simplified calls through Javascript. Also of note is the <a title="jquery ajax" href="http://api.jquery.com/category/ajax/">reference for .ajax()</a> calls.</li>
<li><a title="cURL REST for PHP" href="http://curl.haxx.se/libcurl/php/">cURL</a> &#8211; A binding for PHP to simplify making REST/HTTP calls.</li>
</ul>
<p><strong>REST References and Discussions<br /> </strong></p>
<ul>
<li><a title="This Week in REST" href="http://thisweekinrest.wordpress.com/">This Week in REST</a> &#8211; A weekly roundup of news about REST maintained by Ivan Zuzak. He includes blog posts on a variety of subjects.</li>
<li><a title="RESTwiki" href="http://rest.blueoxen.net/cgi-bin/wiki.pl?FrontPage">RESTwiki</a> &#8211; A compendium of resources that are all about REST. This isn&#8217;t a very active reference, but it&#8217;s pretty comprehensive.</li>
<li><a title="Programmable Web" href="http://www.programmableweb.com/apis">Programmableweb API Directory</a> &#8211; Lists APIs from a variety of services to help build Mashups by pulling in data from services like Facebook, Twitter, and GoogleMaps</li>
</ul>
<p><strong>*Bonus* LongJump Platform as a Service REST Resources</strong></p>
<ul>
<li><a title="LongJump REST Interface" href="http://lj.platformatyourservice.com/wiki/index.php?title=Getting_Started_with_REST_API">REST API Reference</a> &#8211; We have exposed almost all of our internal functionality with accessibility through our web service. It&#8217;s like having a complete backend enterprise environment accessible via REST calls.</li>
<li><a title="REST API Cheat Sheet for LongJump" href="http://lj.platformatyourservice.com/wiki/index.php?title=REST_API:REST_API_CheatSheet">REST API Cheat Sheet</a> &#8211; If you&#8217;re an old-hand at making REST calls, this quick reference gives you what you need fast.</li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/architectural+style' rel='tag' target='_self'>architectural style</a>, <a class='technorati-link' href='http://technorati.com/tag/representational+state+transfer' rel='tag' target='_self'>representational state transfer</a>, <a class='technorati-link' href='http://technorati.com/tag/rest' rel='tag' target='_self'>rest</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/12/06/10-excellent-rest-resources/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LongJump Named a Top 5 Innovative Application Development and Deployment Company by Leading Analyst Firm</title>
		<link>http://www.longjumpblog.com/blog/2010/10/07/longjump-named-a-top-5-innovative-application-development-and-deployment-companies-by-leading-analyst-firm/</link>
		<comments>http://www.longjumpblog.com/blog/2010/10/07/longjump-named-a-top-5-innovative-application-development-and-deployment-companies-by-leading-analyst-firm/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 16:35:20 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[award]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[idc]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=565</guid>
		<description><![CDATA[LongJump, a pioneer in platform-as-a-service (PaaS) and private cloud business applications, announced today that leading IT market research and advisory firm IDC (www.idc.com) named LongJump as one of five companies in a report published October 4th, 2010. “We view IDC’s analysis of the advancements in application development and deployment platforms as proof that as more [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://longjump.com/index.php?option=com_content&amp;view=article&amp;id=73:longjump-idc-award&amp;catid=24:news&amp;Itemid=93"><img class="alignnone size-full wp-image-566" title="IDC_ADandD_Only_2010" src="http://www.longjumpblog.com/blog/wp-content/uploads/2010/10/IDC_ADandD_Only_2010.png" alt="IDC Innovative Company to Watch" width="204" height="116" /></a></p>
<p>LongJump, a pioneer in platform-as-a-service (<a title="PaaS" href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=8&amp;Itemid=57">PaaS</a>) and private cloud  business applications, announced today that leading IT market research  and advisory firm IDC (<a title="Innovative Application Development and Deployment Companies" href="http://www.idc.com">www.idc.com</a>) named LongJump as one of five  companies in a report published October 4th, 2010.</p>
<blockquote><p>“We view IDC’s analysis of the advancements in application  development and deployment platforms as proof that as more enterprises  become comfortable with public and private cloud computing, the process  of creating applications will be the next critical strategy to drive  innovation and productivity,” says Pankaj Malviya, CEO of LongJump.  “There are far too many software solutions that need to be built and  trying to do it the traditional way is costly and high-maintenance.”</p>
</blockquote>
<p><a title="IDC Application Development Award" href="http://longjump.com/index.php?option=com_content&amp;view=article&amp;id=73:longjump-idc-award&amp;catid=24:news&amp;Itemid=93">The complete press release is here on the company&#8217;s website.</a></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/award' rel='tag' target='_self'>award</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/idc' rel='tag' target='_self'>idc</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/10/07/longjump-named-a-top-5-innovative-application-development-and-deployment-companies-by-leading-analyst-firm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Custom Web Forms with Associated Workflow</title>
		<link>http://www.longjumpblog.com/blog/2010/09/08/creating-custom-web-forms-with-associated-workflow/</link>
		<comments>http://www.longjumpblog.com/blog/2010/09/08/creating-custom-web-forms-with-associated-workflow/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 17:00:11 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[cgi script]]></category>
		<category><![CDATA[contact us]]></category>
		<category><![CDATA[mailto]]></category>
		<category><![CDATA[record management]]></category>
		<category><![CDATA[web form]]></category>
		<category><![CDATA[web to lead]]></category>
		<category><![CDATA[work order]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=554</guid>
		<description><![CDATA[A lot of businesses need a means to have external people submit requests via a public website or blog. This might be a &#8220;contact us&#8221; page or a work order or any number of uses. Most webmasters will create a simple CGI script or a mailto form which generates a file or an email, respectively. [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of businesses need a means to have external people submit requests via a public website or blog. This might be a &#8220;contact us&#8221; page or a work order or any number of uses. Most webmasters will create a simple CGI script or a mailto form which generates a file or an email, respectively. The problem is that the person receiving that entry has to then manually copy the information into a database or spreadsheet. If the backend changes, for example, you need to add a field or change an acceptable value, then you have to change everything.</p>
<p>LongJump allows you to embed a form on your public site or blog to drive data into the backend with little or no programming. If you choose to use HTML coding, you can stylize the FORM objects however you like. Or if you just want a simple form, our javascript version provides all the necessary embellishments for data entry.</p>
<h2>How Web Forms Work</h2>
<p>When someone enters information on the form, a record is created in the LongJump backend. At that point, all the backend capabilities around workflows, data policies, permissions, etc. can all be applied to that record, automating a lot of the processes you normally would have to manually perform.</p>
<p>This video shows the basic web form workflow.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="308" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/6V39RqdEkWI?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="308" src="http://www.youtube.com/v/6V39RqdEkWI?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>One web form we created was for our free <a title="PaaS Solutions Consulting" href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=66&amp;Itemid=185">PaaS Solutions Consulting</a> page on our website. It actually generates a record in our Prospects object, which is routed to our business development team and we matched the forms look and feel to the website&#8217;s design. On the backend, we have several policies for notification and follow-up that coincide with records coming in from that form.</p>
<p>Are there examples of other web forms you&#8217;ve created on LongJump?</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/backend' rel='tag' target='_self'>backend</a>, <a class='technorati-link' href='http://technorati.com/tag/cgi+script' rel='tag' target='_self'>cgi script</a>, <a class='technorati-link' href='http://technorati.com/tag/contact+us' rel='tag' target='_self'>contact us</a>, <a class='technorati-link' href='http://technorati.com/tag/mailto' rel='tag' target='_self'>mailto</a>, <a class='technorati-link' href='http://technorati.com/tag/record+management' rel='tag' target='_self'>record management</a>, <a class='technorati-link' href='http://technorati.com/tag/web+form' rel='tag' target='_self'>web form</a>, <a class='technorati-link' href='http://technorati.com/tag/web+to+lead' rel='tag' target='_self'>web to lead</a>, <a class='technorati-link' href='http://technorati.com/tag/work+order' rel='tag' target='_self'>work order</a>, <a class='technorati-link' href='http://technorati.com/tag/workflow' rel='tag' target='_self'>workflow</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/09/08/creating-custom-web-forms-with-associated-workflow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>¿Habla Foreign Languages? &#8211; PaaS for Translation and Localization</title>
		<link>http://www.longjumpblog.com/blog/2010/08/18/%c2%bfhabla-%e5%a4%96%e5%9b%bd%e8%af%ad%e8%a8%80-paas-for-translation-and-localization/</link>
		<comments>http://www.longjumpblog.com/blog/2010/08/18/%c2%bfhabla-%e5%a4%96%e5%9b%bd%e8%af%ad%e8%a8%80-paas-for-translation-and-localization/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 18:25:36 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[localization tools]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[software localization]]></category>
		<category><![CDATA[software translation]]></category>
		<category><![CDATA[software translation tools]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=537</guid>
		<description><![CDATA[For enterprises and ISVs, it has become more important than ever to support a global workforce. In fact, according to AnythingResearch.com, the translation and interpretation services industry is a $2.7 billion market that has grown an average of 22 percent a year since 2004. The main thrust is the need for U.S. military and businesses [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.longjumpblog.com/blog/wp-content/uploads/2010/08/lost-in-translation.jpg"><img class="alignnone size-medium wp-image-538" title="lost-in-translation" src="http://www.longjumpblog.com/blog/wp-content/uploads/2010/08/lost-in-translation-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>For enterprises and ISVs, it has become more important than ever to support a global workforce. In fact, according to <a title="Translation Services Market Growth" href="http://www.anythingresearch.com/Top-Industries/Best-Industries-For-Startups.htm">AnythingResearch.com</a>, the translation and interpretation services industry is a $2.7 billion  market that has grown an average of 22 percent a year since 2004. The main thrust is the need for U.S. military and businesses expanding overseas as well as the healthcare industry.</p>
<p>Whether you need an application to deliver software solutions in Portuguese, French, or Klingon, chances are the challenge is not so much in software development or even the translation but in having a <a title="multitenant saas platform" href="http://longjump.com/index.php?option=com_content&amp;view=article&amp;id=8&amp;Itemid=57">multi-tenant SaaS platform</a> that can support translation of enterprise-class, web-based applications. In fact, a PaaS architecture is ideal for such requirements.</p>
<p>With LongJump, each individual user can access the platform user interface in their own language, and language definitions are defined at the tenant level. Through the <a title="LongJump PaaS Translation Workbench" href="http://lj.platformatyourservice.com/~platfor1/wiki/index.php?title=Translation_Workbench">Translation Workbench</a>, you can define new languages and replace all UI labels and alerts based on the selected language.</p>
<h2>LongJump&#8217;s Bulk Translation and Localization Process</h2>
<p>If you&#8217;re creating an entire tenant from scratch and want to include support for multiple languages, LongJump provides a fast way to perform bulk translation.</p>
<ol>
<li>LongJump exports all existing UI labels to a CSV file</li>
<li>The Enterprise or ISV can then translate the entire contents of the file themselves or take it to a translation firm for interpretation</li>
<li>With the new labels, you upload the file back in and choose a name for the language</li>
<li>That language then becomes available to the tenant and each individual user can choose it</li>
</ol>
<p>When you need to update through the bulk process, the new entries will simply overwrite the existing ones. LongJump also provides support for plurals.</p>
<h2>Incremental Translation Process</h2>
<p>As changes occur to the platform, you might add a new object, process or field for example. Rather than performing a bulk translation process, you can dive into the Translation Workbench and choose the element and then the specific term. We&#8217;ve organized the application model into elements for easier reference.</p>
<h2>Developer Controls for Translation</h2>
<p>One last aspect to LongJump&#8217;s Translation Workbench capabilities is allowing the code developer to access the translated elements. The Ajax API, Java API and REST API all support the ability to retrieve the localized message labels. While coding still occurs in the native English, all the presentation results can be displayed based on the language you want.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/localization+tools' rel='tag' target='_self'>localization tools</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a>, <a class='technorati-link' href='http://technorati.com/tag/software+localization' rel='tag' target='_self'>software localization</a>, <a class='technorati-link' href='http://technorati.com/tag/software+translation' rel='tag' target='_self'>software translation</a>, <a class='technorati-link' href='http://technorati.com/tag/software+translation+tools' rel='tag' target='_self'>software translation tools</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/08/18/%c2%bfhabla-%e5%a4%96%e5%9b%bd%e8%af%ad%e8%a8%80-paas-for-translation-and-localization/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Platform-as-a-Service Video Tour Now Up</title>
		<link>http://www.longjumpblog.com/blog/2010/04/27/platform-as-a-service-video-tour-now-up/</link>
		<comments>http://www.longjumpblog.com/blog/2010/04/27/platform-as-a-service-video-tour-now-up/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 16:52:06 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[saas]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=517</guid>
		<description><![CDATA[We&#8217;ve introduced a new library of videos that cover the deep set of features within LongJump&#8217;s public and private cloud PaaS. Over time, this library will be extended and refined so that businesses, developers, partners and ISVs interested in LongJump&#8217;s SaaS application platform can quickly watch a short video on the features that matter to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.longjumpblog.com/blog/wp-content/uploads/2010/04/LongJump-PaaS-Tour.png"><img class="alignnone size-medium wp-image-518" title="LongJump-PaaS-Tour" src="http://www.longjumpblog.com/blog/wp-content/uploads/2010/04/LongJump-PaaS-Tour-300x230.png" alt="" width="300" height="230" /></a></p>
<p>We&#8217;ve introduced a new library of videos that cover the deep set of features within LongJump&#8217;s public and private cloud <a href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=19&amp;Itemid=66">PaaS</a>. Over time, this library will be extended and refined so that businesses, developers, partners and ISVs interested in LongJump&#8217;s SaaS application platform can quickly watch a short video on the features that matter to them most.</p>
<p>You can watch these videos from our website at <a href="http://www.longjump.com">http://www.longjump.com</a> and by clicking on <strong>Video Tour</strong> on any of the web pages.</p>
<p>The library covers the platform&#8217;s major areas including:</p>
<ul>
<li>Application Design</li>
<li>Development</li>
<li>Reports</li>
<li>Access Controls</li>
<li>Productivity Features</li>
<li>Personalization</li>
<li>Release Management</li>
<li>Distribution</li>
<li>Maintenance</li>
</ul>
<p>The videos are also available on YouTube at <a href="http://www.youtube.com/user/LongJumpVid">http://www.youtube.com/user/LongJumpVid</a>.</p>
<p>Of course, no video can do what a live demo can, so you can also contact us for a complete walk-thru or sign-up for a free trial.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/04/27/platform-as-a-service-video-tour-now-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Timesheet Manager Streamlines Employee Reporting of Work</title>
		<link>http://www.longjumpblog.com/blog/2010/04/13/timesheet-manager-streamlines-employee-reporting-of-work/</link>
		<comments>http://www.longjumpblog.com/blog/2010/04/13/timesheet-manager-streamlines-employee-reporting-of-work/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 19:16:30 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[enterprise applications]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[master-detail]]></category>
		<category><![CDATA[rollup]]></category>
		<category><![CDATA[timecard]]></category>
		<category><![CDATA[timesheet]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=508</guid>
		<description><![CDATA[We added a new app called Timesheet Manager to the LongJump Catalog both as a &#8220;ready-to-go&#8221; app that you can install and start using as well as a showcase for some of LongJump&#8217;s deeper features that are capable on the platform and very easy to use. Timesheet Manager is a web-based customizable timesheet/timecard management application. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Timesheet Manager" src="https://na.longjump.com/networking/RepositoryPublicDocDownload?id=500698b673504ba880ca7fe540760140&amp;docname=timesheeticon.png&amp;encode=image/png&amp;cid=1000&amp;doctype=screenshots" alt="" width="55" height="55" />We added a new app called <a href="https://na.longjump.com/networking/Service?t=734&amp;id=2c0283cca43846f789627c2ac4a29ca0">Timesheet Manager</a> to the LongJump <a href="https://na.longjump.com/networking/Service?t=8">Catalog</a> both as a &#8220;ready-to-go&#8221; app that you can install and start using as well as a showcase for some of LongJump&#8217;s deeper <a href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=17&amp;Itemid=65">features</a> that are capable on the platform and very easy to use.</p>
<p>Timesheet Manager is a web-based customizable timesheet/timecard management  application. It features ready-to-use timesheets that can be related to  employee data as well as other objects such as Accounts or Projects.</p>
<p>The app is constructed around three objects.</p>
<ul>
<li>The Timesheet object, used for recording weekly timecards for each employee</li>
<li>The Daily Timecard object, which is the &#8220;Detail&#8221; object to the Timesheet &#8220;Master&#8221; object (you can read more about <a href="http://lj.platformatyourservice.com/~platfor1/wiki/index.php?title=Master-Detail_relationship">Master-Detail relationships in our wiki</a>)</li>
<li>The Employee Rate Table object, which is used for &#8220;looking up&#8221; an hourly rate to fill in some Timesheet values</li>
</ul>
<p>Some enhancements to the Timesheet Manager go beyond just objects and fields including:</p>
<ul>
<li>Using a Formula to set the Default Value for Week Start as the nearest Sunday</li>
<li>Using a Formula field to automatically determine Week End</li>
<li>Using a Formula to set the Weekday based on the Daily Timecard Day</li>
<li>Using Rollup Summary Fields to sum up hours recorded by Daily Timecards to the main Timesheet</li>
<li>Using a Data Policy to execute Java Code that converts a Rollup Value to a Number Value</li>
<li>An approval workflow to ensure management sign-off</li>
<li>Reports for current hours/wages anticipated and approved wages</li>
<li>Using a Post Selection JavaScript when a user completes an Employee lookup to the Rate Table to automatically retrieve the Hourly Rate</li>
</ul>
<p>Of course, you can completely modify this app to suit your needs. We&#8217;d love to hear your experiences and suggestions on this app as well as any permutations that this app has inspired in your business.</p>
<p>You can <a href="https://na.longjump.com/networking/Service?t=734&amp;id=2c0283cca43846f789627c2ac4a29ca0">Test Drive the Timesheet Manager app here</a>, or <a href="https://na.longjump.com/networking/Service?t=734&amp;id=2c0283cca43846f789627c2ac4a29ca0">install it into your account</a> (Free!).</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/developers' rel='tag' target='_self'>developers</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise+applications' rel='tag' target='_self'>enterprise applications</a>, <a class='technorati-link' href='http://technorati.com/tag/formula' rel='tag' target='_self'>formula</a>, <a class='technorati-link' href='http://technorati.com/tag/master-detail' rel='tag' target='_self'>master-detail</a>, <a class='technorati-link' href='http://technorati.com/tag/rollup' rel='tag' target='_self'>rollup</a>, <a class='technorati-link' href='http://technorati.com/tag/timecard' rel='tag' target='_self'>timecard</a>, <a class='technorati-link' href='http://technorati.com/tag/timesheet' rel='tag' target='_self'>timesheet</a>, <a class='technorati-link' href='http://technorati.com/tag/workflow' rel='tag' target='_self'>workflow</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/04/13/timesheet-manager-streamlines-employee-reporting-of-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make Your Programmers Happy: Adopt PaaS</title>
		<link>http://www.longjumpblog.com/blog/2010/04/01/make-your-programmers-happy-adopt-paas/</link>
		<comments>http://www.longjumpblog.com/blog/2010/04/01/make-your-programmers-happy-adopt-paas/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 12:05:05 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[manage programmers]]></category>
		<category><![CDATA[PaaS]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=498</guid>
		<description><![CDATA[This post was inspired by Tuomas Pelkonen&#8217;s blog on How to Manage Programmers because he brings up great points on wasting programmers&#8217; time and reducing their workload. I don&#8217;t know a single programmer who likes wasted effort. In fact, there&#8217;s a beauty to what they do, much like a poet, when they are able to [...]]]></description>
			<content:encoded><![CDATA[<p>This post was inspired by Tuomas Pelkonen&#8217;s blog on <a title="Permanent Link to How to Manage Programmers" href="http://tuomaspelkonen.com/2010/03/how-to-manage-programmers/">How to Manage  Programmers</a> because he brings up great points on wasting programmers&#8217; time and reducing their workload.</p>
<p>I don&#8217;t know a single programmer who likes wasted effort. In fact, there&#8217;s a beauty to what they do, much like a poet, when they are able to refine and compress layers of code into well-thought out simplicity and modularity. It is this very reason <a href="http://longjump.com/index.php?option=com_content&amp;view=article&amp;id=8&amp;Itemid=57">the LongJump platform</a> was created.</p>
<p>So here are some ways that Platform-as-a-Service can make Programmers happy:<span id="more-498"></span><strong>Cut the Code</strong></p>
<p>One of PaaS&#8217;s inherent benefits is about leveraging existing functionality across multiple applications all on one instance. That means specific object models and processes or custom code can be used across all apps running on the platform. You build things once, rather than try and invent the wheel with every project. That reduces coding requirements and maintenance. Programmers can then focus on unique projects and core applications, rather than common stuff, which leads us to&#8230;</p>
<p><strong>Make Programming Fun</strong></p>
<p>Programmers think programming is fun. That&#8217;s why they do it into the wee hours. There&#8217;s something about taking nothing and turning it into real processes that make life ultimately better. So, should they focus on stuff they did last time (for example, building another reporting component) or should they spend their energy on new challenges? Platform-as-a-Service frees programmers from such monotony and gives them more time to spend on other challenges.</p>
<p><strong>Everything is Connected</strong></p>
<p>PaaS puts a lot of focus on foundation building and as a result, when a programmer creates some model or process in PaaS, it has serious reuse potency. Programmers can leave their mark on a core piece of the pie that becomes the norm through all applications that come afterwords.</p>
<p><strong>Empower Them</strong></p>
<p>With PaaS, the status of the programmer is ultimately elevated. Why? Primarily because a lot of common lifting is being done at the IDE levels where business people are essentially mapping out their own data and processes, the programmer is called in when serious effort is required. Maybe it&#8217;s a JavaScript or a creation of a class element or a SOAP connector, but PaaS lets programmers go beyond the minutiae of daily business processes and solve the key technical problems.</p>
<p><strong>Reduce Deployment Lag</strong></p>
<p>Most PaaS instances are live. There&#8217;s a beauty to that in being able to build, test, and deploy in the same day rather than having to go through big deployment efforts. (You still can have a formal release process if your PaaS supports multiple instances). For a programmer, that means their work is happening in lock step at times with requests that are being made. Technology is no longer the gating item, and instead the overall business approach becomes what needs to get worked out.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/developers' rel='tag' target='_self'>developers</a>, <a class='technorati-link' href='http://technorati.com/tag/manage+programmers' rel='tag' target='_self'>manage programmers</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/04/01/make-your-programmers-happy-adopt-paas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LongJump One of the 20 Coolest Cloud Companies According to ChannelWeb</title>
		<link>http://www.longjumpblog.com/blog/2010/01/26/longjump-one-of-the-20-coolest-cloud-companies-according-to-channelweb/</link>
		<comments>http://www.longjumpblog.com/blog/2010/01/26/longjump-one-of-the-20-coolest-cloud-companies-according-to-channelweb/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 23:06:23 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[channelweb]]></category>
		<category><![CDATA[crn]]></category>
		<category><![CDATA[isv]]></category>
		<category><![CDATA[msp]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[var]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=484</guid>
		<description><![CDATA[ChannelWeb has recognized LongJump as one of the 20 Coolest Cloud Companies, positioning it with the likes of Amazon EC2, Google App Engine and Microsoft&#8217;s Windows Azure platform. This comes on the heels of last week&#8217;s naming of LongJump CEO Pankaj Malviya to their list of Top 25 Technology Thought Leaders. As indicated by ChannelWeb, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.crn.com/it-channel/222400507?pgno=13"><img class="alignnone" title="ChannelWeb Logo" src="http://i.cmpnet.com/crn/v3/images/channelweb_logo.gif" alt="" width="288" height="45" /></a></p>
<p>ChannelWeb has recognized LongJump as one of the <a href="http://www.crn.com/it-channel/222400507?pgno=13">20 Coolest Cloud Companies</a>, positioning it with the likes of Amazon EC2, Google App Engine and Microsoft&#8217;s Windows Azure platform. This comes on the heels of last week&#8217;s naming of LongJump CEO Pankaj Malviya to their list of <a href="http://www.longjumpblog.com/blog/2010/01/22/longjump-ceo-and-co-founder-named-one-of-25-technology-thought-leaders/">Top 25 Technology Thought Leaders</a>. As indicated by ChannelWeb,</p>
<blockquote><p>&#8220;LongJump is actively rounding up ISVs to brand and host their own SaaS offerings.&#8221;</p></blockquote>
<p>The channel community is one area where cloud computing can truly be a &#8220;sky&#8217;s the limit&#8221; proposition. With all that experience in IT and application services, VARs, MSPs, and solution providers can realize significant potential creating vertical applications that meet the needs of businesses across the globe.</p>
<p>It is likely why ChannelWeb is actively discussing cloud computing:</p>
<blockquote><p>&#8220;<a href="http://www.longjump.com/crn?utm_source=blog&amp;utm_medium=link&amp;utm_campaign=post">Cloud computing platforms</a> facilitate and ease the deployment of applications into the cloud, limiting the cost and complexity by cutting the need to buy and manage hardware and software. As cloud computing continues to gather steam and more VARs and their clients are looking to design, develop, test, deploy and host apps in the cloud, a robust, flexible platform has become a must-have.&#8221;</p></blockquote>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/channelweb' rel='tag' target='_self'>channelweb</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/crn' rel='tag' target='_self'>crn</a>, <a class='technorati-link' href='http://technorati.com/tag/isv' rel='tag' target='_self'>isv</a>, <a class='technorati-link' href='http://technorati.com/tag/msp' rel='tag' target='_self'>msp</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a>, <a class='technorati-link' href='http://technorati.com/tag/var' rel='tag' target='_self'>var</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/01/26/longjump-one-of-the-20-coolest-cloud-companies-according-to-channelweb/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LongJump CEO and Co-Founder Named One of 25 Technology Thought Leaders</title>
		<link>http://www.longjumpblog.com/blog/2010/01/22/longjump-ceo-and-co-founder-named-one-of-25-technology-thought-leaders/</link>
		<comments>http://www.longjumpblog.com/blog/2010/01/22/longjump-ceo-and-co-founder-named-one-of-25-technology-thought-leaders/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 22:34:35 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[everythingchannel]]></category>
		<category><![CDATA[gartner]]></category>
		<category><![CDATA[magic quadrant]]></category>
		<category><![CDATA[pankaj malviya]]></category>
		<category><![CDATA[xchange]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=481</guid>
		<description><![CDATA[ChannelWeb has named our CEO Pankaj Malviya one of the top 25 Technology Thought Leaders. Specifically, editors were most impressed that: &#8220;Malviya is breaking new ground in the cloud computing market with LongJump, an innovative software company with an end-to-end cloud platform. The LongJump offering is winning raves from solution providers for its flexibility and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Channel Web Logo" src="http://i.cmpnet.com/crn/v3/images/channelweb_logo.gif" alt="" width="288" height="45" /></p>
<p><a href="http://www.crn.com/it-channel/222400308;?pgno=13">ChannelWeb</a> has named our CEO Pankaj Malviya one of the top 25 Technology Thought Leaders. Specifically, editors were most impressed that:</p>
<blockquote><p>&#8220;Malviya is breaking new ground in the cloud computing market with LongJump, an innovative software company with an end-to-end cloud platform. The LongJump offering is winning raves from solution providers for its flexibility and firepower. It&#8217;s also garnered a number of awards including Everything Channel&#8217;s XChange Tech Innovator&#8217;s Xcellence award and a place in Gartner&#8217;s Magic Quadrant.&#8221;</p></blockquote>
<p>Says Pankaj:</p>
<blockquote><p>&#8220;I&#8217;m honored to be selected as a thought leader with the likes of Larry Page, Sergey Brin, Ray Ozzie and Donald Ferguson. It is a testament to the eventual tide-shift that has emerged through cloud computing technologies for enterprises of all sizes and their critical relationship with channel solution providers and ISVs.&#8221;</p></blockquote>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/everythingchannel' rel='tag' target='_self'>everythingchannel</a>, <a class='technorati-link' href='http://technorati.com/tag/gartner' rel='tag' target='_self'>gartner</a>, <a class='technorati-link' href='http://technorati.com/tag/magic+quadrant' rel='tag' target='_self'>magic quadrant</a>, <a class='technorati-link' href='http://technorati.com/tag/pankaj+malviya' rel='tag' target='_self'>pankaj malviya</a>, <a class='technorati-link' href='http://technorati.com/tag/xchange' rel='tag' target='_self'>xchange</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/01/22/longjump-ceo-and-co-founder-named-one-of-25-technology-thought-leaders/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PaaS Moves into Private Clouds for Enterprises</title>
		<link>http://www.longjumpblog.com/blog/2009/09/01/paas-moves-into-private-clouds-for-enterprises/</link>
		<comments>http://www.longjumpblog.com/blog/2009/09/01/paas-moves-into-private-clouds-for-enterprises/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 17:08:59 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[amazon ec2]]></category>
		<category><![CDATA[enterprise applications]]></category>
		<category><![CDATA[iaas]]></category>
		<category><![CDATA[on-premise]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[private cloud]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=431</guid>
		<description><![CDATA[Steve Bobrowski at The Cloud Option has an insightful post today looking at the evolution of platform-as-a-service (PaaS) into the enterprise. Specifically, he discusses the movement into private cloud environments. According to Bobrowski: PaaS allows application developers to simply build applications in the cloud, without ever having to worry about hardware acquisition and configuration, software [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Bobrowski at <a title="The Cloud Option" href="http://thecloudoption.blogspot.com/2009/09/enterprise-demand-driving-vendor.html">The Cloud Option</a> has an insightful post today looking at the evolution of platform-as-a-service (PaaS) into the enterprise. Specifically, he discusses the movement into private cloud environments. According to Bobrowski:</p>
<blockquote><p>PaaS allows application developers to simply build applications in the cloud, without ever having to worry about hardware acquisition and configuration, software installation, configuration, and maintenance, scalability, availability, backups, recovery, etc. You just sign up and start building, deploy with the push of a button, and pay for your usage as you go.</p></blockquote>
<p>Bobrowski suggests that enterprises have a real option for cloud computing as some PaaS vendors start offering licensed versions of their platform. He urges enterprises keep their eyes &#8220;on the emerging trend of new PaaS and IaaS technologies that are available for licensing within your own data center as you consider how you might transition applications from inside your data center to the cloud.&#8221;</p>
<p>He also met with LongJump CEO Pankaj Malviya to get some perspective about how our customers are using our installable <a href="http://longjump.com/products/application-platform.htm">business applications platform</a> to develop applications faster.</p>
<blockquote><p>&#8220;We are not exclusively a cloud vendor and PaaS on-demand is just one vehicle for our customers to derive value from the LongJump platform,&#8221; LongJump CEO Pankaj Malviya told us. &#8220;In fact, our customers take a movable application approach so they can develop on one instance (our PaaS, for example), test on another (a LongJump instance on <a href="http://aws.amazon.com/ec2/">Amazon EC2</a>), and publish on yet another (LongJump in a private hosting environment). Our real value is helping to streamline application development and delivery and being agnostic to the application infrastructure. With more private cloud options entering the market, there is also less risk for businesses because they still don&#8217;t have to outlay any hardware to develop and test their applications.&#8221;</p></blockquote>
<p>For the complete piece, <a href="http://thecloudoption.blogspot.com/2009/09/enterprise-demand-driving-vendor.html">click here</a>.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/amazon+ec2' rel='tag' target='_self'>amazon ec2</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise+applications' rel='tag' target='_self'>enterprise applications</a>, <a class='technorati-link' href='http://technorati.com/tag/iaas' rel='tag' target='_self'>iaas</a>, <a class='technorati-link' href='http://technorati.com/tag/on-premise' rel='tag' target='_self'>on-premise</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a>, <a class='technorati-link' href='http://technorati.com/tag/private+cloud' rel='tag' target='_self'>private cloud</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2009/09/01/paas-moves-into-private-clouds-for-enterprises/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Hype around Cloud Computing, APaaS and SEAP</title>
		<link>http://www.longjumpblog.com/blog/2009/07/21/the-hype-around-cloud-computing-apaas-and-seap/</link>
		<comments>http://www.longjumpblog.com/blog/2009/07/21/the-hype-around-cloud-computing-apaas-and-seap/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 22:07:50 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[apaas]]></category>
		<category><![CDATA[gartner]]></category>
		<category><![CDATA[PaaS]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=400</guid>
		<description><![CDATA[Gartner is tracking the hype around Cloud Computing in their latest report &#8220;Hype Cycle for Cloud Computing, 2009&#8243; and cloud computing&#8217;s path towards mainstream acceptance. In particular, it looked at APaaS (Application Platform as a Service) and suggests that it is a transformational technology that is only 2 to 5 years from being adopted by [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-333" title="gartner" src="http://www.longjumpblog.com/blog/wp-content/uploads/2009/04/gartner.jpg" alt="gartner" width="60" height="40" /></p>
<p><a href="http://gartner.com">Gartner</a> is tracking the hype around Cloud Computing in their latest report &#8220;Hype Cycle for Cloud Computing, 2009&#8243; and cloud computing&#8217;s path towards mainstream acceptance. In particular, it looked at APaaS (Application Platform as a Service) and suggests that it is a transformational technology that is only 2 to 5 years from being adopted by mainstream IT while its initial penetration is less than 1%.</p>
<p>According to Gartner, &#8220;application platform as a service (APaaS) is a development and deployment environment for cloud-based applications, offered to IT organizations as a service.&#8221; Businesses will likely need to rethink their perspective on applications, as Gartner also states that:</p>
<blockquote><p>APaaS is a part of a fundamental and discontinuous change in the application platform market. It is part of a larger SaaS and cloud-computing phenomenon, all amounting to one core change — the transition from IT solutions that are conceived, deployed and managed under the control of an enterprise IT department to IT solutions that are applied and composed by the enterprise, but executed and managed by expert third-party providers. It is a step toward greater industrialization of IT, to predictable, dependable, professionally managed, plentiful and agile information resources.</p></blockquote>
<p>Gartner estimates that most IT organizations are or will in the next five years become partly dependent on SaaS-style software. Some may  begin developing their own custom applications on APaaS leading to a change in IT jobs, organizations and budget allocations.</p>
<p>In a separate hype cycle report &#8220;Hype Cycle for Application Infrastructure, 2009,&#8221; Gartner also looked into application infrastructures. There it examined SaaS/Cloud-Enabled Application Platforms, also a transformational technology due to make its mainstream impact in 2 to 5 years. <span><span><span>Gartner describes <a href="http://blogs.gartner.com/lydia_leong/2009/02/04/seven-years-to-seap-not-to-cloud-in-general/">SEAP</a> as a software-as-a-service (SaaS)-enabled application programmable platform for the development and deployment of custom applications that is specially designed to support SaaS-style applications. SEAP is inherently multi-tenant and is designed to provide a complete platform for ISVs to develop their own suite of SaaS applications.</span></span></span></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/apaas' rel='tag' target='_self'>apaas</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/gartner' rel='tag' target='_self'>gartner</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2009/07/21/the-hype-around-cloud-computing-apaas-and-seap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recorded SaaS Application Webinar Available</title>
		<link>http://www.longjumpblog.com/blog/2009/06/18/recorded-saas-application-webinar-available/</link>
		<comments>http://www.longjumpblog.com/blog/2009/06/18/recorded-saas-application-webinar-available/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 16:22:07 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[multitenancy]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[simco]]></category>
		<category><![CDATA[software-as-a-service]]></category>
		<category><![CDATA[sun mic]]></category>
		<category><![CDATA[sun microsystems]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=377</guid>
		<description><![CDATA[The recording from last week&#8217;s webinar on Developing and Deploying SaaS Applications featuring MySQL and SIMCO Electronics is now available. The webinar discussed many aspects of building a SaaS business including how to get to market faster without significantly adding a lot of investment and resources. It also discussed many aspects of readying SaaS applications [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://longjump.com/mysql"><img class="alignnone size-full wp-image-355" title="Sun Microsystems" src="http://www.longjumpblog.com/blog/wp-content/uploads/2009/05/logo_mysql_sun_b.gif" alt="Sun Microsystems" width="91" height="68" /></a><a href="http://longjump.com/mysql"><img class="alignnone size-full wp-image-354" title="MySQL" src="http://www.longjumpblog.com/blog/wp-content/uploads/2009/05/logo_mysql_sun_a.gif" alt="MySQL" width="114" height="68" /></a></p>
<p>The recording from last week&#8217;s webinar on <strong>Developing and Deploying SaaS Applications</strong> featuring <a href="http://mysql.com">MySQL</a> and <a href="http://www.simco.com">SIMCO Electronics</a> is now available. The webinar discussed many aspects of building a SaaS business including how to get to market faster without significantly adding a lot of investment and resources. It also discussed many aspects of readying SaaS applications in the public cloud as well as on-premise and private clouds.</p>
<p>The webinar covers the complete application lifecycle for a SaaS deployment including:</p>
<ul>
<li>Data Modeling and Application Development</li>
<li>Test and Release Processes</li>
<li>Deployment into Public and Private Clouds</li>
<li>Publishing and Version Management</li>
<li>Partner Enablement and Ecosystem Building</li>
<li>Platform and Application Upgrades</li>
<li>Establishing Application Portability</li>
<li>Billing and Tenant Support</li>
</ul>
<p>To view the webinar, go to <a href="http://longjump.com/mysql">http://longjump.com/mysql</a>. If you are not a MySQL registered user, you will have to sign up to view the recording.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/multitenancy' rel='tag' target='_self'>multitenancy</a>, <a class='technorati-link' href='http://technorati.com/tag/mysql' rel='tag' target='_self'>mysql</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a>, <a class='technorati-link' href='http://technorati.com/tag/simco' rel='tag' target='_self'>simco</a>, <a class='technorati-link' href='http://technorati.com/tag/software-as-a-service' rel='tag' target='_self'>software-as-a-service</a>, <a class='technorati-link' href='http://technorati.com/tag/sun+mic' rel='tag' target='_self'>sun mic</a>, <a class='technorati-link' href='http://technorati.com/tag/sun+microsystems' rel='tag' target='_self'>sun microsystems</a>, <a class='technorati-link' href='http://technorati.com/tag/webinar' rel='tag' target='_self'>webinar</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2009/06/18/recorded-saas-application-webinar-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LongJump 6.2 Platform Release Offers Cloud Applications Greater Flexibility and Visibility</title>
		<link>http://www.longjumpblog.com/blog/2009/06/02/longjump-62-platform-released-offers-cloud-applications-greater-flexibility-and-visibility/</link>
		<comments>http://www.longjumpblog.com/blog/2009/06/02/longjump-62-platform-released-offers-cloud-applications-greater-flexibility-and-visibility/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 12:05:51 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[atom feed]]></category>
		<category><![CDATA[cloud applications]]></category>
		<category><![CDATA[digital signature]]></category>
		<category><![CDATA[form processing]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[snapshot data]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=372</guid>
		<description><![CDATA[Our latest LongJump release (version 6.2) has hit the cloud with something desperately needed in today&#8217;s business application space: Flexibility and Visibility. Flexibility in the way that information is displayed and visibility into a deeper set of information and analysis. Many of today&#8217;s cloud applications come out of the gate serving a basic set of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.longjump.com/platform/6dot2/00.htm" target="_blank"><img class="alignnone size-full wp-image-373" title="Tour 6.2 Features" src="http://www.longjumpblog.com/blog/wp-content/uploads/2009/06/inside-tour-button.jpg" alt="Tour 6.2 Features" width="200" height="200" /></a></p>
<p>Our latest LongJump release (version 6.2) has hit the cloud with something desperately needed in today&#8217;s business application space: Flexibility and Visibility. Flexibility in the way that information is displayed and visibility into a deeper set of information and analysis. Many of today&#8217;s cloud applications come out of the gate serving a basic set of functions in a basic way. Rarely can the interface adapt to suit the needs of a wide array of users, and few can match LongJump&#8217;s depth in terms of features, scalability, and adaptability.</p>
<p>Over the course of the next week, we&#8217;re going to take in-depth looks at some of the big features that have been added like Digital Signatures, New Form Layouts, Object Inheritance, RSS/Atom Feed Report Publishing, and Data Snapshots.</p>
<p>Until then, be sure to check out our <a href="http://www.longjump.com/platform/6dot2/00.htm" target="_blank">feature tour</a> and the <a href="http://longjump.com/news/news090602.htm">press release</a>.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/atom+feed' rel='tag' target='_self'>atom feed</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+applications' rel='tag' target='_self'>cloud applications</a>, <a class='technorati-link' href='http://technorati.com/tag/digital+signature' rel='tag' target='_self'>digital signature</a>, <a class='technorati-link' href='http://technorati.com/tag/form+processing' rel='tag' target='_self'>form processing</a>, <a class='technorati-link' href='http://technorati.com/tag/rss+feed' rel='tag' target='_self'>rss feed</a>, <a class='technorati-link' href='http://technorati.com/tag/snapshot+data' rel='tag' target='_self'>snapshot data</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2009/06/02/longjump-62-platform-released-offers-cloud-applications-greater-flexibility-and-visibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LongJump Named a Gartner Cool Vendor in Cloud Computing</title>
		<link>http://www.longjumpblog.com/blog/2009/04/15/longjump-named-a-gartner-cool-vendor-in-cloud-computing/</link>
		<comments>http://www.longjumpblog.com/blog/2009/04/15/longjump-named-a-gartner-cool-vendor-in-cloud-computing/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 14:21:31 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[cool vendor]]></category>
		<category><![CDATA[gartner]]></category>
		<category><![CDATA[multitenancy]]></category>
		<category><![CDATA[PaaS]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=332</guid>
		<description><![CDATA[Gartner has named LongJump one of it&#8217;s Cool Vendors in Cloud Computing System and Application Infrastructure for 2009. Below is an excerpt of the report available to Gartner research subscribers: Why Cool: LongJump is a cloud application infrastructure service provider delivering an application-platform-as-a-service (APaaS) offering. The company also has a history as a CRM vendor [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gartner.com"></a><a href="http://www.gartner.com"><img class="alignnone size-full wp-image-333" title="gartner" src="http://www.longjumpblog.com/blog/wp-content/uploads/2009/04/gartner.jpg" alt="gartner" width="60" height="40" /></a></p>
<p><a href="http://www.gartner.com">Gartner</a> has named LongJump one of it&#8217;s <strong>Cool Vendors in Cloud Computing System and Application Infrastructure for 2009</strong>. Below is an excerpt of the report available to Gartner research subscribers:</p>
<blockquote><p><strong>Why Cool:</strong> LongJump is a cloud application infrastructure service provider delivering an application-platform-as-a-service (APaaS) offering. The company also has a history as a CRM vendor and offers a solution called &#8220;Relationals&#8221; (also the name of the parent company) that is delivered as a cloud application service.</p>
<p>Its <a href="http://longjump.com/products/application-platform.htm">Business Application Platform</a>, branded as LongJump, is similar in concept and origin to Force.com&#8217;s underlying salesforce.com CRM application. LongJump is a APaaS cloud platform provider that stands out. It offers a runtime environment and a multitenant development environment, and it supports the creation of multitenant applications. It also offers multitenancy configuration options that allow the user to store data in a common multitenant database, one tenant database instance that is dedicated to the user or in a mixed multitenancy model. The service offers a visual development environment and uses Java as its programming language. LongJump also offers a range of delivery options. In addition to the cloud computing service, the company supports hosting of its environment on third-party infrastructure (for example, Terremark Worldwide data center, Amazon EC2/Amazon Simple Storage Service [Amazon S3] or installation as software in an enterprise data center).</p>
<p><strong>Who Should Care:</strong> IT managers who are looking for flexible on-premises and off-premises deployment options using a business-oriented platform will find LongJump&#8217;s approach useful.</p></blockquote>
<p>You can read the <a href="http://longjump.com/news/news090415.htm">complete press release here</a>.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/app' rel='tag' target='_self'>app</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/cool+vendor' rel='tag' target='_self'>cool vendor</a>, <a class='technorati-link' href='http://technorati.com/tag/gartner' rel='tag' target='_self'>gartner</a>, <a class='technorati-link' href='http://technorati.com/tag/multitenancy' rel='tag' target='_self'>multitenancy</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2009/04/15/longjump-named-a-gartner-cool-vendor-in-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Lean Software, and is It the New Black in Application Development?</title>
		<link>http://www.longjumpblog.com/blog/2008/12/04/what-is-lean-software-and-is-it-the-new-black-in-application-development/</link>
		<comments>http://www.longjumpblog.com/blog/2008/12/04/what-is-lean-software-and-is-it-the-new-black-in-application-development/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 15:26:02 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[custom applications]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[enterprise applications]]></category>
		<category><![CDATA[eweek]]></category>
		<category><![CDATA[forrester]]></category>
		<category><![CDATA[john rymer]]></category>
		<category><![CDATA[lean software]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[situational applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=186</guid>
		<description><![CDATA[According to an eWeek article, &#8220;Move Over, Open Source, Lean Software Is the New Black for Developers,&#8221; Forrester analyst John Rymer believes that lean software, an approach to building software that promotes simplicity and minimizes resource usage, is what the application development industry must move to as the next development paradigm in order to move [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="eweek logo" src="http://www.eweek.com/images/zde/eweek-logo.gif" alt="" width="227" height="47" /> According to an eWeek article, &#8220;<a href="http://www.eweek.com/c/a/Application-Development/Move-Over-Open-Source-Lean-Software-is-the-New-Black-for-Developers/">Move Over, Open Source, Lean Software Is the New Black for Developers</a>,&#8221; Forrester analyst <a href="http://www.forrester.com/rb/analyst/john_rymer">John Rymer</a> believes that lean software, an approach to building software that promotes simplicity and minimizes resource usage, is what the application development industry must move to as the next development paradigm in order to move ahead.</p>
<blockquote><p><img class="alignleft" title="John Rymer Forrester Analyst" src="http://www.forrester.com/role_based/images/author/imported/forresterDotCom/Analyst_Photos/Silhouette/Color/John-Rymer.gif" alt="" width="89" height="89" /> This is something we&#8217;re predicting will coalesce; right now it&#8217;s a bunch of individuals doing this on their own, but we expect lean software to catch on&#8230; Lean software could be the antidote to bloated vendors, products and applications and could be helpful in a down economy.</p></blockquote>
<p>Rymer describes lean software as:</p>
<blockquote><p>An approach to building, delivering and running software that values fit-to-purpose, simplicity and time to results above all. Lean approaches minimize complexity, startup time and resource usage, and [avoid] features and methods not essential to fulfilling the application&#8217;s business purposes. Developers can easily combine Lean software components with others when large systems require more features.</p></blockquote>
<p>Rymer is spot on in discussing the need for programmers to build leaner, smaller applications. One thing the Web 2.0 push has taught us was to be more introspective when it comes to our application needs. Do we really need every application to be a monolithic exercise in features and functionality? Probably not. Lean software is also very much akin to <a href="http://en.wikipedia.org/wiki/Situational_application">situational applications</a>.</p>
<p>At the same time, the platform those applications are built on are extremely important. The platform itself must be rich enough to support agile development models where apps can be deployed at will and common business infrastructure components don&#8217;t have to be built up from scratch. It is also important for the platform to allow situational and lean applications to connect to each other natively so you don&#8217;t end up creating another application silo.</p>
<p>Rymer also stated seven principles to follow for developing lean software:</p>
<ol>
<li>Use fit-to-purpose tools and platforms</li>
<li>Employ a lean and agile development process</li>
<li>Follow standards that enable pluggable components for tools and applications</li>
<li>Hire skillful developers</li>
<li>Leverage open source</li>
<li>Optimize deployments</li>
<li>Rent or outsource context and own core applications</li>
</ol>
<p>As Rymer mentions, there are some solutions already in the form of OSGi (Open Services Gateway Initiative), SaaS (software as a service) and <a href="http://www.longjump.com/platform-as-a-service/paas.htm">PaaS</a> (platform as a service), which provide modular and elastic alternatives to heavy solutions.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/custom+applications' rel='tag' target='_self'>custom applications</a>, <a class='technorati-link' href='http://technorati.com/tag/developers' rel='tag' target='_self'>developers</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise+applications' rel='tag' target='_self'>enterprise applications</a>, <a class='technorati-link' href='http://technorati.com/tag/eweek' rel='tag' target='_self'>eweek</a>, <a class='technorati-link' href='http://technorati.com/tag/forrester' rel='tag' target='_self'>forrester</a>, <a class='technorati-link' href='http://technorati.com/tag/john+rymer' rel='tag' target='_self'>john rymer</a>, <a class='technorati-link' href='http://technorati.com/tag/lean+software' rel='tag' target='_self'>lean software</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/situational+applications' rel='tag' target='_self'>situational applications</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/12/04/what-is-lean-software-and-is-it-the-new-black-in-application-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Future Without Programming? Hardly!</title>
		<link>http://www.longjumpblog.com/blog/2008/11/21/a-future-without-programming-hardly/</link>
		<comments>http://www.longjumpblog.com/blog/2008/11/21/a-future-without-programming-hardly/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 14:21:39 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[infoworld]]></category>
		<category><![CDATA[PaaS]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=153</guid>
		<description><![CDATA[Recently, Infoworld&#8217;s Tom Kaneshige wrote an article entitled &#8220;A Future without Programming&#8221; in which new technologies, such as LongJump&#8217;s Platform as a Service solution, are enabling non-coders to build their own applications. Unfortunately, the discussion became about whether developers would still have a place in the grand scheme of software delivery as these easy-to-use tools [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="InfoWorld" src="http://images.infoworld.com/img/logo_iw_main2.gif" alt="" width="214" height="44" />Recently, Infoworld&#8217;s Tom Kaneshige wrote an article entitled &#8220;<a href="http://www.infoworld.com/article/08/11/20/47NF-codeless-dev_1.html">A Future without Programming</a>&#8221; in which new technologies, such as <a href="http://www.longjump.com/platform-as-a-service/paas.htm">LongJump&#8217;s Platform as a Service solution</a>, are enabling non-coders to build their own applications. Unfortunately, the discussion became about whether developers would still have a place in the grand scheme of software delivery as these easy-to-use tools are made available.</p>
<p>Unfortunately, the article seems to miss the point. Platforms like LongJump, while are easy enough for savvy business users to create applications, also improve the position of coders. Why?</p>
<ol>
<li>Developers are going to have to code a lot less and will not have to revisit applications they create as much because the majority of the object and process modeling needs in the application are already provided as part of the platform framework.</li>
<li>That means less boring coding like writing yet another rule engine or yet another SOAP connector for some small special project. Instead, the evolving challenges of development can be tackled instead of being quagmired in reinventing the wheel.</li>
<li>PaaS also reduces the cost of application development for highly specialized applications, allowing companies to do more with less resources while also optimizing internal processes and improving transparency of information.</li>
</ol>
<p>Sophisticated applications, those with special needs or complex processes, will still require custom coding or customization of some kind that will require the discipline of a skilled developer who understands data, efficient processes, actions and design.</p>
<p>What PaaS does provide is an opening for a new kind of application development where business units, instead of running their operations on spreadsheets and emails, can quickly create collaborative applications, workflows, processes and reports for basic business tracking, management, and analysis.</p>
<p>One way to think about PaaS is that it is sort of like of Adobe Dreamweaver. The basic core function is to create a usable solution to a problem quickly and easily. If you need more sophistication, the coding engine is there for an HTML/Javascript expert, but in the meantime, a business user can go in, mock up what they need, make basic edits, or even have a serious contender solution and not have to code a single line. These would be applications that most companies would not have paid a developer for anyway.</p>
<p>So if you&#8217;re a coder, relax. We&#8217;re just getting rid of the junk work so you can spend your time on the cool stuff.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/developers' rel='tag' target='_self'>developers</a>, <a class='technorati-link' href='http://technorati.com/tag/infoworld' rel='tag' target='_self'>infoworld</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/11/21/a-future-without-programming-hardly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Am I an Enterprise?</title>
		<link>http://www.longjumpblog.com/blog/2008/10/14/am-i-an-enterprise/</link>
		<comments>http://www.longjumpblog.com/blog/2008/10/14/am-i-an-enterprise/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 19:24:47 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Sales and CRM]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[soa]]></category>
		<category><![CDATA[software-as-a-service]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=117</guid>
		<description><![CDATA[When selecting business software and applications, it&#8217;s important to consider scale. Why is one application better than another for a given problem? Software vendors throw around the term &#8220;enterprise&#8221; quite a bit, and while LongJump is no different, for us, the term has a real meaning. For our applications (everything from our CRM solutions to [...]]]></description>
			<content:encoded><![CDATA[<p>When selecting business software and applications, it&#8217;s important to consider scale. Why is one application better than another for a given problem?</p>
<p><span id="more-117"></span></p>
<p>Software vendors throw around the term &#8220;enterprise&#8221; quite a bit, and while <a href="http://www.longjump.com" target="_self">LongJump</a> is no different, for us, the term has a real meaning. For our applications (everything from our <a href="http://crm.LongJump.com">CRM solutions</a> to our Employee Manager) and our Platform-as-a-Service (PaaS), LongJump truly supports the notion of an enterprise: a business or organization that features multiple departments.</p>
<p>This is critical to understanding the depth of our platform, including our built-in team and role permission management system that offers enterprise-grade security to our highly extensible application interface. Our business model was built with enterprises of all sizes in mind. From the 10- to 20-person startup to the 20,000 Fortune 500 company, we&#8217;ve tried to maintain a critical balance between functionality and affordability because in the end, both spectrums have a thirst for both. The small company is going to need powerful tools if it hopes to grow and a Fortune 500 company is going to mature, deep functionality at an economy-of-scale to support all their constituents.</p>
<p>Obviously SaaS (Software-as-a-Service) and PaaS solutions provide that immediate time-to-value. You&#8217;re up and running on a complete platform and application space literally in seconds. Your team just logs in and is ready to start working. But certainly there are concerns, as indicated by J. David Lashar in <a href="http://www.destinationcrm.com/Articles/Columns-Departments/The-Tipping-Point/The-Hidden-Cost-of-SaaS---48682.aspx" target="_blank">The Hidden Cost of SaaS</a>. Lashar states:</p>
<blockquote><p>The relatively limited scope for configuring or customizing a SaaS initiative makes for low-cost, fast-paced implementation. However, this limited scope and implementation may not support the requirements, may not include the automations, and may not generate the intelligence (i.e., reports and dashboards) that are critical to the business. In other words, SaaS may actually impede the ability to realize full entitlement to CRM value. The cost is not a direct cost, but rather an opportunity cost in terms of lost CRM benefits, at least for enterprise-scale organizations that can afford on-premise solutions and might therefore be able to achieve greater CRM benefits from the greater functionality available from those solutions.</p></blockquote>
<p>Certainly it is true that many SaaS CRM providers (and even on-premise CRM providers) have a limited scope in their ability to draw from enterprise sources and connect to the entirety of operations within a business. One reason is that those tools are often left to only certain members of the team. Others have to fend for themselves because of the cost of adding them as users. That&#8217;s why a platform strategy is critical, because platforms are extensible and designed to connect multiple applications and multiple departments. The economy of scale allows for a greater reach across the entire enterprise.</p>
<p>For example, LongJump&#8217;s <a href="http://www.longjumpsupport.com/wiki/index.php?title=SOAP">SOAP Web Services</a> API provides a direct connection point to a variety of web systems and is key to understanding how even on-demand applications contribute to the enterprise. Many SOA initiatives are locked into exchanging information across certain systems. Rarely do end-users see the benefit to help streamline their processes or analysis.</p>
<p>At LongJump we really believe that if you&#8217;re going to implement a PaaS solution, and you expect it to be wide-ranging enough within your multi-departmental enterprise, it needs to be truly affordable today as well as tomorrow.</p>
<p>This means supporting a complete enterprise view for everyone in the organization, not just a priviledged few.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise' rel='tag' target='_self'>enterprise</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a>, <a class='technorati-link' href='http://technorati.com/tag/soa' rel='tag' target='_self'>soa</a>, <a class='technorati-link' href='http://technorati.com/tag/software-as-a-service' rel='tag' target='_self'>software-as-a-service</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/10/14/am-i-an-enterprise/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learn about Building Apps in the Cloud</title>
		<link>http://www.longjumpblog.com/blog/2008/09/17/learn-about-building-apps-in-the-cloud/</link>
		<comments>http://www.longjumpblog.com/blog/2008/09/17/learn-about-building-apps-in-the-cloud/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 21:30:23 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=128</guid>
		<description><![CDATA[As part of our continued efforts to evangalize PaaS, we will be hosing a webinar, &#8220;PaaS Applications: What Every IT Organization Needs to Know&#8221;. This webinar is primarily intended for IT executives, we will discuss:  Basic concepts of PaaS, e.g. benefits, technology, potential risks and hurdles, etc. Applications suitable for PaaS Roadmap for successful adoption and integration [...]]]></description>
			<content:encoded><![CDATA[<p>As part of our continued efforts to evangalize PaaS, we will be hosing a <a href="http://www.longjump.com/paas-webinar/land/paas-webinar-sep08.htm" target="_blank">webinar</a>, &#8220;PaaS Applications: What Every IT Organization Needs to Know&#8221;. This webinar is primarily intended for IT executives, we will discuss: </p>
<ul>
<li>Basic concepts of PaaS, e.g. benefits, technology, potential risks and hurdles, etc.</li>
<li>Applications suitable for PaaS</li>
<li>Roadmap for successful adoption and integration</li>
<li>Q&amp;A</li>
</ul>
<p class="style3"><strong>Date:</strong><br />
Wed., Sept. 24, 2008</p>
<p class="style3"><strong>Time:<br />
</strong>8am Pacific Time<br />
11am Eastern Time</p>
<p class="style3"><strong>Duration:</strong><br />
1 hour</p>
<p class="style3"><strong>Speaker:</strong><br />
Derek Cheng,<br />
Director of Products and Marketing,<br />
LongJump</p>
<p class="style3"><strong>To register:</strong><br />
<a href="http://www.longjump.com/paas-webinar/land/paas-webinar-sep08.htm">http://www.longjump.com/paas-webinar/land/paas-webinar-sep08.htm</a></p>
<p class="style3"> </p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Applications' rel='tag' target='_self'>Applications</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Web2.0' rel='tag' target='_self'>Web2.0</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/09/17/learn-about-building-apps-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Birth of a Silo: Another Expensive IT Application Project</title>
		<link>http://www.longjumpblog.com/blog/2008/09/09/the-birth-of-a-silo-another-expensive-it-application-project/</link>
		<comments>http://www.longjumpblog.com/blog/2008/09/09/the-birth-of-a-silo-another-expensive-it-application-project/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 23:40:00 +0000</pubDate>
		<dc:creator>pMalviya</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[custom applications]]></category>
		<category><![CDATA[IT projects]]></category>
		<category><![CDATA[IT silos]]></category>
		<category><![CDATA[Longjump]]></category>
		<category><![CDATA[PaaS]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=124</guid>
		<description><![CDATA[Why are Hollywood blockbusters so expensive to produce? They often run $100-million or more to make. The reason is that every movie project is a product; fully conceived and produced from the lines in the script to the distributed prints that get sent out to the movie theater. Hollywood studios often have to create everything [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Why are Hollywood blockbusters so expensive to produce? </strong></p>
<p>They often run $100-million or more to make. The reason is that every movie project is a product; fully conceived and produced from the lines in the script to the distributed prints that get sent out to the movie theater. Hollywood studios often have to create everything from scratch, and most of the time, have to recreate entire worlds for every different movie. <strong>That might work in the entertainment industry or in art, but if IT services outside core business functions took that approach, it’d be a plot for disaster</strong>.</p>
<p>To understand how IT has gotten to where it is today, we need to examine how new applications are introduced.</p>
<p><span id="more-124"></span></p>
<p><strong>Application Development and Deployment 1.0</strong></p>
<p>Traditionally, IT would have to purchase physical hardware and then deploy some type of application infrastructure. That includes web servers, application servers, databases, creating application frameworks, etc. Of course, that means someone has to manage each of those layers. Scalability, data recovery and security issues also come into play. In many cases, much of the resource time and costs involved in building occur before the application has ever been defined.</p>
<p>Then application managers and architects are tasked with:</p>
<ul>
<li>Requirements gathering</li>
<li>Designing and creating data models</li>
<li>Designing user interfaces</li>
<li>Mapping out workflows and processes</li>
<li>Building connectors to external systems</li>
</ul>
<p>Invariably, the endeavor involves essentially developing, quality assuring and releasing a complete software product. This internal product comes burdened with a list of technical, business and review requirements, a series of development cycles, and a complete application infrastructure that is specific for that one type of operation. It also needs to have some method for connecting to existing systems.</p>
<p>In the process of pulling together even simple applications, developers will have to find ways to build or buy application components for security access controls, user authentication, data view management, reports and dashboards, custom processing, and much more. Businesses often bring in independent contractors or services companies or platform specialists.</p>
<p>The IT application portfolio gets thicker with more vendors, more off-the-shelf software and an increasing number of sub-projects. Applications take on a life of their own, which is why entire suites of solutions are geared towards application lifecycle management.</p>
<p>Let’s also add that features that are developed in these silos often cannot be leveraged into other applications. They are disconnected and separate. This drives the cost of maintenance sky high and results in unpredictable IT spending whenever that application needs to be updated.</p>
<p>Ultimately, the application becomes its own silo and development teams have to reinvent the wheel for every new business problem or application function. Over time, multiple silos start appearing and management of these fragmented applications becomes more complex and expensive.</p>
<p><strong>Application Development and Deployment 2.0</strong></p>
<p>Platform-as-a-Service (<a title="Platform-as-a-Service Wikipedia entry" href="http://en.wikipedia.org/wiki/Platform_as_a_service">PaaS</a>) solutions like <a title="LongJump Platform-as-a-Service" href="http://www.longjump.com">LongJump</a> can add significant value to enterprise IT by enabling IT to better serve the business, operate at a strategic level with business divisions and rapidly deliver application solutions to business partners.</p>
<p>PaaS enables IT organizations and their CIOs to do more faster and for less. They are able to deliver on-demand business applications quickly and easily to manage data, streamline collaborative processes and provide actionable analysis. PaaS solutions reduce the complexity of custom applications across the organization, enabling better use of the IT dollar and improving overall processes.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/custom+applications' rel='tag' target='_self'>custom applications</a>, <a class='technorati-link' href='http://technorati.com/tag/IT+projects' rel='tag' target='_self'>IT projects</a>, <a class='technorati-link' href='http://technorati.com/tag/IT+silos' rel='tag' target='_self'>IT silos</a>, <a class='technorati-link' href='http://technorati.com/tag/Longjump' rel='tag' target='_self'>Longjump</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/09/09/the-birth-of-a-silo-another-expensive-it-application-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jumping into the Cloud</title>
		<link>http://www.longjumpblog.com/blog/2008/08/22/jumping-into-the-cloud/</link>
		<comments>http://www.longjumpblog.com/blog/2008/08/22/jumping-into-the-cloud/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 21:23:03 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Longjump]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[Platform]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[Sales and CRM]]></category>
		<category><![CDATA[Service]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=122</guid>
		<description><![CDATA[Robert Scoble of FastCompany.TV talks to LongJump CEO, Pankaj Malviya about a range of topics including what applications moving into the Cloud, i.e. PaaS, mean for IT and about his company.   Technorati Tags: Applications, cloud, Longjump, PaaS, Platform, saas, Sales and CRM, Service]]></description>
			<content:encoded><![CDATA[<p>Robert Scoble of FastCompany.TV talks to LongJump CEO, Pankaj Malviya about a range of topics including what applications moving into the Cloud, i.e. PaaS, mean for IT and about his company.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="274" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="id" value="embedded_player" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="base" value="http://service.twistage.com" /><param name="src" value="http://service.twistage.com/plugins/player.swf?v=5279afa02ab9f&amp;p=fctv-homepage" /><embed id="embedded_player" type="application/x-shockwave-flash" width="425" height="274" src="http://service.twistage.com/plugins/player.swf?v=5279afa02ab9f&amp;p=fctv-homepage" base="http://service.twistage.com" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p> </p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Applications' rel='tag' target='_self'>Applications</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud' rel='tag' target='_self'>cloud</a>, <a class='technorati-link' href='http://technorati.com/tag/Longjump' rel='tag' target='_self'>Longjump</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform' rel='tag' target='_self'>Platform</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a>, <a class='technorati-link' href='http://technorati.com/tag/Sales+and+CRM' rel='tag' target='_self'>Sales and CRM</a>, <a class='technorati-link' href='http://technorati.com/tag/Service' rel='tag' target='_self'>Service</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/08/22/jumping-into-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holding IT Hostage &#8211; Another Case for Software-as-a-Service (SaaS)</title>
		<link>http://www.longjumpblog.com/blog/2008/07/16/holding-it-hostage-another-case-for-software-as-a-service-saas/</link>
		<comments>http://www.longjumpblog.com/blog/2008/07/16/holding-it-hostage-another-case-for-software-as-a-service-saas/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 16:49:14 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[hosted software]]></category>
		<category><![CDATA[IT administration]]></category>
		<category><![CDATA[on-demand]]></category>
		<category><![CDATA[on-premise]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[San Francisco]]></category>
		<category><![CDATA[software-as-a-service]]></category>
		<category><![CDATA[Terry Childs]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=121</guid>
		<description><![CDATA[When Terry Childs, a disgruntled network administrator, held the city of San Francisco hostage from getting into their computer systems, records such as officials&#8217; emails, city payroll files, confidential law enforcement documents and jail inmates&#8217; bookings were inaccessible by they city &#8212; virtually shutting down operations. This makes yet another case for SaaS and Cloud [...]]]></description>
			<content:encoded><![CDATA[<p>When Terry Childs, a disgruntled network administrator, <a title="San Francisco Officials Locked out of computers" href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2008/07/14/BAOS11P1M5.DTL&amp;tsp=1" target="_blank">held the city of San Francisco hostage from getting into their computer systems</a>, records such as officials&#8217; emails, city payroll files, confidential law enforcement documents and jail inmates&#8217; bookings were inaccessible by they city &#8212; virtually shutting down operations.</p>
<p>This makes yet another case for SaaS and Cloud Computing solutions. Many organizations are under the false belief that traditional, on-premise systems are safer and more reliable than leveraged enterprise software that is offered on-demand. In the case with Childs, his IT terrorism is still being assessed, but authorities say undoing his denial of access to other system administrators could cost millions of dollars. However, if San Francisco&#8217;s data were hosted, a simple call to the application provider (with proof of administrative creditials) could have restored access in minutes, as well as lock-out Childs from any future access. Hosted software providers are like an additional safety firewall for businesses.</p>
<p>Most SaaS providers like <a title="On-Demand Enterprise Applications Platform" href="http://longjump.com">LongJump</a> operate on fully-monitored, secured backends. Data is mirrored, backed up on a daily basis, and an entire operational workflow is engaged before critical changes are made. In addition, people with access to sensitive systems are screened and no one has &#8220;exclusive rights.&#8221; A third party SaaS provider can quickly correct these types of catastrophes (which thankfully are rare, but always possible) and save organizations like the City of San Francisco the cost and embarassment of a renegade IT terrorist.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/hosted+software' rel='tag' target='_self'>hosted software</a>, <a class='technorati-link' href='http://technorati.com/tag/IT+administration' rel='tag' target='_self'>IT administration</a>, <a class='technorati-link' href='http://technorati.com/tag/on-demand' rel='tag' target='_self'>on-demand</a>, <a class='technorati-link' href='http://technorati.com/tag/on-premise' rel='tag' target='_self'>on-premise</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a>, <a class='technorati-link' href='http://technorati.com/tag/San+Francisco' rel='tag' target='_self'>San Francisco</a>, <a class='technorati-link' href='http://technorati.com/tag/software-as-a-service' rel='tag' target='_self'>software-as-a-service</a>, <a class='technorati-link' href='http://technorati.com/tag/Terry+Childs' rel='tag' target='_self'>Terry Childs</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/07/16/holding-it-hostage-another-case-for-software-as-a-service-saas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for Building Your First Application on LongJump PaaS</title>
		<link>http://www.longjumpblog.com/blog/2008/07/09/tips-for-building-your-first-application-on-longjump-paas/</link>
		<comments>http://www.longjumpblog.com/blog/2008/07/09/tips-for-building-your-first-application-on-longjump-paas/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 23:03:47 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[enterprise applications]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[spreadsheets]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=118</guid>
		<description><![CDATA[We sat down with Sheela Sarva who works with the LongJump Support Team to talk about building applications on LongJump&#8217;s Platform-as-a-Service (PaaS) solution, and what are some of the challenges for businesses before they jump in. Q. Hi, Sheela. Can you tell us what you do at LongJump? A. I work on the support team, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.longjumpblog.com/blog/wp-content/uploads/2008/07/sheela.jpg" alt="Sheela Sarva discusses LongJump Platform-as-a-Service Application Creation" width="100" height="133" /></p>
<p>We sat down with Sheela Sarva who works with the LongJump Support Team to talk about building applications on <a href="http://www.longjump.com">LongJump&#8217;s Platform-as-a-Service (PaaS)</a> solution, and what are some of the challenges for businesses before they jump in.</p>
<p><strong>Q. Hi, Sheela. Can you tell us what you do at LongJump?</strong><br />
A. I work on the support team, primarily focused helping customers with new application development. It&#8217;s a very interesting position because we learn about a lot of the different challenges business users and IT departments have and how they are trying to solve them on the LongJump platform.</p>
<p><span id="more-118"></span></p>
<p><strong>Q. So what kind of applications are customers trying to build on LongJump?</strong><br />
A. Well, the best applications LongJump can support involve information management, passing information from one user to another, or pulling information from a lot of different people and sources to build some analysis or to trigger some actions around that data. It sounds simple, but when you factor in all the IT infrastructure that needs to go into these applications, LongJump&#8217;s Platform-as-a-Service solution really removes the IT management issues and gets to the heart of the business problem.</p>
<p><strong>Q. How do these businesses usually handle these issues?<br />
</strong>A. Most organizations don&#8217;t have time to think about their problems in a structured way. We see many of our customers going right to their Excel spreadsheet, rather than trying to model their situation in a relational way. Databases can be hard to use, especially when you start sharing information or trying to build reports. And with all the IT staff usually taxed with mission critical problems, a lot of the smaller, but still complex issues don&#8217;t get the time of day they need.</p>
<p><strong>Q. And that&#8217;s the advantage LongJump provides&#8230;</strong><br />
A. Yeah. Definitely. Spreadsheets are great because they&#8217;re fast. But spreadsheets can become monsterous if you have a lot of related information. What&#8217;s nice is that the time it would take you to model the information in LongJump is about as fast as building a spreadsheet but you get the benefits of that relational data. Then you do all of your reporting or create actions on top of the data (like triggering an email or running a <a href="http://www.longjumpsupport.com/wiki/index.php?title=JumpScript_Developer_Guide">JumpScript</a>), and you&#8217;re 80 &#8211; 90% finished with the application in most cases.</p>
<p><strong>Q. So what&#8217;s the first thing someone should think about before they start creating an application on LongJump?</strong><br />
A. You have to start with the data, or even more basic, what&#8217;s the business problem you&#8217;re trying to solve. We had a business that was trying to essentially do a very specialized form of licensing and contract management. They have third party vendors, contracts, international use rights, and each of their products had different software and different distributors. They were managing the whole thing on a 1,000 column x 1,000 row spreadsheet with multiple worksheets. It was amazing. Completely color coded and everything.</p>
<p>Their problem was that they needed to make sure that their product managers could go into a geographic market and verify that a specific device, loaded with a specific software, sold by a specific distributor in that specific country met the licensing rights they had with their third party vendor contracts. If it didn&#8217;t, they were at a compliance risk and would have to either negotiate new contracts or pay a penalty. It would take them a couple of weeks to fully analyze the information when the dreaded compliance questions came up.</p>
<p><strong>Q. How did they break down their monster spreadsheet into LongJump?<br />
</strong>A. The first thing we asked them to do was individualize the different &#8220;players&#8221; in this problem. So a vendor became an object in LongJump, the device became another object, distributors another object and so on, until the all physical aspects of the problem were represented as data objects that could now be related.</p>
<p><strong>Q. How long did that take?</strong><br />
A. Well, given that they didn&#8217;t spend their entire workday on it, it probably took them a couple of hours to think about how to break down the information in a relational way. That also included what field information to map out as part of that object.</p>
<p>Once that basic object data model was identified, building it in LongJump took minutes. Then we ran a few test records to it based on some of the data from their spreadsheet, just to make sure that information was completely linked. When we verified that the data pretty much looked like what it needed to, we started importing their data which took less than half-an-hour.</p>
<p><strong>Q. But that&#8217;s just modeling and importing the data.</strong><br />
A. Right, but that&#8217;s the hardest part for most people &#8212; to learn to think relationally. But once the application is modeled and the data is imported, you can sort of let users ride the application on their own by adding <a href="http://www.longjumpsupport.com/wiki/index.php?title=Reports">reports</a> and putting dashboards on their home tab to monitor information. They also added alerts to information themselves, so if a contract was coming due or someone added a new license, their core team would get an email alerting them using our <a href="http://www.longjumpsupport.com/wiki/index.php?title=Data_Policy">Data Policies</a> of the details. Plus, their product managers could get their own view into the data, see the products they were responsible for, and track and add their own information as well. That&#8217;s all stuff, if you have to create your own application platform from scratch, you&#8217;d have to compensate for.</p>
<p><strong>Q. So that&#8217;s a basic application anyone can build.</strong><br />
A. Yes, basic, but still very complex. It just took a little forethought as to how information should be treated as relational objects. But once it&#8217;s done, you can&#8217;t imagine the time savings. They can now react to problems they know they need to act on, they can quickly look at just the information they need, and they can move on to other more important areas of the business instead of spending time combing and analyzing their data. And they have a single point of truth for their entire team to work from.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise+applications' rel='tag' target='_self'>enterprise applications</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a>, <a class='technorati-link' href='http://technorati.com/tag/spreadsheets' rel='tag' target='_self'>spreadsheets</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/07/09/tips-for-building-your-first-application-on-longjump-paas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LongJump Workflows Make Business Data Actionable</title>
		<link>http://www.longjumpblog.com/blog/2008/03/24/longjump-workflows-make-business-data-actionable/</link>
		<comments>http://www.longjumpblog.com/blog/2008/03/24/longjump-workflows-make-business-data-actionable/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 16:45:04 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[General News]]></category>
		<category><![CDATA[Press Releases]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2008/03/24/longjump-workflows-make-business-data-actionable/</guid>
		<description><![CDATA[Businesses are faced with a rising challenge today: There is more data that they have to deal with rather than not enough. This fact, coupled with the increased speed in which everything now has to happen, has meant that businesses more than ever have to take all of that data and automate as much of [...]]]></description>
			<content:encoded><![CDATA[<p class="content-p">Businesses are faced with a rising challenge today: There is more data that they have to deal with rather than not enough. This fact, coupled with the increased speed in which everything now has to happen, has meant that businesses more than ever have to take all of that data and automate as much of their actions as possible to maximize productivity.</p>
<p class="content-p">Workflows themselves are nothing new. <a title="Six Sigma" href="http://www.isixsigma.com/sixsigma/six_sigma.asp">Six Sigma</a>, <a title="Total Quality Management" href="http://managementhelp.org/quality/tqm/tqm.htm">Total Quality Management</a>, <a title="Business process reengineering" href="http://searchcio.techtarget.com/sDefinition/0,,sid182_gci536451,00.html#">Business process reengineering</a>, and <a title="Lean" href="http://www.lean.org/WhatsLean/">Lean</a> systems have all focused on some aspects of workflow management and improvement. By establishing and standardizing best practices, many organizations have streamlined the physical aspects of operational tasks.</p>
<p class="content-p">But more often than not, the software tools to move that information across the organization (such as forms, faxes, emails and even intranets) have not kept up, involving additional complexity, consultation, and process-slowing human error. Systems that are built are often customized to such a point that changing them would cost businesses considerable time and expense. And in most cases, workflows are only built for the most important activities rather than the most common.</p>
<p class="content-p"><a href="http://www.longjump.com/index.htm">LongJump</a> today introduces a graphical <a href="http://www.longjump.com/solutions/workflows/workflow-processes.htm">Workflow Designer</a> to help businesses map out their data-driven, repeatable processes and route actions across an organization, enabling consistent best practices and streamlining delivery cycles. With the easy-to-use, web-based Workflow Designer, users sharing data and activities in LongJump are empowered to improve operational efficiency and quality and information flow.</p>
<p class="content-p">With a simplified workflow metaphor, yet with extensive capabilities to support to virtually any business process, both simple and compless processes can be automated and routed throughout an organization. Everything from vacation and expense approvals to hiring processes to creative production projects, to service delivery can be mapped out in LongJump, its data stored, information and actions routed to key constituents, and its status maintained.</p>
<p class="content-p">To learn more about how to create workflows using LongJump, click here for the <a href="https://www.longjump.com/networking/RepositoryPublicDocDownload?id=892085391inq411287879&amp;docname=workflow.pdf&amp;cid=892085391&amp;encode=application/pdf" target="_blank">feature guide</a>.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/03/24/longjump-workflows-make-business-data-actionable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is a Database?</title>
		<link>http://www.longjumpblog.com/blog/2008/01/04/what-is-a-database/</link>
		<comments>http://www.longjumpblog.com/blog/2008/01/04/what-is-a-database/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 00:43:48 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Thoughts and Analysis]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2008/01/04/what-is-a-database/</guid>
		<description><![CDATA[Ok. It doesn&#8217;t seem that hard a question to answer, but there are still a lot of people who don&#8217;t think of relational databases when they think of how to build applications in LongJump. Yet it is the most basic structure in computing and especially web computing. Consider the most popular online sites and services: [...]]]></description>
			<content:encoded><![CDATA[<p>Ok. It doesn&#8217;t seem that hard a question to answer, but there are still a lot of people who don&#8217;t think of relational databases when they think of how to build applications in LongJump. Yet it is the most basic structure in computing and especially web computing. Consider the most popular online sites and services: <a target="_blank" href="http://www.ebay.com">eBay</a>, <a target="_blank" href="http://www.amazon.com">Amazon</a>, <a target="_blank" href="http://apple.com">iTunes</a>, <a target="_blank" href="http://netflix.com">Netflix</a>, <a target="_blank" href="http://facebook.com">Facebook</a>, <a target="_blank" href="http://myspace.com">MySpace</a>, <a target="_blank" href="http://linkedin.com">LinkedIn</a>. At their very core, if you took away the whiz-bang features and the great content, you would have in essence relational databases.</p>
<p>So what does that mean?<br />
<span id="more-95"></span><br />
Databases are these storage areas for information – essentially file cabinets converted to digital format. To store data, you have data records, which is data that complies with the structure you&#8217;ve defined.</p>
<p>In the case of iTunes, for example, the structure is around songs, artists, and albums (also called objects or tables in database lingo). Each object also has a record structure, for example: a song has a title, length, cost, date, etc. and also points to the album and artist. An artist has their name, description, and all the songs and albums their on. And each album has a name, price, and a collection of songs, and might also be related to a specific artist or artists. Everyone one of these objects might also be categorized as another way to dissect the data.</p>
<p>This is classic relational database structure.</p>
<p><strong>Glue-Based Administration</strong></p>
<p>What&#8217;s interesting is that the actual sum of a database&#8217;s parts constitutes a nebulous series of pointers or joins hooking one bit of data to another. It&#8217;s the glue, if you will. And in the old-school world, unless you&#8217;re a database administrator, you&#8217;d have no chance of ever changing that data structure. In fact, it often takes teams of people to hold the thing together, because one wrong move and your data can be lost or mangled beyond recognition.</p>
<p>Administrating this data is part of what LongJump has tried to simplify most. LongJump lets you define your structures however you need to and we try to make it bullet-proof for you. The result is that you get away from the management side and start doing stuff with the data, like analysis, running reports, filtering for information, or applying the data to team-processing, project workflow, or data tracking.</p>
<p><strong>Looking Before You Leap (Jump)</strong></p>
<p>But if you&#8217;re creating your own application, it always comes back to something even LongJump can&#8217;t do for you, which is defining what your data should look like and organizing it in a way that makes sense in a relational database world.</p>
<p>So before you start designing, start mapping out how you think your data should look. In the mean time, here are some nice resources for you to read up more on database theory:</p>
<ul>
<li><a target="_blank" href="http://computer.howstuffworks.com/question599.htm">How Stuff Works: &#8220;What are Relational Databases?&#8221;</a></li>
<li><a target="_blank" href="http://www.dummies.com/WileyCDA/DummiesArticle/id-4125.html">Dummies.com: &#8220;Exploring Database Design Tips&#8221;</a></li>
<li><a target="_blank" href="http://www.dartmouth.edu/~bknauff/dwebd/2004-02/DB-intro.pdf">In-Depth Write-up by Barbara Knauff of Dartmouth College: &#8220;Design Your Own Database, Concept to Implementation&#8221;</a></li>
<li><a target="_blank" href="http://www.longjump.com/learn/deepguides/adg.html">LongJump Application Design Guide</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2008/01/04/what-is-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Marketing Campaign Manager now Available</title>
		<link>http://www.longjumpblog.com/blog/2007/11/16/email-marketing-campaign-manager-now-available/</link>
		<comments>http://www.longjumpblog.com/blog/2007/11/16/email-marketing-campaign-manager-now-available/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 04:53:05 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/11/16/email-marketing-campaign-manager-now-available/</guid>
		<description><![CDATA[The long-awaited Campaign Manager is finally available. The campaign manager allows to design template-driven email marketing campaigns and distribute them to lists of prospective customers. The Campaign Manager&#160;includes some some of the following features and benefits: Powerful List Management: Import and export lists into LongJump. The Campaign Manager also comes with a complete set of [...]]]></description>
			<content:encoded><![CDATA[<p>The long-awaited <a href="http://www.longjump.com/networking/Service?t=734&amp;id=1555611998yjh1067928224" target="_blank">Campaign Manager</a> is finally available. The campaign manager allows to design template-driven email marketing campaigns and distribute them to lists of prospective customers. The <a href="http://www.longjump.com/networking/Service?t=734&amp;id=1555611998yjh1067928224" target="_blank">Campaign Manager</a>&nbsp;includes some some of the following features and benefits:</p>
<ul>
<li style="FONT-SIZE: 11px; FONT-FAMILY: verdana"><strong>Powerful List Management:</strong> Import and export lists into LongJump. The Campaign Manager also comes with a complete set of list management tools including merge, de-dupe and the ability to support opt-outs.</li>
<li style="FONT-SIZE: 11px; FONT-FAMILY: verdana"><strong>Customizeable Templates:</strong> The Campaign Manager comes with built-in customizeable templates you can use for your email campaigns. You can also use the built-in design wizard to create your own or simply important your own designs or HTML templates from services like <a href="http://www.vflyer.com/" target="_blank">vFlyer</a>.</li>
<li style="FONT-SIZE: 11px; FONT-FAMILY: verdana"><strong>Image Hosting Included:</strong> LongJump is capable of hosting all the images used by your HTML email campaigns taking the hassle out of the process.</li>
<li style="FONT-SIZE: 11px; FONT-FAMILY: verdana"><strong>Comprehensive Metric and Reporting:</strong> LongJump provides comprehensive metrics and statistics on how many people received your email, how many open it, how many opted out and other important marketing information.</li>
<li style="FONT-SIZE: 11px; FONT-FAMILY: verdana"><strong>White-Listed Delivery:</strong> LongJump is partnered with VerticalResponse, the premier email delivery service, to ensure that correspondence is white-listed for delivery across spam filters. </li>
<li style="FONT-SIZE: 11px; FONT-FAMILY: verdana"><strong>Automate Follow-Up Tasks: </strong>LongJump makes it easy to assign a call back to any of your team members when someone opens or clicks on an email. This accelerates the selling process and proactively goes after those who have expressed an interest in your offering.</li>
</ul>
<p>The LongJump <a href="http://www.longjump.com/networking/Service?t=734&amp;id=1555611998yjh1067928224" target="_blank">Campaign Manager</a>&nbsp;is an easy, effective and cost-effective email marketing solution that let&rsquo;s you create professional-looking emails with no technical experise and to establish and build strong and lasting relationships with your customers. <a href="http://www.longjump.com/networking/Service?t=734&amp;id=1555611998yjh1067928224" target="_blank">Give it a try today</a>!</p>
<p><img alt="Email" src="http://www.longjumpblog.com/blog/wp-content/uploads/2007/11/email.jpg" border="0" / /></p>
<ul></td>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/11/16/email-marketing-campaign-manager-now-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LongJump Support and IT Applications</title>
		<link>http://www.longjumpblog.com/blog/2007/11/12/longjump-support-and-it-applications/</link>
		<comments>http://www.longjumpblog.com/blog/2007/11/12/longjump-support-and-it-applications/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 08:49:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/11/12/longjump-support-and-it-applications/</guid>
		<description><![CDATA[LongJump comes with two key support and IT applications that can help your business address their support and IT needs and are worth taking a look at. These applications include: Support Case Manager The Support Case Manager provides a complete case management support solution through a built-In customer self-service portal. The Support Case Manager is [...]]]></description>
			<content:encoded><![CDATA[<p>LongJump comes with two key support and IT applications that can help your business address their support and IT needs and are worth taking a look at. These applications include:</p>
<ul>
<li style="font-family: verdana"><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998amk81366968&amp;category_id=2" target="_blank">Support Case Manager</a></strong><br />
The <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998amk81366968&amp;category_id=2" target="_blank">Support Case Manager</a> provides a complete case management support solution through a built-In customer self-service portal. The Support Case Manager is an extremely robust application that allows you to not only track cases securely but also provides such advanced features like notification options, a customizable workflow as well as escalation policies. One of its “killer features” is the ability to integrate it directly into your website using a single line of HTML code!</li>
<li style="font-family: verdana"><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998epd97394439&amp;category_id=8&amp;category_name=IT%20Management" target="_blank">IT Asset Tracker </a></strong><br />
Most IT departments maintain (or should maintain) important financial, service and location information on laptops, desktops, servers, mobile phones, and other equipment you may have in your company. Too often we here stories like the <a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/09/21/AR2006092101602.html" target="_blank">1,100 laptops missing </a>from the Commerce Department or other organizations which is a result of poor (or non-existent) inventory management!  The <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998epd97394439&amp;category_id=8&amp;category_name=IT%20Management" target="_blank">IT Asset Tracker </a>does a great job of help solve this problem by enabling to track assets by serial numbers, asset tags, expiring warranties, lease status, or a list of other factors. Additionally, it comes with the ability to generate financial reports based on asset allocation or department!<img src="http://www.longjumpblog.com/blog/wp-content/uploads/2007/11/laptops.jpg" alt="Laptops" border="0" /></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/11/12/longjump-support-and-it-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OfficeSpace and Collaboration: Application Spot Light</title>
		<link>http://www.longjumpblog.com/blog/2007/11/04/officespace-and-collaboration-application-spot-light/</link>
		<comments>http://www.longjumpblog.com/blog/2007/11/04/officespace-and-collaboration-application-spot-light/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 14:49:34 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/11/04/officespace-and-collaboration-application-spot-light/</guid>
		<description><![CDATA[OfficeSpace&#160;is really a collaborative environment that allows teams and workgroups within and outside your organization to work together! By allowing team members to share calendars, tasks and other important information they can better coordinate team efforts. Some of the key components you&#8217;ll find in OfficeSpace&#160;include: Shared CalendarsOfficeSpace provides you with the ability to schedule resources [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998don888798517&amp;category_id=12&amp;category_name=Business%20and%20Administration" target="_blank"><img alt="Office2" src="http://www.longjumpblog.com/blog/wp-content/uploads/2007/11/office2.jpg" border="0" /></p>
<p>OfficeSpace</a>&nbsp;is really a <strong>collaborative environment</strong> that allows teams and workgroups within and outside your organization to work together! By allowing team members to share calendars, tasks and other important information they can better coordinate team efforts. Some of the key components you&rsquo;ll find in <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998don888798517&amp;category_id=12&amp;category_name=Business%20and%20Administration" target="_blank">OfficeSpace</a>&nbsp;include:</p>
<ul>
<li><strong>Shared Calendars</strong><br />OfficeSpace provides you with the ability to schedule resources (such as conference rooms), company and group events by supporting both group and personal calendars and allowing you to layer individual team calendars.</li>
<li><strong>Task Assignment<br /></strong>OfficeSpace helps you organize team and individual tasks into project as well as seamlessly maintain non-project related tasks. You can assign tasks to each other, send reminders, and generate reports around tasks.</li>
<li><strong>Document and Photo Sharing<br /></strong>OfficeSpace provides a secured area that centralizes the current and past versions of your documents. Documents are organized in access-controllable folders. Documents can be can easily be updated, backed-up or archived. </li>
<li><strong>Discussion Forums<br /></strong>OfficeSpace enables your team to participate and discuss project related items in a searchable online forum. Forums can also be categorized for improved organization.</li>
<li><strong>Microsoft Outlook Integration</strong><br />OfficeSpace enables you to seamlessly synchronize personal appointments and tasks within the application with Microsoft Outlook.</li>
</ul>
<p>Whether you are considering using <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998don888798517&amp;category_id=12&amp;category_name=Business%20and%20Administration" target="_blank">OfficeSpace</a> for your sales team, marketing team, or a project related team in your organization, visit the <a href="https://www.longjump.com/networking/Service?t=8" target="_blank">LongJump Application catalog</a> and find out how the LongJump suite of applications can help boost your business productivity!</p>
<p><img alt="Officespace" src="http://www.longjumpblog.com/blog/wp-content/uploads/2007/11/officespace.jpg" border="0" /></p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/11/04/officespace-and-collaboration-application-spot-light/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sales Force Automation (SFA): Application Spotlight</title>
		<link>http://www.longjumpblog.com/blog/2007/10/19/sales-force-automation-sfa-application-spotlight/</link>
		<comments>http://www.longjumpblog.com/blog/2007/10/19/sales-force-automation-sfa-application-spotlight/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 14:57:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/10/19/sales-force-automation-sfa-application-spotlight/</guid>
		<description><![CDATA[Sales force management (SFA) systems allow companies to automate sales and sales force management functions and serve an important customer relationship management (CRM) function within the firm. LongJump’s Sales Force Automation (SFA) is a enterprise-grade application that provides a full-blown SFA solution to small and medium-sized companies. This includes many advanced features found only on [...]]]></description>
			<content:encoded><![CDATA[<p>Sales force management (SFA) systems allow companies to automate sales and sales force management functions and serve an important customer relationship management (CRM) function within the firm. LongJump’s <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998gea116933142&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Sales Force Automation</a> (SFA) is a enterprise-grade application that provides a full-blown SFA solution to small and medium-sized companies. This includes many advanced features found only on high-end systems. Some of the key components and features that businesses will find extremely useful in managing the sales pipeline include:</p>
<ul>
<li style="font-family:verdana;font-size:11px"><strong>360º Sales Visibility:</strong> The ability to view all aspects of your prospects, accounts, contacts, and opportunities.</li>
<li style="font-family:verdana;font-size:11px"><strong>30–Second Call Log:</strong> The ability to log calls quickly (usually in under 30 seconds) with complete access to customer records, call details, and follow-up tasks and reminders.</li>
<li style="font-family:verdana;font-size:11px"><strong>Built-In Prospect Manager:</strong> The ability to manage your potential sales leads collected through your website and assigning them to sales reps based on rules and policies.</li>
<li style="font-family:verdana;font-size:11px"><strong>Built-In Deal Tracker:</strong> Ability to store product and price information, track deal status, and maintain key live metrics on activities related to deals.</li>
<li style="font-family:verdana;font-size:11px">Built-In Contract Manager: Ability to track and maintain contract information for licensing or services as an integrated part of your customer management.</li>
<li style="font-family:verdana;font-size:11px"><strong>Microsoft Outlook Integration:</strong> Ability to quickly log emails sent to contacts, and synchronize appointments, tasks, and contacts all with Microsoft Outlook.</li>
</ul>
<p><img src="http://www.longjumpblog.com/blog/wp-content/uploads/2007/10/sfm-2dcrm.png" alt="Sfm-crm" border="0" /></p>
<p>If you have a sales organization in your company and need an effective way to manage your sales force, be sure to test drive the LongJump <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998gea116933142&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Sales Force Automation</a> today!</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/10/19/sales-force-automation-sfa-application-spotlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug Chilla: Application Spotlight</title>
		<link>http://www.longjumpblog.com/blog/2007/10/15/bug-tracker/</link>
		<comments>http://www.longjumpblog.com/blog/2007/10/15/bug-tracker/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 11:23:29 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/10/15/bug-tracker/</guid>
		<description><![CDATA[Bug Chilla is a bug and issue tracking and reporting application aimed engineering organizations to both track bugs and prioritize feature requests. Most bug tracking solutions focus purely on eliminating software bugs, but how can you track bugs without also considering product management, marketing, and other factors in the product development process? Bug Chilla focuses [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998mog1760112932&amp;category_id=4&amp;category_name=Engineering" target="_blank"><strong>Bug Chilla</strong></a><font color="#0000ff"> </font>is a bug and issue tracking and reporting application aimed engineering organizations to both track bugs and prioritize feature requests. Most bug tracking solutions focus purely on eliminating software bugs, but how can you track bugs without also considering product management, marketing, and other factors in the product development process? <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998mog1760112932&amp;category_id=4&amp;category_name=Engineering" target="_blank">Bug Chilla</a> focuses on both resolving issues as well as helping manage feature prioritization.  Additionally, its easy to customize <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998mog1760112932&amp;category_id=4&amp;category_name=Engineering" target="_blank">Bug Chilla</a> to meet your entire team’s needs – which means engineering as well as QA, documentation and believe it or not marketing. You can find out more about <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998mog1760112932&amp;category_id=4&amp;category_name=Engineering" target="_blank">Bug Chilla</a> and test drive it today on our <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998mog1760112932&amp;category_id=4&amp;category_name=Engineering" target="_blank">Application Catalog</a>.</p>
<p><img src="http://www.longjumpblog.com/blog/wp-content/uploads/2007/10/bug-2dtracker.jpg" alt="Bug-tracker" border="0" /></p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/10/15/bug-tracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LongJump HR Applications: Overview</title>
		<link>http://www.longjumpblog.com/blog/2007/10/11/longjump-hr-applications-overview/</link>
		<comments>http://www.longjumpblog.com/blog/2007/10/11/longjump-hr-applications-overview/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 20:29:40 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/10/11/longjump-hr-applications-overview/</guid>
		<description><![CDATA[Earlier this week I took a look at the Recruitment Agency Solution and how it (along with other LongJump applications) can be leveraged by both internal and external recruiters as part of the hiring process. Today we look at some of the other applications in the HR category. These include: Employee Manager You can use [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this week I took a look at the <strong><a href="http://www.longjumpblog.com/blog/2007/10/09/hiring-good-people-recruitment-agency-manager/" target="_blank">Recruitment Agency Solution</a></strong> and how it (along with other LongJump applications) can be leveraged by both internal and external recruiters as part of the hiring process.</p>
<p><img src="http://longjumpblog.com/blog/images/hr.jpg" /><br />
Today we look at some of the other applications in the <a href="https://www.longjump.com/networking/Service?t=733&amp;id=6" target="_blank">HR</a> category. These include:</p>
<ul>
<li style="font-family: verdana; font-size: 11px"><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998kch352437762&amp;category_id=6" target="_blank">Employee Manager</a><br />
</strong>You can use the <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998kch352437762&amp;category_id=6" target="_blank">Employee Manager</a> to securely store important employee data, and streamline time-off requisitions and approvals.  It gives you the ability to securely maintain information on employees including hiring dates, review cycles, training, PTO requisition, and benefits data. Like other LongJump applications, the <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998kch352437762&amp;category_id=6" target="_blank">Employee Manager</a> can share information with other applications to relate employee information to other areas of your business.</li>
<li style="font-family: verdana;font-size: 11px"><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6" target="_blank">Recruitment Agency Solution</a></strong><br />
As I mention in my previous <a href="http://www.longjumpblog.com/blog/2007/10/09/hiring-good-people-recruitment-agency-manager/" target="_blank">post</a>, the <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6" target="_blank">Recruitment Agency Solution</a> provides a complete solution for internal and external recruiting teams that helps them maximize their matchmaking skills! It not only stores candidate information, but matches it to job openings as well as allows you to manage hiring companies and contacts. Recruiters can use it to create candidate and company assessment profiles and obviously store resumes in a central location. The <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6" target="_blank">Recruitment Agency Solution</a> also integrates with email, calendar, and task activities to provide a complete picture of candidates and companies.</li>
<li style="font-family: verdana; font-size: 11px"><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998kqa444555447&amp;category_id=6" target="_blank">Job Leads</a><br />
</strong>This application provides a simple way to capture job leads from your website. Using a single line of HTML, you can embed a web form on your existing website or blog that collects information from job leads and stores it directly in LongJump! <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998kqa444555447&amp;category_id=6" target="_blank">Job Leads</a> also provides email notification and tracking capabilities.</li>
</ul>
<p>You can find these and other business application in LongJump’s <a href="https://www.longjump.com/networking/Service?t=8" target="_blank">application catalog</a>!</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/10/11/longjump-hr-applications-overview/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hiring Good People: Recruitment Agency Solution</title>
		<link>http://www.longjumpblog.com/blog/2007/10/09/hiring-good-people-recruitment-agency-manager/</link>
		<comments>http://www.longjumpblog.com/blog/2007/10/09/hiring-good-people-recruitment-agency-manager/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 17:43:05 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/10/09/hiring-good-people-recruitment-agency-manager/</guid>
		<description><![CDATA[Finding and hiring good people is hard, especially for small businesses. Finding the best candidates to fill your organization’s job needs will ensure that you improve employee retention! The LongJump Recruitment Agency Solution allows both internal and external recruiters to manage your pool of job applicants. Here is a summary of some of what is [...]]]></description>
			<content:encoded><![CDATA[<p>Finding and hiring good people is hard, especially for small businesses. Finding the best candidates to fill your organization’s job needs will ensure that you improve employee retention! The LongJump <strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6&amp;category_name=HR" target="_blank">Recruitment Agency Solution</a></strong> allows both internal and external recruiters to manage your pool of job applicants. Here is a summary of some of what is possible:</p>
<ul>
<li style="font-family: verdana;font-size: 11px"><strong>Store candidate information:</strong> provides a central store for incoming application information such as resumes and CV&#8217;s</li>
<li style="font-family: verdana;font-size: 11px"><strong>Managing recruiters:</strong> allows you to manage external recruiters that you may be working with</li>
<li style="font-family: verdana;font-size: 11px"><strong>Profile creation and management</strong>: ability to create candidate and company assessment profiles</li>
<li style="font-family: verdana;font-size: 11px"><strong>Job and Skill matching:</strong> match candidate profiles and information to job requirements quickly and easily</li>
<li style="font-family: verdana;font-size: 11px"><strong>Website Integration:</strong> integrate web-based job inquires from your website with the Recruitment Agency Manager</li>
<li style="font-family: verdana;font-size: 11px"><strong>LongJump Platform Integration:</strong> share and use data and contacts from other LongJump applications such as email, calendar and task activities.</li>
</ul>
<p>Here are some other tips and guidelines that can be applied with your use of the <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6&amp;category_name=HR" target="_blank">Recruitment Agency Solution</a> and within your organization to improve your hiring process and employee retention:</p>
<ul>
<li style="font-family: verdana;font-size: 11px"><strong>Make a Staffing Plan</strong><br />
What exactly is the type of job that needs filling and how many of those jobs are there? What are the precise specifications and descriptions? Decide in advance what the salary and benefits will be. Create the necessary profile within the <strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6&amp;category_name=HR" target="_blank">Recruitment Agency Solution</a> </strong>and create time lines (Calendar) and budgets as part of the process.</li>
<li style="font-family: verdana;font-size: 11px"><strong>Find Good Candidates<br />
</strong>What type of advertising will you do to attract the candidates you – newspapers, trade journals, Internet? Consider using a Internet job board or a solution like <a href="http://www.vflyer.com/" target="_blank">vFlyer</a> (that syndicates your job posting to all the leading online marketplaces). Use your website to collect information from potential candidates through the web-based integration capabilities of the <strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998hym426292864&amp;category_id=6&amp;category_name=HR" target="_blank">Recruitment Agency Solution</a>.<br />
</strong></li>
<li style="font-family: verdana;font-size: 11px"><strong>Prepare Interview Questions<br />
</strong>A good interview has a purpose and a direction. Consider using a collaborative environment like <strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998don888798517&amp;category_id=12&amp;category_name=Business%20and%20Administration" target="_blank">OfficeSpace</a></strong> to manage the collection and assembly of interview questions. If the applicant has interviews with multiple team members, LongJump can easily hand the communication, scheduling and collaborative discussions that accompany such interviews. Here are some <a href="http://www.hunterindustries.com/Resources/Library/Business/200305_hdln_findinghiring.html" target="_blank">additional content and legal guidelines</a> than can help in the process.</li>
<li style="font-family: verdana;font-size: 11px"><strong>Avoid Common Errors</strong><br />
Try to avoid any and all of the following common errors. Asking leading questions. Making decisions too early in the interview. Lacking knowledge of precise job requirements. Letting the pressure of your duties shorten interview time. Doing more talking than the candidate. Failure to direct the interview.</li>
<li style="font-family: verdana;font-size: 11px"><strong>Check References<br />
</strong>If possible, check three references on each candidate. This demonstrates that you are using reasonable care in the hiring process. Careful reference checks ensure that candidates are right for the job and they are who they claim to be.</li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/10/09/hiring-good-people-recruitment-agency-manager/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Overview: Longjump Sales Applications</title>
		<link>http://www.longjumpblog.com/blog/2007/10/03/overview-longjump-sales-applications/</link>
		<comments>http://www.longjumpblog.com/blog/2007/10/03/overview-longjump-sales-applications/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 23:50:24 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/2007/10/03/overview-longjump-sales-applications/</guid>
		<description><![CDATA[One of LongJump’s strengths is its comprehensive suite of sales applications that enables sales professionals to sell and manage their pipeline’s more effectively. There is a quick overview of some of the key sales applications that come with the LongJump platform: Customer Manager This sales application allows you to store and share customer account information [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://longjumpblog.com/blog/images/catalog.jpg" height="149" width="484" /><br />
One of LongJump’s strengths is its comprehensive suite of<strong> sales applications</strong> that enables sales professionals to sell and manage their pipeline’s more effectively. There is a quick overview of some of the key sales applications that come with the LongJump platform:</p>
<ul>
<li><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998gfk169720581&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Customer Manager</a> </strong><br />
This sales application allows you to store and share customer account information with your sales organization.  The <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998gfk169720581&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Customer Manager</a> gives sales professionals a “360–degree” view of the customer relationships and keeps track of all the activity and communication history that relates to their account.</li>
<li><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998qmj812227536&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Contract Manager</a></strong><br />
The <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998qmj812227536&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Contact Manager</a> helps your business maintain and automate contract activities for prospects, customers, and vendors. Important account cycle activities like contract and account expirations, and other important events relating to product or services contracts.</li>
<li><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998cyy1516062765&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Deal Tracker</a></strong><br />
This application allows you to build sales opportunities with integrated price books and product lists, at the same time providing an accurate outlook into your sales opportunities.  Using the <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998cyy1516062765&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Deal Tracker</a>, you can store product and price information, track deal status, maintain key live metrics on activities related to deals, and turn your sales representatives into a goal-oriented, focused sales team.</li>
<li><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998ezp1535184910&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Prospecting Manager</a></strong><br />
Use the <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998ezp1535184910&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Prospecting Manager</a> to really focus your sales efforts.  The Prospecting Manager to “mine” for potential sales leads. These includes things like driving new prospects from your website and assign them to your sales reps, identifying which prospects need special attention, and even automating parts of you sales channel.</li>
<li><strong><a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998gea116933142&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">Sales Force Automation</a></strong><br />
The <a href="https://www.longjump.com/networking/Service?t=734&amp;id=1555611998gea116933142&amp;category_id=1&amp;category_name=Sales/Marketing" target="_blank">SFA</a> applications serves as the flagship application for sales teams to track progress and share customer information. If you have used CRM tools before, LongJump’s Sales Force Automation (SFA) provides all of the sales management functions you’re accustomed to in enterprise-grade applications plus much more.</li>
</ul>
<p>Remember that you can always visit the <a href="https://www.longjump.com/networking/Service?t=8" target="_blank">LongJump Application Catalog</a> for a complete listing of available business applications.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2007/10/03/overview-longjump-sales-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

