Problem in executing a JSP file that includes a Custm tag

Hi,
I am very new to JSP,especially custom tags. I tried to run my first custom tag program but i cud not succeed.
I tried to run it using Tomcat as well J2ee1.3. But still cud not c the output.
I have placed jsp file,TLD etc in Web inf of root dir and class file inside classes folder..but i got some error saying tag with prefix not found in the tag library...
i tried in all the ways but all in vain... I will post my code and exact error i faced.. can anyone help me soon to see the output?
WelcomCtag.java
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class WelcomeCtag extends TagSupport
     private String Name=null;
     public String getName()
          return Name;
     public int doStartTag()
          try
               JspWriter output=pageContext.getOut();
               output.println("Welcome" + getName());
          }catch(Exception e)
               throw new Error("Encountered an errer");
          return SKIP_BODY;
     public int doEndTag()
          try{}
          catch(Exception e)
               throw new Error("Encountered an errer");
          finally
               return SKIP_PAGE;
[u]example.tld[/u]
<taglib>
     <tlibversion>1.0</tlibversion>
     <jspversion>1.1</jspversion>
     <shortname>example</shortname>
     <info> A small example for usage of the tag library</info>
     <tag>
          <name> Welcome></name>
          <tagclass>WelcomeCtag</tagclass>
     <bodycontent>empty</bodycontent>
     <info>This tag is an example to display a welcome message</info>
     <attribute>
          <name>Name</name>
          <required>true</required>
          <rtexprvalue>true</rtexprvalue>
     </attribute>
     </tag>
</taglib>
[u]WelcomeCustomtag.jsp[/u]
<%@ taglib prefix="example" uri="./example.tld" %>
<html>
<title>Welcome Handler</title>
</head>
<body>
<example: Welcome Name="Panduranga"/>
</body>
</html>
and the error i get while executing is here..........
org.apache.jasper.JasperException: /WelcomeCustomtag.jsp(6,0) No tag "" defined in tag library imported with prefix "example"
     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
     org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
     org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:196)
     org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1308)
     org.apache.jasper.compiler.Parser.parseElements(Parser.java:1564)
     org.apache.jasper.compiler.Parser.parse(Parser.java:126)
     org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
     org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
     org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
     org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
when i referred some other tutorials some have stored the tld file inside a folder called tags inside web inf and they have used like this <tags:example> etc and it wrked but if i want to specify some attributes i dunno how to give using <tags> style....
Can anyone help me n tell me the difference in using tag like this <eample> and <tags: example> like this.....
Thanks,
Akshatha                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

1.
Multiple tlds in web.xml
Have multiple taglib elements in your web.xml - see below.
<jsp-config>
  <taglib>
     <taglib-uri>http://example/taglib</taglib-uri>
     <taglib-location>/WEB-INF/example.tld</taglib-location>
  </taglib>
   <taglib>
      <taglib-uri>http://anotherexample/taglib</taglib-uri>
       <taglib-location>/WEB-INF/anotherexample.tld</taglib-location>
   </taglib>
</jsp-config>The jsp-config element should be just after the servlet-mapping element in servlet 2.3 spec.
For 2.4 spec, you can put it anywhere.
In your jsp, to use the tags from the two tag libraries, use 2 taglib directives
<%@ taglib prefix="example" uri="http://example/taglib" %>
<%@ taglib prefix="anotherexample" uri="http://anotherexample/taglib" %>
<example:tag1.................>
<anotherexample:tag2.................> etc2.
Mutliple tags per tld
Have multiple <tag> elements in your tld.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
<taglib>
   <tlib-version>1.0</tlib-version>
   <jsp-version>1.2</jsp-version>
   <short-name>j2ee</short-name>
   <tag>
      <name>tagName</name>
      <tag-class>pkgName.classname</tag-class>
      <body-content>JSP</body-content>
      <display-name>OverlapTag</display-name>
      <attribute>
         <name>attr1</name>
         <required>false</required>
         <rtexprvalue>true</rtexprvalue>
      </attribute>
      <attribute>
         <name>attr2</name>
         <required>false</required>
         <rtexprvalue>true</rtexprvalue>
      </attribute>
   </tag>
   <tag>
      <name>tag_2_Name</name>
      <tag-class>pkgName.classname</tag-class>
      <body-content>JSP</body-content>
      <display-name></display-name>
      <attribute>
         <name>attr1_2</name>
         <required>false</required>
         <rtexprvalue>true</rtexprvalue>
      </attribute>
      <attribute>
         <name>attr2_2</name>
         <required>false</required>
         <rtexprvalue>true</rtexprvalue>
      </attribute>
   </tag>
</taglib>
Interesting snippet
If you are using a 3rd party tag library, then the tags would come packaged in a jar file. The MTEA-INF directory of the jar file would contain the tlds and the tld would have an uri element. You can use it directly in the jsp without declaring the tld file in web.xml provided the jar file is in your classpath.
For example, take the struts tag libraries, say the logic tags.
The struts.jar contains, among other things, the tag class files and the tld files (inside /META-INF/tlds)
All you have to do is put Struts.jar in the classpath (easy way to do this is put it in the WEB-INF/lib directory of your web-application).
The jar file has struts-logic-1.1.tld in the META-INF/tlds directory.
This tld file looks like this
<taglib>
<tlibversion>1.2</tlibversion>
<jspversion>1.1</jspversion>
<shortname>logic</shortname>
<uri>http://jakarta.apache.org/struts/tags-logic</uri>
..................Now to use the tags in your jsp, you dont require the tld mappings in web.xml using the uri above in the taglib directive in your jsp
<%@ taglib prefix="example" uri="http://jakarta.apache.org/struts/tags-logic" %> cool, right ? :)
This is how you should pkg your own tags too. The tag classes have to be jarred and the tlds should go into the META-INF of the jar so that other users can simply add the jar to the cp and start using your tags.
cheers,
ram.

Similar Messages

  • Executing a jsp file from a local mahine

    Hi,
    I am totally new to jsp and javascript. I was wondering if you could tell me whether it's possible to execute a jsp file residing on a webserver from a normal java application on a local machine?
    I want to write a script that will reside in the root directory of my webserver, which when executed will write the directory structure to a text file, the java application then reads the file. Would this be possible?
    How would i go about executing the file on the webserver? i.e. what command would i use?
    Many thanks
    Please see a previous thread for more background info: -
    http://forum.java.sun.com/thread.jsp?forum=31&thread=230736

    Since no one replied I actually used my brain and found it is possible to 'execute' the jsp file by using a URL and an inputstreamreader: -
                   URL myUrl=new URL( webFile );
                   InputStreamReader in = new InputStreamReader(myUrl.openStream());
                   BufferedReader reader = new BufferedReader(in);
                   while ((inputLine = reader.readLine()) != null)
                   encryStr = encryStr + inputLine;
                   in.close();
                   return encryStr;
    This will return the info i wanted from the jsp file - which was a neater way then writing to a text file.

  • J2EE, possible to serve clients jsp files that are outside the war file?

    Hi, I was wondering with a J2EE webserver if it was possible to serve clients webpages from jsp files that were outside the client.
    For example say you got your war file in the auto deploy directory on the server and also on the server you got a directory full of jsp files that could be accessed by the webserver just like normal jsp files inside the war file?
    ...I want to do this because I want to be able to add jsp files without rebuilding the war file.
    ....Or is it possible to make the webserver rebuild itself, eg to add or remove files?
    Thanks

    If you are using a S1WS6.1, please try to find a line with WEBAPP in server.xml.
    You should find a line like this.
    <WEBAPP uri="/simple" path="/opt/SUNWwbsvr/https-test/webapps/https-test/simple" enabled="true"/>
    The path parameter shows the directory where the S1WS refers to when the webapplication is executed.
    You can put a jsp into the directory and modify it accordingly.
    Please refer to the following docs. They might help.
    http://docs.sun.com/source/817-6251/pwadeply.html#wp25317
    http://docs.sun.com/source/817-6251/pwadeply.html#wp25890
    thanks,
    -Yuji

  • How can I create a URL for a PWA for MS Project Server 2010 project file that includes the view?

    Hi, this question has been answered for 2013. The answer here suggests that it can be done in  2010.
    See:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/3affdc4f-36bf-4381-8b75-27c73465efd4/action?threadDisplayName=how-can-i-create-a-url-for-a-pwa-for-ms-project-server-2013-project-file-that-includes-the-view
    Who knows how?
    Regards
    Sander

    Hi Sander,
    As far as I tested it, it is not possible either with PS2010. The URL only contains the PDP name and the projUID.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Japanes text in a JSP file that contains an include defining the charset

    I am developing a site in Japanese but I am having a problem
    with getting dreamweaver to maintain the japanese text when I save
    the file. The reason I am having trouble is because Dreamweaver is
    looking for the meta tag character set definition within the actual
    JSP document that I am saving. However, I am using a JSP include at
    the top of this file which calls the head information and within it
    the meta tag definition.
    The end result is that when I go to save the file I get an
    error message that says:
    The
    document's current encoding can not correctly save all of the
    characters within the document. You may want to change to UTF-8 or
    an encoding that supports the special characters in this
    document.
    Then I click the OK button and it saves the file. When I
    reopen the file or if open the page using my local version of the
    site, I find that Dreamweaver has replaced all the Japanese text
    with ??? (question marks).
    Can anyone tell me how I can get dreamweave to save the
    Japanese without having the encoding set withing that JSP file?
    Thanks in advance!
    Rob

    Anyone have ideas for me? Please!!!
    Rob

  • How do I setup in wls 6.1 a jsp file that has a different extension (not *.jsp)

    I have a jsp file with extension *.abc. The browser is showing the files as text instead of sending it to be processed as a jsp file.
              I have the following settings in the web.xml but it is not picking it up.
              <servlet-mapping>
              <servlet-name>
              jsp
              </servlet-name>
              <url-pattern>
              *.abc
              </url-pattern>
              </servlet-mapping>     
              

    This is kind of a hack and not officially supported, but you might try...
              <servlet>
              <servlet-name>ABC</servlet-name>
              <servlet-class>weblogic.servlet.JSPServlet</servlet-class>
              <init-param>
              <param-name>compileCommand</param-name>
              <param-value>javac</param-value>
              </init-param>
              <init-param>
              <param-name>workingDir</param-name>
              <param-value>WEB-INF/classes</param-value>
              </init-param>
              </servlet>
              Since this isn't the default JSPServlet registration, it doesn't pick up the
              default JSPServlet init arguments, so after some experimentation I figured
              out that you have to at least define these two. Others that you may want to
              configure are...
              defaultFileName
              compileCommand
              compilerClass
              compileFlags
              workingDir
              verbose
              keepgenerated
              precompileContinue
              pageCheckSeconds
              encoding
              packagePrefix
              superclass
              noTryBlocks
              compilerSupportsEncoding
              These are all defined as jsp-descriptor args in the weblogic.xml file, but
              you can equally use them as servlet-args for your custom JSP registration
              Good luck,
              Alex
              P.S.
              Why don't you want to use jsp files anyway?
              "shelley otero" <[email protected]> wrote in message
              news:[email protected]...
              > I have a jsp file with extension *.abc. The browser is showing the files
              as text instead of sending it to be processed as a jsp file.
              >
              > I have the following settings in the web.xml but it is not picking it up.
              >
              > <servlet-mapping>
              > <servlet-name>
              > jsp
              > </servlet-name>
              > <url-pattern>
              > *.abc
              > </url-pattern>
              > </servlet-mapping>
              >
              

  • How do I create a .llb file that includes only the subVIs used in a VI?

    hi....
    can anybody help me ...i wanna creat a library file that holds only the sub-VIs that are running in particular main VI .
    are there options for that in labview??

    I don't think understand the answer. From just the top level VI, do like I said and an llb will be created with the top level and all subVIs. You can also edit the llb (Tools>Edit VI Library) and make your main VI top level. A note of caution. An llb was originally designed as a means of storing VIs with extended names. With modern OS's allowing long file names, an llb is less useful except as a convenient means of distributing a group of VIs from one location to another. This would be done as a final distribution such as an instrument driver or to another developer who would then convert the llb to a folder. There are several problems with keeping the development VIs in an llb. One is that it doesn't work with any form of source code cont
    rol. Another is that a corrupt VI in an llb can and has made the entire llb unreadable so unless you are absolutely religous about backups, you made find yourself in deep trouble some day.

  • Problem on reload a JSP file in Tomcat 3.3.1

    I have a problem about Tomcat 3.3.1
    I am developing a JSP application,
    but Tomcat not recompile the JSP file after i modify it.
    I need to "wait" the tomcat recompile it, so i can see the change.
    This make the development really difficult...
    Do I miss some important step on config Tomcat 3.3.1
    how to force it to detect a newer version JSP in every request ??
    Thanks

    I believe there is a way to configure Tomcat to do this, but I don't know what it is.
    Until someone can tell you the configuration steps, here is a workaround. Tomcat keeps the Java source and class files for your JSP code somewhere under its "work" directory. Find those files and delete them, which will force it to re-compile.

  • Problem in BPEL with payload xsd that include other payload xsd.

    Hi,
    We have a payload xsd that includes other payload xsd. JDev does not complain when we validate or compile the BPEL project but when we try of create a variable of that type in JDev it fails. Any ideas?
    <xs:schema
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/retail/integration/payload/XItemDesc"
    xmlns="http://www.oracle.com/retail/integration/payload/XItemDesc"
    >
    <xs:include schemaLocation="RIBDate.xsd"/>
    <xs:element name="XItemSupCtyDesc">
    <xs:complexType>
    <xs:sequence>
    I imported both(XItemDesc.xsd + RIBDate.xsd) the xsd to JDev but it still fails.
    Thanks,
    Prantor

    There are known limitations to XSDs with imports and includes.
    Look at metalink and log a SR.
    Oracle support ignores this, but with every SR the pressure is increased...
    (My SR (XSD importing XSD) was classified not as bug but as enhancement request for the next release)

  • Problem in loading few jsp files

    Hi,
    I am facing problem in loading very few jsp pages. The situation is something like this.
    Server: WebSphere
    I have a top frame and bottom frame.
    When the user keep on clicking the same link in the top frame, not giving time to get loaded in bottom frame,
    on the server the error "Servlet Error: Connection reset by peer: socket write error: java.net.SocketException: Connection reset by peer: socket write error" was coming.
    My bother is not on the server-side. but on the client side.
    On the client side, the html of two requests are getting overlapped and displaying(see at the end for sample output of html). In this HTML, if you observe, you can find the line "Error 500: Connection reset by peer: socket write error
    ". Above to this is the half-content of the previous request and bellow is the actual page need to be loaded. And the output was a merge of actual page with the code of the previous request.
    Is it the problem of Websphere or coding?
    Can you help me resolving this problem?
    thanks
    naveen
    Output HTML (for example):
         Contract Name:</td>
         <td class="Label" ><input type="text" id="contractName"
    size="25" maxlength = "100"></td>
         <td class="Label" >Owner:</td>
         <td class="Label" colspan="2"><select id="owner" class="Label"
    size="1" style="WIDTH:200px">
         <option value="_______________">_____________</option>
         </select></td>
                   </td>
    Error 500: Connection reset by peer: socket write error
    <html>
    <head>
    <title> welcome </title>
    <link rel="STYLESHEET" type="text/css" href="Scripts/SSheet.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <!-- This .js script files contains all components, which is used -->
    .... and so on
    </html>

    Hi
    I have Observed that "java.net.SocketException: Connection reset by peer" is caused due to manual malfunction performed by the user in the browser like sending multiple request to the server stopping, moving forward, moving backward when a request is placed to the server and waiting for it to get it done.
    More clearly if the User Selected an option from the browser and send a request to the server and followed by sending another request immediately to the server and by this time Server is processed the first request and is started writing the result to the JSP/Browser (Same client), by this time the 2nd reqest from the same Browser/Client is interrupted the first one and ohhhhhhh..... problem , you got an error "java.net.SocketException: Connection reset by peer".
    If any one could figure out more Please update me too appreciate !
    [email protected]
    Sr. Software Architect

  • How can I create a URL for a PWA for MS Project Server 2013 project file that includes the view?

    In earlier versions of PWA a URL for a project could include information on the particular view used. This was very handy for emailing people since when they clicked the URL they would see only the particular tasks in that view. In PWA for Project 2013
    the URL contains the info for the project file only and does not include the view or filter or anything else.

    Hi Scott,
    As far as I can see, this is not possible anymore, since the view's list in the PDP (for example schedule PDP) is affecting only the webpart and not the entire webpage, meaning that the URL is not connected anymore to the view and vice-versa.
    Indeed this could be annoying..
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • My hardrive just got diagnosed as 'faulty' even though its only 1year8months old!!! I had adobe bridge installed on the computer with many picture files that included raw images. How can I get these raw files back after computer died?

    computer did not start up one day. it was a white screen
    took it to a mac bar and they said the diagnosis was a faulty hard drive
    I had backed up most of my images ( i am a photographer)
    had not backed up atleast 6 files full of raw images!!!!
    they suggested sending it to a data recovery specialist which would cost around $500!
    I am not getting the answers I need on how, why, or what is going to be recovered or if raw picture files will be able to be saved.
    Not sure what to do next because I dont have loads of extra money laying around to pay for something that should have not occured in the first place if I was actually sold a good computer.
    payed $1095 for this imac and it only lasted just under 2 years. I feel cheated and scammed! Has any one else gone through this same thing?? what did you do?

    If it is only 20 months old it is still covered by the 3-year Applecare.
    You did take out Applecare didn't you?
    I had backed up most of my images ( i am a photographer)
    had not backed up atleast 6 files full of raw images!!!!
    Why did you, as a photographer, not make several backups, not just one or a partial one, of your material?

  • How to create a par file that includes an image and a .swf file

    Hi everyone,
    I have a requirement to create a <b>.par file which will contain a .swf file and a .gif file</b>.
    Can anyone please tell me the steps to do so.
    Thanks in advance

    Thanks Ranjeet for the quick reply.
    I have created a portal project and placed the .swf file and the .gif file in the images folder and deployed it to the server. I downloaded the .par file and chked that it contained the .swf and .gif files. But when i run the application it <b>does not show me the .swf file</b> . An icon with a cross mark appears instead. I have flash player installed on my PC .The .gif file when run works fine but not the .swf file.
    Can anyone tell me a workaround for this ?

  • I have burned a DVD using I-DVD with pictures from Iphoto and I am wondering why the metadata that includes the Faces tags are not showing up in the original files on the burned DVD?

    Request for help

    Faces is not a standard and has no place to go in metadata - in iPhoto you can export including much of the metadata by chencking all of the boxes when you export - no idea at all what iDVD does - better to ask in the iDVD forum
    LN

  • Problem in executing PHP from a JSP page

    Thank u " gimbal2 " for ur reply.
    I have already configured those things(connecting Apache and Tomcat with Tomcat connector mod_jk).
    Now i have written a .jsp file which includes a .php file.
    The server script in the .jsp file is getting executed but the server script in .jsp file not getting executed.
    i think mod_jk connector is nor forwarding the PHP request to Apache.
    How to find where the problem is and how to solve that.
    somebody help me.
    Subbu,
    [email protected]

    So in reality your HTML looks like this:
    <form name="formq">
      <form name="form1">
      </form>
    </form>And your function that gives you problems is written like this:
      document.form1.action="../dashboard/projects.jsp"
      document.form1.submit();While the function written like this works (but not the way you want...)
      document.formq.action="../dashboard/projects.jsp"
      document.formq.submit();Maybe try something like this in the JS function:
      document.formq.form1.action="../dashboard/projects.jsp"
      document.formq.form1.submit();But I would think this is a poor design. Better to have one form, and different submit buttons to perfom different functions:
    <form name="formq" action="../dashboard/project" method="post">
      <input type="submit" name="submit" value="Complete"/>
      <input type="submit" name="submit" value="Partial"/>
    </form>the URL ../dashboard/project points to would be a mapping to a Servlet, which would check on the value of the submit parameter and do the appropriate action:
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
      String command = request.getParameter("submit");
      String projectid = request.getParameter("projectid");
      if ("Complete".equals(command))
        request.getRequestDispatcher("../dashboard/projects.jsp").forward(request, response);
      else if ("Partial".equals(command))
        response.sendRedirect("../dashboard/projects.jsp?projectid="+projectid);
      else
        //probably an error, or do something else...
    }This allows you to do two different actions with one form submitted to the same place, and eliminates the necessity of javascript. You could do the samething within the JSP (projects.jsp) as well, but I like to keep the flow control in servlets...

Maybe you are looking for

  • Setting default value in dynamic parameter

    Post Author: gazala CA Forum: General I have a dynamic parameter which is also displaying All static value as first item in th list.I want to make ALL as default in the parameter but its giving problem.Problem is when i set ALL as default it doesn't

  • CPU and NB cooling queries...

    Hello to all... I'm wondering if anyone has removed the MSI lightshow heatsink and fan combo from the northbridge chip and put on something else, say like the Zalman NB coolers? I was thinking of the ZM-NB47J cooler but as the mobo has those slots in

  • Product and SWCV best practice

    We have a 3rd party Product  that tend to change product versions frequently as once in 3-5 month. as SAP Software logistics mechanisem is based on hierrachy of Product->product version->SWCU->SWCV My quesion is : what is the best way to maintain thi

  • Need documentation for writing GPIB drivers for RTOS-32 using Borland C 5.51

    Greetings, I need to develop GPIB drivers (using the NI GPIB card) for the RTOS-32 operating system (by On-Time). I am using Borland C 5.51 as the compiler. I am looking for info/examples on writing/porting low level drivers for the GPIB. The example

  • Mp4 Videos in ios 5 do not start from last stop

    Hi, Since I updated my iphone 4 to ios 5 (and 5.0.1) my movies / mp4 videos in the video app will always start from the beginning even though I set "Start from last stopp" (sorry, something like that in german) in the settings. I have some videos on