Is it possible to access device settings with MIDP2.0?

Assuming that the MIDlet has access to all the domains, in MIDP2.0 security model, can it access device settings? For example, can the application turn the device to "MUTE"?

Assuming that the MIDlet has access to all the
domains, in MIDP2.0 security model, can it access
device settings? For example, can the application
turn the device to "MUTE"?It's the same as asking "If the earth were flat, would I be able to fall of the edge". Yes you would, but the earth is flat, so the question is irrelevant.
So no, you cannot do that!

Similar Messages

  • Is it possible to lock my settings with a different password from the lock code

    Is it possible to lock my settings with a different password from the lock code

    To the best of my knowledge there is only one Pass Code per se
    You can check here  >  iPhone User Guide

  • Is it possible to store script settings with InDesign file?

    Hi,
    I have some crazy idea: is it possible to store script settings with InDesign file?
    In that case scripters will be able to store those settings with file, and when script runs - it can check if those setting exists - if so - script can run without showing dialogue with parameters... (as all necessary parameters stored with indesign file), and of course we can force InDesign to show script parameters dialogue if we run it with alt/option key pressed while running this script. Maybe even different scripts will be able to share those settings and interact with each other.. we will be able to have settings that will be saved with file, or temp settings for current document or session (till InDesign is closed). With eventListeners and startup scripts we will be able to do scripts that would be able to check for updates, and automatically execute when we placing images and text, and so on.. this can be a whole InDesign scripting framework, that allow to write scripts that will use same libraries and ui so we don't have to write everything from scratch everytime and just included required libs..
    so here is 2 main questions for now:
    1) is it possible to store script settings with .indd file
    2) who is intrested in creation InDesign scripting framework (because this only makes sense if many people will use it)
    PS: I know that it's possible to store settings in external file, but this time I'm interested only for saving params with .indd

    Ok, here is the labels parser I end with, actually it works extremely fast!
    Thanks again, Harbs!
    var labels = GetDocLabels(app.documents[0]);
    function GetDocLabels(doc)
        var idmlFile = File(Folder.temp + "/temp.idml"); 
        doc.exportFile(ExportFormat.INDESIGN_MARKUP,idmlFile); // asynchronousExportFile works, but script fails as it try to execute before file fully exported
        var folder = Folder(Folder.temp + "/temp_idml"); 
        app.unpackageUCF(idmlFile,folder); 
        var designMap = File(folder + "/designmap.xml"); 
        var valuePairs = GetValuePairs(designMap); 
        return valuePairs;    
    function GetValuePairs(file)
        file.open("r");  
        var contents = file.read();  
        file.close();   
        var contXML = XML(contents);
        var vals = {};
        for each(var pair in contXML..KeyValuePair)
            vals[[email protected]()] = [email protected]();       
        return vals;  
    //> START of DELETE FOLDER Function
    function deleteFolder(path)
        removeFolder = path; // path to folder that need to be removed
        filesToRemove = removeFolder.getFiles();
        for(i = 0; i < filesToRemove.length; i++)
            try
                innerFolders = filesToRemove[i].getFiles();
                if(innerFolders.length >= 1)
                    for(f = 0; f < innerFolders.length; f++)
                        innerFolders[f].remove()
            catch(e){}
            filesToRemove[i].remove(); // remove temp files once we done
        removeFolder.remove();
    }//< END of DELETE FOLDER function
    // remove temp files once we done
    deleteFolder(Folder(Folder.temp + "/temp_idml"));
    File(Folder.temp + "/temp.idml").remove();
    // DUMPER FUNCTIONS
    function dump(o)
        out = "";
        for (var p in o)
            out += p + ": " + o[p] + "\n";
        return(out);
    function alert_scroll (title, input)
       if (input instanceof Array)
           input = input.join ("\r");
       var w = new Window ("dialog", title);
       var list = w.add ("edittext", undefined, input, {multiline: true, scrolling: true});
       list.maximumSize.height = w.maximumSize.height-100;
       list.minimumSize.width = 550;
       w.add ("button", undefined, "Close", {name: "ok"});
       w.show ();
    alert_scroll ("Document Labels", dump(labels)); exit();

  • OSB: Is it possible to change throttling settings with WLST?

    Hi all,
    I am trying to find a solution to change the throttling settings of a business service with WLST, since it is not possible to set it in the customization file.
    I already know the parameter alsbImportPlan.setPreserveExistingOperationalValues(boolean) to preserve or change the operational values with the imported jar file, but I cannot find how to change the parameters separately for a business service (e.g. throttling state, max concurrency).
    Thanks for any help,
    Katja

    Hi Fabio,
    thanks for your approach. Could you give me some more ideas how to do that exactly? What do you mean with "write a code"? With WLST it does not work, I think. So you mean some code to extract the jar, change the xml, package the jar again and then deploy it? We need the changes at deployment time, because the settings have to be adjusted for the different environments.
    Best regards,
    Katja

  • Is it possible to access local files with MIDP?

    Hello everyone,
    I am developing a mobile application using Sun One Studio 4 ME, with MIDP 2.0.
    I am preparing a record store as input data for my application. "Preparing" means: I try to convert a local text file present on my PC into a record store.
    The problem I have is that I cannot find a way in MIDP to allow me to access the local file. It seems to me that MIDP only allows data access over the Web. Am I correct?
    Many thanks in advance for any help or suggestion you could provide.
    Dumitru

    Did you save the messages in a Personal Folder files (PST) or as individual messages on disk? The PST and MSG file formats are proprietary and might not be accessible outside of Outlook.
    If you want to move those messages to a different email program, assuming you have permission to do so, one way is to upload them to an IMAP account (Gmail allows you to connect Outlook as an IMAP client). However, that's pretty complicated, so I suggest researching it on the web, checking at least a few sites to make sure you know all the steps.

  • OSB - Accessing Operational Settings within Proxy Service

    Does anyone know if it is possible to access Operation Settings from within a Proxy Service?
    The use case is instead of logging, we perform auditing by inserting into a database. In certain environments, we would like to turn this off. I would like to reuse the Logs logging level field to decide whether or not to audit.
    So the message flow would have if (auditLevel = 'Warning') then BusinessService callout for auditing.
    Doing it this way lets operations choose whether or not to audit, instead of making code changes in different environments to choose whether or not to audit.

    Few months back I was also working on a similar requirement where client did not want to go for OSB configuration change (and even update) for changing the log levels or start auditing. After researching a little bit, we implemented java callout which used to read a property file and provide the value of auditing flag at runtime. We also created a java utility which used to clear the cache of server (because server loads & caches the property file after each restart). So whenever we have to make a change in auditing flag, we just change the value in property file and clear the cache of the server. This makes the fresh copy of property file available in server cache and OSB java callout picks the same.
    It was quite complex but the only better solution we could find. Please let us know if you get something better.
    Regards,
    Anuj

  • Issue: impossible to sync my settings with the adobe account

    I'm logged-in in Adobe Creative Cloud, but still Photoshop CC doesn't seem to give me the possibility to sync my settings with the account.
    If I go in Photoshop what I see is this, and if I click on "Sync settings now", "Manage account online" etc, nothing happens.
    So, how do I make sure that I got everything rightly set to do the syncing, and how do I actually do it?
    Thank you!

    Yes I tried by closing and relaunching. So maybe I'm missing something in the actual synching passage. Can you summarize in steps what should I do to sync the whole thing so I can check if I'm doing it right? Thank you

  • Accessing shape data with actionscript

    Hello.
    I'm wondering, is it possible to access shape data with
    actionscript. I want to draw simple lines with "line tool"
    somewhere in my movieclip and then to access information about my
    lines with actionscript to get startX, startY and endX endY of
    every line. Is it possible?
    thank you.

    I do not believe so. Once you draw a primitive on the stage
    with the api I believe that is all you get. If you create a sprite
    object and then draw into that you might be able to get the sprite
    properties. You may also be able to do the same thing with a
    container movieclip. I don't think just drawing a line with the api
    on the stage will give you anything the reference.

  • HT201304 I need to restrict access to Settings on an iPad so settings like VoiceOver cannot be activated while letting them access multiple apps on the device. Is their any way to restrict access to settings without locking the device with a PIN?

    I need to restrict access to Settings on an iPad so settings like VoiceOver cannot be activated while letting them access multiple apps on the device. Is their any way to restrict access to settings without locking the device with a PIN?
    This is so our guests cannot tamper or disable the device. We are already using Apple Configurator but their does not seem to be a way to lock down settings without a PIN.

    There's a lot of restrictions information in Chapter 19 of the 4.2 User Guide.
    http://support.apple.com/manuals/#ipad
    By the way, a more extensive version of the User Manual is available at no charge through iBooks.

  • How do I backup my iPhone on iCloud without accessing the settings on the actual device?

    Last night i dropped my iPhone 4s in some water and it will not turn on at all. In order to get a new handset, Apple have asked me to backup my phone on iCloud and then wipe it to be sent off... However, i've tried and it doesn't seem possible without accessing the iPhone settings which are actually on the iPhone. Is it possible to backup my broken handset without actually accessing the options on the device.
    Advice would be amazing as soon as possible as the man is coming to collect the phone tomorrow morning!

    Hello Asicopper,
    If the iCloud is not alredy setup on your iPhone then you cannot setup without access on your iPhone as it has to be done Manually entering your Apple Id and Password in iPhone Settings>iCloud and then you need to Turn On the Data that needs to be backed up on iCloud and also click on Backup now for the first time. But if you have ever synced your iPhone with iTunes on your computer then you can check on your computer if you have a backup taken there. You can check that by opening iTunes on your Computer in iTunes > Edit> Preferences> Device and under Device see if you have any backup. And there is "No" other way to backup your iPhone if it is completely Dead.

  • Issue with UAG/TMG communication to published SharePoint application is blocked by access policy settings

    We have a UAG/TMG server set up with SharePoint published. The UAG is also doing load balancing for the SharePoint farm. We have an MDM application that is trying to connect to our SharePoint but our SharePoint is routed through the UAG. The MDM application
    does not need to be published neither is there any component that can be accessed directly by end users. It is more of a proxy to relay content to mobile devices. It is using 443 and two other secondary ports.
    On the TMG logs, we can see requests hitting the TMG over port 443 from the MDM application server. We can also see that it is trying to be routed to our SharePoint but we get the following error in the TMG log:
    “Filter information: A request from source IP address xx.xx.xx.xx, user to trunk portal; Secure=1 for application SharePoint of type SharePoint15 failed. The endpoint device does not comply with access policy settings ([%PolicyId%]) for session [%SessionId]”
    The source IP is the internal IP of the host running the MDM application. In the UAG side, under the SharePoint publishing rule, for Access Policy Settings we have tried selecting the 'Always' option but that had no effect. It appears like there is a policy
    blocking communication to SharePoint. Does anyone have a suggestion on which policy or where the policy that is controlling this is located so that we can try to resolve this issue? Thanks.

    Looking at the UAG Web Monitor, it says that the access policy is 'Hybrid_Default_Session_Access' and the URL is /_vti_bin/Webs.asmx. 
    We can't find a 'Hybrid Default Session Access' policy. In the Endpoint Policy Settings tab, we tried using 'Always' for the Access Policy for the published SharePoint application but that did not make any difference. 

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • When trying to access music stored on my icloud i get the following warning 'This computer is already associated with an Apple ID'. itunes support say they have 'released' all devices associated with my account but i still have the same problem-any ideas?

    cant access music sored in my icloud when using my lap top. any ideas?

    iTunes imposes a 90 day wait period before a device can be associated with a different ID.  If iTunes support only removed all devices associated with your ID, this does not override the 90-day wait period.  From http://support.apple.com/kb/HT4627:
    "Removing a device from your Apple ID does not override the 90 day timer. The timer must complete 90 days from the day the device was associated before it can be associated to another Apple ID."
    Unless iTune support can override the wait period for you, you have no choice but to wait if you want to download it from iCloud.  If your purchases music is on any of your iOS deivces, you can transfer it to the iTunes library on your computer by authorizing your computer for the Apple ID(s) used to purchase the music (in iTunes, Store>Authorize This Computer), then connecting your device to your computer, opening iTunes, and going to File>Devices>Transfer Purchases.

  • Is is possible to access channels from a CAN database in labview with NI USB 8473s

    Hello,
    I would like to know whether is possible to access a CAN database, which is uploaded through MAX, in labview.
    More specifically, I have uploaded my CAN database in MAX and I want to have access to each specific channel in labview.
    i.e according to picture, I would like to have access  to n_Motor_InsRpm channel of E1_L0_1 (motor speed) in Labview, so I can set and transmit a speed value through CAN. Could that be possible with NI USB 8473 s? If yes, is there any simple example in Labview ?
    Thanks for your Help
    Charis
    Solved!
    Go to Solution.
    Attachments:
    CANdb.jpg ‏11 KB

    There are several ways to get database information without needing hardware. Here is one I did a while ago.
    https://decibel.ni.com/content/docs/DOC-39793
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Is it possible to access a single Lightroom catalogue mounted on a shared drive from multiple computers, each with an individual Lightroom install?

    Is it possible to access a single Lightroom catalogue mounted on a shared drive from multiple computers, each with an individual Lightroom install?
    Thanks.
    Steve Greenberg

    No, Lightroom catalogs cannot be on a networked (shared) drive, and they do not support simultaneous multi-user access

Maybe you are looking for

  • Moving to another drive. Have I got this right?

    I hope you guys aren't as mean as your rep!   Arch has a reputation for being hard to install.  So, I decided that I would install to a USB hard drive and move it if I was successful.  Well it wasn't as bad as all that.   I have a working system with

  • Encoding non english characters with utf 8 on jsp (Critical!!)

    I am inserting hebrew characters from JSP into oracle db and everything is fine until this point. But when I try to retrieve the information from the database, the characters are not displayed properly (I get some garbage characters). I am sure that

  • 1394 adapter from analog VHS-C to Premiere

    I've got a job to copy video from some old VHS-C tapes to DVD. I hope that I can use the 1394 ports (FireWire)  on my motherboard or USB 3 for receive analog signal from the camcorder. Which adapter should I buy to be sure that it can be used to Prem

  • How to make copies of cds?

    Hi, How do I make copies of cds in tiger? Do I need some 3rd party software? Thanks.

  • JVM crashing due to JNI call

    Hi All My application uses JNI to interact with other classes developed in C++. When I run the application ,which is comiled in java1.4, against java 1.5 ,it is crashing for any operation related to JNI. When I run the application with -Xint JVM opti