CRMOD PIP Build Error - antfetch doesn't support the antfile attribute

Hi.
I am trying to build the CRMOD PIP under Linux, and I am getting the following ANT error:
antfetch doesn't support the "antfile" attribute
The build actually completes without any errors being posted on the screen, but the log file of the job, has this message within it, as well as a BUILD failure emanating from within the AIAInstallDriver.xml file.
Does anyone know how to get around this issue ? The verision of ANT that we are using, is from the Weblogic Server envrionment.
Thanks.

I seriously hope that they don't expect us to use nightly builds of Netbeans 7.1 when the official final version of JavaFX 2.0 is released because of this issue.
Their should be an update to Netbeans 7.0.1 upon JavaFX 2.0 final release. C'mon Oracle! You can do better than that!

Similar Messages

  • AIA CRMOD Build error - antfetch doesn't support the "antfile" attribute

    Hi.
    I am trying to build the CRMOD PIP under Linux, and I am getting the following ANT error:
    antfetch doesn't support the "antfile" attribute
    The build actually completes without any errors being posted on the screen, but the log file of the job, has this message within it, as well as a BUILD failure emanating from within the AIAInstallDriver.xml file.
    Does anyone know how to get around this issue ? The verision of ANT that we are using, is from the Weblogic Server envrionment.
    Thanks.

    I seriously hope that they don't expect us to use nightly builds of Netbeans 7.1 when the official final version of JavaFX 2.0 is released because of this issue.
    Their should be an update to Netbeans 7.0.1 upon JavaFX 2.0 final release. C'mon Oracle! You can do better than that!

  • "fx:deploy doesn't support the "includeDT" attribute"

    I just uninstalled NetBeans 7.1, and replaced it with the latest nightly NetBeans build, as per the instructions to resolve the issue described here: Building error in netbeans.
    Unfortunately, now I get a new build error that looks like this:
    C:\Users\...\nbproject\jfx-impl.xml:374: fx:deploy doesn't support the "includeDT" attribute
    Is there any fix for this?

    I had the same issue and got following reply from Developer :
    Latest NB builds are generating files using attribute that is not available in your JavaFX SDK build.
    Please upgrade to latest build (b46+).
    As workaround - search nbproject folder and remove all occurrences of includeDT="true"
    Where do I find "JavaFx SDK build 46" ?
    Any idea guys ...

  • Windows 8.1 and IE11 - Critical Error: Object doesn't support property or method 'addEventListener'

    Our SharePoint 2010 sites don't work very well in Windows 8.1/IE11!!
    When opening list items or forms etc we get Critical Error : Object doesn't support property or method 'addEventListener'. It looks like it's possibly linked to InfoPath forms. Given that a large chunk of our users will probably be upgrading
    to Windows 8.1 as we speak this is slightly worrying!
    Has anyone else noticed this, or is it something to do with our deployment?  We're running SP2010 SP2 with latest CU.

    In older versions of IE, attachEvent is
    used to attach an event handler for some event on some element. But as per the update , starting with IE11, attachEvent is
    deprecated and you should use addEventListener instead.
    IE has included support for addEventListener from
    IE9 and above only. So if you still need to support IE8, I suggest you use some cross-browser library like jQuery to bind event handlers instead of vanilla javascript.
    As you're already using jQuery, you can bind events like below
    $('#yourElement').on('click', function(){
    // do something when you click on yourElement

  • TS3408 I keep on getting this error message on my Yahoo and Safari You're almost there, but your web browser doesn't support the newest version of Yahoo! Mail

    I keep on getting this error message on my Yahoo and Safari all of a sudden;
    You're almost there, but your web browser doesn’t support the newest version of Yahoo! Mail
    The links it gives to upgrade don't work !
    I have Safari Version 5.1.7 the latest for Snow Leapord. I get the same error message on Firefox and Google Crome aI even dowmloaded another Brower for Mac still got he same error message ! I have used the Disk Utility to rparir files and rest Safari. I have deleated Firefox then downloaded a fresh version, still the same error messages ! Please help it's driving me nutts.

    Perky --
    You do not need any "Cleaner" app for Macs.  I would not be at all surprised if that didn't actually damage your Mac, especially if it were MacDefender. Applejack is OK, but I'm not sure what it erased.  Do you know?
    You also don't need any Virus Barrier.  That could also mess things up.
    The fact that all of your browsers are now messed up indicates that it is not a Safari problem, but more system-wide.
    Did you check here?
    http://help.yahoo.com/l/us/yahoo/mail/yahoomail/technical/

  • I keep on getting this error message on my Yahoo mail. You're almost there, but your web browser doesn't support the newest version of Yahoo! Mail

    I keep on getting this error message on my Yahoo mail all of a sudden;
    You're almost there, but your web browser doesn’t support the newest version of Yahoo! Mail
    The links it gives to upgrade are blocked
    I have latest version of FireFox 19 and Snow Leopard. I get the same error message on Safari and Google Crome aI even downloaded another Browser for Mac still got he same error message ! I have used the Disk Utility to repair files and rest Safari. I have deleted Firefox then downloaded a fresh version, still the same error messages ! Please help it's driving me nuts.

    You can check for problems caused by a possibly corrupted user agent.
    See:
    *https://support.mozilla.org/kb/Finding+your+Firefox+version
    *https://support.mozilla.org/kb/websites-say-firefox-outdated-or-incompatible
    *http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • JavaScript runtime error: Object doesn't support property or method 'Load'

    I'm pretty new to SharePoint 2013 apps and CSOM. I have written a simple SharePoint-hosted App in Visual Studio 2013 which attempts to display the current user's user profile picture using CSOM and JavaScript. Here is the code in my App.js file:
    $(document).ready(function () {
        var context = SP.ClientContext.get_current();
        var peopleManager = new SP.UserProfiles.PeopleManager(context);
        var userProperties = peopleManager.getMyProperties();
        context.Load(userProperties);
        context.executeQueryAsync(function (){
            if (properties) {
                var pic = userProperties.get_pictureUrl();
                $('#userProfileImage').attr("src", pic);
    I am getting error "JavaScript runtime error: Object doesn't support property or method 'Load'" on line "context.Load(userProperties);"
    I have SP.UserProfiles.js referenced, which is why this command executes successfully: var peopleManager = new SP.UserProfiles.PeopleManager(context); Is it my context object or userProperties object that is causing this error, and why? Thanks
    in advance for your help.
    Frank Foreman

    Hi,
      This method is case Sensitive, try this context.load(userProperties);

  • JsRender error Object doesn't support property or method 'render'

    I have used jsRender.js in a content editor on a webpart page.
    Whenever I am using the following line inside document.ready(), it gives error.
    $( "#SearchResults" ).html(
    $( "#resultTemplate" ).render( results )
    Error: Object doesn't support property or method 'render'.
    Basically on a button click, this is getting called to display the results.
    I have checked, the jsRender.js file getting loaded properly.
    Can anyone help in this issue.

    Hi All,
    Using the developer tool, when I am running the render method on $( "#resultTemplate" ) element, it's again giving the same error.
    I have properly referred the jQuery and jsRender file using the seperate </script> tag. Also identified that on page load, these files are getting properly loaded.
    Here is the following code I am using, where I am calling the search function in last line (originally on button click):
    <script src="/sites/Tools/siteassets/jquery/js/jquery-1.7.2.min.js" type="text/javascript"></script>
    <script src="/sites/Tools/SiteAssets/FormExtension/jsrender.js" type="text/javascript"></script>
    $(document).ready(function(){
    var searchCount = 0;
    function search(term) {
    // Show loading animation
    $(".loadingAnim").show();
    $("#searchResults").html("");
    var curCtx = new SP.ClientContext.get_current();
    var searchCAML = "";
    var searchToBeAppended = "";
    var searchTerms = term.split(" ");
    // remove empty elements/blanks
    searchTerms = $.grep(searchTerms,function(n){
    return(n);
    if(searchTerms.length > 1){
    searchCAML += "<And>";
    $.each(searchTerms, function(i, t){
    if(i == 0 || i == 0 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 0 && searchTerms.length > 2){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 1 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains></And>";
    }else if(i == searchTerms.length-1){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else{
    searchCAML += "<And><Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    searchToBeAppended += "</And>";
    if(searchTerms.length > 2){
    searchToBeAppended += "</And>";
    // Append necessary colsing tags
    searchCAML += searchToBeAppended;
    //reset searchToBeAppended
    searchToBeAppended = "";
    if(searchTerms.length > 1){
    searchCAML += "<And>";
    $.each(searchTerms, function(i, t){
    if(i == 0 || i == 0 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 0 && searchTerms.length > 2){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 1 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains></And>";
    }else if(i == searchTerms.length-1){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else{
    searchCAML += "<And><Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    searchToBeAppended += "</And>";
    if(searchTerms.length > 2){
    searchToBeAppended += "</And>";
    // Append necessary colsing tags
    searchCAML += searchToBeAppended;
    if(searchCAML != ""){
    searchCAML = "<View><Query><Where><Or>"+ searchCAML +"</Or></Where></Query><RowLimit Paged='FALSE'>500</RowLimit></View>";
    }else{
    searchCAML = "<View><RowLimit Paged='FALSE'>500</RowLimit></View>";
    /* Load Equipments*/
    listEqui = curCtx.get_web().get_lists().getByTitle('Dossiers');
    var queryResults = new SP.CamlQuery();
    queryResults.set_viewXml(searchCAML);
    listItemsResults = listEqui.getItems(queryResults);
    curCtx.load(listItemsResults , 'Include(ID, Title, Group, Created, Responsible, Client, Autor, Party1, Party2, search )');
    curCtx.executeQueryAsync(getListItemsSuccess, getListItemsFailure);
    function getListItemsSuccess(sender, args) {
    var term = $("#searchTerm").attr("value");
    var results = new Array();
    var listEnumerator = listItemsResults.getEnumerator();
    while (listEnumerator.moveNext()) {
    var element = {
    ID: listEnumerator.get_current().get_item("ID")
    , Title: listEnumerator.get_current().get_item("Title")
    , Group: listEnumerator.get_current().get_item("Group")
    , Created: listEnumerator.get_current().get_item("Created")
    , Responsible: listEnumerator.get_current().get_item("Responsible")
    , Client: listEnumerator.get_current().get_item("Client")
    , Party1: listEnumerator.get_current().get_item("Party1")
    , Party2: listEnumerator.get_current().get_item("Party2")
    , Autor: listEnumerator.get_current().get_item("Autor")
    , term: term
    results.push(element);
    $("#searchResCount").text( results.length + " dossiers found");
    $( "#SearchResults" ).html(
    $( "#resultTemplate" ).render( results )
    AddHoverStyle();
    $(".loadingAnim").delay(1000).fadeOut();
    function getListItemsFailure(sender, args) {
    SP.UI.Notify.addNotification('Failed to get list items. \nError: ' + args.get_message() + '\nStackTrace: ' + args.get_stackTrace(), false);
    $(".loadingAnim").delay(1000).fadeOut();
    //Calling search function.
    search("cl")
    Kindly let me know if something is wrong here.

  • The driver doesn't support the version of ODBC

    Hi:
    We have been working with timesten client on a windows, we had not have any problem, the number of clients had not connect more than 80 clients, but today we connected 125 clients and we got this error directly to the client application.
    ERROR [08001] [TimesTen][TimesTen 7.0.1.0.0 CLIENT]Unable to connect to data source (DSN: SentraProdDSN; Network Address: 10.100.134.24; Port Number: 16003). ENOTSOCK: Invalid socket or socket closed.
    ERROR [01000] [Microsoft][ODBC Driver Manager] The driver doesn't support the version of ODBC behavior that the application requested (see SQLSetEnvAttr).
    But on the server error log the messages were:
    14:52:02.75 Err : SRV: 8974: EventID=5| Socket recv() failed. Error (131): Con
    nection reset by peer. File: /olympus/build/release_20070911/VisiChannel/oc/src/
    vostcpip.cpp; Line: 632
    14:52:02.75 Err : SRV: 8974: EventID=68| Failed to read request from client. Cl
    osing connection without reply.
    14:52:06.38 Err : SRV: 9078: EventID=5| Socket recv() failed. Error (131): Con
    nection reset by peer. File: /olympus/build/release_20070911/VisiChannel/oc/src/
    vostcpip.cpp; Line: 632
    14:52:06.38 Err : SRV: 9083: EventID=5| Socket recv() failed. Error (131): Con
    nection reset by peer. File: /olympus/build/release_20070911/VisiChannel/oc/src/
    vostcpip.cpp; Line: 632
    14:52:06.38 Err : SRV: 9078: EventID=68| Failed to read request from client. Cl
    osing connection without reply.
    14:52:06.38 Err : SRV: 9083: EventID=68| Failed to read request from client. Cl
    osing connection without reply.
    14:52:06.81 Err : SRV: 9116: EventID=3| Socket send() failed. Error (32): Brok
    en pipe. File: /olympus/build/release_20070911/VisiChannel/oc/src/vostcpip.cpp;
    Line: 728
    14:52:06.81 Err : SRV: 9116: EventID=5| Socket recv() failed. Error (131): Con
    nection reset by peer. File: /olympus/build/release_20070911/VisiChannel/oc/src/
    vostcpip.cpp; Line: 632
    14:52:06.81 Err : SRV: 9116: EventID=68| Failed to read request from client. Cl
    osing connection without reply.
    14:52:07.13 Err : SRV: 16186: EventID=5| Socket recv() failed. Error (146): Con
    nection refused. File: /olympus/build/release_20070911/VisiChannel/oc/src/vostcp
    ip.cpp; Line: 632
    14:52:07.57 Err : SRV: 16186: EventID=5| Socket recv() failed. Error (146): Con
    nection refused. File: /olympus/build/release_20070911/VisiChannel/oc/src/vostcp
    ip.cpp; Line: 632
    So we don't know if this error could happen because the number of connections were exceeded, but when this has happened the error messages is different.
    Let me tell you that the application client was developed using C#. So could it be that the C# on .NET could have a instruction that the timesten ODBC could not manage?

    Is this problem reproducable? i.e. Does it occur whenever you get close to 125 clients connecting to TimesTen? Next time when it happens again, can you check to see whether you can establish a new client/server connection locally on the TimesTen server machine?
    Each TimesTen Client connection requires one server process, and by default, a server process is spawned when a client requests a connection. It is possible that you may have too many processes running on the server, hence it cannot spawn additional server processes to handle the new connections. The good news is that in 7.0.3, the TimesTen server is now multi-threaded and each process can handle multiple client connections (this number is configurable), so it's possible to have fewer server processes for the same number of client connections compared to previous releases.
    Please check out "Specifying multiple connections to the TimesTen Server" in the 7.0.3 Oracle TimesTen Operations Guide for more information on how to turn on the multithreaded mode.
    Regards
    Simon

  • Video does not play: "Either windows doesn't support the item's file format......"

    Error message
    "Either windows doesn't support the item's file format or the content doesn't match the extension"
    I have both a Yoga and a Thinkpad 2. The Yoga is running Win 8 and the Thinkpad 2 has 8.1 Preview.
    I have copied multiple video files which are in either .avi or .mp4 containers.
    Some will play and some will not. I have installed all sorts of codec packages and players and the problem is the same. I though it might be a container problem so I tried to convert the file and the converter I used did not work.
    Searched the Internet and nothing really useful was found.
    Then I discovered a common thread. In the files that played, the codec information displayed when checking in properties and the ones that did not play, did not have the information.
    I have a video file on a USB flash drive and checked the properties and the information was there and I could play it from the flash drive. I copied it to my desktop and the file would not play. In checking, the codec information was not present.
    There seems to be an error in copying files where the requisite codec information is not being transferred.
    I have tried this multiple times and multiple permutations of transferring. Sometimes it will play from the desktop and will not play after transfer to the microSD card.
    Each time when it plays, the information is there and each time it does not play, the information is not there.
    Sal

    The problem is the period at the end. This system assumes it
    to be part of the url. I should have put a space and the end of the
    url before using a period to close the sentence. try this one:
    http://www.aaew.org/intro.swf
    http://www.scofieldministries.org/webtest/mv1.swf
    http://www.scofieldministries.org/webtest
    Please note that just the home page and supporting files have
    been loaded to the test server.
    Thanks,

  • Just got a Nikon D610 and CS5 for Mac can't open the images -- message says installed version of camera raw doesn't support the camera.  Downloaded the Raw 6.2 update for Mac, but installation failed. Now what?

    just got a Nikon D610 and CS5 for Mac can't open the images -- message says installed version of camera raw doesn't support the camera.  Downloaded the Raw 6.2 update for Mac, but installation failed. Now what?

    The D610 didn't get out-of-the-box RAW support until Photoshop CC.
    You can either upgrade to CC or use the DNG Converter to convert and open your DNGs in CS5.

  • HT4009 "Sorry, your device doesn't support the payment". Trying to make in app purchase.

    Hi, i am trying to make an in app purchase in the game Iron Force, but keep getting a screen pop up that says "Sorry, your device doesn't support the payment". I have already tried to trouble shoot this, I went into settings and made sure in app purchases were on, I also checked my I tunes account and verified my info. Also I have hard reset the phone, and the app, turned the phone off and on, deleted the app and reinstalled it on my iphone. I am stuck, if anyone can help me that would be great. Thank you.

    Have you done as the message says and contacted iTunes Support (these are user-to-user forums) ? If not then you can do so via this link and ask them why the message is appearing : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • HT4009 IX have an iPad version 4.3 and I had instagram install, like I was having problem I uninstalled it, but now I can't install it again, because my iPad doesn't support the new version, is there a way that I can download instagram for this iPad?

    I have an iPad version 4.3 and I had instagram install, like I was having problem I uninstalled it, but now I can't install it again, because my iPad doesn't support the new version, is there a way that I can download instagram for this iPad?

    Update your iOS.
    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1.3. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
    Tip 2 - If you're updating via wifi, place your iPad close to your router to preclude getting a corrupted download.
     Cheers, Tom

  • Fx:application doesn't support the nested "resources" element

    All
    I am trying to use the ant tasks to package up javafx as per this document https://blogs.oracle.com/talkingjavadeployment/entry/native_packaging_for_javafx
    When running it with the following target
    <fx:deploy  nativeBundles="all"  outdir="${dist.dir}" outfile="${application.title}">
                   <fx:application name="${application.title}" mainClass="${main.class.name}">
                        <fx:resources>
                             <fx:fileset dir="${basedir}/${dist.dir}" includes="BrickBreaker.jar" />
                        </fx:resources>
                        <info title="${application.title}" vendor="${application.jnlp.vendor.name}" />
                   </fx:application>
              </fx:deploy>I am getting fx:application doesn't support the nested "resources" element.

    Apologies fixed by moving it out of fx:application

  • Running OS X 10.9 but when trying to list an item to sell on ebay it say=Sorry. Your browser doesn't support the popular listing options selling form. If you'd like to try it, please try using Internet Explorer 6 or higher, or Firefox 1.5 or higher. Help

    I am running OS X 10.9
    but when trying to list an item to sell on ebay it say=  Sorry. Your browser doesn't support the popular listing options selling form. If you'd like to try it, please try using Internet Explorer 6 or higher, or Firefox 1.5 or higher.
    Help please so I can continue my sad life

    Tried to see if it is looking for flash and it is disabled or not installed by default; java (not being installed and best to turn it off normally), browser agent to report it as something else.
    Opera comes the closest I've read to spoofing a site telling it is IE but you have to do so per site. Also OmniWeb.

Maybe you are looking for