|
|
EMC Showcase- Content
Syndication
Information included at the below links is the property
of EMC and is updated
and maintained by EMC. Sigma Solutions is
not responsible for the accuracy of this
information, we are only providing it as a
service to our customers.
<%
// Do not edit below this line
// ---------------------------------------
try
{
String strSVHost = "";
String strSVContentLine = "";
String strSVPullURL = "http://emc.sharedvue.net/sharedvue/pull/";
if (request.getServerName() != null) { strSVHost += request.getServerName(); }
if (request.getRequestURI() != null) { strSVHost += request.getRequestURI(); }
if (request.getQueryString() != null) { strSVHost += "?" + request.getQueryString(); }
strSVPullURL += "?svhost=" + java.net.URLEncoder.encode(strSVHost);
java.net.URL urlSVContent = new java.net.URL(strSVPullURL);
java.io.BufferedReader brSVContent = new java.io.BufferedReader ( new java.io.InputStreamReader(urlSVContent.openStream() ) );
while ( (strSVContentLine=brSVContent.readLine()) != null ) { out.println(strSVContentLine); }
brSVContent.close();
}
catch(Exception eSVPull)
{
out.println("");
}
%>
|
|