Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 1628)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 1629)
@@ -94,11 +94,22 @@
      *
      * @param urlNameMapFile properties file with the path to logical name map
-     * @throws IOException 
-     * @throws  
+     * @throws IOException thrown if there is an error load in the service name map
      */
     public HTTPLogParser(File urlNameMapFile) throws IOException {
-        super();
+        this(new FileInputStream(urlNameMapFile));
+    }
+    
+    /**
+     * <p>
+     * Constructor. Creates a new HTTPLogParser with a urlNameMap
+     * </p>
+     *
+     * @param urlNameMapFile properties file with the path to logical name map
+     * @throws IOException thrown if there is an error load in the service name map
+     */
+    public HTTPLogParser(InputStream urlNameMapStream) throws IOException {
+        this();
         urlNameMap = new Properties();
-        urlNameMap.load(new FileInputStream(urlNameMapFile));
+        urlNameMap.load(urlNameMapStream);
     }
 
