Ant in Jdeveloper!

Hi! Can anyone give me an tutorial about Ant in Jdeveloper? And explain how app. developers work with ant and why?
Best regards, Debuger!

hi Debuger
Debuger wrote:
... And there is some tutorial ojdeploy + ANT? ...Maybe the documentation section "2.5 Deploying Using Scripts and Ant " can help
at http://download.oracle.com/docs/cd/E21764_01/web.1111/e15470/deploy.htm#ADFAG20592
(No, I am not trying to be cynical by referring you to the "half page documentation effort " that Oracle has put into this.)
success
Jan Vervecken

Similar Messages

  • Need build.xml to create Ear file using Ant in jdeveloper 11g??

    Hi all,
    I think Jdeveloper use ANT to create Ear file and how to get build.xml from Jdeveloper.
    1) I have created ADF Fusion web Application having separte Model and View Controller.
    2) Now when I select View Controller project and then i create New ant-> Build.xml i get the required build.xml which can be used to create war file for my View Controller project.
    3) Similarly when I select Model project and then i create New ant-> Build.xml i get the required build.xml which can be used to create Jarfile for my Model project.
    4) If I select my application and then i click deploy... I'm able to create my ear file having both war file for View Controller and Jar File for Model.
    5) But I dont know how to get built.xml file which will create ear file having both View Controller and Model in it.
    Thanks a lot....

    However note the generated Ant script includes unnecessary targets. See the following blog post: http://one-size-doesnt-fit-all.blogspot.com/2010/11/using-ojdeploy-and-ant-for-creating-adf.html
    CM.

  • Ant with jDeveloper, reading the environment

    I should like to use Ant to build and deploy our J2EE applications.
    The main reason is to get better control of what's put inside the WAR and EAR files eg. correct application.xml/orion-application.xml, correct property-files which might exist in different versions for development, test, production etc.
    The best solution is perhaps to use standalone Ant, but since we use jDeveloper we'll try to use ant from jdev 903.
    To control the behaviour of Ant I was planning to read the environment in the build script.
    When running in jDev, I have problems with reading the environmet settings, like:
    <property environment="env" />
    <property name="oc4j.home" value="${env.OC4J_HOME}"/>
    Anyone that has a solution?
    thanks, Trond R.

    Trond,
    One way to handle this situation is to put all of your developer properties in a separate properties file, then load this file using the file attribute of the Ant property task. For example, you could create a file named build.properties, which contains the following line:
    oc4j.home = c:\oc4j
    Then, in your Ant buildfile, use:
    <property file="build.properties"/>
    This allows the developer to customize the build.properties file for their specific machine, but still use the standard build.xml file from the source control.
    Using this mechanism, the developer can also override properties on the Ant command line for a specific build using the -D option. For example,
    ant -Doc4j.home=d:\oc4j
    This would override the value in the build.properties file for this build. You can specify Ant command line options in JDeveloper using the Ant panel under Project Properties.
    Using a properties file instead of environment variables makes your Ant buildfile more portable. It can be used within an IDE such as JDeveloper, and can be run on any platform.
    -Matt Hawkins, JDeveloper Team

  • How to use ant with Jdeveloper 11g

    Hello, as we develop our app with ADF Faces & EJB 3.0 we are using tomcat 6.x + openEJB 3.0 as a sort of app server. So we need to build application archive 2 differrent methods (collapsed war for tomcat and ear for Jdev's integrated WLS). Besides, some xml files need to be modificated depending on target server. So we are going to use ant to build archives.
    My questions:
    - Where should I copy built archive for deployment on integrated WLS (should I copy it in ant's target or Jdev can do it for me)? Or there is another way to do the following: when one presses Run button on a page ant builds an archive for local WLS and then app is deployed and the page is opened in a new browser tab (just like default Jdev behaviour)?
    - Where can I find tutorial on integration of Jdev & ant?

    Here is a good example [http://biemond.blogspot.com/2009/04/weblogic-jdeveloper-ant-tasks.html]

  • Working with ANT /CVS/JDeveloper doing integrated build

    Is there a documentation out there which gives details structurally on doing builds using ANT and CVS under JDeveloper?

    Check the JDeveloper online help and search for CVS
    "Using Concurrent Versions System (CVS) With JDeveloper"
    and also for ANT
    "About Ant Integration in JDeveloper"
    You can access the online help online on OTN at:
    http://otn.oracle.com/jdeveloper/903/help/

  • External ANT 1.6.2 with JDeveloper 10.1.3 Nothing in Message Window

    I am new to JDeveloper and downloaded 10.1.3.
    I have an existing web application and added it to a new Project in JDeveloper.
    I added an external version of ANT 1.6.2 to my Project Properties and added the ant.jar and ant-launcher.jar to the Classpath along with weblogic.jar and other libraries.
    I tried my "clean" and "dev" ANT tasks in JDeveloper, the Message Window does not have any output and the ANT process stays listed. It does not appear that the ANT tasks are executed and I can not Terminate the ANT processes unless I exit JDeveloper.
    My build.xml works fine in a command prompt. What am I missing?
    Thanks

    Mark,
    I understand about wanting to use Ant directly from Apache. We don't modify the version of Ant that ships with JDeveloper, but it is not a complete installation - we currently only ship the lib directory.
    But regardless, from the sounds of things the problem you are seeing doesn't have to do with using an external version of Ant, but that you are unable to run Ant in JDeveloper at all, even with the default version.
    Ant actually won't write anything to the Messages log. What should happen when you run Ant is that a new "Apache Ant" log window should appear in the log pane. Do you see the "Apache Ant" window appear when you run Ant?
    If not, could you try running JDeveloper from the console using the "jdev.exe" (as opposed to the jdevW.exe)? That way, if any exceptions occur, you will see them output to the console. When you run JDeveloper in this manner, and try to launch Ant, do you see any exceptions? If so, could you please include the stack trace in this thread?
    Also, have you set any other Ant options in the Project Properties? In particular, what else is on the Ant Classpath? You mentioned weblogic.jar in your first post, is there anything else?
    -Matt Hawkins
    Oracle JDeveloper

  • Replicating ant script (env vars and copy of common files) in JDeveloper

    We have an existing application that was building in Eclipse using Ant scripts.
    We now have a requirement to build and deploy using JDeveloper. We have been successful in some aspects, but now are trying to replicate in JDeveloper the use of environment variables and copy of common folders as our Ant Scripts did for us in Eclipse. Is it possible to replicate this in JDeveloper?
    Thanks in advance.

    Our client requests a JDeveloper project file only that they can build and deploy. They do not approve of the use of Ant scripts, so we are trying to mirror our application that was built in Eclipse with Ant into JDeveloper (with no Ant).
    We are looking into workarounds to eliminate the need for a replacement of the Ant script to copy common files into the directories needed, and to determine those paths based on the environment varaibles, but none of hte work-arounds thus far are great options. Based on my reserach, I have not found a way to implement these functions in JDeveloper without the use of an Ant script. Is this an accurate statement?

  • Re: Is Ant 1.6.2 supported in 10.1.2?

    Oracle bundles the latest production release of Apache Ant available at the time of a JDeveloper release. Using newer versions of Apache Ant is typically possible. In fact, starting with 10.1.3, we've made it easier than ever to use a different version of Ant with JDeveloper. However, there is of course no way at the time of a JDeveloper release to test with future versions of Apache Ant. We therefore cannot guarantee complete compatibility with new Ant releases. Using a version of Apache Ant that is newer than the one bundled with a specific release of JDeveloper is therefore an untested and unsupported configuration.
    If you wish to use a fully tested and supported configuration, you would need to wait for the next release of JDeveloper, which will be tested with the latest production release of Apache Ant. At this point it looks like JDeveloper 10.1.3 will ship with Apache Ant 1.6.2 or 1.6.3.
    -Matt Hawkins
    Oracle JDeveloper

    Yes, it is possible in 10.1.3 to easily add JAR files to the Ant classpath. There is a new "Classpath" panel in the Ant settings where JAR files for additional tasks can be added. Again, this can be configured differently for each project, so if you need to use different versions of tasks or different sets of tasks for each project, you can do so. Also, we now add the ${user.home}/.ant/lib directory to the classpath, just like the command line Ant does. So a user can keep additional JAR files in that location which they want to have available to all versions of Ant.
    Support for the Ant 1.6 "import" task is already in for the 10.1.3 Production Release. You will be able to run imported targets through the Run Ant action. Support for target overriding is included. That is, if there is a target with the same name in both the original and imported buildfile, the imported target will be prefixed with its project name. Also, you can right click on an "import" element in the structure pane and select "Go to Imported File". This will open the imported buildfile in the editor.
    We have also added enhanced Ant editing features for 10.1.3. For example, we now scan the buildfile for property definitions. This allows us to provide code insight for property names. Also, if you hold the mouse over a property name, its value will appear in a tooltip. Imported buildfiles are also scanned in this manner. So even properties defined in imported buildfiles are available in the code insight and tooltip values.
    -Matt Hawkins
    Oracle JDeveloper

  • ANT_HOME location in Jdeveloper??

    Hi ,
    I am using JDEV 11g TP4 how do i know what my ANT_HOME path, and also how do i set ANT_HOME path
    please let me know if anyone knows
    Thanks
    V..
    Edited by: 982899 on Jan 30, 2013 4:26 AM

    Hi.
    If you just want to adjust the value inside JDeveloper, you simply open your project properties, expand the <tt>Ant</tt> category and click on the <tt>Options</tt> subcategory.
    If you want to use ANT outside JDeveloper, the ANT_HOME environment variable is set at the operating system level. Here is how to access the appropriate screen on a Windows machine:
    - Right-click My Computer, and then click Properties.
    - Click the Advanced tab.
    - Click Environment variables.
    On Linux, you would add them to one of the startup files available for your shell. You can find information about the files for the bash shell here: http://www.linuxfromscratch.org/blfs/view/6.3/postlfs/profile.html
    This article will help you setting things up: http://www.oracle.com/technetwork/articles/adf/part4-098813.html
    Best Regards,
    Frédéric.

  • The ANT comes with JDev 9.0.4 - is that for development build?

    The ANT comes with JDev, is it the latest version? Do I need to download latest and from somewhere and how do I integrate ANT with JDeveloper? Would it be just for the development build? If I integrate ANT with JDev, that wouldn't bge for release or production build - would it? In that case, I need to install ANT externally!

    Apache has released several versions of Ant since JDeveloper 9.0.4 was released. I believe the version of Ant that shipped with JDeveloper 9.0.4 was Ant 1.5.1 (you can always verify the Ant version by using the echo task to print out the "${ant.version}" property).
    If you want to upgrade to the lastest version (currently, Ant 1.6.1), see the thread "New ant version" in this forum. We will also be shipping the latest release of Ant with future releases of JDeveloper.
    I'm not exactly sure what you mean about the Ant integration being for the development build versus release build. You can choose to configure Ant to be the default build mechanism for your JDeveloper project, in which case it will be used for all builds. Or you can simply open your buildfile in the project, and right click on it to run specific targets. In the latter case, the Ant integration would only be for specific builds.
    Hope that answers your questions.
    -Matt Hawkins
    JDeveloper Team

  • Mass ADF Application Deployment using JDeveloper

    I really hope there is a simple answer for this...
    I have a 'suite' of Oracle ADF applications (they use ADF Faces + ADF Business Components + JHeadstart technology) that I would like to mass-deploy / mass-redeploy to our Oracle Application Server 10g (10.1.3).
    What is the easiest solution that will let me just say "GO!" and thus deploy all 17 individual web applications to the server? For the longest time I have been just individually deploying each application through each individual WAR Deployment Profile (*.deploy) that each application has. Now, I need a less tedious way to perform this maintenance.
    Thanks.

    Hi,
    Are you using the ANT/JDev integration to do this? I've never tried it, but in the last part of the video http://www.oracle.com/technology/products/jdev/viewlets/1013/agile_development_viewlet_swf.html it seems like there are deployment tasks available in the integrated ANT with JDeveloper.
    Sorry I can't provide any specific insights - perhaps someone else has done this?
    John

  • Error when running  the ant task

    Hi,
    I got an error when running the ant from jdeveloper .I was running the to build my J2EE module which is build in Java 1.4 . I have changed my java home to JDK 1.4 and then run the ant build i got the following error .The class and ejbc compilation is completing nicely but the error is happening at jar creation .Please help me . One more thing ,when i run the ant task from the command prompt ,it is working fine .
    AuditSearchVO), audit(com.ibsplc.iRes.audit.vo.BaseAuditVO)] >
    [java] java.io.IOException: CreateProcess: javac -nowarn -classpath D:\applns\bea\jdk142_08\jre\lib\rt.jar;D:\applns\bea\jdk142_08\jre\lib\i18n.jar;D:\applns\bea\jdk142_08\jre\lib\sunrsasign.jar;D:\applns\bea\jdk142_08\jre\lib\jsse.jar;D:\applns\bea\jdk142_08\jre\lib\jce.jar;D:\applns\bea\jdk142_08\jre\lib\charsets.jar;D:\applns\bea\jdk142_08\jre\classes;D:\Project\Development\aiRES1.7\classes;D:\Project\Development\aiRES1.7\ibase.jar;D:\applns\bea\weblogic81\server\lib\weblogic.jar;D:\applns\bea\weblogic81\server\lib\wlcipher.jar;D:\applns\bea\weblogic81\server\lib\jsafeFIPS.jar;D:\applns\bea\weblogic81\server\lib\webservices.jar;D:\applns\bea\weblogic81\server\lib\xmlx.jar;D:\applns\bea\weblogic81\server\lib\jconn2.jar;D:\applns\bea\weblogic81\server\lib\jConnect.jar;D:\applns\bea\weblogic81\server\lib\EccpressoAsn1.jar;D:\applns\bea\weblogic81\server\lib\EccpressoCore.jar;D:\applns\bea\weblogic81\server\lib\EccpressoJcae.jar;D:\applns\bea\weblogic81\server\lib\ant\ant.jar;D:\applns\bea\weblogic81\server\lib\ant\optional.jar;D:\applns”
    [java]      at java.lang.Win32Process.create(Native Method)
    [java]      at java.lang.Win32Process.<init>(Win32Process.java:66)
    [java]      at java.lang.Runtime.execInternal(Native Method)
    [java]      at java.lang.Runtime.exec(Runtime.java:566)
    [java]      at java.lang.Runtime.exec(Runtime.java:491)
    [java]      at java.lang.Runtime.exec(Runtime.java:457)
    [java]      at weblogic.utils.Executable.exec(Executable.java:227)
    [java]      at weblogic.utils.Executable.exec(Executable.java:156)
    [java]      at weblogic.utils.Executable.exec(Executable.java:142)
    [java]      at weblogic.utils.compiler.CompilerInvoker.execCompiler(CompilerInvoker.java:249)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:428)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:328)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:336)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.doCompile(EJBCompiler.java:270)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:476)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:397)
    [java]      at weblogic.ejbc20.runBody(ejbc20.java:517)
    [java]      at weblogic.utils.compiler.T

    Hi,
    I got an error when running the ant from jdeveloper .I was running the to build my J2EE module which is build in Java 1.4 . I have changed my java home to JDK 1.4 and then run the ant build i got the following error .The class and ejbc compilation is completing nicely but the error is happening at jar creation .Please help me . One more thing ,when i run the ant task from the command prompt ,it is working fine .
    AuditSearchVO), audit(com.ibsplc.iRes.audit.vo.BaseAuditVO)] >
    [java] java.io.IOException: CreateProcess: javac -nowarn -classpath D:\applns\bea\jdk142_08\jre\lib\rt.jar;D:\applns\bea\jdk142_08\jre\lib\i18n.jar;D:\applns\bea\jdk142_08\jre\lib\sunrsasign.jar;D:\applns\bea\jdk142_08\jre\lib\jsse.jar;D:\applns\bea\jdk142_08\jre\lib\jce.jar;D:\applns\bea\jdk142_08\jre\lib\charsets.jar;D:\applns\bea\jdk142_08\jre\classes;D:\Project\Development\aiRES1.7\classes;D:\Project\Development\aiRES1.7\ibase.jar;D:\applns\bea\weblogic81\server\lib\weblogic.jar;D:\applns\bea\weblogic81\server\lib\wlcipher.jar;D:\applns\bea\weblogic81\server\lib\jsafeFIPS.jar;D:\applns\bea\weblogic81\server\lib\webservices.jar;D:\applns\bea\weblogic81\server\lib\xmlx.jar;D:\applns\bea\weblogic81\server\lib\jconn2.jar;D:\applns\bea\weblogic81\server\lib\jConnect.jar;D:\applns\bea\weblogic81\server\lib\EccpressoAsn1.jar;D:\applns\bea\weblogic81\server\lib\EccpressoCore.jar;D:\applns\bea\weblogic81\server\lib\EccpressoJcae.jar;D:\applns\bea\weblogic81\server\lib\ant\ant.jar;D:\applns\bea\weblogic81\server\lib\ant\optional.jar;D:\applns”
    [java]      at java.lang.Win32Process.create(Native Method)
    [java]      at java.lang.Win32Process.<init>(Win32Process.java:66)
    [java]      at java.lang.Runtime.execInternal(Native Method)
    [java]      at java.lang.Runtime.exec(Runtime.java:566)
    [java]      at java.lang.Runtime.exec(Runtime.java:491)
    [java]      at java.lang.Runtime.exec(Runtime.java:457)
    [java]      at weblogic.utils.Executable.exec(Executable.java:227)
    [java]      at weblogic.utils.Executable.exec(Executable.java:156)
    [java]      at weblogic.utils.Executable.exec(Executable.java:142)
    [java]      at weblogic.utils.compiler.CompilerInvoker.execCompiler(CompilerInvoker.java:249)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:428)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:328)
    [java]      at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:336)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.doCompile(EJBCompiler.java:270)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:476)
    [java]      at weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:397)
    [java]      at weblogic.ejbc20.runBody(ejbc20.java:517)
    [java]      at weblogic.utils.compiler.T

  • ANT deployment in cluster env - urgent pls

    All,
    version: 10g(10.1.3.4)
    We have set up 10g in cluster env. I tried to deploy a bpel thru ANT got the below error
    A problem occurred while establishing a connection to the BPEL Server.
    Please make sure the server is running on host "localhost", port "7777".
    The same bpel, when I tried to deploy thru JDev it deployed succesfully! What could be the possible reason? Also, the same bpel deployed thru ANT successfully in non-cluster env
    thanks,
    sen

    1.Go to the particular composite and create folder build.
    2. Place build.properties and build.xml files inside the folder.
    3. Generate configuration plan on right clicking composite.xml.
    4. Open build.properties file and cross check the following elements
    composite.name=Process (particular composite name)
    composite.revision=1.0 (version)
    oracle.home=C:/Oracle/Middleware/jdeveloper ( middleware home)
    soa.server.oracle.home=C:/Oracle/Middleware/jdeveloper
    admin.server.host=test.checf.com (admin server host)
    admin.server.port=7007 (admin server port)
    server.domain.name=SOADEV (soa domain)
    managed.server.host=soa.test.com (soa server host)
    managed.server.port=8007 (soa server port)
    server.user=weblogic (user credential)
    server.password=soadev123 (server passwd)
    java.home.set=D:/jdk160_18 (jdk path)
    server.targets=WLS_SOA2 (target node)
    config.plan=Process_cfgplan_17.xml (compiste config plan)
    5.Open build.xml file check the following
    <project name="rProcess " default="deploy" basedir="."> (check the project name)
    Commands from cmd
    1. Go to the cmd.
    2. Set the following variables in cmd.
    C:\JDeveloper\mywork\CommonErrorHandlingApplication\ASYNCTesting\build>set ORACLE_HOME=C:\Oracle\Middleware
    C:\JDeveloper\mywork\CommonErrorHandlingApplication\ASYNCTesting\build>set ANT_HOME=%ORACLE_HOME%\jdeveloper\ant
    C:\JDeveloper\mywork\CommonErrorHandlingApplication\ASYNCTesting\build>set PATH=%ANT_HOME%\bin;%PATH%
    C:\JDeveloper\mywork\CommonErrorHandlingApplication\ASYNCTesting\build>set JAVA_HOME=D:\jdk160_18
    3. Go the particular composite build folder
    Bpel Process
    |-> SOA Content
    |->build
    4. Give ant command
    C:\JDeveloper\mywork\CommonErrorHandlingApplication\ASYNCTesting\build>ant
    check the same whther it helps u or not

  • Class dependencies with Ant?

    The "Show Dependencies" functionality for Java classes doesn't work because I use Ant as the build system:
    Message
    showDeps.ShowDepsNoDepBuildSystem: Cannot show dependencies as the projects build system does not support this.
    Cause
    The build system for the project (e.g. Ant) you are using does not support generation of dependencies that this feature requires.
    Action
    Switch to a build system that does support generation of dependency information. The standard JDeveloper build system supports this.
    Now is there a way that I can configure Ant to create this dependency information (maybe by using the Oracle compiler in JDeveloper)?

    At this time there is no way to configure this feature to work when using the Ant build system. It is possible to use the Oracle Java Compiler from within your Ant buildfile. However, due to the arbitrary content of an Ant buildfile, JDeveloper still has no way of knowing if the resulting compilation will produce all the information needed for an accurate dependency analysis. Therefore, this feature is disabled when using the Ant build system. A possible solution might be to configure your project to use the normal JDeveloper build system to enable this feature, and run Ant manually by right clicking on the buildfile in the System Navigator and selecting the target you want to bulid.
    -Matt Hawkins, JDeveloper Team

  • JDev 10.1.3 / Ant / element classes not defined in parent war

    I tried to build a WAR file with Ant in JDeveloper 10.1.3 (Preview). The source of the build.xml:
    <?xml version="1.0" encoding="windows-1252" ?>
    <project name="MyApp" default="war" basedir=".">
    <target name="init">
    <tstamp/>
    </target>
    <!-- ... -->
    <target name="war" depends="init">
    <war destfile="../deploy/myApp.war" encoding="Cp1252" webxml="../public_html/WEB-INF/web.xml">
    <classes dir="../classes"/>
    <lib dir="../public_html/WEB-INF/lib"/>
    <webinf dir="../public_html/WEB-INF"/>
    <metainf dir="public_html/META-INF"/>
    </war>
    </target>
    </project>
    I got 3 error messages, which do not correspond to the Ant documentation:
    - element classes not defined in parent war
    - element lib not defined in parent war
    - element webinf not defined in parent war
    That's why I'm not able to build a war file for deployment.
    Is there any chance to bypass/correct the errors?

    This bug has been fixed for the Production Release. There is no workaround in the Preview Release. However, these errors should only appear while editing the Ant buildfile. They should not prevent you from running the buildfile.
    -Matt Hawkins
    Oracle JDeveloper

Maybe you are looking for

  • Help.. Accidently got the magnifying glass with +

    Help please........I accidently hit a couple of keys together and got the magnifying glass with a + sign in it. Everything is way to big and pixelly. How do I get back to regular view? Diane

  • Tiff size from Illustrator CC

    Yesterday we moved from CS6 to CC. Illustrator files that we previously saved out as tiffs from CS6 are now coming out much larger from CC. i.e. tiff was 1mb from CS6 now 18mb from CC. We have checked settings: colour space, dpi and lzw compression a

  • TS1307 can't send mail after file sharing using bluetooth

    I treid to set up file sharing between my macbook pro and my husband's macbook and this has effected Mail. He can receive email but not send from his laptop but can do so remotely. Some thing has changed on his laptop but I can't find out what. Any h

  • Black "picture frame" around window

    A strange black "picture frame" shows up around windows which are active. Doesn't show up on Entourage. Appears like a non-damaging virus, but I don't know what it could be. Any ideas how to get rid of it?

  • FCP-X and iDVD 16:9 video squished

    I've read the other posts and apple support suggesting to use QT pro to adjust the video settings. That doesn't fix the problem. I have a video shot in anamorphic, edited for PAL anamorphic in FCP-X and dropped into iDVD set up for widescreen PAL and