Any way to detect RTMFPP2PDisable

I have spent one week to find a send data problem and finally find that the user set RTMFPP2PDisable to 1.
That user can connect to my rtmfp server but cannot send any data.
Is there any api to detect that RTMFPP2PDisable is 1 and tell the user to enable it?

hi,I also Encounter this problem, I manually RTMFPP2PDisable = 0, still can't solve this problem, reinstall flash also cannot solve

Similar Messages

  • Any way to detect when a NotificationListeners MBean is removed?

    If I have an MBeanServerConnection through which I register a NotificationListener, is there any way to detect when either the MBean that the NL is registered for is removed or destroyed?
    Specifically, I fire up a process, register an MBean.
    A client connects to the process, and registers a NotificationListener.
    Finally, I destroy the original process. How can I be notified that this has happened in my NotificationListener Client?
    Is there something else I can use to monitor the JMX connection?

    It sounds as if you are looking for a notification when an MBean is unregistered. To get that, you need to register a listener on the MBean Server Delegate. See MBeanServerDelegate and MBeanServerNotification.
    Regards,
    Éamonn McManus -- JMX Spec Lead -- [http://weblogs.java.net/blog/emcmanus]

  • Is there any way to detect commited deleted record in a table?

    Hi All,
    Is there any way to find out commited deleted record in a table without using triggers?
    Thanks,

    If you want to get back the deleted records and you are using 10g or above than Flashback technology can get that for you.
    If you want to find out the commands that did the work and you are not using 10g than as suggested, Auditing and LogMiner can be the option.
    Aman....

  • Udf mapping: any way to detect last processed record?

    Hi !
    I need to detect inside my java user defined function, in the graphical mapping, if I am processing the last record of my input message, for example to add a trace message about how many records were processed, etc....I know I can detect the first one by mapping a function to the root node...and how about the last one ? are there any internal mapping variables available to recall inside a udf ?
    thanks,
    Matias

    Hi,
    one way would be to use a UDF of type queue
    which will store all values from your message
    this way you can get a total number of records
    if you have the total then you know which one is the last one...
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Is there any way to detect if there 's an JRE installed on customer machine

    I want to know if the customer has the JRE installed to make sure that my program can run.So the problem come,how can I know that.Someone told me to use
    a command like "java -version",which seemed reasonable.In that way,i should write a bat file do that.This file will detect if there is an JRE installed,if there is get the version of the JRE and compare with the available JRE of my program,but if not,connect to the offical site to download.It is really hard for me to do that bat file.I am just a new programer without any experience.So I really appreciate if someone give me some advice.Sorry,my english is so bad.I am waithing for the help.

    scphan wrote:
    masijade. wrote:
    P.S. @OP, java -version will only work if the path is set correctly, of course, and what it returns will not, necessarily, be the highest version installed on the system, just the particular version that the path points to first.>This works in versions 1.1 and up:
    public class FindVersion
         public static void main( String args[] )
              String prop = System.getProperty( "java.version" );
              System.out.println( prop );
    import java.io.*;
    public class ReadVersion
         public static void main( String args[] )
              try
                   Process proc = Runtime.getRuntime().exec( "java FindVersion" );
                   BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
                   String line = in.readLine();
                   System.out.println( "java.version="+line );
              catch ( IOException e )
                   e.printStackTrace();
    Yes, of course that does, when Java is already installed, of course. The question here was how to determine if it is installed, at all. And, that will also only give you the version of the Java currently being used, of course, and not, as I pointed out in that quoted post, not necessarily the highest version installed on the system.
    Please make your posts applicable.

  • Any way to detect key loggers?

    I have reason to believe that a keylogger was installed on my computer over the network maliciously. How would i find it if it was installed on computer? The mac keyloggers that I looked at all run in "invisible" mode (and can be put in any folder on the computer and will work)

    What sort of network are you connected to: LAN, Corporate network, etc.?
    As for a keylogger, if you're not connected to a network that manages your Mac, there'd be no way for anyone to install anything without Admin access, and only you should have that. So unless you aren't the Admin or leave yourself logged in all the time, this shouldn't be any concern.
    If you want to look for a keylogger, you'd have to open Activity Monitor and look through all the running processes to see if there is one running. Then you could Force Quit it, and find it on your system and delete it.
    Mulder

  • Is there any way to detect the iphone is rebooting currently?

    I am developing an app in which i want to call an API before device(iPhone) reboot.

    If you're a registered developer, you will find a faster and more accurate response in the NDA'd private forums at developer.apple.com. Else you might try the general developer forum here on the ASC, although the threads I've seen there are more oriented to OS X.

  • I have ipod touch 1st gen and it will no longer detect that i have headphones in the headphone jack and so i cannot turn up my volume. Is there any way it can be fixed?

    I have ipod touch 1st gen and it will no longer detect that i have headphones in the headphone jack and so i cannot turn up my volume. Is there any way it can be fixed?

    Have you tried:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    Apple will exchange your iPod for a refurbished one for this price:
    Apple - Support - iPod - Repair pricing
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Is there a way to detect two keys at the same time?

    Is there a way to detect the keys if the user is holding two keys down at the same time?

    yes, but you'll have to check outside of the event loop (i.e. don't check for it in the keyPressed method).
    just use an array of keys that keeps track of which keys are currently down and which are up. you could use a boolean array but I use an int array because... Im not sure I've just done it probably because of my C background. anyway, basic setup:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class MultiKey extends JFrame {
         int keys[];
         public MultiKey() {
              super();
              keys = new int[256];
              Arrays.fill(keys,0); // 0 = key is up
              enableEvents(AWTEvent.KEY_EVENT_MASK);
              show();
         public void processKeyEvent(KeyEvent e) {
              // the 0xff below binds the key code to below 256
              int key = (e.getKeyCode()&0xff);
              if (e.getID() == KeyEvent.KEY_PRESSED) {
                   keys[key] = 1; // 1 = key is down
              else if (e.getID() == KeyEvent.KEY_RELEASED) {
                   keys[key] = 0; // 0 = key is up
         protected boolean isKeyDown(int key) {
              return (keys[key] != 0);
         protected boolean isKeyUp(int key) {
              return (keys[key] == 0);
    }so now at any time in your code you can check key state by using the isKeyUp and isKeyDown methods. this is about as close as you get to input polling in java unless you use LWJGL or something similiar ;)
    you can try out a full executable example at my site here - just open up the jar and start holding keys down :)

  • Is there *any* way to ping MIDlet using default SMS/call (j2me)

    Hi,
    I'm writing a server style MIDlet which is polling a bluetooth device, the nature of the server is such that the phone running the MIDlet (in my case, a Motorola L6) is dedicated, it needs do nothing other than run the server, it is assumed it will not be used for anything else. Specifically the only phone calls or SMS messages it receives should be specific ping requests to server. The server will run 24/7, and should be resistant to being suspended by incoming calls (I've noted this could be a problem in itself).
    All I really want is for a 3rd party, without any special client software, to be able to ping the server (prompt it) to dispatch a set of text data to a pre-defined phone number via SMS (using WMA TextMessage).
    Basically someone should be able to set up the server, and then, with any phone (with no specific client MIDlet installed), be able to call or SMS the server and get a response posted back (to a fixed number, not necessarily to originating phone number).
    Does anyone know any way, no matter how hacky (needn't be pretty), to achieve this? You cannot receive SMS notifications on default port. An incoming call will call pauseApp which I could use - but not resume it, so server remains suspended. There are ways around having app suspended on receipt of call/SMS, but they involve never receiving the pauseApp notification, so I'm back to square one. I've wondered if I could check the free disk space on the MIDP profile (somehow) to 'detect' when it reduces in size, thus suggesting an SMS must have come in. Can a user send an SMS to a specific port with standard SMS-send interface (certainly can't see how myself, as no ':' character available). Can you hack the phone to re-route incoming SMS messages to something other than the default port?
    Is there a specific phone that might do this (I just need a phone supporting j2me bluetooth API, needn't be motorola L6)?.
    I think this can be done with Symbian (of which I know very little), and ultimately I might need to start programming with that, but I'd really prefer to continue using j2me..
    Any ideas would be greatly appreciated, I've spent a fair bit of time trolling for answers with only limited success.
    Cheers
    Edited by: bbloff on Oct 10, 2007 8:50 PM

    The tunnel default gateway is needed to let the internal firewall and router handle the routing for all decrypted IPsec packets. Today, after a Cisco IOS? EasyVPN Client connects to a Cisco IOS EasyVPN Server, there is no simple way for the client to send the tunnel traffic to the internal corporate network (other than to have the entire routing table on the IPsec gateway). In this type of implementation, the Cisco IOS routers use the default gateway to route all packets toward the Internet that do not have a more specific route. The tunnel default gateway gives customers the flexibility to control how they handle IPsec tunneled traffic

  • Any way to display a message when Flash is not found on the iPad?

    Apple is obviously rejecting Flash to protect it's 'App' revenue.  I've  been on Android phones that run Flash and display all my content  perfectly smooth.  It can be quite frustrating how they are trying to  bury it when I still have yet to see HTML5 replicate the type of  interactive content Flash is capable of producing. 
    Is there any way to display a message on the iPad when the Flash player is not found?
    I'd like it to says something along the lines of:
    "Unfortunately the Apple iPad does not support the Flash player  because their business interests do not want it taking away from their  App revenue.
    Did you know that the Dell Streak, HTC Flyer, Blackberry Playbook,  Motorola Xoom, Samsung Galaxy Tab, Toshiba Thrive, and HP Touchpad all  support the Flash player?"
    My HTML code looks something like this...
    <html>
    <head>
    <title>My Page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#ECECEC" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <body onresize="setFlashSize()">
    <div id="flashid" style="width:100%; height:100%;">
    <script type="text/javascript" language="JavaScript">
    function setFlashSize(){
    var viewportheight = document.body.clientHeight;
    var viewportwidth = document.body.clientWidth;
    var mydiv = document.getElementById("flashid");
    var styleheight = parseInt(mydiv.style.height);
    var stylewidth = parseInt(mydiv.style.width);
    if (viewportwidth<880){
    document.getElementById("flashid").style.width = 880+"px"; }
    else {
    document.getElementById("flashid").style.width = 100+"%";}
    if (viewportheight<760){
    document.getElementById("flashid").style.height = 760+"px"; }
    else {
    document.getElementById("flashid").style.height = 100+"%";}
    setFlashSize();
    document.write('<object data="index1.swf" width="100%" height="100%" type="application/x-shockwave-flash">');
    document.write('<param name="movie" value="index1.swf" />');                      
    document.write('<param name="allowScriptAccess" value="always" />');       
    document.write('</object>');
    </script>
    <noscript>Javascript must be enabled to view Flash movie</noscript>
    </div>
    </body>
    </html>

    Use swfobject for Flash detection and you can provide all kinds of alternate content... simple text, images, links, .js slideshow, a mov or mp4 video just for the iPhone... ANYTHING this is regular HTML. Your imagination is the only limit.
    And YES, HTML5 is a far cry from replicating Flash... so give them the best of both worlds.
    http://code.google.com/p/swfobject/
    Review this article which deals with Flash and SEO for more ideas:
    If you think that Flash is somehow bad for SEO, it's time to dispell that MYTH!
    If fact, in some circumstances I'll use Flash INSTEAD of just HTML because then I'll have better SEO than with just HTML alone.
    http://www.worldbarefootcenter.com/
    The link to World Barefoot Center in the above post is just one example. View the source code and you see a couple paragraphs of text along with regular HTML links.... but what displays is the Flash version of the image and Flash links.
    The client provided the artwork for the page... and that's what they wanted to use a .jpg image. Well yes, that could be done in HTML but it would be virtually invisible to Google. So Instead I converted the image into a Flash .swf and used swfobject to display the Flash. swfobject allows you to create alternate content inside the <div> which also holds the Flash .swf, then when the page is loaded it detects if the browser has the Flash pluggin. If it does, it displays just the Flash content, if not, it displays the alternate content. Since almost everyone has the Flash pluggin, for most people the Flash version of the <div> will display.
    The alternate content for that <div> can be any regular HTML text, images, media player, links, etc., anything that you would use if you were not using the Flash. Now the best part is that the alternate content can be "over the top" as far as optimizing for SEO, since it will not be seen by most viewers.
    Here's another example of SEO with Flash.. again, the page is just a single image provided by the client:
    http://www.ksowetsuits.com/
    View the source code. The alt content is paragraph after paragraph of information about the site, including lists and links. If it was just the HTML, it might be kind of a boring Home page. But for SEO I can go "over the top" in promoting the site, since most viewers will never see that part... but it's all indexed by search engines. The end result is BETTER SEO using Flash than just HTML.
    On another Web site, a Flash video is displayed, the alt content is the complete text narration of the video. Now how many people would take the time to read that if they could just watch the video instead?? again, better SEO with Flash than without. In fact in one case we had first page search result from that video narration within 4 hours of posting the page.
    On still another site with a Flash video, the alt content is another video, but a .mov version, which will, in effect play Flash video on the iPhone (not possible you say??). Well since the iPhone does not have Flash pluggin, it simply displays the .mov version of the video, while everyione else sees the Flash version.
    So anyway, if Flash is a part of your Web development, you should look into using swfobject and alternate content.
    http://code.google.com/p/swfobject/
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Adninjastrator

  • Is there a way to detect a other iphone near me

    Is there a way to detect a other iphone near me with a app or any other functionality of the iphone

    Just any iPhone? or one in particular?
    Find my Friends will allow you to locate people who have iPhones and have explicitly agreed to share their location with you. There are some third party apps which will allow you to locate people as well.
    Other than that, no.

  • Is there a way to detect the event when device goes to sleep and the screen blackens?

    I want to detect the event when the iOS device goes to sleep and the screen blackens?
    Is there any way to do it?

    Hi,
    A small idea, please check whether it will work or not.
    You can achieve this by using combination of DNS server and reverse proxy server.( Customized apache). Make 'A' record for www.abcd.com to reverse proxy server IP address in your DNS.
    So it will resolve your reverse proxy IP address for requests.
    Configure appche to accept incoming request for www.abcd.com and points towards www.abcd.com/parameters.
    I think this will solve your problem.  Only one condition is that proxy server will communicate with www.abcd.com on behalf of client.
    Follow the link for configuration of reverse proxy server
    http://www.slashroot.in/how-configure-basic-apache-reverse-proxy
    HTH
    Naisam

  • Is there any way to get an application to load automatically on server start?

    We're trying to implement a load-balancing mechanism between FMS hosts in a virtual "farm".  The mechanism we're using is to have the FMSs periodically send "load" data (along with a timestamp) to an application server.  That server will then use that load information and timestamp to detect when an FMS server has gone down and to make stream assignments to FMSs.
    Right now, I've implemented this code via a setInterval() in live/main.asc.  I've added a "return false" to Application.onAppStop() to (according to the docs, I haven't tested this yet) keep the server from shutting down an idle instance.  So I've left with a "chicken and egg" issue: how do I get the interval running before the first request hits the application (and forces the load of the application)?  I've tried putting the setInterval in onAppStart() and as a global.  In both cases, it only gets executed after application is loaded.
    So, is there any way to force an application to load (via a config file parameter or local command-line)?

    Hi,
    I am sorry i have not read the full details what you wrote, but if you are looking for loading of application on start of the server, there is a configuration tag in application.xml called loadonstartup and by default it is set to false. Set it to true to enable it and all the apps will be loaded on server start.
    alternatively , you can make an application.xml inside the application folder and set this tag to true, to have this applied only to a particular application,
    Also, the fms admin console can launch a new instance of an app without any connection being made initially.
    Thank you !

  • Any way to get iPhoto'09 to recognise existing Facebook albums?

    Is there any way to get iPhoto '09 to recognise existing Facebook albums?
    It would be nice to have all the previous albums I've uploaded to be listed in iPhoto and all the 100's of people I've already tagged would serve as a nice basis for the iPhoto face detection to learn who my friends are!

    This is an interesting workaround, but misses the spirit of the original post. I don't know a way to get iPhoto '09 to recognize existing FB albums, but I agree that this is a serious problem with iPhoto '09.
    The iPhoto '09 Facebook and Flickr uploaders have one "cool" feature - they automatically sync iPhotos events with FB "albums" or Flickr "sets", so if you make changes to the photos in iPhoto, then those changes are reflected in the photos on FB and Flickr automagically (this has been working for me in FB but not in Flickr). The more I use this the more I think it's more trouble than it is useful and I wish I could turn it off and just use the old exporters without syncing.
    There are problems with the exporters:
    (1) the constant syncing with FB/Flickr can get annoying if you're making several changes, if you have a slow internet connection or slow computer.
    (2) If you don't actually want the changes to be reflected in the FB/Flickr album (i.e. i delete photos out of iPhoto to make room on my disk for more photos and now the photos are deleted out of facebook) can get not as user friendly as the original Facebook and Flickr exporter was easier and more user-friendly.
    (3) syncing is cool for a computer programmer to do, but what if users don't want it all the time? What if I don't want my Facebook albums to be exactly the same as my iPhoto albums, and I don't want to split out all the photos that I don't want on Facebook into separate events in iPhoto? This lack of support for the truly useful & user friendly (if a bit boring) features is a really unfortunate oversight.
    (3a) in the old version: i can quickly and easily choose exactly which photos from which events I want to upload to FB.
    (3b) as the original questioner mentioned: I can choose whether to upload to into a *new or existing album*. Hands down, this was *the single best feature* of the previous uploaders.
    (in Flickr this is of paramount importance since the free Flickr account only allows 3 "sets" - so, since this fancy iPhoto syncing links your events to sets in Flickr, you'd have to create 3 massive Flickr-only events in iPhoto in order to stay within their restrictions. I like to keep my iPhotos events separate, but I'm perfectly happy uploading photos from different events into one of my three Flickr sets. i'm pretty sure i can still do this with FFXporter or similar.)
    (3b) in the old version: all the photos i upload are put into a "pending" album on FB so that I can tag people, delete some photos (without deleting them off my own iPhoto), etc. before sharing them with all my friends. I'd like to have at least the option to choose whether they go into a pending album first or not.
    (3c) it's further annoying that you cannot browse your iPhoto library directly (from most websites) when searching for photos to upload, you have to export the files first, then browse to where the photos were exported.

Maybe you are looking for