diff --git a/www/example-simple/hostnames.php b/www/example-simple/hostnames.php
index 9a06cb8c8075c5441e0f8fc3e46870c55475a743..8df549f769eec7e37a5fb22216d72f1188e08d43 100644
--- a/www/example-simple/hostnames.php
+++ b/www/example-simple/hostnames.php
@@ -28,16 +28,23 @@ if (!isset($session) || !$session->isValid('login-admin') ) {
 
 $attributes = array();
 
-$attributes['selfURLhost'] = array(SimpleSAML_Utilities::selfURLhost());
-$attributes['selfURLNoQuery'] = array(SimpleSAML_Utilities::selfURLNoQuery());
-$attributes['selfURL'] = array(SimpleSAML_Utilities::selfURL());
-$attributes['selfHostWithPath'] = array(SimpleSAML_Utilities::getSelfHostWithPath());
 
 $attributes['HTTP_HOST'] = array($_SERVER['HTTP_HOST']);
 $attributes['HTTPS'] = array($_SERVER['HTTPS']);
 $attributes['SERVER_PROTOCOL'] = array($_SERVER['SERVER_PROTOCOL']);
 $attributes['SERVER_PORT'] = array($_SERVER['SERVER_PORT']);
 
+$attributes['Utilities_getSelfHost()'] = array(SimpleSAML_Utilities::getSelfHost());
+$attributes['Utilities_getSelfProtocol()'] = array(SimpleSAML_Utilities::getSelfProtocol());
+$attributes['Utilities_selfURLhost()'] = array(SimpleSAML_Utilities::selfURLhost());
+$attributes['Utilities_selfURLNoQuery()'] = array(SimpleSAML_Utilities::selfURLNoQuery());
+$attributes['Utilities_getScriptName()'] = array(SimpleSAML_Utilities::getScriptName());
+$attributes['Utilities_getSelfHostWithPath()'] = array(SimpleSAML_Utilities::getSelfHostWithPath());
+$attributes['Utilities_getFirstPathElement()'] = array(SimpleSAML_Utilities::getFirstPathElement());
+$attributes['Utilities_selfURL()'] = array(SimpleSAML_Utilities::selfURL());
+$attributes['Utilities_getRequestURI()'] = array(SimpleSAML_Utilities::getRequestURI());
+
+
 
 
 
diff --git a/www/index.php b/www/index.php
index a3d5b8f95748e449093ae4a81d3fa4c69f19481a..1da305b073ecaf6df208456ba9acb32d8243d5ea 100644
--- a/www/index.php
+++ b/www/index.php
@@ -47,7 +47,7 @@ if ($config->getValue('enable.openid-provider') === true)
 		'text' => 'link_openidprovider');
 
 $links[] = array(
-	'href' => 'example-simple/hostnames.php', 
+	'href' => 'example-simple/hostnames.php?dummy=1', 
 	'text' => 'link_diagnostics');
 
 $links[] = array(