Mysteriously missing Main.asc

Any of you ever heard of a "mysteriously" deleted main.asc file to the application directory?

I am working on a client project that grew on an internal server to Fedora Core 5 where I had installed FMS. I downloaded the video stream to the client and coded main.asc for two different applications. One of them, the bigger of the two, had code very important here that took me several all-nighter to get right.

Long story short, that the project has been put on hold for a while and now I'm taking another look and move it to a live server on the internet. In doing so, I am seeing that the main.asc file I wrote for one of the projects is simply DISAPPEARED, as it is never existed. The other application is fine, intact, but the more important of the two has another strange twist: a directory called "http" that I never created. Inside there are some streams (places in their own subdirectories) of the directory of "flow" of the application that I never transferred into it. And of course, as I said, the main.asc file is simply disappeared.

Looking at the logs don't give me any information (which resembles newspapers just turned a day or two ago). Does anyone have any ideas how I can find:

(a) how the hell this was deleted,.
(b) if there is a backup somewhere on the system (already tried updatedb/locate main.asc, no help)
(c) how can I prevent it from happening again

Thanks in advance for any help you can provide.

Thanks for your input Jay. The only conclusion I can reach is that it must have human error. I crossed ~/.bash_history did a search for all regarding main.asc and found that instead of "cp", I used 'mv' to MOVE the file to another location. Unfortunately that site has been cleaned up a bit more than a month, so the only copy of the file deleted.

My main concern was that FMS is somehow, but now that we have excluded this possibility, and now that I know how/why the http directory has been created, I'm 'OK '.

Once again, thank you for your help. I feel like a fool, but, you know... I have to lower my pride somehow ;-)

Tags: Adobe Media Server

Similar Questions

  • AppStats using onGetAppStats() in main.asc

    Hello

    I'm currently collecting of appstats by using this code in main.asc.

    What's not here?

    application.onConnect = function (p_client, p_autoSenseBW)

    {

    this.acceptConnection (p_client);

    nc_poll = new NetConnection();

    nc_poll. Connect ("rtmp://localhost:1111 / admin admin", "","a1s2d3f4");

    nc_poll. Call ("getAppStats", new onGetAppStats(), "vod");

    function onGetAppStats()

    {

    this.onResult = function (info)

    {

    trace ("POOJA 1111");

    outputBox.text = "Info for '+ appName.text +' has returned:" + newline;

    trace ("POOJA 2222");

    printObj (info, outputBox);

    }

    }

    function printObj (obj, destination)

    {

    trace ("POOJA 3333");

    (var prop in obj)

    {

    destination. Text += "\t";

    destination. Text += prop '=' + obj [prop] + newline;

    If (typeof (obj [prop]) is' objects ' ")

    {

    trace ("POOJA 4444");

    printObj (obj [prop], destination);

    }

    }

    }

    }

    Thank you

    You always call getAppStats on the connection without being sure that the connection is established. Call a method outside onConnect in response to the onStatus event.

  • MD5 function in main.asc

    Hi all

    How can I use md5 function in main.asc.

    I'm passing md5 token to main.asc, but I can't calculate the md5 value in main.asc.

    Kind regards

    Ivan

    There are no built in md5 method, but actionscript side server is javascript, so you can use any library MD5 javascript with minimal changes. Many gpl and results on google for this.

  • FMS do not read main.asc. I'm going to crazy. Someone help me.

    Hello. All.

    I find enough. and I did my best for 3 days.

    Unfortunately, I could not solve this problem.

    If you help me, you can be my ray of sunshine.

    I develop text Chat application using the Flex4.6 & 4.5 FMS.

    I want to count the number of users online.   I found some information by Googling.

    As a result of Google search, I figured out that I need SSAS (Server Side Action Script)

    http://www.fmsguru.com/showtutorial.cfm?tutorialID=48

    I followed what he did pecfectly. This source code is what I did.

    UserCount.mxml

    ------------------------------------------------------------------------------------------ -------------------------------------

    <? XML version = "1.0" encoding = "utf-8"? >

    "" < s:Application xmlns:fx = "http://ns.adobe.com/mxml/2009http://ns.adobe.com/http://ns.adobe.com/mxml/2009mxml/2009"

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx".

    minWidth = minHeight = "955" "600" currentState = "LogIn" >

    < s: states >

    < name s: State = "LogIn" / >

    < name s: State = 'LoggedIn' / >

    < / s: states >

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var nc:NetConnection;

    protected function button1_clickHandler(event:MouseEvent):void {}

    NC = new NetConnection();

    nc.addEventListener (NetStatusEvent.NET_STATUS, onNetStatus);

    NC.client = this;

    NC. Connect ("rtmp://192.168.0.5:80 / livepkgr /");

    }

    public void setUserCount(userCount:Number):void {}

    userCountText.text = userCount.toString ();

    }

    private void onNetStatus(e:NetStatusEvent):void {}

    If (e.info.code.IndexOf ("Success")! = - 1) {}

    currentState = 'LoggedIn ';

    }

    }

    []] >

    < / fx:Script >

    < s:Panel includeIn = "LogIn" x = "10" y = "10" width = "250" height = "200" title = "Login to my application" >

    < s:Button = "89" x = "64" label = "Login Now!" click = "button1_clickHandler (event)" / >

    < / s:Panel >

    < s:Label = "LoggedIn" x = "150" includeIn = "136" color = "#0E55F6" fontSize = "20" text = "You are now logged!" / >

    < s:Label = "LoggedIn" x = "151" includeIn = "94" width = "214" color = "# 8 2222" id = "userCountText" text = "" / >

    < / s:Application >

    hand. CSA

    ------------------------------------------------------------------------------------------ -------------------------------------

    application.onConnect = function (client)

    {

    application.acceptConnection (client);

    userCount = application.clients.length;

    customer. Call ("setUserCount", null, userCount);

    }

    ------------------------------------------------------------------------------------------ -------------------------------------

    1. I have published this project.

    1.jpg

    2. I got the released files.

    2.jpg

    3. I copied these files to the webroot of the FMS and the file main.asc also.

    3.jpg

    4. I connected this remote PC server. I could connect. And I clicked on the button.

    http://xxx.xxx.x.x:8134/UserCount/UserCount.html

    4.jpg

    NO REACTION

    5. so, I checked setUserCount point of stop. This method is called by SSAS.  I want to know whether or not this method is called. But there is no break. This means main.asc does not work.

    5.jpg

    Pls know me what is my mistake.

    Thanks in advance

    Kevin.

    .HTML is you client app. That you serve over http. FMS come into piture, when you your client to connect to http://///

    But in your client application, you must connect to FMS via rtmp url (that I see in your msxml), as nc.connect ("rtmp://192.168.0.5:80 / livepkgr /" "");

    Here the connection url must be of format rtmp://server-ip/

    In my last reply, I meant fms-app-name. It is application fms server side (main.asc), which must be in the folder of the application of the WFD

  • Where should I place main.asc?

    Hi ~ all.

    I placed the main.asc in /FMS/webroot/main.asc

    It does not work.

    so I put here.

    / FMS/Webroot/MyApplication/hand. CSA

    This also does not work.

    The path is correct?

    How FMS can recognize main.asc file?

    Thanks in advance.

    To connect to an application, the server must know that there is a demand. This process is called registration request to the server. To register an application with the server, create a folder of application in the applications folder. For example, create the following folder to save an application called "MyApplication":

    RootInstall/applications/myApplication

  • connection failed when on my main.asc file .asc file loading

    Hey guys,.

    You have a very big problem here. I continue to get "NetConnection.Connect.Failed" when I load a .asc file on my main.asc file, I use the load() method in my code. I really don't understand why this happens, but when I comment the code that loads the CSA file, I can connect successfully to SGF. I can't understand what is happening here. BTW, I'm using fms4 in windows 7 32 bit.

    Any response is truly appreciated. Thanks in advance!

    Randy

    You can download the installer of FMS 3.5 and install it on a different machine and copy the folder I mentioned, and then remove the installation or if you want I can send that Opposite 3.5.3 installation I - give me your email id - I'll send it everywhere if you want.

  • How will I know what main.asc recharge?

    I'm working on an application that uses a main.asc and two applications that connect with her. How can I know which hand has unloaded so I can be sure that my copy is one that is running?

    I know this is supposed to unload when the last client is disconnected, and I have no doubt that it is. The question is, how can I say this?

    Main.ASC is responsible whenver starts an instance of the application.

    FMS stop automatically application instances when the last client disconnects... it happens on the first garbage collection running after the last customer left.

    If you want to be sure of main.asc version you are running, you can manually stop and restart the instance of the administration console (you'll know for sure in this way). Alternatively, you can keep a journal using the file class.

  • Can not make a call to main.asc

    Well, I have something simple past, but I can't. I'm trying to add a function of heartbeat to main.asc so that my client applications can often detect a connection. But I can't call to work.

    Here's the code for the main.asc:

    Client.prototype.Heartbeat = function()
    {
    trace ("typed Heartbeat");
    return "Hello!";
    }

    This is the call for the customer:

    private void ConnectionTest)
    {
    var rtn;
    RTN = m_connection.call ("heartbeat");
    If (rtn! = 'Hi!') {
    Alert.Show ("heartbeat lost");
    }
    }

    I'm following other examples in the code that work. I get no response from the main and the function trace to hand does not print in the server admin page, where I expect to see. You can see what the problem is?

    You set the NetConnection instance variable in a function? If so, it could be an issue of concern. For example:

    function doConnect() {}
    var nc = new NetConnection()
    NC. Connect (blah, blah)
    }

    If you do it this way, the scope of the var is the function, so you get vacuuming when the function is done running.

  • One of my Office of mysteriously missing folder? !!

    A folder that I had on my desk (with a number of photoshop and jpg files), has apparently disappeared in the air!

    (SOMEONE ELSE HAD FOLDERS DISAPPEAR ON THEM BEFORE?!)

    I tried to search the names of missing files via the Finder and Spotlight, but nothing came on my missing files. I did not remove this file.

    I tried to use some free trial called iSkysoft Date of recovery program, but it will leave you not even get anything, unless you pay a heavy tax. And even then, there was a lot of content to sift through (it was not the name of the original file), so I don't even know if it was there.

    It's very frustrating. I just bought the Mac OS X El Capitan a month ago. I work as an artist, and I CAN NOT have just record mysteriously disappear on me.

    I am trying to familiarize myself with other useful programs, no iCloud help things back up automatically. (I've not used before).

    Also, can someone suggest a perhaps different data recovery program?

    Thanks for any advice.

    OS X does not magically records and data, I suspect a user has made a mistake. Open the Recycle Bin to see if the folder and its contents is there. If they are then right-click and select set back and continue your work. If they are missing use your Time Machine backup to restore the folder. If you do not back up the computer and the data are not in the trash she is lost and cannot be recovered. That's why TM exists to avoid any data loss. If you do not use it please get an external HD to start to back up your system. If you are not familiar with TM please click on use Time Machine to back up or restore your Mac - Apple Support for more information.

  • E-MAIL: E-mail mysteriously leave main folder "sent"?

    I come home late last night having to check an email I sent a month earlier.

    This is normally no problem because I save all my emails sent and received.

    To my horror, when I clicked on the box sent had only 4 emails instead of several hundred! (See screenshot).

    Had I accidentally deleted them in a recent frenzy of trashing?

    After a few minutes, I discovered chicks in "Mail sent" in the section "on my Mac" bottom of the left column (see screenshot).

    Can someone explain how they got there or what's mysterious to you as it is for me?

    I certainly have not consciously move them and no one else has access to my computer.

    By the way, my emails SENT have disappeared at the same time last year, but I never found them on this occasion.  .  .  .  they were probably in this folder all the time!

    PS Please ignore the reference to 'El Capitan' below, I use Yosemite on this computer.

    Try re-indexing of mailboxes mailbox. This can take some time if you have a lot of mail.

    Reindex messages           For El Capitan, try looking in V3.

    Reindex messages (2)        See post by Linc Davis

  • Apple TV 4th generation feature missing Main Menu which was in 3rd generation

    Why such a fundamental and useful feature has been removed from the 4th generation Apple TV? Why then I is no longer, as a user, select each App which are accessible via an access code and those who are not? Why would such a useful feature removed? The same power cord of the 3rd generation works with the 4th generation, but such a basic and simple function has been removed from the more advanced hardware. Apple should solve the problem.

    If you want Apple to make changes, you must let them know:

    http://www.Apple.com/feedback

    Remember, what you consider a "core function" can not be considered fact by Apple.

  • Mysteriously missing Internet connection

    I have little computer knowledge.  Have Pavillion notebook dv6000, Vista Service Pack 1.  Wireless internet connection good for approximately 2 years with no problems.  3 days ago I uninstalled factory installed Norton Protection that was expired and free AVG and installed Microsoft Security Essentials.  
    
    Now, when trying to connect to wireless internet through Internet Explorer continually receive error message "Internet Explorer cannot display web page".  Tried Mozilla Firefox and was able to connect to internet through Mozilla a few times that same day until "Security alert" popped up and said to download a critical update.  After this update I can no longer access internet through Mozilla either--get error message that Firefox has stopped working.  
    
    While still able to connect to internet with Mozilla, I installed Vista Service Pack 2.  Windows also asked for some updates, but I don't recall what they were for.  After these updates the "critical update" alert from Firefox came up and after installing it I can no longer access internet.  
    
    Laptop shows internet connections are fine, but connection will not go through. In Device Manager, Network adapters lists Broadcom 802......WLAN and Realtek RTL.....Fast Ethernet NIC (NDIS 6.0)  
    
    Please advise as to what else I can do.  I'm considering to a restore to factory condition through Recovery Manager, but it indicates it's best to do that while "connected to internet"  obviously I can't connect to internet.  I don't have recovery disks, but in reading some materials it seems that isn't necessary.  We just recently backed up data for a different problem, so I don't need to back up anything.  Just want internet connection.  
    
    In reading many of the issues posted here, am wondering if some type of virus is attacking?
    

    My situation resolved after restoring your laptop to original factory condition.  Will post if this problem appears again.  Reading the other posts, it seems if you want latest Mozilla updgrades downloan, you must remove previous versions first or will experiment fails.  Is it possible that the same could be true for Internet Explorer?

  • How to enable administrative tools that has mysteriously disabled?

    Original title: administrative tools

    All items in administrative tools have mysteriously been disabled. How can I activate all? If all goes well, not one at a time! Y at - it a "Default Setting" routine, or I have to allow each element separately?

    Thank you

    Joe Killmann

    What does "disabled" for you?

    Are mysteriously missing or mysteriously disabled administrative tools?

    If you go into Control Panel, completely missing the Tools folder administration, or is there but empty?

    What do you think has happened since the last time things worked correctly?

    I find that Microsoft hired 'expert' technician support ideas that can help you from:

    "Method 1", to avoid the administrative tools shortcuts in the Panel that you copy and paste.  Administration tools belong in the Administrative Tools folder - not in the control panel.

    Regarding the "method 2", you don't describe symptoms compatible with a need to run sfc/scannow.

    In addition, the System File Checker don't know or don't care shortcuts to administration tools (or indeed all the shortcuts) or whether they are enabled or not.  It's not what they did System File Checker, this isn't how it works and it's not what it is for.

    It's just another committed Microsoft Support Engineer 'expert' wild goose chase.  Suggesting he looks like to say "I don't know what the problem is or how to fix it.

    But maybe you'll get lucky.

  • How to change the application Livepkgr main.far

    Hej, we are trying to achieve mobile webstreams for our customers. So far, I realized a scenario, where my custom cam application connects to the application of livepkgr, which starts to record the stream and publish video files of HLS. What we do in our main application (flash player based), are a few billing intervals, check-ins on database and so on. So in my understanding, it is necessary to implement some of these necessary functions in the application of livepkgr as well, because the customer directly calls the url for mobile stream, without any flash. There is no communication to our custom to all application, I'm wrong? Then I ve tried to simply replace the main.far by a main.asc custom (decompressed archive before you get the original main.asc). But now, when I want to test the scenario again, the connection is rejected by the livepkgr application. He say´s the main.asc ist not signed. Is it possible to archive this? Or would it be sufficient to extend my existing application (main.asc) in the way the livepkgr Application records flows for not using two applications for office outings / mobile? Any help would be really appreciated! Thanks in advance, Patrick

    For all those who have the same problem (info: you cannot find any information on it).

    The default deployed livepkgr ist signed by Adobe. You must copy the example/livepkgr like you new application where you can change the main.asc every time.

    Adobe: Please provide some of this information in your documentation!

  • HP LaserJet Pro 200 Color MFP: HP LaserJet Pro 200 Color MFP M276n: low memory

    Hello

    my new M276n printer has memory problems. Printing over two pages are stopped with a notification of "memory". I searched this forum and found a 'temporary' solution (reset printer to default settings) and a stage of 3 mysteriously missing (deleted the message). This does not in the long run because after only 4 more printing, I have the same problem again. I don't print many, mainly Amazon returns labels and information. Reset or not, the information page shows 127MO 256 MB available memory. What is the other half serving?

    Issues related to the:

    1. is there a solution?

    2 can it help if I disable unnecessary features (fax)?

    3. can I disable fax? (If Yes: how?)

    4. is there a solution?

    Thank you!

    Restore the default settings is not usually serve the memory of a printer.  You need a cold reboot to complete this procedure.

    Cold Reset as follows:

    http://h30434.www3.HP.com/T5/printing-issues-troubleshooting/HP-LaserJet-Pro-200-color-MFP-M276nw-cold-reset/TD-p/5060955

    The video at the bottom of the first page is very useful.

Maybe you are looking for

  • Music and playlists in iTunes

    I just added a CD in iTunes "Add folder to library" which went well. The tracks are now show under "Recently added" but I have problems adding these tracks in my playlists. The pearls of wisdom? Thank you

  • M7690N installed a Galaxy GT520 now no sound from audio jacks

    I have a HP M7690N that I just installed a Galaxy GT520 video card in and now I can not the audio of any of my audio jacks. If I get the HDMI audio. My system is a M7690N running Windows 7 and windows XP (dual boot). also the audo Realtek card dose n

  • iMovie does not start new project

    At the start of new projects in iMovie, he made this mistake. I can press on 'New film' but just after him named (is to ask for a name), the error appears. In English it say something like 'action could be done. There is no additional information on

  • Satellite 1410-304 does not start after upgrading memory

    I tried to extend the memory of 512 MB to 1 GB by placing two memory modules in my laptop Satellite 1410-304.These blocks of memory are each 512 MB and type: DDR400 PC3200 SODIMM. Each memory separate block in one of the memory slots A or B works wel

  • All-in-one HP PSC 1315v: psc 1315v

    When you try to print word documents, the HP PSC 1315v all-in-One print only certain colors.  Currently, yellow and blue will print vaguely, but not black.  The last time, black would print very slightly, but some color would be to print.  Initially,