Error embedding a war into a jetty

I tryed this example of an embedding war into a jetty: http://wiki.eclipse.org/Jetty/Tutorial/Embedding_Jetty#Setting_a_Web_Application_Context
When I debug on eclipse everything its ok and the webservices is deployed fine in port 8080, but when I make a jar with this program and put into a server (I tried into a tomcat 5.5 and into a jetty 7.4.1) when I start the program, when I started the jetty server appears this exception:
7641 [qtp21021313-35] ERROR configuration.EngineConfigurationFactoryServlet - Unable to find config file. Creating new servlet engine config file: /WEB-INF/server-config.wsdd
7641 [qtp21021313-35] WARN configuration.EngineConfigurationFactoryServlet - Unable to load/create servlet engine config file, attempting internal default (from jar).
Only the default webservices methos are deployed (AdminService and Version)
The wsdd its fine. If I deploy this war into a server it works perfectly
Can ayone help me? thanks a lot

Hello Vikrantt, and thank you for the response.
A few things:
1) I am using Abobe Reader XI, not version X.  I believe that the XI Preferences user interface is slightly different from X, as there is no Enable protected mode at start up under the General category.  However, when I look around, I do see the Enable Protected Mode at startup option under the Security (Enhanced) category, so I cleared that check box and clicked OK. I also manually restarted Adobe Reader XI, as per a message box that popped up after I cleared this option:
2) I closed all instanced of MS Word 2013, and opened up a fresh instance, but unfortunately, when I try to embed a .pdf document, I now get the following error:
I have Adobe Acrobat Pro XI installed and registered on my machine, so I'm not sure what the issue is.  I have already tried uninstalling both the Reader and Acrobat and reinstalling them, bu that didn't fix the issue.

Similar Messages

  • Embedding FLV Video Into PDF Files

    I have been testing out embedding FLV files into PDF's to simplify presentations (no need for Powerpoint, DVD player, DVD player software, etc..).  It is a bit slow when a big video file will load, but I think it is worth it for the simplified presentation method.
    My problem is this, whenever I embed an FLV file into a PDF, it seems to degrade the quality down a notch or two.  I am not concerned about file size since these will always be played locally from a hard drive or CD so I created the embedded FLV file to be high quality and very crisp (720 x 486, ~2200kbs bit rate).  However, no matter how good a file I embed, after it becomes embedded it always looks worse.  At this point, it has mainly been trial and error, but the original quality does not seem to matter as to how it will look in the PDF.
    Does Acrobat Pro re-encode the video no matter if it is FLV or not?  And is there anyway to change the settings so it does not alter the existing quality?
    Thank you.

    Are you inserting a screen capture FLV of the whole screen.  I use camtasia Studio to capture my desktop in video... and if the playback is NOT at the same size as the original...then it can look blurry.

  • Embedding LR4 Gallery Into iWeb

    Hello,
    After looking at many options, I had decided to use Airtight SimpleViewer in Lightroom 4 to create photo galleries with the intention of embedding these galleries into my website created with iWeb (3.0.4).
    However, I am stumbling at the html snippet stage.
    I have tried both uploading the gallery to my FTP site as well as exporting the gallery and then using Fetch to upload the gallery.
    I tried using the html snippets reported in www.iwebfaq.org:
    <iframe src=
    "http://web.me.com/username/Slideshow/index.html"
    style="width:615px; height:500px;
    border-color:#990033;
    border-style:solid;
    border-width:0px"
    scrolling="yes" >
    </iframe>
    Can anyone tell me what I am doing wrong?
    Thanks

    I put the slideshow folders into my public folder in my Dropbox:
    When I insert the following into the HTML snippets, I don't get the Simple Viewer Gallery either in iWeb or on my blog after putting it with Fetch:
    When I click on the index.html file within the Public Dropx folder for the Ice Fishing slideshow, this is the link I get: https://dl-web.dropbox.com/get/Public/Slideshows/Ice_Fishing/index.html?w=AABKs1 m6rARJTOqw4plIXFTCkvdEqU3X-D1J9yWfiSObZQ; and this is the result in both iWeb and my blog:
    I have Adobe Flash installed so that is not the issue. When I hit the Gallery link, I get this error message:
    Thanks for your help thus far. I think I am much closer, but still obviously doing something wrong.

  • Maven scripts for deploying WAR into Weblogic

    Hello Folks,
    I would need some help in deploying EAR/WAR into weblogic server.
    I already have maven scripts for building but not for deploying. your help is appreciated.
    Thanks.

    Hi Ank2cool,
    Please see my findings, I have tested the Same "build.xml" again...My AdminServer
    UserName is weblogic
    and
    password is weblogic
    <project name="webservices-hello_world" default="deploy">
    <property name="wls.username" value="weblogic" />
    <property name="wls.password" value="weblogic" />
    <property name="wls.hostname" value="localhost" />
    <property name="wls.port" value="7001" />
    <property name="wls.server.name" value="AdminServer" />
    <target name="deploy">
    <wldeploy action="deploy" name="PlanDemoEAR" source="PlanDemoEAR" user="${wls.username}"
    password="${wls.password}1" verbose="true" adminurl="t3://${wls.hostname}:${wls.port}" targets="${wls.server.name}" />
    </target>
    </project>
    Now when i run the AANT task ant deploy
    OUTPUT:
    Buildfile: build.xml
    deploy:
    [wldeploy] weblogic.Deployer -verbose -noexit -name PlanDemoEAR -source C:\JavaTest\PlanDemo\PlanDemoEAR -targets Admin
    Server -adminurl t3://localhost:7001 -user weblogic -password ******** -deploy
    [wldeploy] weblogic.Deployer invoked with options: -verbose -noexit -name PlanDemoEAR -source C:\JavaTest\PlanDemo\Pla
    nDemoEAR -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -deploy
    [wldeploy] <Dec 21, 2009 2:08:33 PM IST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for app
    lication, PlanDemoEAR [archive: C:\JavaTest\PlanDemo\PlanDemoEAR], to AdminServer .>
    [wldeploy] Task 1 initiated: [Deployer:149026]deploy application PlanDemoEAR on AdminServer.
    [wldeploy] Task 1 completed: [Deployer:149026]deploy application PlanDemoEAR on AdminServer.
    [wldeploy] Target state: deploy completed on Server AdminServer
    [wldeploy]
    [wldeploy] Target Assignments:
    [wldeploy] + PlanDemoEAR AdminServer
    BUILD SUCCESSFUL
    ========================TO REPRODUCE YOUR ISSUE I JUST CHANGED THE Password from weblogic to "*weblogic1*" or *"weblogic "* (i added a Single Space at the end of password) in the ANT script....But Server's Actual Password is still "weblogic"=======
    OUTPUT:
    [wldeploy] Caused by: java.lang.SecurityException: User: weblogic, failed to be authenticated.
    [wldeploy] at weblogic.common.internal.RMIBootServiceImpl.authenticate(RMIBootServiceImpl.java:116)
    [wldeploy] at weblogic.common.internal.RMIBootServiceImpl_WLSkel.invoke(Unknown Source)
    [wldeploy] at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    [wldeploy] at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
    [wldeploy] at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    [wldeploy] at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    [wldeploy] at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    [wldeploy] at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    [wldeploy] at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    [wldeploy] at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    BUILD FAILED
    C:\JavaTest\PlanDemo\build.xml:12: weblogic.Deployer$DeployerException: weblogic.deploy.api.tools.deployer.DeployerExcep
    tion: Unable to connect to 't3://localhost:7001': User: weblogic, failed to be authenticated.. Ensure the url represents
    a running admin server and that the credentials are correct. If using http protocol, tunneling must be enabled on the admin server.
    Total time: 0 seconds
    Above is exactly the same error what u are getting...
    So please recheck the password provideed in the "build.xml" is correct..or any space added before or after the Password.....
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

  • Background job finishes but error Error While Updating Material into Standard SAP5678

    Dear
    we run background job which finishes successfully but when we sqw logs it shows
    Error While Updating Material into Standard SAP5678
    Kindly share the reasons
    Regards

    This is an ERP Upgrade space and you should consider raising threads in the right space for prompt replies. Next time consider using SAP NetWeaver Administrator space for issues like these. Also you should consider closing your previous thread with the correct answer for future reference.
    What I see is a custom job. You should check what the job does and also the trace file of the work process and the consult with the application team or the developer for more information. Unfortunately with that screenshot there is nothing much we can advice you.
    Regards
    RB

  • Error while uploading file into KM

    Hi Experts,
    I m getting error while uploading file into KM. Its throwing an error message like " Syngenta-POC.doc" does not exist, or file is empty; you cannot upload empty files"
    please assists me.

    Shantanu,
    Please check the files which you are upload is empty or unknown format. If everything seems valid then try to check for the corresponding SAP Note in service.sap.com
    Ram

  • How to write errors in sqlplus script into logging table?

    Hi,
    I am having sqlplus script which do some DDL and DML statements.
    Now is there any way to logg errors which pop up when the script is esxecuting?
    For example something like:
    WHENEVER SQLERROR EXIT SQL.SQLCODE
    BEGIN
    /* SOME DDL OR DDL */
    CREATE TABLE A
    COL_1 NUMBER,
    COL_2 NUMBER
    /* Wrong sql statement */
    INSERT INTO TABLE_DOWS_NOT_EXISTS(....);
    EXCEPTION WHEN OTHERS THEN
    INSERT INTO logging_tbl (error_description) VALUES(SQL.SQLCODE);
    END;
    I know, this one will tell sqlplus to exit with sql error code without trapping into exception section, but is there any way to handle it?
    Thanks

    An approach would be to enable spooling in the beginning of your script. Wrap dbms_output into an error_log procedure. The error_log should simple write an errorcode + message to the prompt.<br>Afterwards - a search batchjob or manual search for errorcode occurances in the script spool file(s) should reveal the outcome.

  • OS X 10.8.3 iMessege Sign into apple ID error - "Could Not Sign Into iMessege"

    Hi! I'm just new to apple. When I try and sign into iMessege I get an error "Could not sign into iMessege" "Could not sign into iMessege please check your network connection and try again."
    Any suggestions? Im on Mountian Lion OS X 10.8.3.
    Thanks.

    FaceTime, Game Center, Messages: Troubleshooting sign in issues

  • Error while load data into Essbase using ODI

    Hi ,
    I'm getting the following error while loading measures into Essbase using ODI, I used the same LOG nd Error file and file path for all my Dimensions , this worked well but not sure why this is not working for measures....need help.
    File "<string>", line 79, in ?
    com.hyperion.odi.common.ODIHAppException: c:/temp/Log1.log (No such file or directory)
    Thanks
    Venu

    Are you definitely running it against an agent where that path exists.
    Have you tried using a different location and filename, have you restarted the agent to make sure there is not a lock on the file.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • The iPhone cannot be synced. Unknown error (13019) - anyone run into this?

    The iPhone cannot be synced. Unknown error (13019) - anyone run into this?

    Stephen's got you covered.
    I've also seen the following reported cause/workaround:
    After several Google searches I found the iPad syncing problem to be caused by iPhoto 9.4 not handling the & correctly in names. It's not recognizing them as &amp; which is causing problems with XML. You can manually change them or wait for Apple to issue a fix to iPhoto 9.4. I started to do the manual fix & I just have too many to change.
    (Manual renaming isn't going to be an easy/good workaround for a bunch of folks, though.)

  • How do I change a WAR into a portlet?

    Hi,
    How do I change a WAR into a portlet?
    Do I just change the zone.properties, jserv.properties, and the provider.xml. In other words, do I treat it like a jar?
    Any help would be greatly appreciated,
    Wilson

    If you mean how do you get the contents of a .war file into a JServ environment, then I would advise against trying this unless really necessary. The servlets in the .war file will only work if they do not rely on any Servlet 2.2-specific features, since JServ only supports Servlet 2.0.
    Why not just plug the .war file into OC4J? You can still 'front end' it with Apache if you want by using mod_proxy.
    If you really wanted to try this, first you would need to unzip the .war file to the filesystem. Then the full path to WEB-INF/classes (if it exists) and each .jar file in WEB-INF/lib would have to be mentioned as repositories in zone.properties, as these all contain 'zone' (or 'web app') specific classes.
    WEB-INF/web.xml contains an XML description of the servlets that need mounting in zone.properties, including their init args.
    All the other files outside of WEB-INF should be treated as documents by the web server, so should either be copied into your default htdocs directory or exposed under an alias in httpd.conf.This also relies on the classes in the .war file not 'clashing' with different versions in the server's global classpath in jserv.properties.

  • Error converting DOM nodes into SOAP nodes

    Hi,
    i am doing an http call using http binding activity in oracle soa suite 11g.The http call requires some header information.When I pass the header information through headers in invoke activity and invoke the http call,I get an error " Error converting DOM nodes into SOAP nodes".What might be the reason and how to solve it.
    Naresh

    Hello,
    It appears your code is trying to repeat messagePart itself. Split Joins strictly adheres to a WSDL definition for incoming and outgoing messages.
    Instead of repeating <RootElement> which is defined as single occurance in your message definition within WSDL, you should find a way to tweak the WSDL to have "repetitive node which will become single message after split" within 1 Root element.
    This will call for having need of implementing transformation within split join based on need of target input message. Below is the example:
    WSDL contains:
    <wsdl:message name="inputMessageName">
         <wsdl:part name="partInput" element="rootElement"/>
    </wsdl:message>
    What your current xml structure is(please note how message itself is repeating below while it has been defined as single in wsdl, unfortunately there is nothing maxOccurs for message in WSDL definition , although you can define multiple parts but that is not case here):
    <soap:Body>
    <rootElement>
    </rootElement>
    <rootElement>
    </rootElement>
    <rootElement>
    </rootElement>
    </soap:Body>
    What Split-Join expects(If you have existing wsdl then you need to tweak it to conform to below kind of structure then use transformation within split join to convert it into correct xml structure for outgoing):
    <soap:Body>
    <rootElement>
         <repetitiveElementSpecificToIndividualSplitRequest/>
         <repetitiveElementSpecificToIndividualSplitRequest/>
         <repetitiveElementSpecificToIndividualSplitRequest/>
    </rootElement>
    </soap:Body>
    I hope this helps.
    Regards,
    Ankit

  • Problems embedding an FLV into the timeline

    Hello,
    I'm interested in embedding a video into my swf file automatically. Therefore, I managed embedding an flv file onto the stage, but the problem is that after I give the embedded video an instance name and refer to the instance in a command (f.e change x,y coordinates or change width/height), on execution of the swf, the video stays frozen while the audio plays. If I don't refer to the embedded video instance, the video plays normally, just not placed correctly on the stage.
    Is there any way to place the video correctly???
    Thanks,
    Ori

    The problem here is that I want to automate the creation of the SWF. Therefore, I am using some sort of simulation program which takes control of GUI objects. The only problem I had was controlling the width, height, x and y controls that appear as simple text (not as regular text boxes),
    Anyhow, that's why I tried giving the embedded video an <instance name> and editing it through actionscript code of the FLA file. But that gave me the phenomena that I explained where the embedded video is placed & sized correctly, but it appears frozen with audio running normally in the resulting SWF.
    I hoped that there's a way to handle this problem (casting to a different object, using a certain function etc.), or that someone is familiar with this phenomena.
    Thanks and still waiting for any suggestions,
    Ori
    P.S - If you want to see the phenomena, take an FLA file and embed it into the timeline on the stage. Later on, give it an <instance name> (via control+F3 to open the properties window of the object). Insert code to the FLA:
    <instance name>.x = 0;
    <instance name>.y = 0;
    <instance name>.width = 100;
    <instance name>.height = 200;
    You'll see that the video does not play, while the audio is head normally.

  • Embedding MP3 files into dreamweaver webpage

    I've embedded mp3 files into my webpage, but every time someone opens the page, they are prompted to either open or save the file.  I want the viewer to be able to play the song using the embedded player, without the prompt.

    Embedded players are very old school.  And it won't work for many since they need a player and appropriate browser plugins installed on their end.  The modern approach is HTML5 <audio> which is widely supported by all browsers, including mobile and tablets.  For an example of HTML5 audio, copy and paste this code into a new, blank document.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Audio Demo</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    header {
        width: 500px;
        margin: 0 auto;
        text-align: center
    audio { color: red }
    figure {
        margin: 20px auto;
        padding: 20px;
        width: 500px;
        text-align: center;
        border: 1px #ccc dashed;
        clear: both;
    figcaption {
        display: block;
        clear: both;
        text-align: center;
        font-style: italic;
        padding-top: 15px;
    dl {
        text-align: left;
        margin-left: 40%
    dt {
        clear: both;
        float: left;
        width: 4.5em;
        font-weight: bold;
    line-height: 150%
    dd {line-height:150%; color:maroon}
    </style>
    </head>
    <body>
    <header> <h1>HTML5 Audio Demo</h1>
    <p><a href="http://www.w3schools.com/html/html5_audio.asp">HTML5 Audio Tutorial</a></p>
    </header>
    <figure>
    <audio preload="auto" controls >
    <!--replace demo audio files with your own-->
    <source src="http://alt-web.com/Media/Fake-Empire.ogg" type="audio/ogg">
    <source src="http://alt-web.com/Media/Fake-Empire.mp3" type="audio/mp3">
    Looks like your browser is outdated and doesn't support the audio element.
    Please upgrade to a modern browser that does.
    </audio>
    <figcaption>HTML5 Audio using OGG &amp; MP3 files. <br>
    Works in all current browsers &amp; mobile devices.<br>
    </figcaption>
    </figure>
    <dl>
    <dt>Title:</dt>
    <dd>Fake Empire</dd>
    <dt>Year:</dt>
    <dd>2007</dd>
    <dt>Artist:</dt>
    <dd>The National</dd>
    <dt>Album:</dt>
    <dd>Boxer</dd>
    </dl>
    </body>
    </html>
    Nancy O.

  • Unexpected error present when getting into the Troubleshooting page

    Hi, I'd like to figure out what's happening with my WRT1900AC, as well as with my Smart Wi-Fi App (version 1.7) . There is always an unexpected error present when getting into the Troubleshooting page. It would be appreciated if you have any suggestions for fixing that. Below is about my mention. Thank you!1. The firmware in my WRT1900AC.2. Steps to see an unexpected error with Smart Wi-Fi App.

    @angus19 Power cycle the router. You may also try to access your Linksys Smart Wi-Fi account using a browser and check if you’re getting the same error message. If all else fails, reset and reconfigure the router.

Maybe you are looking for

  • Adobe Photoshop Elements 10 & Premiere Elements 10 for Windows 7 64 bit install

    I have Adobe Photoshop Elements 10 & Premiere Elements 10 for Windows & Mac - Full Bundle Version.  It comes with 5 disk, to install on win 7 64 bit you use disk 2, what is disk #4 used for?   No instuctions found with software and Adobe chat does no

  • TS1389 Repeated iTunes Authorization Request

    I moved our iTunes libraries from our old to new computer using the instructions on Apple.com.  However, iTunes continues to request that we authorize our new computer when trying to sync my wife's iPod to the new computer.  As such, iTunes will not

  • Programming on SIM??? write once, run anywhere???

    Dear all, I am a java developer for 2 years, everytime i read any java book, it stated there "write once, run anywhere", but does it really perform that? especially when we develope in J2ME, MIDP, CLDC is a main consideration for different phone. Dif

  • Startup guide for oracle data mining for anomaly detection

    hi well i have setup oralce 10g for data mining. ihae also downlaoded and nstalled demo prog. now im wondering how to start to develop my own model.... basically my idea is to use anomaly detection tecnuique for network traffic. i want ot scann netwo

  • OSS causes hard system crash

    I have installed OSS using the instructions on the wiki.  However, when I started the OSS daemon, my system completely locked up, requiring a hard reset.  The only log I could find is /var/log/soundon.log $ cat /var/log/soundon.log Open Sound System