<?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: Trick for multiple and flexible parameter passing with MOD_PLSQL and Web PL/SQL toolkit</title>
	<atom:link href="http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit</link>
	<description></description>
	<lastBuildDate>Tue, 11 Jun 2013 22:09:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Jake Guenther</title>
		<link>http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/#comment-809</link>
		<dc:creator>Jake Guenther</dc:creator>
		<pubDate>Fri, 18 Apr 2008 13:24:13 +0000</pubDate>
		<guid isPermaLink="false">/?p=172#comment-809</guid>
		<description><![CDATA[This is good to know, I also found parameter passing a problem when form processing and wrote similar functions to deal with the problem.  I did however discover another problem that I have not been able to find a resolution to.  I need to be able to distinguish between form data and URL parameters (GET/POST) when passing form data to a function.  I use portal.wwpro_api_parameters.retrieve(owaVA_ARR_names, owaVC_ARR_values);  I opened a TAR with Oracle but was unable to get a resolution to the problem.  All they did was question my need for such a thing.  My reason is simple...  I need to distinguish the difference.  So, looks like I need to find a &quot;new trick&quot;.]]></description>
		<content:encoded><![CDATA[<p>This is good to know, I also found parameter passing a problem when form processing and wrote similar functions to deal with the problem.  I did however discover another problem that I have not been able to find a resolution to.  I need to be able to distinguish between form data and URL parameters (GET/POST) when passing form data to a function.  I use portal.wwpro_api_parameters.retrieve(owaVA_ARR_names, owaVC_ARR_values);  I opened a TAR with Oracle but was unable to get a resolution to the problem.  All they did was question my need for such a thing.  My reason is simple&#8230;  I need to distinguish the difference.  So, looks like I need to find a &#8220;new trick&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: glamour-agency</title>
		<link>http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/#comment-808</link>
		<dc:creator>glamour-agency</dc:creator>
		<pubDate>Tue, 02 Oct 2007 03:12:54 +0000</pubDate>
		<guid isPermaLink="false">/?p=172#comment-808</guid>
		<description><![CDATA[&lt;strong&gt;Studio Glamour Modeling&lt;/strong&gt;

hey great stuff]]></description>
		<content:encoded><![CDATA[<p><strong>Studio Glamour Modeling</strong></p>
<p>hey great stuff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Cuellar</title>
		<link>http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/#comment-807</link>
		<dc:creator>Luis Cuellar</dc:creator>
		<pubDate>Wed, 29 Aug 2007 16:23:42 +0000</pubDate>
		<guid isPermaLink="false">/?p=172#comment-807</guid>
		<description><![CDATA[The original article is available through the Internet Archive for those that might want to read it.

[is the answer to the spam protection supposed to be a &quot;number&quot; or a &quot;string&quot;?]]]></description>
		<content:encoded><![CDATA[<p>The original article is available through the Internet Archive for those that might want to read it.</p>
<p>[is the answer to the spam protection supposed to be a "number" or a "string"?]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charlie garrett-jones</title>
		<link>http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/#comment-806</link>
		<dc:creator>charlie garrett-jones</dc:creator>
		<pubDate>Mon, 22 Nov 2004 19:21:35 +0000</pubDate>
		<guid isPermaLink="false">/?p=172#comment-806</guid>
		<description><![CDATA[we have had a great deal of success with a controller developed for a large system with high security requirements.
one pl/sql facade procedure is all that is web facing and uses a small meta data repository to enforce authentication/access and data validation.

the trick to make things more manageable is to devise a numeric format for the description of all web forms and data items. as security was paramount, data validation was pushed out from the business logic to the controller. the controller enforces system wide and data value specific data rules by associating these values with meta data rules that use regular expressions for validation. this direction wards off a slew of web application attack methods.

developers loved the fact that data validation was performed for their interface procedures simply by associating form fields with these rules and that by calling a specific api they could also populate their web forms with client side java script that used the same rules.

the controller api has a bunch of system services built in for debugging, error handling etc...

for more info visit planetxsolutions.com]]></description>
		<content:encoded><![CDATA[<p>we have had a great deal of success with a controller developed for a large system with high security requirements.<br />
one pl/sql facade procedure is all that is web facing and uses a small meta data repository to enforce authentication/access and data validation.</p>
<p>the trick to make things more manageable is to devise a numeric format for the description of all web forms and data items. as security was paramount, data validation was pushed out from the business logic to the controller. the controller enforces system wide and data value specific data rules by associating these values with meta data rules that use regular expressions for validation. this direction wards off a slew of web application attack methods.</p>
<p>developers loved the fact that data validation was performed for their interface procedures simply by associating form fields with these rules and that by calling a specific api they could also populate their web forms with client side java script that used the same rules.</p>
<p>the controller api has a bunch of system services built in for debugging, error handling etc&#8230;</p>
<p>for more info visit planetxsolutions.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yves Bergeron</title>
		<link>http://technology.amis.nl/2004/09/27/trick-for-multiple-and-flexible-parameter-passing-with-mod_plsql-and-web-plsql-toolkit/#comment-805</link>
		<dc:creator>Yves Bergeron</dc:creator>
		<pubDate>Mon, 27 Sep 2004 16:59:49 +0000</pubDate>
		<guid isPermaLink="false">/?p=172#comment-805</guid>
		<description><![CDATA[Hi,

We got a PL/SQL framework emulating what the original Struts (from Apache Jakarta) is doing.

We use mod_plsql to always call the same package that use a struts-config.xml file to get the informations required to dispatch the process to the appropriate PL/SQL procedure.  We also use Stamps (known previously as HTT, http://stamps.sourceforge.net/) as a tag replacement framework based on HTML templates.  All the Stamps tags emulate Struts-JSP tags for form fields, links , actions, etc...

That framework was developed as an open source projet for a Quebec government agency.

If more informations are needed, don&#039;t hesitate to contact me.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>We got a PL/SQL framework emulating what the original Struts (from Apache Jakarta) is doing.</p>
<p>We use mod_plsql to always call the same package that use a struts-config.xml file to get the informations required to dispatch the process to the appropriate PL/SQL procedure.  We also use Stamps (known previously as HTT, <a href="http://stamps.sourceforge.net/" rel="nofollow">http://stamps.sourceforge.net/</a>) as a tag replacement framework based on HTML templates.  All the Stamps tags emulate Struts-JSP tags for form fields, links , actions, etc&#8230;</p>
<p>That framework was developed as an open source projet for a Quebec government agency.</p>
<p>If more informations are needed, don&#8217;t hesitate to contact me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
