Skip to main content
Known Participant
May 13, 2011
Question

Files *.Asr not work on CF9 64Bits

  • May 13, 2011
  • 2 replies
  • 466 views

Hello,

I just installed a new server running Windows Server 2008 R2 and IIS7.5.

During the installation of ColdFusion 9 and then the update 9.01, it always goes well.

All of my site to work properly but all my services contained in files. Asr are not found.
The client says "Service engine.asr not found" and when I want to see what file I have a page 403.
My impression is that the files of type. Asr not handler for ColdFusion and are not treated.


I do not know if the problem is or to IIS7.5 CF9


I'm 64bits

Thank you for your help.

Sebastian

    This topic has been closed for replies.

    2 replies

    sebFranceAuthor
    Known Participant
    May 17, 2011

    I buy the full version and install standard and I have the same problem.


    All my file. Asr with functions developed within walking on ColdFusion 8 and not in ColdFusion 8


    Is that. Asr are still news?


    Thank you for your answers.
    Sincerely

    Community Expert
    May 13, 2011

    Are these .asr files video?

    Did they work before you installed CF?

    Dave Watts, CTO, Fig Leaf Software

    http://www.figleaf.com/

    http://training.figleaf.com/

    Dave Watts, Eidolon LLC
    sebFranceAuthor
    Known Participant
    May 13, 2011

    Hello,

    Thank you for your reply.

    No, this file is a server side ActionScript (SSAS) with functions written in actionscript.

    http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec11871-7fe3.html

    I use files with this type functions inside:

    function formatdec2(num)
    {
    if(isNaN(Number(num))) {return num;}
    if(num==0 || num==undefined || num=="")
    return "0.00";
    var snum = String(Math.round(num*100));if(snum.length==1){snum="00"+snum;};if(snum.length==2){snum="0"+snum;}
    if(snum=="NaN"){return "0.00"}
    return snum.substring(0,snum.length-2)+"."+snum.substring(snum.length-2);
    }

    I have many services using SSAS in my application.

    I installed the 64bit version ColdFusion 8 and everything works perfectly.

    This is something that is to inehrent CF9

    Again, thank you
    Sebastien