 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Front End Development for AS400</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 12:31:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: idratherbefishing</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/#comment-46373</link>
		<dc:creator>idratherbefishing</dc:creator>
		<pubDate>Sun, 07 Jan 2007 12:30:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-46373</guid>
		<description><![CDATA[Well, this is deep subject.  There are so many ways to make a GUI application that accesses data on the AS400.  As mentioned in previous posts there&#039;s everthing from WebFacing to using using add-on packages such as Seagull where you continue to write software in green screen and the package converts the green screen to GUI that runs under a browser to using any number of PC based packages to create the GUI such as ColdFusion, Java, Visual Basic, etc.  Over the last 8 years I have used several.  So here&#039;s my humble opinion about what I think works best.

     First What if any experience does the support staff have in maintaining a GUI application that runs under a browser?  I say to each his own.  There are lots of ways to make a GUI application.  In some shops I&#039;ve seen ColdFusion used very well and in others Java or visual Basic worked well for them.  The key here is not only the expierence level but whether the software used allows for good change control management.  Dependant on the complexity of the application it is imperative that good change control be an integrated part of the actual panels developed such that you can upload the changes to the server seamlessly and know exactly which version is in use.

      The next decision is what will serve up the pages/panels.  After trying several different offerings from IBM and others I like the simplicity of a Linux server running apache.  Linux is very stable and so is APACHE.  In 2004 we created a large application that handles between 40,000 and 65,000 concurrent users.  Let me repeat that upwards of 65,000 users at the same time accessing the same server and the same data all with subsecond response time.

   In this shop they had very skilled Java programmers and the GUI pages were written in Java with a little visual basic.  The whole was designed to run under an apache server and it ran quite well.  You will note just about any server under the sun will support an apache server.  So this means the appliaction itself can run on just about any server because of APACHE.  In this case the APACHE server was run on 2 separate Unix servers in 2 different locations with fall over and load sharing such that it was designed to split the load so that about half the requests were serviced on a server at a time.

    All of the requests from both Apache servers connect with only One large AS400/Iseries.  The trick here was that requests from the GUI application to the AS400 were all to compiled procedures that were made part of service programs on the AS400.   The GUI application is allowed to read files/tables directly on the As400 however anytime the GUI application needs to add or change a record the request is made by calling a procedure on the AS400.  This gives full troubleshooting and visibility/control to the As400 side where the data resides.  In this particular application we had standard data such as name, address, and account information but also we had over 70 million jpegs of pictures stored on the IFS.

     On the AS400 there was one and only one procedure/program per table/file.  This meant that all requests to add or change a record in a table came through one and only one program/procedure.  We set up variables for the call so that we had parameters for each field in the table plus The name of the calling GUI application, the type of change add/change, date and time stamp, and a 512 byte result field.  The procedure did a complete check of the data to be sure all the fields met editing criteria.  If all was well then the change or add was made and the first bytes of the result field was returned with &quot;success&quot;.  If any of the edits failed like a duplicate was trying to be added or the state field didn&#039;t have a valid state, the result field was returned with &quot;failed&quot; in the first few bytes followed with the name of the failing field and the error message explaining why the update or add failed.

     This methodology maintains the veracity of the database files.  When multiple updates were requested by the GUI application the GUI application is aware when an expected update didn&#039;t happen and why.  We even developed a procedure using commitment control such that unless all of the updates to several files were successful we wouldn&#039;t allow the change to be committed. 

     By keeping the actual adding and changing of data on the AS400 instead of allowing direct writes from the GUI application you make trouble shooting one heck of a lot easier.  In addition before we committed to this methodology we found ways where the gui applications when trying to add or change records wasn&#039;t as consistant at enforcing data rules and the gui application thought it had updated or added a record when in fact the AS400 had not updated or added because of enforced restraints at the field level.  Besides who wants to figure out which one of 20 or 30 panels is the offending  page that is trying to put bad data in the files.

    I know this was long but I thought I&#039;d pass along what worked very well for me.  The application I described has now been in Production for 2.5 years and has sucessfully served more than 100 million requests.]]></description>
		<content:encoded><![CDATA[<p>Well, this is deep subject.  There are so many ways to make a GUI application that accesses data on the AS400.  As mentioned in previous posts there&#8217;s everthing from WebFacing to using using add-on packages such as Seagull where you continue to write software in green screen and the package converts the green screen to GUI that runs under a browser to using any number of PC based packages to create the GUI such as ColdFusion, Java, Visual Basic, etc.  Over the last 8 years I have used several.  So here&#8217;s my humble opinion about what I think works best.</p>
<p>     First What if any experience does the support staff have in maintaining a GUI application that runs under a browser?  I say to each his own.  There are lots of ways to make a GUI application.  In some shops I&#8217;ve seen ColdFusion used very well and in others Java or visual Basic worked well for them.  The key here is not only the expierence level but whether the software used allows for good change control management.  Dependant on the complexity of the application it is imperative that good change control be an integrated part of the actual panels developed such that you can upload the changes to the server seamlessly and know exactly which version is in use.</p>
<p>      The next decision is what will serve up the pages/panels.  After trying several different offerings from IBM and others I like the simplicity of a Linux server running apache.  Linux is very stable and so is APACHE.  In 2004 we created a large application that handles between 40,000 and 65,000 concurrent users.  Let me repeat that upwards of 65,000 users at the same time accessing the same server and the same data all with subsecond response time.</p>
<p>   In this shop they had very skilled Java programmers and the GUI pages were written in Java with a little visual basic.  The whole was designed to run under an apache server and it ran quite well.  You will note just about any server under the sun will support an apache server.  So this means the appliaction itself can run on just about any server because of APACHE.  In this case the APACHE server was run on 2 separate Unix servers in 2 different locations with fall over and load sharing such that it was designed to split the load so that about half the requests were serviced on a server at a time.</p>
<p>    All of the requests from both Apache servers connect with only One large AS400/Iseries.  The trick here was that requests from the GUI application to the AS400 were all to compiled procedures that were made part of service programs on the AS400.   The GUI application is allowed to read files/tables directly on the As400 however anytime the GUI application needs to add or change a record the request is made by calling a procedure on the AS400.  This gives full troubleshooting and visibility/control to the As400 side where the data resides.  In this particular application we had standard data such as name, address, and account information but also we had over 70 million jpegs of pictures stored on the IFS.</p>
<p>     On the AS400 there was one and only one procedure/program per table/file.  This meant that all requests to add or change a record in a table came through one and only one program/procedure.  We set up variables for the call so that we had parameters for each field in the table plus The name of the calling GUI application, the type of change add/change, date and time stamp, and a 512 byte result field.  The procedure did a complete check of the data to be sure all the fields met editing criteria.  If all was well then the change or add was made and the first bytes of the result field was returned with &#8220;success&#8221;.  If any of the edits failed like a duplicate was trying to be added or the state field didn&#8217;t have a valid state, the result field was returned with &#8220;failed&#8221; in the first few bytes followed with the name of the failing field and the error message explaining why the update or add failed.</p>
<p>     This methodology maintains the veracity of the database files.  When multiple updates were requested by the GUI application the GUI application is aware when an expected update didn&#8217;t happen and why.  We even developed a procedure using commitment control such that unless all of the updates to several files were successful we wouldn&#8217;t allow the change to be committed. </p>
<p>     By keeping the actual adding and changing of data on the AS400 instead of allowing direct writes from the GUI application you make trouble shooting one heck of a lot easier.  In addition before we committed to this methodology we found ways where the gui applications when trying to add or change records wasn&#8217;t as consistant at enforcing data rules and the gui application thought it had updated or added a record when in fact the AS400 had not updated or added because of enforced restraints at the field level.  Besides who wants to figure out which one of 20 or 30 panels is the offending  page that is trying to put bad data in the files.</p>
<p>    I know this was long but I thought I&#8217;d pass along what worked very well for me.  The application I described has now been in Production for 2.5 years and has sucessfully served more than 100 million requests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: narasimhareddy</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/#comment-46374</link>
		<dc:creator>narasimhareddy</dc:creator>
		<pubDate>Fri, 05 Jan 2007 00:02:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-46374</guid>
		<description><![CDATA[Our application runs on AS/400 with COBOL. We used IBM WebFacing tool to make the application web-enbled. We succeeded this &amp; customer is running application on browser. 
This tool can be used regardless the programming language what you have used.]]></description>
		<content:encoded><![CDATA[<p>Our application runs on AS/400 with COBOL. We used IBM WebFacing tool to make the application web-enbled. We succeeded this &amp; customer is running application on browser.<br />
This tool can be used regardless the programming language what you have used.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dalejanus</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/#comment-46375</link>
		<dc:creator>dalejanus</dc:creator>
		<pubDate>Thu, 04 Jan 2007 09:28:08 +0000</pubDate>
		<guid isPermaLink="false">#comment-46375</guid>
		<description><![CDATA[There is a free tool called CGIDEV2 and/or EASY400.

http://www.easy400.net/easy400p/main.html


I have not used it, but it may be what you are looking for.
]]></description>
		<content:encoded><![CDATA[<p>There is a free tool called CGIDEV2 and/or EASY400.</p>
<p><a href="http://www.easy400.net/easy400p/main.html" rel="nofollow">http://www.easy400.net/easy400p/main.html</a></p>
<p>I have not used it, but it may be what you are looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leifjacobsen</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/#comment-46376</link>
		<dc:creator>leifjacobsen</dc:creator>
		<pubDate>Thu, 04 Jan 2007 08:49:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-46376</guid>
		<description><![CDATA[We have a development tool called IceBreak, which can be used to web enable AS400 menu&#039;s data etc.. Its pure browser based, no clients needed. I re-uses native code written in RPG/Cobol/CL and even C++. 

The idea is almost like MicroSoft ASP, and any development tool can be used.

Read more at: www.icebreak.org, and try it for yourself, or we can give you a demo.
]]></description>
		<content:encoded><![CDATA[<p>We have a development tool called IceBreak, which can be used to web enable AS400 menu&#8217;s data etc.. Its pure browser based, no clients needed. I re-uses native code written in RPG/Cobol/CL and even C++. </p>
<p>The idea is almost like MicroSoft ASP, and any development tool can be used.</p>
<p>Read more at: <a href="http://www.icebreak.org" rel="nofollow">http://www.icebreak.org</a>, and try it for yourself, or we can give you a demo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: walter47</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/front-end-development-for-as400/#comment-46377</link>
		<dc:creator>walter47</dc:creator>
		<pubDate>Wed, 03 Jan 2007 14:34:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-46377</guid>
		<description><![CDATA[You didn&#039;t specify any details about your application.
But, I&#039;ve had success in developing GUI screens using a 
screen option in DDM. My experience was for web based applications directly on an AS400.]]></description>
		<content:encoded><![CDATA[<p>You didn&#8217;t specify any details about your application.<br />
But, I&#8217;ve had success in developing GUI screens using a<br />
screen option in DDM. My experience was for web based applications directly on an AS400.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/8 queries in 0.014 seconds using memcached
Object Caching 325/326 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 12:57:00 -->