Hans Javaserver 3 book example not working

Hello,
This is from Hans Javaserver Pages Third edition
<%-- Verify that the user is logged in --%>
<c:if test="${validUser == null}">
<jsp:forward page="login.jsp">
<jsp:param name="origURL" value="${pageContext.request.requestURL}" />
<jsp:param name="errorMsg" value="log in first." />
</jsp:forward>
</c:if>
The above example does not seem to work.
The code below seems to work
<%-- Verify that the user is logged in --%>
<c:if test="${validUser.name == null}">
<jsp:forward page="login.jsp">
<jsp:param name="origURL" value="${pageContext.request.requestURL}" />
<jsp:param name="errorMsg" value="log in first." />
</jsp:forward>
</c:if>
Any ideas why his example is not working on Tomcat 5.0?
Thanks
Frank

Hi I was trying the same thing and was wondering why it doesn't accept the origURL, well it never takes the value of it at all and just skips the page that was requested and goes to mail.jsp no matter what.
<c:choose>
<c:when test="${! empty param.origURL}" >
<c:redirect url="${param.origURL}" />
</c:when>
<c:otherwise>
<c:redirect url="main.jsp" />
</c:otherwise>
</c:choose>
The value of origURL is never passed to this authentication page! I would also like to know the reason why?
Also I have a question to your last piece of code that works: where is the name parameter taken from? Is it the same as userName that is passed as a parameter from the login page? or is it something else? I'd really appreciate your help...
<c:if test="${validUser.name == null}">

Similar Messages

  • My mac book is not working so i can no longer use my mac to back up my note in my phone and unfortunately i dont have outlook on my pc is there a way to get all my old notes from my 3gs to my 4s iphone?

    my mac book is not working so i can no longer use my mac to back up my note in my phone and unfortunately i dont have outlook on my pc is there a way to get all my old notes from my 3gs to my 4s iphone?

    Reset, hold both home and power buttons until the iPhone begins to start, try this a few times if necessary. If still problem, you may have to just Restore your iPhone to get it working. In the future sync your iPhone with iTunes routinely and when it contains important data, iCloud when set correctly will do this for you continuously.

  • Mac book is not working. The logo is there and the sound but the circle keeps spinning. Can only bring up the utlities screen.

    My mac book is not working. The sound is there and the logo on start up. The dial keeps spinning and never stops. I can only bring up the utilities screen and then I am stuck. PLEA

    Try the tips here:
    Get help with the slot-loading SuperDrive on your Mac computer - Apple Support
    Especially holding the trackpad mouse button upon restart and resetting the SMC.
    If it's stuck in there you might have to make a "guide" out of two thin pieces of plastic. Post back if that's the case.

  • Address Book is Not Working

    Suddenly Address Book is not working.  I can type addresses into Mail, but if I try to click on names directly from Address Book, nothing happens.  It has been working fine until today.  Contacts is fine; all addresses are there, but I wanted to enter several people from Address Book and nothing prints.  How can I fix it?  I have an Imac with Mountain Lion.

    It is a Maverick bug and there is a lot of discussion on it in the Mavericks section.

  • Canon file RAW CR2 and mac book pro not working ...?

    Canon file RAW CR2 and mac book pro not working ...?
    I'm using Digital photo professional software
    and i'm using canon camer 5D mark2 and mac book pro 13inch last version
    i'm trying to shooting directly by Digital photo professional, Remote shooting but the RAW file con't open by the software or mac preview but with photoshop Cs5 can open
    is any one have the same issu ? and how fix it please
    What i did :
    - update camera RAW
    - Update Mac software
    - update Digital photo professional
    Regards,,
    Bandar

    Dear all
    is there any solution  for that ?

  • My mac book pro 17 inch , 2008 year , display went dark, and the steps in "everthing Mac" book did not work, any ideas?

    my mac book pro 17 inch , 2008 year , display went dark after rebooting from origianl disc, and the steps in "everthing Mac" book did not work, any ideas?

    The router might be bad or incompatible, but let's be optimistic.
    On System Preferences, go to Network/Advanced/PPP. Only two items should be checked: Connect Automatically When Needed and Disconnect when switching user accounts. Uncheck everything else. Now, click Okay on the end of the page. The next time you're online, you shouldn't be disconnected.
    If you still get disconnected like before, we might be dealing with a router issue - which can get rather complicated.

  • I downloaded a book in iBooks store.The e-book is not working correct.

    I downloaded a book in iBooks store. Titel: Zeitenzauber from Eva Völler. The e-book is not working correct. There are always errors on most of the pages: error at column, etc. I already downloaded the book again. But still the same problem. Any idea what I can do?

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • NotifyAll example not working

    Folks,
    I am trying to understand how threading works, and got this example from a book, can you please help me understand why it is not working.
    class Reader extends Thread
       Calculator c;
       public Reader(Calculator calc)
          c = calc;
       public void run()
          synchronized(c)
             try
                System.out.println("Waiting for calculation...");
                c.wait();
                System.out.println("I am just after the wait()");
             catch(InterruptedException e) {}
             System.out.println("Total is: " + c.total);
       public static void main(String[] args)
          Calculator calculator = new Calculator();
          calculator.start();
          new Reader(calculator).start();
          new Reader(calculator).start();
          new Reader(calculator).start();
    class Calculator extends Thread
       int total;
       public void run()
          synchronized(this)
             for(int i=0; i<100; i++)
                total += 1;
             notifyAll();
    }When running it:
    D:\Test>java Reader
    Waiting for calculation...
    Waiting for calculation...
    Waiting for calculation...
    --> it never returns......

    that was good....and fast....
    I modified the code to be:
    class Reader extends Thread
       Calculator c;
       public Reader(Calculator calc)
          c = calc;
       public void run()
          synchronized(c)
             try
                System.out.println("Waiting for calculation...");
                c.wait();
                System.out.println("I am just after the wait()");
             catch(InterruptedException e) {}
             System.out.println("Total is: " + c.total);
       public static void main(String[] args)
          Calculator calculator = new Calculator();
          calculator.start();
          new Reader(calculator).start();
          new Reader(calculator).start();
          new Reader(calculator).start();
    class Calculator extends Thread
       int total;
       public void run()
          synchronized(this)
             try
                for(int i=0; i<100; i++)
                   total += 1;
                   Thread.sleep(50);
                notifyAll();
             catch(InterruptedException e)
                e.printStackTrace();
    }and it worked just fine....thanks much

  • The Software that came with my book does not work. CISCO CCENT / CCNA ICND1 by wendell odom

    Hello this is my first post on cisco support and hope I can get some help. I recently purchased the book CISCO CCENT / CCNA ICND1 by wendell odom and when I used the CD to install the Pearson Practice exams, it does not work. I tried everything! It even asks for a activation code, which on the CD It says "Refer to the Activation Code Included in the DVD Sleeve when Registering Pearson IT Certification Practice Test Software"I don't see anything related to a Activation Code anywhere on the CD OR on the sleeve! So now I can't use that.
               The Network simulator Wendell odom uses in his videos is already outdated it seems and I can't get mine to work. Why? Because I bought this book in hopes of this being a beginner book and praying the person won't skip information to actually set up the book. So now the videos are useless because I can't connect because I have no idea how...
              The Network Simulator lite, wow 3/3 When giving me software to use. The Prompt command does not work, Only the enter key will work but when I try to put in a password I can't hit anything else but enter.
                 I hope I can get help from a more official member as to seeing how I bought this book and I can read but whats really the point if I don't have the hands on training?

    Keunepete,
    When I ordered my books for the ICND1 and ICND2, they came with a CD in the back pocket (sleeve) of the book. Along with the CD was a thick piece of paper that had the activation code on it. It was a white, square piece of paper with big black print on it. Did you buy your book used? Was the CD sealed in the back pocket?
    -Zach

  • Adding Faces to Address Book Contacts-Not working!

    I tried adding some faces to my Address book's contacts, but the "Face" icon, that is supposed to link you to your iPhoto Library does not work.  It is dimmed.
    And choosing my iPhoto Library instead, in hopes of being able to access my photos with faces, does not get around this problem.
    Anyone know of a fix?
    Thanks.

    I placed this question up here almost two years ago, and the problem has since resolved itself.  I think because I have upgraded my mac's operating system (OS) several times since then.
    You might want to check and see if you're using the latest version of Mac OS X (currently 10.8.4).  If you're not up-to-date, go into the App Store on your Mac and see if there is an OS update waiting for you.  That might help.
    Good luck.

  • JSF Getting Started Example not Working

    I've installed and configured JSF according to CoreJSF 1st Chapter example "A simple JSF Application" (available at http://horstmann.com/corejsf/). The only different thing i've done is to put the jsp pages in a separate folder within the root web application folder. The JSF seems to be properly configured, since i'm able to see the UI components in the login page. However, once I click login button, the application takes me once more to the login page (same page that put the request). I figure it is a problem with the navigation file, I've changed the faces-config.xml including "jsf/welcome.jsp" as target since "jsf" is the separate directory I created for JSP files. I does not work (not getting exceptions though). Any prompt help will be highly appreciated.
    These are the files:
    webapproot/jsf/index.jsp
    <html>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
    <head>
    <title>A Simple Java Server Faces Application</title>
    </head>
    <body>
    <h:form>
    <h3>Please enter your name and password.</h3>
    <table>
    <tr>
    <td>Name:</td>
    <td>
    <h:inputText value="#{user.name}"/>
    </td>
    </tr>
    <tr>
    <td>Password:</td>
    <td>
    <h:inputSecret value="#{user.password}"/>
    </td>
    </tr>
    </table>
    <p>
    <h:commandButton value="Login" action="login"/>
    </p>
    </h:form>
    </body>
    </f:view>
    </html>
    webapproot/jsf/welcome.jsp
    <html>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
    <head>
    <title>A Simple Java Server Faces Application</title>
    </head>
    <body>
    <h:form>
    <h3>
    Welcome to Java Server Faces,
    <h:outputText value="#{user.name}"/>!
    </h3>
    </h:form>
    </body>
    </f:view>
    </html>
    webapproot/WEB-INF/faces-config.xml
    <faces-config>
         <navigation-rule>
         <from-view-id>jsf/index.jsp</from-view-id>
         <navigation-case>
         <from-outcome>login</from-outcome>
         <to-view-id>jsf/welcome.jsp</to-view-id>
         </navigation-case>
         </navigation-rule>
         <managed-bean>
         <managed-bean-name>user</managed-bean-name>
         <managed-bean-class>co.edu.unal.dnic.licapa.capa.UserBean</managed-bean-class>
         <managed-bean-scope>session</managed-bean-scope>
         </managed-bean>
    </faces-config>
    webapproot/WEB-INF/web.xml
    <web-app>
         <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
         <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
         <servlet-name>Faces Servlet</servlet-name>
         <url-pattern>*.faces</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
         <welcome-file>/index.html</welcome-file>
         </welcome-file-list>
         <display-name>DNIC - Capacitaci�n 1.0.1</display-name>
         <description>
         DNIC - Capacitaci�n 1.0.1
    </description>
    </web-app>
    Since I'm not getting any java exceptions I figure the UserBean class is working properly.
    Thank you......
    Julian

    try to put / at the beginning of the from-view-id and to-view-id

  • Field links in Address Book do not work

    "A left click in the field of Address Book opens a contextual menu" does not work. All the fields in my Address Book are light gray, and however I click do, not yield any menu. I know they did a while ago, but did not record with what update this feature became disabled. Any explanation and solution? Thank you!

    Hi Ludwig,
    Thank you for letting us know about the issue with the links in the document. We will work to fix it.
    I believe the document you are referring to is called "SAP Discovery Demonstration Access"  which can be found at the bottom of the How To Set Up your Discovery System page and not the "Quick Guide", as the "Quick Guide" doesn't contain any links to demos/scenarios.
    In the mean time please go to the Out Of The Box Demonstrations section on the website, you will see there the links to all the demos:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/5f3caa50-0e01-0010-73b2-ceb94c05e8a1 [original link is broken]
    Regards,
    Itai

  • SISO OFDM TDD Example not working

    I was trying to use SISO OFDM example.
    But to surprise Its not working in both the two cases:-
    1. Loopback over air (.GVI gives no error but VLC is not receiving ant stream)
    2 No loopback : An error is returned on turning on the Base station:-
    The mobile station parameters are as in below figure:
    Can somen one explain the source of inusoid wave? I am surprised at it!
     

    Have you ever get the SISO OFDM TDD Example work with two device?
    Currently, I am doing the SISO OFDM TDD Example like your work with two USRP-RIO 2953R. I can do streaming within one USRP-RIO with loop back selection in the example, but when it comes to two USRP-RIO streaming, one is base station and the other is UE,  but the demo seems to be not working.

  • Core/examples/sessions/Broker example not working

    Guys
    I am trying the example with Oracle database instead of the HSQL database. I replaced the driver & url strings and put the classes12.jar in the classpath
    But I continue to get the following error. Can someone please tell me what I am missing.
    D:\toplink\examples\core\examples\sessions\broker>D:\JDev9i\jdk\bin\java.exe -classpath ""D:\JDev9i\jdk\lib\tools.jar";"d:\to
    plink\ant\lib\jaxp.jar";"d:\toplink\ant\lib\jakarta-ant-1.4.1-optional.jar";"d:\toplink\ant\lib\crimson.jar";"d:\toplink\ant\
    lib\ant.jar";.;d:\toplink\core\lib\toplink.jar;D:\JDev9i\jdbc\lib\classes12.jar;d:\toplink\core\lib\toplink.
    jar;D:\JDev9i\jdbc\lib\classes12.jar" -Dant.home=d:\toplink\ant -Dtl.home=d:\toplink -Dwls61.home= -Dwls70.home= -Dwas.home=
    -Doracle.home=D:\JDev9i\OC4J903 -Dexamples.home=d:\toplink\examples -Dtoplink.dir=d:\toplink\core\lib -Dtoplink.library=topli
    nk.jar,xerces.jar -Dtoplink.weblogic.path=d:\toplink\wls_cmp\lib\tl_wlsx.jar -Dtoplink.was.path=d:\toplink\was_cmp\lib\tl_wa
    sx.jar -Dhsql.path=d:\toplink\HSQL\lib\hsqldb.jar -DDEBUG=on org.apache.tools.ant.Main runExample -DtestClass=examples.sessions.broker.Demo
    Buildfile: build.xml
    init:
    verify.build.done:
    runExample:
    [java] 2003.05.19 03:54:35.625--DatabaseSession(11)--Thread[main,5,main]--Connection(12)--TopLink, version:TopLink - 9.0
    .3 (Build 423)
    [java] 2003.05.19 03:54:35.685--DatabaseSession(11)--Thread[main,5,main]--Connection(12)--connecting(DatabaseLogin(
    [java] platform => OraclePlatform
    [java] user name => "asdfbf"
    [java] datasource URL => "jdbc:oracle:thin:@localhost:fims"
    [java] ))
    [java] 2003.05.19 03:54:35.705--DatabaseSession(11)--Thread[main,5,main]--EXCEPTION [TOPLINK-4003] (TopLink - 9.0.3 (Bui
    ld 423)): oracle.toplink.exceptions.DatabaseException
    [java] EXCEPTION DESCRIPTION: Configuration error. Class [oracle.jdbc.driver.OracleDriver] not found.LOCAL EXCEPTION ST
    ACK:

    One more thing to add:
    I am not able to get any of the examples to work with Oracle database. Again the only thing I suppose I need to change are the folloowing lines in the EmployeeProject.java
         login.usePlatform(new oracle.toplink.internal.databaseaccess.OraclePlatform());
         login.setDriverClassName("oracle.jdbc.driver.OracleDriver");
         login.setConnectionString("jdbc:oracle:thin:@localhost:1522:fims");
         login.setUserName("kumarv");
         login.setEncryptedPassword("7AD96CD575D1A7FCAA504BA7E4FC");
    Also one line change in the sessions.xml file to use the OraclePlatform instead of the HSQLPlatform.
    Has any one got these to work with Oracle, Any help is really appreciated.
    classes12.jar is in the classpath so I don;t understand why I get the execption that:
    [java] EXCEPTION DESCRIPTION: Configuration error. Class [oracle.jdbc.driver.OracleDriver] not found.
    [java] oracle.toplink.exceptions.DatabaseException oracle.toplink.exceptions.DatabaseException.configurationErrorCla
    ssNotFound(java.lang.String)
    Thanks

  • VideoPhoneLabs example not working

    Dear dev-team, could you also give more information about why
    the example-application (VideoPhoneLabs.swf) does not work, when I
    upload all the assets (not reg.cgi, while I want to use the
    Stratus-service) to a server (
    http://work.joeyvandijk.nl/stratus/VideoPhoneLabs.html).
    I am connected to the Stratus-webservice, but I get an
    idManagerError but does not know how I can solve this.
    I think it has to do with my id, but when I login to
    adobe.com and try to retrieve an ID I get the same which I am using
    at above example. So, I think my ID is not blocked or something.
    And I know that the Stratus-webservice is not down while your
    online version of the VideoPhoneLabs is working.
    I see in my error:
    Error #2048: Schending van beveiligingssandbox:
    http://work.joeyvandijk.nl/stratus/VideoPhoneLabs.swf
    kan geen gegevens laden van
    rtmfp://stratus.adobe.com/bc25bb58c9cf187e4178b40e-c16df88ec798/?identity=80b46c214f4c830 f28186fa40febc0a4a8c323393958ea99a0075b228d870e50&username=joeyvandijk
    which says that it cannot load data from the Stratus-service
    due to a SecurityError.
    So, I cannot run it locally OR on a webserver. Do you have
    some tips what could be the cause?
    Thnx in advance!
    :D

    Hi,
    I am trying the VideoPhoneLabs app, but still do not work.
    Please give some advices.
    I have done the procedure according to ReadMe.txt, then
    reg.cgi copied into my local web server. After that i got some
    error message as following when i accessed to it from another pc.
    [In the debugger window of FP10]
    TypeError: Error #1009: null <ono: sorry for japanese, i
    deleted them>
    at VideoPhoneLabs/onDisconnect()[C:\Users\ono\Documents\Flex
    Builder 3\VideoPhoneLabs\src\VideoPhoneLabs.mxml:548]
    at
    VideoPhoneLabs/idManagerEvent()[C:\Users\ono\Documents\Flex Builder
    3\VideoPhoneLabs\src\VideoPhoneLabs.mxml:484]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at HttpIdManager/httpFault()[C:\Users\ono\Documents\Flex
    Builder 3\VideoPhoneLabs\src\HttpIdManager.as:120]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()[C:\autobuild\3.2.0\framewor ks\projects\rpc\src\mx\rpc\AbstractInvoker.as:170
    at mx.rpc.http::HTTPService/
    http://www.adobe.com/2006/flex/mx/internal::processResult()[C:\autobuild\3.2.0\frameworks\ projects\rpc\src\mx\rpc\http\HTTPService.as:852
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()[C:\autobuild\3.2.0\frameworks\ projects\rpc\src\mx\rpc\AbstractInvoker.as:188
    at
    mx.rpc::Responder/result()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responde r.as:43]
    at
    mx.rpc::AsyncRequest/acknowledge()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\ AsyncRequest.as:74]
    at
    DirectHTTPMessageResponder/completeHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\s rc\mx\messaging\channels\DirectHTTPChannel.as:403]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    [In the apps STATUS window]
    Connecting to rtmfp://stratus.adobe.com
    NetConnection event: NetConnection.Connect.Success
    Connected, my ID:
    c0e8c83410b0dbf0b66644b8e2418abb67a0d3a31ba42d55af961c140db0bf70
    ID event: idManagerError
    Error description: HTTP error:
    (mx.messaging.messages::AcknowledgeMessage)#0
    body = "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2
    Final//EN">
    <html>
    <head>
    <title>Index of /VideoPhoneLabs</title>
    </head>
    <body>
    <h1>Index of /VideoPhoneLabs</h1>
    <table><tr><th><img
    src="/icons/blank.gif" alt="[ICO]"></th><th><a
    href="?C=N;O=D">Name</a></th><th><a
    href="?C=M;O=A">Last
    modified</a></th><th><a
    href="?C=S;O=A">Size</a></th><th><a
    href="?C=D;O=A">Description</a></th></tr><tr><th
    colspan="5"><hr></th></tr>
    <tr><td valign="top"><img
    src="/icons/back.gif" alt="[DIR]"></td><td><a
    href="/">Parent
    Directory</a></td><td> </td><td
    align="right"> - </td></tr>
    <tr><td valign="top"><img
    src="/icons/unknown.gif" alt="[ ]"></td><td><a
    href="AC_OETags.js">AC_OETags.js</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">8.4K</td></tr>
    <tr><td valign="top"><img
    src="/icons/text.gif" alt="[TXT]"></td><td><a
    href="VideoPhoneLabs.html">VideoPhoneLabs.html</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">4.2K</td></tr>
    <tr><td valign="top"><img
    src="/icons/unknown.gif" alt="[ ]"></td><td><a
    href="VideoPhoneLabs.swf">VideoPhoneLabs.swf</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">735K</td></tr>
    <tr><td valign="top"><img
    src="/icons/unknown.gif" alt="[ ]"></td><td><a
    href="playerProductInstall.swf">playerProductInstall.swf</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">657 </td></tr>
    <tr><th
    colspan="5"><hr></th></tr>
    </table>
    <address>Apache/2.2.9 (Fedora) Server at 192.168.1.101
    Port 80</address>
    </body></html>
    clientId = "DirectHTTPChannel0"
    correlationId = "D8807C92-CB35-13AA-386C-3B10784B610C"
    destination = ""
    headers = (Object)#1
    DSStatusCode = 200
    messageId = "C3AF012E-AC2B-464D-C982-3B1078DAB158"
    timestamp = 0
    timeToLive = 0
    Disconnecting.
    Hanging up call
    NetConnection event: NetConnection.Connect.Closed
    ID event: idManagerError
    Error description: HTTP error:
    (mx.messaging.messages::AcknowledgeMessage)#0
    body = "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2
    Final//EN">
    <html>
    <head>
    <title>Index of /VideoPhoneLabs</title>
    </head>
    <body>
    <h1>Index of /VideoPhoneLabs</h1>
    <table><tr><th><img
    src="/icons/blank.gif" alt="[ICO]"></th><th><a
    href="?C=N;O=D">Name</a></th><th><a
    href="?C=M;O=A">Last
    modified</a></th><th><a
    href="?C=S;O=A">Size</a></th><th><a
    href="?C=D;O=A">Description</a></th></tr><tr><th
    colspan="5"><hr></th></tr>
    <tr><td valign="top"><img
    src="/icons/back.gif" alt="[DIR]"></td><td><a
    href="/">Parent
    Directory</a></td><td> </td><td
    align="right"> - </td></tr>
    <tr><td valign="top"><img
    src="/icons/unknown.gif" alt="[ ]"></td><td><a
    href="AC_OETags.js">AC_OETags.js</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">8.4K</td></tr>
    <tr><td valign="top"><img
    src="/icons/text.gif" alt="[TXT]"></td><td><a
    href="VideoPhoneLabs.html">VideoPhoneLabs.html</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">4.2K</td></tr>
    <tr><td valign="top"><img
    src="/icons/unknown.gif" alt="[ ]"></td><td><a
    href="VideoPhoneLabs.swf">VideoPhoneLabs.swf</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">735K</td></tr>
    <tr><td valign="top"><img
    src="/icons/unknown.gif" alt="[ ]"></td><td><a
    href="playerProductInstall.swf">playerProductInstall.swf</a></td><td
    align="right">24-Mar-2009 17:35 </td><td
    align="right">657 </td></tr>
    <tr><th
    colspan="5"><hr></th></tr>
    </table>
    <address>Apache/2.2.9 (Fedora) Server at 192.168.1.101
    Port 80</address>
    </body></html>
    clientId = "DirectHTTPChannel0"
    correlationId = "7863A499-3906-0CC3-1AED-3B1078EAAFFE"
    destination = ""
    headers = (Object)#1
    DSStatusCode = 200
    messageId = "716811AE-4A81-3468-4DAA-3B107945F936"
    timestamp = 0
    timeToLive = 0
    Disconnecting.
    Hanging up call
    Thank you for any advices.
    Ono Keiji

Maybe you are looking for

  • Old podcasts not deleting in iTunes 11.1.5

    I have iTunes 11.1.5 on my Mac and iTunes 11.1.5.5 for Windows but for some reason they are not deleting and keeping the latest podcasts.  I have the Automatically Download option set to most recent episode & episodes to keep most recent episode and

  • Create a symbol and change its id

    Hi edge people I know how to create a symbol dynamicly but I want to change the id of the element to something other then random var mySymbolObject = sym.createChildSymbol("imageBox","stage"); mySymbolObject.setVariable("id", "newname"); I need to do

  • SCCM 2012 secondary server installation failing

    I am trying to install the SCCM 2012 secondary server remotely and when i check the configmgrsetup.log and i see below error. I tried to check the registry at HKLM\software\microsoft\sms and i see a site code as DRW but i had given a site code DFW. 

  • WDDeploymentException

    hi I have the following problem: When trying to load a pdf interactive form I get a : com.sap.tc.webdynpro.services.exceptions.PDFDocumentCreationException: When I click the 'Click here to download the error pdf' link the following error displays: co

  • Caracters viuw problems when uploading site

    some turkische caracters disapear when uploading site: i use DW 3 the caracter set is Unicode UTP-8 php code is: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9" /> normal localhost vieuw is ok uploading on webserver give probl