Hello World web site to test my W2K installation...

.... has not worked.
I've created a directory d:/MyApp with a single file index.html and an
associated WEB-INF/web.xml:
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
</web-app>
I've added the following to my weblogic.properties:
weblogic.httpd.webApp.MyWeb=d:/MyWeb
weblogic.httpd.defaultWebApp=MyWeb
When I start the weblogic NT service and try to acces the page with
http://endor I get the following appear in weblogic.log:
Sun Dec 03 21:33:21 GMT+00:00 2000:<E> <HTTP> Could not find Web application
'MyWeb'
java.io.FileNotFoundException: Directory MyWeb\ does not contain
WEB-INF/web.xml
at
weblogic.servlet.internal.dd.DescriptorLoader.<init>(DescriptorLoader.java:2
00)
at weblogic.t3.srvr.HttpServer.loadWARContext(HttpServer.java:648)
at weblogic.t3.srvr.HttpServer.initServletContexts(HttpServer.java,
Compiled Code)
at weblogic.t3.srvr.HttpServer.start(HttpServer.java:442)
at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
at java.lang.reflect.Method.invoke(Native Method)
at weblogic.Server.startServerDynamically(Server.java:99)
at weblogic.Server.main(Server.java:65)
at weblogic.Server.main(Server.java:55)
at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
at java.lang.Thread.run(Thread.java:479)
I've tried a variety of locations for my MyWeb folder and properties
entries. I've also tried setting weblogic.system.listenPort=80 rather than
the default 7001.
I'm stuck. Can anyone suggest a remedy?
Thanks
MArtin

If you later decide that business volume or other considerations merit reexamining this idea, there are many electronic commerce cart-drive web products for Mac OS X, including low cost platforms in te open source community like Joomla, Magento, and zen cart and several paid alternatives. A number of commercial products also exist.
The primary obstacle here is the cost of implementing solutions if customer programming is sought—often $ 20,000 or more to start, with significant ongoing maintenance and expansion costs—or, the diversion of your creative and potentially income generating time and effort to building a site from the ground up, then maintaining and expanding it yourself.
With the in-house talent to pull it off, our company took the build it yourself approach with zen cart. That link shows you the front end of an active and vital electronic commerce site. While we saved the $ 25,000 plus in startup costs we were repeatedly quoted, the ongoing costs in terms of time and diversion of resources of all sorts from our primary activity is substantial.
I think of Etsy as the as the electronic equivalent to a gallery, in which you can show your work without paying the large fees associated with traditional 'brick and mortar' art galleries, and with the benefits of reach which accrue to the internet. You clearly won't benefit from the near magical search engine optimization abilities on zen cart on Etsy, but here is a link with some ideas to compensate for SEO shortcomings, and to drive traffic to your product offerings.

Similar Messages

  • Web site stress test, with https

    I want to to stress-test my web site. Users must log on, and then they
              change from http to https. I'm having difficulties finding a tool that can
              do this (or setting them up to do it).
              I've looked at:
              MS WAS
              WebLoad
              Apache JMeter,
              and I'm presently downloading
              PureLoad
              BenchMarkfactory from Quest.
              Would love to hear good and bad experiences or recommendations from people
              who have done that.
              

              Astroload of Mercury-Interactive is very nice. But you only get 10-user license
              for 7-day evaluation.
              "Alex" <[email protected]> wrote:
              >I want to to stress-test my web site. Users must log on, and then they
              >change from http to https. I'm having difficulties finding a tool that
              >can
              >do this (or setting them up to do it).
              >
              >I've looked at:
              >
              >MS WAS
              >WebLoad
              >Apache JMeter,
              >
              >and I'm presently downloading
              >
              >PureLoad
              >BenchMarkfactory from Quest.
              >
              >Would love to hear good and bad experiences or recommendations from people
              >who have done that.
              >
              >
              >
              

  • Hello, My web site is using the javascript function transformDocument but it looks like it doesn't working in version 6

    Hello,
    My we site is using a lot of ajax, and I have a function transformDocument that it doesn't works in version 6.
    Please help!!!

    Thanks a lot!!

  • Having trouble with Hello World web applet...

    I used this tutorial,
    http://www.particle.kth.se/~lindsey/JavaCourse/Book/Part1/Java/Chapter01/simpleApplet.html
    However, I STILL get a red X on my personal webpage even after compiling everything here.. Another weird thing was, I couldn't even compile it correctly without removing the 'public' before the 'class'.
    Heres my code
    class HelloWorld extends java.applet.Applet
       public void paint(java.awt.Graphics g)
            g.drawString("Hello World!",50,25);
            System.out.println("Hello World!");
    } HTML:
    <applet code="HelloWorld.class" width="150" height="50"></applet>And the error I get.
    load: HelloWorld.class is not public or has no public constructor.
    java.lang.IllegalAccessException: Class sun.applet.AppletPanel can not access a member of class HelloWorld with modifiers ""
         at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)Somebody help me please?

    Oh wait, the java file needed the same name as the class...
    Getting the same problem still:
    oad: HelloWorld.class is not public or has no public constructor.
    java.lang.IllegalAccessException: Class sun.applet.AppletPanel can not access a member of class HelloWorld with modifiers ""
         at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    public class HelloWorld extends java.applet.Applet
       public void paint(java.awt.Graphics g)
            g.drawString("Hello World!",50,25);
            System.out.println("Hello World!");
    null

  • Error in  HelloWorld service using oracle web services manager(Test Engine)

    Hi All,
    I deployed simple hello world web services on jwsdp2.0 and it is running at the following end point address :
    http://localhost:8080/jaxrpc-HelloWorld/hello
    When I use the Test engine provided by oracle web services manager to test this web service,Then I got the following response:
    <Result><ServiceResult name="sayHelloBack"><Data>Could not send: JAXRPCSERVLET28: Missing port information</Data></ServiceResult></Result>
    I am just wondering what is the cause of this behavior?Is it because of compatibility problem between oracle and jwsdp2.0 based web services?As I mentioned earlier that HelloWorld Service is running under jwsdp2.0 & tomcat50-jwsdp and it works fine from jwsdp2.0 based client.I would appreciate your reply.Thanks.
    Kashif

    I had the same problem, but adding the ant/lib directory to classpath helped.

  • Gcc not compile hello world in c?

    hi
    i wrote a hello world example in c language and  i want compile its.object file is created but not created executed file.please write me what command i need and a little hello world in c to test.
    thanks

    A good way to do this is build a simple makefile containing just the following 2 lines:
    CC=gcc
    CFLAGS:=-ggdb -std=c99
    The second line is optional and you may have other preferences.  The -ggdb option adds debugging information for the GNU debugger, gdb; and the -std=c99 allows a program that is compliant with the C99 standard to be compiled.  Name this file 'Makefile' and place it in the same directory as your source code file (i.e. hello.c). Then just type
    $ make hello

  • Testing web site with video

      Hi I have built web site for mobile devices with video (what use RTSP for transfering the video) Please tel me some emulator for testing this site(which look like mobile phone.I know that i can use user agent on Mozila ,but i like some difernet solution)
    Please describe step by step how to achive this.

    The Nokia S60 and S40 SDKs (Software Development Kits) have Windows based emulators. You can download the SDKs from Forum Nokia:
    http://forum.nokia.com

  • Hello i have a problem with my mozilla brower that on my mozilla crose type always show, i'am the click on a text at a web site page this crose be shown.

    normal time for see , type point (I) while u written at a textbox but on my Mozilla web browser i always see this point and while select a text or click on web site and this be shown on first line of pragraph and i click the test its shown on text i tired of this topic please help me thanks.

    You may have switched on caret browsing.
    *http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    *Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    *http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Hello World Test   500 err    ! !!! help me ~~

    I am struding OAF . befoer a few day meet 500 err
    this project Hello World test I am studing at home . Oralce 10g + JDVeloper (10.1.3.3)+ window xp /
    Used dbc file General_Purpose.dbc . i have not ERP server . if hvae not ERP Server not working JDVeloper ?
    I need help .. T . T ;
    ===============================================================================================
    500 Internal Server Error
    oracle.apps.fnd.common.PoolException: Exception creating new Poolable object. at oracle.apps.fnd.common.Pool.createObject(Pool.java:1286) at oracle.apps.fnd.common.Pool.borrowObject(Pool.java:1027) at oracle.apps.fnd.security.DBConnObjPool.borrowObject(DBConnObjPool.java:583) at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:297) at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1719) at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2305) at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2242) at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2100) at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2481) at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2416) at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2397) at oracle.apps.fnd.common.NativeProfileStore.getInstanceName(NativeProfileStore.java:1020) at oracle.apps.fnd.common.NativeProfileStore.<init>(NativeProfileStore.java:159) at oracle.apps.fnd.common.AppsContext.instantiateProfileStore(AppsContext.java:3982) at oracle.apps.fnd.common.AppsContext.makeProfileStore(AppsContext.java:780) at oracle.apps.fnd.common.Context.setProfileStore(Context.java:767) at oracle.apps.fnd.common.Context.setProfileStore(Context.java:749) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:564) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:524) at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1094) at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:225) at OAErrorPage.jspService(_OAErrorPage.java:62) [OAErrorPage.jsp] at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193) at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813) at runregion.jspService(_runregion.java:193) [runregion.jsp] at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298) at java.lang.Thread.run(Thread.java:595)
    **Caused by: oracle.apps.fnd.common.AppsException: java.lang.NullPointerException at oracle.apps.fnd.security.AppsConnectionManager.makeGwyuidConn**
    (AppsConnectionManager.java:904) at oracle.apps.fnd.security.AppsConnectionManager.getGwyuidConn(AppsConnectionManager.java:963) at oracle.apps.fnd.security.AppsConnectionManager.makeGuestConnection(AppsConnectionManager.java:781) at oracle.apps.fnd.security.DBConnObj.<init>(DBConnObj.java:228) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:494) at oracle.apps.fnd.common.Pool.createObject(Pool.java:1273) ... 54 more
    Caused by: java.lang.NullPointerException at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1326) at
    oracle.apps.fnd.security.AppsConnectionManager.makeGwyuidConn(AppsConnectionManager.java:885) ... 62 more
    글 수정: soon
    글 수정: soon

    Thanx Sumit .
    I think . JDVeloper running OC4j server . I can show page http://localhost/8888/em
    but I cant see http://localhost/8988/OA_HTML/runregion.jsp this page 500 err
    I am not using Application server . olny use window xp + Oracle 10g + JDVeloper 10.1.3.3
    I am beginner . I dont Know environment . where I can see info. and setting ?
    so heavy head .. T. T

  • This is ridiculous i want my money refunded immediately! The web site is a joke and it should be alot easier to contact a support team rather than having the whole world read this note through an online forum. Absolutely ridiculous! Someone better contact

    This is ridiculous i want my money refunded immediately! The web site is a joke and it should be alot easier to contact a support team rather than having the whole world read this note through an online forum. Absolutely ridiculous! Someone better contact me back to resolve within 24 hours@

    I feel the same exact way! I am absolutely livid with how much I have been charged over these past few months. How is it I was informed by my school that Adobe would only charge us $9.97. After I signed up, I dropped the course which required us to have Adobe Cloud. Now I check my bank account and I see I am continuously being charged $32.04 every month. This is abdolutely outrageous! Now I'm calling trying to cancel it and they're telling me I have to pay an extra month. This is mind blowing! Something needs to be done.

  • Hello World in Web Dynpro Java : exceptions

    Hi
    I am trying out the Hello World tutorial. But hit the error after the deployment and trial run. Please advice. Thanks in advance.
    500   Internal Server Error
    Failed to process request. Please contact your system administrator.
    java.lang.IllegalArgumentException: -1
         at com.sap.tc.webdynpro.clientserver.uielements.adaptbase.IndexedItemsIterator.advanceIndex(IndexedItemsIterator.java:104)
         at com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.GridLayoutAdapter$Cells.doNext(GridLayoutAdapter.java:368)
         at com.sap.tc.webdynpro.clientserver.uielements.adaptbase.IndexedItemsIterator.next(IndexedItemsIterator.java:54)
         at com.sap.tc.ur.renderer.nn7.GridLayoutRenderer.renderGridLayoutRowFragment(GridLayoutRenderer.java:401)
         at com.sap.tc.ur.renderer.nn7.GridLayoutRenderer.renderGridLayoutFragment(GridLayoutRenderer.java:312)
         at com.sap.tc.ur.renderer.nn7.GridLayoutRenderer.render(GridLayoutRenderer.java:79)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
         at com.sap.tc.ur.renderer.nn7.ScrollContainerRenderer.renderScrollContainerFragment(ScrollContainerRenderer.java:572)
         at com.sap.tc.ur.renderer.nn7.ScrollContainerRenderer.render(ScrollContainerRenderer.java:74)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.UiWindowRenderer.render(UiWindowRenderer.java:52)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
         at com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendHtml(HtmlClient.java:1056)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.fillDynamicTemplateContext(HtmlClient.java:456)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendResponse(HtmlClient.java:1240)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.retrieveData(HtmlClient.java:252)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRetrieveData(WindowPhaseModel.java:595)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:156)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:319)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)

    Hi,
       It is quite hard to find out the problem by seeing only exception trace. I think you are missing one of the mandatory elelments' properties or setting them to invalid values. Please check and let me know if you can give more information.
    Regards,
    Siva

  • Any test web sites to insure browser/Flash player/other is adequate for all Captivate content

    My prior subject header was a little confusing, so I hope it's okay I start over again and state more clearly what I need.
    I have hundreds of users accessing Adobe Captivate 5.5 training.  Many users have no trouble viewing the content.  SOME users have trouble, specifically when viewing a video inserted into the training.  It just won't play for them.  These users have different browsers, so it would seem the type of browser is not an issue.
    What I am hoping for is ...
    a web site that lets users know they have everything needed to run any content within a Captivate session.  For example, as you know, Adobe has a web site to inform the user what version of Flash Player they have (if any).  I would be great to have a site that would let the user know if they meet the minimum requirements (not just Flash Player) to participate successfully in a training.
    Is anyone aware of such a site?  Or have ideas on how to build one?
    Thank you, and I'm sorry for not being clearer on the prior post.
    Best regards,
    Mark

    Captivate outputs (generally) as Flash. So as long as users have a recent version of the Flash player, they should technically be able to play back the content.
    However, of course, online delivery depends on the user's internet connection. What if you're feeding them video and their connection is slow?
    For similar concerns, we point our users to speedtest.net and ask them to post their results. Sometimes that helps illustrate their slow connection means a slow video delivery.
    And, of course, the older the computer, the less-fast it'll be in rendering the course. My oldest computer, used occasionally and with frustration by my 5 y/old, plays Flash sites horribly - and it's a 1.6ghz computer with 512mb RAM and XP...with latest browsers and Flash player. You can always ask for their computer spec, but that's not an easy thing to determine via software/website.
    So you can create a simple 'minimum requirements' page that you can point to...but one that actually does a diagnostic...well, aside from simple Flash player/version detection (which is fairly simple), that's a complex task.

  • Test Web Site

    I just built this web site, and its ready for critics...
    Please look at it and let me know if there any any issues
    with it... design, look, type, text, something not understood,
    something you wish was on there, something I should take out, if
    anything doesn't work properly...
    Thanks...
    Here is the web site:
    www.nenmultimedia.com

    I also don't know why you have a splash page. It's just one
    more click
    people have to go through and, from a user's POV, doesn't
    tell them
    anything. Your Opening Page immediately tells them what you
    do. Why not just
    start there? (Other than the attempt at the bottom to "fool"
    the search
    engines)
    MD
    Nenadmail wrote:
    > I just built this web site, and its ready for critics...
    >
    > Please look at it and let me know if there any any
    issues with it...
    > design, look, type, text, something not understood,
    something you
    > wish was on there, something I should take out, if
    anything doesn't
    > work properly...
    >
    > Thanks...
    > Here is the web site:
    http://www.nenmultimedia.com

  • Web Site Testing + Profiling

    Does anyone know of a good web site timing and performance profiling tool? My web site takes ~10 seconds to load into a browser and I want to see the timing breakdown and specific bottlenecks.
    I've used server side profilers but they indicate that my server takes under a second of processing which indicates that most of the slowdown is not occuring on my server. My site links to various other images, scripts, and ads hosted on other sites so those may be causing this issue.
    Any ideas?

    haven't done it myself but you may get a bit further having a program access the site instead of your browser....maybe some lag issues are in the rendering and not the serving....have a look at whats available with httpunit.
    http://httpunit.sourceforge.net/

  • Hello Everyone. My old web site needed  a redirect to a "non www version" because of duplicate content. Is the same true for Muse site?

    I made a website from Muse and want to launch it.
    Question1)Will there be a www version and a non www version like on my current web page built in DW?
    I never launched 2 websites. It just needed a "301 redirect" because when I ran a check on my website it said my page ranking was being lowered because there are two versions of my web site on line.
    Red Nose American Pit Bull Terriers Sale Humboldt Pit Bulls (www)
    Red Nose American Pit Bull Terriers Sale Humboldt Pit Bulls (non www)
    Thank you.
    Tim

    301 redirect was created.
    The site is hosted on Godaddy and after 1 or 2 calls I was able to make the redirect. They made it pretty easy.
    However I am still not sure if its better to redirect a www. to a non www, or a non www to a www.version of your site.
    As long as there is a redirect, the content is not duplicated. That is the main thing I was trying to accomplish.

Maybe you are looking for