Putting Collapsible region in an include file?

Hello,
Has anyone been able to put a collapsible region inside an
include file
(from the Developer's Toolbox extension)?
I had grown found of the include (from InterAkt) and was
wondering if I
could put some of the Spry Widgets in an include file.
Not sure how the JS that Spry would use would be affected.
Thanks.
Chris

Just want to mention that I do see a difference when I use the explode attribute on the jws task (its not on the jwsc task like I mentioned before).
The war file containing the service is expanded.

Similar Messages

  • Where to put PHP included files?

    I'm trying to transfer website from my PC to MAC,
    hoping that I can finish it without changing any code.
    But many of my php files have "require()" function,
    and I can't find the php included files' folder.
    Please help~~

    I have a webpage on http://mysite.com/myproject
    All my project files are in /Library/WebServer/Documents/myproject
    (index.html, test.php, etc.)

  • Unable To Include Files In iOS Package

    Hi,
    I an using the latest release version of Flash Builder, trying to package an app for the iPad. I have an AIR application that I created to run on a desktop, and have modified it to run on the iPad. It works fine, however I cannot package the need resource files it uses, such as jpg, xml, swf, and flv files within the ipa file using Flash Builder. It seems that if I select more than 30-40 of these types of files to include, Flash Builder will not compile the ipa file without some sort of error, the most common one talks about:
    "Cannot run program "java.exe" (in directory "C\Users\lee\AppData\Local\Temp\AOT1308010984915"): CreateProcess error=206, The filename or extension is too long"
    Now I am guessing that Flash Builder is appending all of my selected files to a command line string or something somewhere, and so it can't handle that long of string on the command line. If I stick to less than 30 files, it works fine, but if I try and the 1000 or so files that I need to, it will not work.
    This app would never be in the app store, but rather on internal company iPads. The reason for so many files is the number of products the app covers, and the number of languages it supports. So yes the ipa file would be about 500Mb, but that should not be an issue, since an ipa file is basically a zipped archive. I think this is a bug though in Flash Builder; the program also becomes unresponsive when trying to access the include file list located in Project Properties -> ActionScript Build Packaging -> Apple iOS settings dialog. It make take several minutes before FB becomes responsive again when working with this number of files.
    Does anyone have any suggestions?
    thanks

    Hello,
    Since I first encountered this bug, I have always had my asset files in
    subfolders. See the attached screen shot. This is my project folder, and
    every subfolder is included except for the com folder, which for some
    reason FB copied into the bin directory on it's own.
    So I do not think this fixed. In this report, they are not using the same
    number of files as I am, so it is possible that this only works with a low
    number of files.
    thx
    Anirudh Sasikumar <[email protected]>
    06/23/2011 01:26 AM
    Please respond to
    [email protected]
    To
    Keith Lee <[email protected]>
    cc
    Subject
    Unable To Include Files In iOS Package
    Caterpillar: Confidential Green Retain Until: 07/23/2011
    Here is the bug: https://bugs.adobe.com/jira/browse/FB-31616
    The comments seem to indicate that if you put your files in a subfolder
    rather than directly in src, it should work.
    Let us know how it goes.
    -Anirudh

  • How do I get a link to work in an "include" file?

    I have link to a picture in a php web page. <a href="../images/testpic.jpg">
    index.php
    --include/maincontent.inc.php
    --images/testpic.jpg
    I call this file "maincontent.inc.php" from another file "index.php" in the root directory using a php include statement.  <?php include("include/maincontent.inc.php"); ?>
    I have tried absolute links also but nothing seems to work.
    I have had this problem before and just put the include file in the root directory. That works.
    Have had this same problem with a sample from a php book. Figured if the author can do it why can't I :-(.

    Have you tried opening the links in a different browser to verify it's an issue withing FF locally, and not the website/page itself rather than browser specific?

  • Include files?  As in this:  !-- #include file="file.htm" --

    Can anyone get include files to work in iWeb?
    So I made my own header navigation and put it in an HTML snippet widget. It does work great, however I have to put the widget code on every single page, and when I change the header, I need to go back and change all that code.
    I thought I would be clever and instead use one file for the header, and just use the HTML snippet to hold a call to include that file.
    That doesn't work. I managed to find where the widget code is stored, and changed a filename to .shtml, and a few other things, but no dice.
    Does anyone know how to use an include file from within iWeb without it being more work than just replacing whatever code you want to include in the first place?
    Thanks!

    Are you using .Mac as your host? If so, I think it does not support doing what you want. If not, I think the server has to be configured to recognize .shtml correctly.

  • Problems using a php include file with an Add-on Domain.

    Hello,
    I am having an issue getting a php include file to work with a new add-on domain I am working on getting up and running.
    This include file is one that supplies the rest of the php code to a contact form page.  It works as it should for my original domain, same file no difference.  I made sure that the files hosted on the remote server had all read, write, execute permissions turned on.
    I have tried putting the include file in several different locations as a test, such as:
    I don't remember the exact name of the include file at the moment, as I'm at work so I will designate it below as 'includefile.php'.
    file path for add-on domain - ../public_html/lorentzpainting/includes/includefile.php
    alternatives I tried moving the file to - ../public_html/lorentzpainting/includefile.php
    When none of those options worked, I tried just pointing the path towards other places on the server that have the include file such as:
    ../public_html/includes/includefile.php
    ../public_html/includefile.php
    What can I do here?  Should I just give up on using the include and put all the code back in the page?  Doesn't seem like it should be this complicated, it works perfectly fine for my other site.. and still does.
    Thanks ahead of time to those who may assist me.

    here is the contents of the include file:
    <?php
    if (isset($_SERVER['SCRIPT_NAME']) && strpos($_SERVER['SCRIPT_NAME'],
    '.inc.php')) exit;
    // remove escape characters from POST array
    if (PHP_VERSION < 6 && get_magic_quotes_gpc()) {
      function stripslashes_deep($value) {
        $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
        return $value;
      $_POST = array_map('stripslashes_deep', $_POST);
      // assume that there is nothing suspect
        $suspect = false;
        // create a pattern to locate suspect phrases
        $pattern = '/Content-Type:|Bcc:|Cc:/i';
          // function to check for suspect phrases
      function isSuspect($val, $pattern, &$suspect) {
        // if the variable is an array, loop through each element
        // and pass it recursively back to the same function
        if (is_array($val)) {
          foreach ($val as $item) {
            isSuspect($item, $pattern, $suspect);
        else {
          // if one of the suspect phrases is found, set Boolean to true
          if (preg_match($pattern, $val)) {
            $suspect = true;
    //check the $_POST array and any subarrays for suspect content
    isSuspect($_POST, $pattern, $suspect);
        if (!empty($_POST['url'])) {
            $suspect = true;
        if ($suspect) {
            $mailSent = false;
            unset($missing);
        } else {
        //process the $_POST variables
        foreach ($_POST as $key => $value) {
            // assign to temporary variable and strip whitespace if not an array
            $temp = is_array($value) ? $value : trim($value);
            // if empty and required, add to $missing array
            if (empty($temp) && in_array($key, $required)) {
                array_push($missing, $key);
            } elseif (in_array($key, $expected)) {
                // otherwise, assign to a variable of the same name as $key
                ${$key} = $temp;
        //validate the email address
        if (!empty($email)) {
            // regex to identify illegal characters in email address
    $checkEmail = '/^[^@]+@[^\s\r\n\'";,@%]+$/';
    //reject the email address if it doesn't match
    if (!preg_match($checkEmail, $email)) {
        $suspect = true;
        $mailSent = false;
        unset($missing);
    //go ahead only if all required fields OK
        if (!$suspect && empty($missing)) {
    //initialize the $message variable
            $message = '';
    // loop through the $expected array
            foreach($expected as $item) {
    // assign the value of the current item to $val
                if (isset(${$item}) && !empty(${$item})) {
                    $val = ${$item};
                } else {
    // if it has no value, assign 'Not selected'
                    $val = 'Not selected';
    // if an array, expand as comma-sparated string
                if (is_array($val)) {
                    $val = implode(',', $val);
    // add label and value to the message body
      $message .= ucfirst($item).": $val\r\n\r\n";
    //limit line length to 70 characters
        $message = wordwrap($message, 70);
    //create Reply-To header
        if (!empty($email)) {
            $headers .= "\r\nReply-To: $email";
    // send it
        $mailSent = mail($to, $subject, $message, $headers);
        if ($mailSent) {
    // $missing is no longer needed if the email is sent, so unset it
            unset($missing); echo('Thank you for contacting Common Wealth Web Solutions');
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>

  • HR ABAP Macro include files?

    Hi all ABAPers,
    I am trying to develope a BAPI using HR ABAP Macro. (Eg RP-EXP-C1-TX ,RP-EXP-C3-TY)
    obviously, ABAP Macro is pretty new to me....
    I have a feeling HR ABAP macro requires me to "Include" some file beforeI can use it.
    Can anyone please let me know what include file I should put it on.
    Any help appreciated!!!!

    Hi,
    before you can use it ABAP macro requires you to define it
    in the program ( or one of its includes) or in table TRMAC.
    In the macro definition you can use tables, files etc.
    e. g. for macro
    AA-BB-DD-XX
    you should code in the program ( or one of its includes):
    DEFINE AA-BB-DD-XX.
    LOOP AT ITAB.
    MOVE-CORRESPONDING ITAB TO ITAB2.
    ITAB2-FIELD1 = 8.
    APPEND ITAB2. " or write or upload etc.
    ENDLOOP.
    END-OF-DEFINITION.

  • Include file based on if condition

    I was wondering if its possible to include a file (or display a file) based on a condition in JSPs.. for example:
    ----------Desired functionality----------------
    <%
    if (myconnection == null)
    // include/display login page
    else
    // display the main page
    %>
    I tried this.. Not working based on my condition... I get both the files displayed in one page..
    ----my code----
    <%
    if (DBcon.con == null)
    out.println("No connection");
    %>
    <%@ include file="Login.jsp"%>
    <%
    if (DBcon != null)
    out.println("connected");
    %>
    <%@ include file="Main.jsp" %>
    -NJU

    If you don't put a { after the if statement, then it's only going to execute the first line after it.  This is always the case, in JSP or otherwise.  Otherwise how would it know when to stop? 
    <%
    if (DBcon.con == null) {
       out.println("No connection");
    %>
    <%@ include file="Login.jsp"%>
    <%
    if (DBcon != null) {
       out.println("connected");
    %>
    <%@ include file="Main.jsp" %>
    <%
    %>

  • How to get information of 'include file', 'table', 'function' from the prog

    Hi all.
    I wanna know which 'include file', 'table', 'function' is used in the program.
    Firstly, I prepared user interface for entering the name of program.
    Secondarly,
    I made the way to confirm whether the program is exising or not by using TADIR.
    And I must use CROSS for getting information of function.
    But at the same time, I will use 'RS_GET_ALL_INCLUDES', 'RS_GET_TABLE_REFERENCES' for getting information of include file or table.
    After that, I have to report by using ALV.
    Then, I will use both of string getting from function by using above function and internal table getting from CROSS.
    How do I put together in  INTERNAL TABLE.

    hi,
    look F1 to abap command <b>scan</b> and <b>read report</b>
    A.

  • Java tags in the include files

    Hi.. I have a code for javatag, which works well if you put it directly into the jsp.. But, if I try to put it as part of the include file, called from the same jsp there is no luck. Code would not be executed. I am using WebSphere server. If any one has any ideas how to make it work, would be greatly appreciated!
    Thank you very much in advance !!
    Hanna

    Hi.. thank you for trying to help me!!
    More details on my problem.. In my application I have a jsp which pworks like a template. We plag in it top nav bar, left nav bar and a content into it. All those three components are include files (HTML + JavaScript content) with extention *.inc.
    To get those files into the jsp, I am using
    <jsp:include page="abc.inc" flush="true"/>
    Because they are not JSPs, I can't use
    <%@ include file="/abc.jsp"%>
    Problem is when I put custom tag
    <ibmstore:getMyTag param="ABCD"/>
    directly in the JSP, I can see the result perfectly..
    But if the same code is inside abb.inc, java code is not executed. There is no error, it is being ignored, only in the source I can see the code. And I do need that tag
    be inside the abc.inc :((
    thank you!!!

  • Include files/documents in the calender

    I love my iPad, but to be able to use it fully as the single work-tool for meetings and stuff it should be possible to include files or documents in the calender (i e links to the files) so that everything is easily accesible from the calender when you arrive at the meeting. Then you would have the invitation in the calender, along with the notes and other documents. I really hope that´s a application in coming upgrades.
    Anyone who know about an app that fixes that?

    Your installer should be putting everything in the data folder you need.  So it should be fine.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Design view + stylesheet on include file

    I'm building a site that uses server-side include files. I
    refer to CSS class names in these include files, but the actual
    stylesheet link is on another page. In design view, the editor does
    not reflect what is in the stylesheet, making it difficult to
    visualize and edit.
    Is there a way to have the editor recognize the stylesheet
    globally for the project? I don't want to put redundant stylesheet
    include statements on every include file just to have the editor
    work properly.
    - James.

    On Thu, 31 Jan 2008 15:55:22 +0000 (UTC), "Diodeus"
    <[email protected]> wrote:
    > Is there a way to have the editor recognize the
    stylesheet globally for the
    >project? I don't want to put redundant stylesheet include
    statements on every
    >include file just to have the editor work properly.
    Apply a design-time style sheet. Press F1, in the index,
    find:
    Design-Time style sheets, using
    Gary

  • Debug ZXM06U02 include file called from RSNAST - outbound PO IDOC

    Hi,
    I have been asked to amend an idoc to include additional fields from the Purchase Order. I have successfully extended the right idoc segments and discovered that the values I need to be added are done at include ZXM06U02. In fact I have hardcoded the 3 values here so that I can test that the hardcoded values are coming out on the Idoc.
    This is all working smoothly however I now need to do the actual work and get the values into the include. However I cant seem to get the debugger to stop at this program/include. I have tried both the standard /h with breakpoints and even WE19 (IDOC test) with debugger but I cant stop at this file to see what information I have available!
    Could someone offer me any advice on how to debug in this situation. I think it may have something to do with the RSNAST as the program in the output - although could be wrong.
    Cheers
    Paul

    Hi Paul,
    Set the dispatch time of the output type which triggers the IDoc in the Purchase Order to '3 Send with application own transaction'. The trigger the output with transaction ME9F (of course after you have put a breakpoint in the include). Now you stop at the breakpoint.
    Regards,
    John.

  • Sharing a .h include file between a C project and Java

    I'm writing a newtowrk utility in Java that uses a lot of constants that are available in a .h file in a C project. In fact, the .h file is the authority as to what the values actually are.
    Is there a standard way or has anyone written a utility that will pull in a C include file to generate constants for Java objects to use?
    In C I have in protocols.h:
    #define ETHERTYPE_IPV4 0x800
    #define ETHERTYPE_FOO 0xF00to turn into
    public class ProtocolsDotH {
    public static final int ETHERTYPE_IPV4 = 0x800;
    public static final int ETHERTYPE_FOO = 0xF00;
    }Or something like that. I could invoke the utility in the make file that compiles and jars my Java app. Any guidance?

    You could use SWIG, the Simple Wrapper Interface Generator (http://www.swig.org). But if you just have a few simple constants this seems a bit heavyweight.
    I can't seem to get SWIG to put the literal values right into the Java file. Here's how you might invoke it with a header file called stuff.h:
    [cdb@merlin forum]$ cat stuff.h
    #define FROB 0x1234
    #define MEAT 0xdeadbeef
    [cdb@merlin forum]$ swig -java -module JStuff stuff.hThis will create some files:
    JStuff.java  JStuffJNI.java  stuff.h  stuff_wrap.cwith JStuff.FROB and JStuff.MEAT, but I don't know how to get swig to put the values right in the Java file. It actually calls a JNI method that it generates in stuff_wrap.c to set the constant values.
    Too bad, but there might be a way, probably via a ".i" file to swig, to put literal constants in the source.
    I guess the bottom line is:
    Probably a simple one-line grep/sed command or perl script would do the trick though.

  • Include file not executing

    Hi guys,
    I have a strange problem using the jstl... An included file is not executing.
    My code
    main.jsp
    <%@taglib uri="http://jakarta.apache.org/taglibs/core" prefix="c" %>
    <html>
         <head>
              <title><c:out value="${article.title}" /></title>
              <link rel="stylesheet" type="text/css" href="webber.css">
         </head>
         <body>
              <table width="100%" border="0">
                   <tr>
                        <td width="200">
                              <jsp:include page="navitem.jsp" flush="true"/>
                        </td>
                        <td>
                             <h3><c:out value="${article.title}" /></h3>
                             <c:out value="${article.text}" escapeXml="false" />
                        </td>
                   </tr>
              </table>
         </body>
    </html>navitem.jsp
    <table width="100%" border="0">
         <c:forEach var="nI" items="${navItem}">
         <tr>
              <td>
                   <a href="<c:out value="${nI.navToURL}" />"><c:out value="${nI.displayText}" /></a><br />
              </td>
         </tr>
         </c:forEach>
    </table>and the resultant html as seen in view source from the browser...
    <html>
         <head>
              <title>My First Test Article</title>
              <link rel="stylesheet" type="text/css" href="webber.css">
         </head>
         <body>
              <table width="100%" border="0">
                   <tr>
                        <td width="200">
                              <table width="100%" border="0">
         <c:forEach var="nI" items="${navItem}">
         <tr>
              <td>
                   <a href="<c:out value="${nI.navToURL} />"><c:out value="${nI.displayText}" /></a><br />
              </td>
         </tr>
         </c:forEach>
    </table>
                        </td>
                        <td>
                             <h3>My First Test</h3>
                             <p>It is the simplest of things.</p>
                        </td>
                   </tr>
              </table>
         </body>
    </html>As you can see, the code in main.jsp is executing fine, but not the code in navitem.jsp. Does anyone have any clues as to why this is happening?
    Thanks in advance
    Elija

    Whoops I think I missed
    <%@taglib uri="http://jakarta.apache.org/taglibs/core" prefix="c" %>
    from navitem.jsp
    however putting that in and trying again results in
    org.apache.jasper.JasperException: javax/servlet/jsp/jstl/core/LoopTagSupport
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356)
         at vss.servlets.ControllerServlet.forwardToJSP(ControllerServlet.java:64)
         at vss.servlets.ControllerServlet.doFind(ControllerServlet.java:59)
         at vss.servlets.ControllerServlet.doGet(ControllerServlet.java:38)
         at vss.servlets.ControllerServlet.doPost(ControllerServlet.java:32)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    root cause
    javax.servlet.ServletException: javax/servlet/jsp/jstl/core/LoopTagSupport
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
         at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:575)
         at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:498)
         at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:822)
         at org.apache.jsp.showarticle_jsp._jspService(showarticle_jsp.java:67)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356)
         at vss.servlets.ControllerServlet.forwardToJSP(ControllerServlet.java:64)
         at vss.servlets.ControllerServlet.doFind(ControllerServlet.java:59)
         at vss.servlets.ControllerServlet.doGet(ControllerServlet.java:38)
         at vss.servlets.ControllerServlet.doPost(ControllerServlet.java:32)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)Any clues as to what I'm doing wrong?
    Thanks in advance
    Elija

Maybe you are looking for

  • Is there a way to change the project timecode in FCPX?

    Is there a way to change the project timecode in FCPX?  So that my sequence can start at 01:00:00:00 or am I stuck with it starting at 0?

  • How can I batch save my adjusted raw images as jpgs in Lightroom 4

    I have a job that I imported to Lightroom 4.  I made adjustments to 40 of the images and would like to batch save these as jpgs with the LR adjustments saved.  So far I know I can save the raws as jpgs but the adjustments are not being saved.  I woul

  • Reports master-detail-detail

    I am trying to have 1 master group with 2 detail groups. However, when I try to manipulate the columns and groups in the data model, I cannot get the main group to have 2 seperate detail groups. Does anyone know a way to do this without having multip

  • Installing ableton live 5 on macbook pro

    I have ableton live 5, but it won't install in macbook pro. I've used it on previous mac, and current pc, but not happy with it. The company says that I have to upgrade it to work with macbook pro, but I don't buy that. That would mean that a current

  • Meaning of mxlc in Oracle Trace file

    I am seeing the following in my trace file: Bind#3 oacdty=01 mxl=128(35) mxlc=36 mal=00 scl=00 pre=00 oacflg=03 fl2=1000010 frm=01 csi=31 siz=0 off=168 kxsbbbfp=ffffffff79f139a8 bln=128 avl=35 flg=01 value="1234 W 1234 West, West Groves City" I am wo