<?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: Hiding the Web.show_document URL</title>
	<atom:link href="http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hiding-the-webshow_document-url</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Josefine</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3142</link>
		<dc:creator>Josefine</dc:creator>
		<pubDate>Wed, 02 Mar 2011 14:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3142</guid>
		<description><![CDATA[Thanks for this info!
I have combined it with Francois Degrelle&#039;s blog entry about document.write to show database clob content with web.show_document.
BTW. I had to add a semicolon to self.close() to get it to work. Like this (Sorry if it looks strange, I&#039;m a PL/SQL programmer...):
Web.show_document(&#039;javascript:(window.open(&quot;&quot;, &quot;&quot;,&quot;location=no,titlebar=no,menubar=no&quot;)).document.write(&#039;&#039;&lt;h1&gt;Test&lt;/h1&gt;&#039;&#039;);self.close();&#039;,&#039;_blank&#039;);]]></description>
		<content:encoded><![CDATA[<p>Thanks for this info!<br />
I have combined it with Francois Degrelle&#8217;s blog entry about document.write to show database clob content with web.show_document.<br />
BTW. I had to add a semicolon to self.close() to get it to work. Like this (Sorry if it looks strange, I&#8217;m a PL/SQL programmer&#8230;):<br />
Web.show_document(&#8216;javascript:(window.open(&#8220;&#8221;, &#8220;&#8221;,&#8221;location=no,titlebar=no,menubar=no&#8221;)).document.write(&#8221;&lt;h1&gt;Test&lt;/h1&gt;&#8221;);self.close();&#8217;,'_blank&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos Claver</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3141</link>
		<dc:creator>Marcos Claver</dc:creator>
		<pubDate>Wed, 02 Aug 2006 09:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3141</guid>
		<description><![CDATA[As stated prior it could be caused by the fact that your browser does not allow the call of java script. Also read the prior comments regarding security]]></description>
		<content:encoded><![CDATA[<p>As stated prior it could be caused by the fact that your browser does not allow the call of java script. Also read the prior comments regarding security</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish.lall</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3140</link>
		<dc:creator>Manish.lall</dc:creator>
		<pubDate>Tue, 01 Aug 2006 17:03:15 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3140</guid>
		<description><![CDATA[When used like this:


	if (reportobjstatus=&#039;FINISHED&#039;) then

				/* Report run was successful
					 Get the Report output to the Browser */

				--the_url := rroVirtualDir&#124;&#124;rroReportsInterface&#124;&#124;&#039;?&#039;&#124;&#124;server&#124;&#124;&#039;=&#039;&#124;&#124;rroReportServer&#124;&#124;rroreportother;
			--	web.show_document(rroVirtualDir&#124;&#124;rroReportsInterface&#124;&#124;&#039;?server=&#039;&#124;&#124;rroReportServer&#124;&#124;rroreportother,&#039;_blank&#039;);
--the_url := &#039;javascript:window.open(&quot;&#039;&#124;&#124;rroVirtualDir&#124;&#124;rroReportsInterface&#124;&#124;&#039;?&#039;&#124;&#124;&#039;server&#039;&#124;&#124;&#039;=&#039;&#124;&#124;rroReportServer&#124;&#124;rroreportother&#124;&#124;&#039;&quot;,&quot;Reports&quot;,&quot;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,status=no,resizable=yes&quot;);self.close()&#039;;

				if (upper(rroDestype) =&#039;CACHE&#039;) then

			--		Web.show_document(&#039;javascript:window.open(&quot;www.yahoo.com&quot;,&quot;&quot;,&quot;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,resizable=yes&quot;);self.close()&#039;,&#039;_blankâ€™);

    v_URLin := rroVirtualDir&#124;&#124;rroReportsInterface&#124;&#124;&#039;?server=&#039;&#124;&#124;rroReportServer&#124;&#124;rroreportother;


    v_URLout := &#039;javascript:window.open(&quot;&#039;&#124;&#124; v_URLin &#124;&#124; &#039;&quot;,&quot;&quot;,&quot;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,status=no,resizable=yes&quot;);self.close()&#039;;

    WEB.SHOW_DOCUMENT (v_URLout, &#039;_blank&#039;);

						--WEB.SHOW_DOCUMENT (the_url, &#039;_blank&#039;);

				else
					-- Reports output is send to printer or file, there is nothing to download to the client
					null;
				end if;

			end if;
		end if;






The report doesn&#039;t run and the page remains blank]]></description>
		<content:encoded><![CDATA[<p>When used like this:</p>
<p>	if (reportobjstatus=&#8217;FINISHED&#8217;) then</p>
<p>				/* Report run was successful<br />
					 Get the Report output to the Browser */</p>
<p>				&#8211;the_url := rroVirtualDir||rroReportsInterface||&#8217;?'||server||&#8217;='||rroReportServer||rroreportother;<br />
			&#8211;	web.show_document(rroVirtualDir||rroReportsInterface||&#8217;?server=&#8217;||rroReportServer||rroreportother,&#8217;_blank&#8217;);<br />
&#8211;the_url := &#8216;javascript:window.open(&#8220;&#8216;||rroVirtualDir||rroReportsInterface||&#8217;?'||&#8217;server&#8217;||&#8217;='||rroReportServer||rroreportother||&#8217;&#8221;,&#8221;Reports&#8221;,&#8221;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,status=no,resizable=yes&#8221;);self.close()&#8217;;</p>
<p>				if (upper(rroDestype) =&#8217;CACHE&#8217;) then</p>
<p>			&#8211;		Web.show_document(&#8216;javascript:window.open(&#8220;www.yahoo.com&#8221;,&#8221;",&#8221;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,resizable=yes&#8221;);self.close()&#8217;,'_blankâ€™);</p>
<p>    v_URLin := rroVirtualDir||rroReportsInterface||&#8217;?server=&#8217;||rroReportServer||rroreportother;</p>
<p>    v_URLout := &#8216;javascript:window.open(&#8220;&#8216;|| v_URLin || &#8216;&#8221;,&#8221;",&#8221;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,status=no,resizable=yes&#8221;);self.close()&#8217;;</p>
<p>    WEB.SHOW_DOCUMENT (v_URLout, &#8216;_blank&#8217;);</p>
<p>						&#8211;WEB.SHOW_DOCUMENT (the_url, &#8216;_blank&#8217;);</p>
<p>				else<br />
					&#8211; Reports output is send to printer or file, there is nothing to download to the client<br />
					null;<br />
				end if;</p>
<p>			end if;<br />
		end if;</p>
<p>The report doesn&#8217;t run and the page remains blank</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos Claver</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3139</link>
		<dc:creator>Marcos Claver</dc:creator>
		<pubDate>Tue, 18 Apr 2006 13:12:09 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3139</guid>
		<description><![CDATA[The link in the blog tell me that it will not work correctly with IE 6.0 if you have applied recent service packs. This is due to a change in Microsoft security enhancements.

The solution Francois Degrelle proposes is better since the translationof parameters is performed on the server.]]></description>
		<content:encoded><![CDATA[<p>The link in the blog tell me that it will not work correctly with IE 6.0 if you have applied recent service packs. This is due to a change in Microsoft security enhancements.</p>
<p>The solution Francois Degrelle proposes is better since the translationof parameters is performed on the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olof</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3138</link>
		<dc:creator>Olof</dc:creator>
		<pubDate>Tue, 18 Apr 2006 08:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3138</guid>
		<description><![CDATA[Interesting, but doesn&#039;t work for me... Nothing appends when I press on the button. Code :

WEB.SHOW_DOCUMENT (&#039;javascript:window.open(&quot;TARGET=_blank&gt; http://www.apple.com&quot;,&quot;&quot;,&quot;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no, status=no,resizable=yes&quot;);self.close()&#039;,&#039;_blank&#039;);

Any change in IE prefences ???]]></description>
		<content:encoded><![CDATA[<p>Interesting, but doesn&#8217;t work for me&#8230; Nothing appends when I press on the button. Code :</p>
<p>WEB.SHOW_DOCUMENT (&#8216;javascript:window.open(&#8220;TARGET=_blank&gt; <a href="http://www.apple.com" rel="nofollow">http://www.apple.com</a>&#8220;,&#8221;",&#8221;fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no, status=no,resizable=yes&#8221;);self.close()&#8217;,'_blank&#8217;);</p>
<p>Any change in IE prefences ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos Claver</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3137</link>
		<dc:creator>Marcos Claver</dc:creator>
		<pubDate>Mon, 17 Apr 2006 20:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3137</guid>
		<description><![CDATA[You are correct thanks for the remarks.]]></description>
		<content:encoded><![CDATA[<p>You are correct thanks for the remarks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois Degrelle</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3136</link>
		<dc:creator>Francois Degrelle</dc:creator>
		<pubDate>Mon, 17 Apr 2006 17:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3136</guid>
		<description><![CDATA[Hello,

Keep in mind that you can also mask the connexion string (and other parameters) by using the cgicmd.dat Reports configuration file to launch reports from the Web.Shwo_Document() built-in.]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Keep in mind that you can also mask the connexion string (and other parameters) by using the cgicmd.dat Reports configuration file to launch reports from the Web.Shwo_Document() built-in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SwitchBL8</title>
		<link>http://technology.amis.nl/2006/04/16/hiding-the-webshow_document-url/#comment-3135</link>
		<dc:creator>SwitchBL8</dc:creator>
		<pubDate>Mon, 17 Apr 2006 00:17:47 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1153#comment-3135</guid>
		<description><![CDATA[Great stuff.

Two (minor) things: self.close instead of clase(). And I guess you mean &quot;disclosure&quot; instead of &quot;disposure&quot;. It means almost the same, but in this case the latter is closer to what you meant to say.]]></description>
		<content:encoded><![CDATA[<p>Great stuff.</p>
<p>Two (minor) things: self.close instead of clase(). And I guess you mean &#8220;disclosure&#8221; instead of &#8220;disposure&#8221;. It means almost the same, but in this case the latter is closer to what you meant to say.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
