Launching JNLP with mobiles

Hi friends
It's possible to open a application .JNLP with a mobile dispositive? blackberry, nokia, windows mobile, iPad...?? It will be possible..??
My idea is not to programming a new specific application for mobile, i want to can work with my existing .jnlp application for pc's.
Thanks a lot for your orientation

JosBravo wrote:
..It's possible to open a application .JNLP with a mobile dispositive? blackberry, nokia, windows mobile, iPad...?? It will be possible..??
My idea is not to programming a new specific application for mobile, i want to can work with my existing .jnlp application for pc's.I left your question for 2 basic reasons, but since you prompted the matter, I will risk a response.
The reasons for me leaving it at first, were:
1) I am not at all experienced with running Java on mobiles.
2) One '?' indicates a question, while 2 or more typically indicates a bozo. Bozo's are much harder to help than other posters. (You could either learn something from that, that might help you in future, or get very offended. Your choice.)
As to the 'Java on mobiles', I thought that mobiles ran J2ME, rather than J2SE. JWS only works with J2SE. J2ME has its own deployment techniques (I am guessing), but I've never dealt with it.

Similar Messages

  • FileNotFound error when trying to launch jnlp

    This seems to be a common issue, however after many forums postings and so called solutions it still doesn't work.
    I created a JavaFX app in NetBeans and let it generate the _browser.jnlp for the applet.  I have a friend's website set up through godaddy under www.phoenixsecuritygroupltd.com
    The structure under that url is:
    /default.html
    /lib/launch.jar
    /launch/launch.jnlp
    The launch.jnlp file contains:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="http://www.phoenixsecuritygroupltd.com/" href="code/launch.jnlp">
         <information>
           <title>PhoenixSecurity</title>
           <vendor>Phoenix</vendor>
           <offline-allowed />
         </information>
         <resources>
           <j2se version="1.5+"
                 href="http://java.sun.com/products/autodl/j2se" />
           <jar href="lib/launch.jar" main="true" />
         <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
         </resources>
         <applet-desc
             name="PhoenixSecurity"
             main-class="phoenixsecurity.Main"
             width="710"
             height="540">
         </applet-desc>
    </jnlp>the html file contains:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>PhoenixSecurity</title></head><body background="gradient.png">
    <p>
    <script src="http://java.com/js/deployJava.js"></script>
    <script type="text/javascript"><!--
    var attributes = {   codebase:'http://www.phoenixsecuritygroupltd.com/',
                          code:'phoenixsecurity.Main.class',
                          archive:'lib/launch.jar',
                          width:"100%", height:"100%"} ;
        var parameters = {jnlp_href: 'launch/launch.jnlp'} ;
        var version = '1.6' ;
        deployJava.runApplet(attributes, parameters, version);
    // --></script>
    </p>
    </body>
    </html>
    When I go to the site I continually get
    java.io.FileNotFoundException: JNLP not available: launch/launch.jnlp
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)Debugging it I get this:
    network: Cache entry not found [url: http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp, version: null]
    network: Cache entry not found [url: http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp, version: null]
    network: Connecting http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp with proxy=DIRECT
    network: Connecting http://www.phoenixsecuritygroupltd.com:80/ with proxy=DIRECT
    network: Connecting http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp with cookie "__utma=198461806.1776491579099399400.1249915902.1254243524.1254247280.6; __utmz=198461806.1249915902.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utmc=198461806"
    java.io.FileNotFoundException: http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at com.sun.deploy.net.HttpUtils.followRedirects(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doGetRequestEX(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCachedFile(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.initialize(Unknown Source)
         at sun.plugin2.main.client.PluginMain$StartAppletRunner.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    network: Connecting http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp with proxy=DIRECT
    network: Connecting http://www.phoenixsecuritygroupltd.com:80/ with proxy=DIRECT
    network: Connecting http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp with cookie "__utma=198461806.1776491579099399400.1249915902.1254243524.1254247280.6; __utmz=198461806.1249915902.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utmc=198461806"
    basic: JNLP2Manager.initialize(): JNLP not available: launch/launch.jnlp
    basic: exception: null.
    exception: null.
    java.io.FileNotFoundException: JNLP not available: launch/launch.jnlp
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.FileNotFoundException: JNLP not available: launch/launch.jnlpI know that the file is there but it can't seem to get it.
    Any help would be greatly appreciated.

    I changed the url to "http://www.phoenixsecuritygroupltd.com/launch/launch.jnpl" in the html and still get the same error.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>PhoenixSecurity</title></head><body background="gradient.png">
    <p>
    <script src="http://java.com/js/deployJava.js"></script>
    <script type="text/javascript"><!--
    var attributes = {   codebase:'http://www.phoenixsecuritygroupltd.com/',
                          code:'phoenixsecurity.Main.class',
                          archive:'lib/launch.jar',
                          width:"100%", height:"100%"} ;
        var parameters = {jnlp_href: 'http://www.phoenixsecuritygroupltd.com/launch/launch.jnlp'} ;
        var version = '1.6' ;
        deployJava.runApplet(attributes, parameters, version);
    // --></script>
    </p>
    </body>
    </html>

  • Opening JNLP application with mobiles??

    It's possible to open a application .JNLP with a mobile dispositive? blackberry, nokia, windows mobile...?? It will be possible..??
    My idea is not to programming a new specific application for mobile, i want to can work with my existing .jnlp application for pc's.
    Thanks a lot for your orientation

    One day.. i supposse.. the mobiles will have enough potency and ram memory for execute the same java programms like a PC. Then not will be necessary to program 2 different programms depending the platform. May be.

  • Error "cannot locate object' launching app with Web Start

    Hello,
    I receive the error shown below when launching a Java application and cannot figure out where to begin with debugging. It was developed under Netbeans 5.0.
    You can recreate the error by launching this application:
    http://www.mikenaglich.net/ztest17.jnlp
    Error text and JNLP file follow. I am really puzzled and would appreciate any help. Thanks.
    Mike
    Error Text
    ========
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the object specified. Error processing resource 'http://www.netbeans.org/jnlp/DTD/jnlp.dtd'.
    App JNLP File
    ===========
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc.//DTD JNLP 1.5//EN" "http://www.netbeans.org/jnlp/DTD/jnlp.dtd">
    <jnlp codebase="http://www.mikenaglich.net" href="ztest17.jnlp">
    <information>
    <title>ztest17</title>
    <vendor>Mike Naglich</vendor>
    <homepage href="www.mikenaglich.net"/>
    <description> </description>
    <icon href="default"/>
    <offline-allowed/>
    <shortcut online="true">
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
    </resources>
    <resources>
    <jar download="eager" href="dist/ztest17.jar" main="false"/>
    </resources>
    <resources locale="" os="">
    <jar download="eager" href="dist/lib/swing-layout-1.0.1.jar" main="false" version=""/>
    </resources>
    <application-desc main-class="ztest17.Main"/>
    </jnlp>

    I receive the error shown below when launching a Java
    application and cannot figure out where to begin with
    debugging. There are a number of problems, potential problems,
    redundancies and illogicalities in that JNLP file.
    ...It was developed under Netbeans 5.0. Uh-Huh. I am coming to recognise those
    (damnable) NetBeans JNLP files.
    You can recreate the error I don't think I need to, your error output and JNLP
    file are quite instructive..
    ...by launching this
    application:
    http://www.mikenaglich.net/ztest17.jnlp
    Error text and JNLP file follow. I am really puzzled
    and would appreciate any help. Thanks.
    Error Text
    ========
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please
    correct the error and then click the Refresh button,
    or try again later.
    The system cannot locate the object specified. Error
    processing resource
    'http://www.netbeans.org/jnlp/DTD/jnlp.dtd'.
    1) Whenever you see a message from Java,
    JavaWS, or an application saying words the the
    effect of 'cannot find..', try checking the URL of the
    resource in a browser. If a browser comes
    up '404' (not found), then the Java tool or app.
    will be unable to access it either.
    That is the first and fundamental problem with that
    JNLP. The DOCTYPE element is not strictly needed
    in a JNLP, and I would recommend removing it entirely
    rather than try and hunt down any NetBeans DTD.
    With the way NB writes JNLP's, I would not trust
    a DTD written or controlled by them, in any case.
    App JNLP File
    ===========OK.. I recommend replacing the current JNLP
    with the one below, here is a summary of the
    changes I made..
    - removed DOCTYPE line with reference to '404' DTD
    - compacted resource elements, removing empty attributes
    - changed ztest17.jar to main='true'
    - removed redundant 'download="eager"' attributes as well
    as main="false" and version="" from swing-layout.. jar element
    - removed broken(?) <icon> element and empty <description>
    - changed homepage href to relative
    Some of them are guesses, but I'd give it a 90%+
    chance of working, if written like this.
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="http://www.mikenaglich.net" href="ztest17.jnlp">
    <information>
      <title>ztest17</title>
      <vendor>Mike Naglich</vendor>
      <homepage href="/"/>
      <offline-allowed/>
      <shortcut online="true">
        <desktop/>
      </shortcut>
    </information>
    <resources>
      <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
      <jar href="dist/ztest17.jar" main='true' />
      <jar href="dist/lib/swing-layout-1.0.1.jar" />
    </resources>
    <application-desc main-class="ztest17.Main"/>
    </jnlp> Note that a glance inside the ztest17.jar supports
    it contains a manifest file tat specifies the main class,
    so it might be possible to remove main='true'
    altogether - best not for the moment, though.

  • JNLP with weblogic 9.0 +

    is it possible to launch a web start program(Jnlp)
    with weblogic 9 ,
    is it a supported API?
    thanks in advance

    WebLogic does not provide any specific certifications around JNLP that I am aware of. However, the good news is that JNLP should work over any web server. You may have to configure the mime types correctly, it's been awhile since I've done it.

  • I have just downloaded ML.  I can get my email via iCloud, but I can't get it on MAIL 6.0.  I have done the JAVA thing--seems to be OK.  MAIL 6.0 on my desktop won't sync with Mobile Me and won't download emails.  Any suggestions?

    I have just downloaded ML.  I can get my email via iCloud, but I can't get it on MAIL 6.0.  I have done the JAVA thing--seems to be OK.  MAIL 6.0 on my desktop won't sync with Mobile Me and won't download emails.  Any suggestions?

    Just did something--am not sure what, probably in the "iCloud"--but seems to be working at last!

  • Mac Mail on both my laptops suddenly will no longer sync with mobile me

    I have two macbooks - both of which sync with mobile me quite reliably. A couple of days ago, the Mac mail application stopped syncing with mobile me on both of my macbooks. When I tell it to syncronize with ".Mac" or get mail, I get the small triangle symbol with the exclamation point by the mail box folder. I am able to log into mobile me just fine and get my mail messages from there. When I click on the Mail Connection Doctor, it says that it connected with the internet just fine. I get an error for the account status and am not sure where to go from there since my mobile me account seems to work fine via Safari. Any help would be appreciated.

    I'm still trying to get this to work. When I use the mail connection doctor, I get the following error messages:
    CONNECTED Nov 19 07:08:45.800 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113825870 -- thread:0x101979df0
    CONNECTED Nov 19 07:09:09.925 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113ad3ee0 -- thread:0x115d11020
    CONNECTED Nov 19 07:09:45.954 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x115d5ce50 -- thread:0x101979df0
    CONNECTED Nov 19 07:10:10.025 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11604ab30 -- thread:0x115d11020
    CONNECTED Nov 19 07:10:46.062 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x113a29b50 -- thread:0x11386de70
    CONNECTED Nov 19 07:11:46.165 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113825870 -- thread:0x11386de70
    CONNECTED Nov 19 07:12:46.333 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138f7f90 -- thread:0x11386de70
    CONNECTED Nov 19 07:13:45.825 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:smtp.me.com -- port:25 -- socket:0x11380acb0 -- thread:0x115d07920
    CONNECTED Nov 19 07:13:46.435 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x116061ae0 -- thread:0x11389beb0
    CONNECTED Nov 19 07:14:46.021 [kCFStreamSocketSecurityLevelNone] -- host:smtp.me.com -- port:587 -- socket:0x101926df0 -- thread:0x115d07920
    READ Nov 19 07:14:46.151 [kCFStreamSocketSecurityLevelNone] -- host:smtp.me.com -- port:587 -- socket:0x101926df0 -- thread:0x115d07920
    220 asmtp023-bge351000 -- Server ESMTP (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit))
    WROTE Nov 19 07:14:46.157 [kCFStreamSocketSecurityLevelNone] -- host:smtp.me.com -- port:587 -- socket:0x101926df0 -- thread:0x115d07920
    EHLO [192.168.0.65]
    READ Nov 19 07:14:46.248 [kCFStreamSocketSecurityLevelNone] -- host:smtp.me.com -- port:587 -- socket:0x101926df0 -- thread:0x115d07920
    250-asmtp023-bge351000
    250-8BITMIME
    250-PIPELINING
    250-CHUNKING
    250-DSN
    250-ENHANCEDSTATUSCODES
    250-EXPN
    250-HELP
    250-XADR
    250-XSTA
    250-XCIR
    250-XGEN
    250-XLOOP E71A6C64B545FF9080CB6D9F1B30FA4D
    250-STARTTLS
    250-AUTH PLAIN LOGIN
    250-AUTH=LOGIN
    250-NO-SOLICITING
    250 SIZE 0
    WROTE Nov 19 07:14:46.254 [kCFStreamSocketSecurityLevelNone] -- host:smtp.me.com -- port:587 -- socket:0x101926df0 -- thread:0x115d07920
    STARTTLS
    READ Nov 19 07:14:46.344 [kCFStreamSocketSecurityLevelNone] -- host:smtp.me.com -- port:587 -- socket:0x101926df0 -- thread:0x115d07920
    220 2.5.0 Go ahead with TLS negotiation.
    CONNECTED Nov 19 07:14:46.553 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138f7f90 -- thread:0x11389beb0
    CONNECTED Nov 19 07:15:46.679 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113842ac0 -- thread:0x11389beb0
    CONNECTED Nov 19 07:16:46.786 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x1138f7f90 -- thread:0x11386de70
    CONNECTED Nov 19 07:17:46.913 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113ad9200 -- thread:0x11386de70
    CONNECTED Nov 19 07:18:47.450 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138a0330 -- thread:0x11386de70
    CONNECTED Nov 19 07:19:46.465 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:smtp.me.com -- port:587 -- socket:0x11380acb0 -- thread:0x115d07920
    CONNECTED Nov 19 07:19:47.567 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x1138a0330 -- thread:0x113ae6200
    CONNECTED Nov 19 07:20:47.671 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11602daa0 -- thread:0x113ae6200
    CONNECTED Nov 19 07:21:48.263 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113857450 -- thread:0x113ae6200
    CONNECTED Nov 19 07:22:48.400 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x115d5f0c0 -- thread:0x115d63a20
    CONNECTED Nov 19 07:23:48.508 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11380acb0 -- thread:0x115d63a20
    CONNECTED Nov 19 07:24:48.621 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x101926df0 -- thread:0x115d63a20
    CONNECTED Nov 19 07:25:48.746 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x11386e520 -- thread:0x113ae6200
    CONNECTED Nov 19 07:26:48.883 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113842ac0 -- thread:0x113ae6200
    CONNECTED Nov 19 07:27:49.026 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11386e520 -- thread:0x113ae6200
    CONNECTED Nov 19 07:28:49.165 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x113abcf70 -- thread:0x113a7c820
    CONNECTED Nov 19 07:29:49.277 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138a9350 -- thread:0x113a7c820
    CONNECTED Nov 19 07:30:49.386 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113abcf70 -- thread:0x113a7c820
    CONNECTED Nov 19 07:31:49.496 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x11604e0d0 -- thread:0x113a7c820
    CONNECTED Nov 19 07:32:49.613 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113accdc0 -- thread:0x113a7c820
    CONNECTED Nov 19 07:33:49.720 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113abcf70 -- thread:0x113a7c820
    CONNECTED Nov 19 07:34:49.877 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x116028ec0 -- thread:0x113806e40
    CONNECTED Nov 19 07:35:49.984 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138a9350 -- thread:0x113806e40
    CONNECTED Nov 19 07:36:50.094 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x101954c30 -- thread:0x113806e40
    CONNECTED Nov 19 07:37:50.259 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x115d39060 -- thread:0x113a7c820
    CONNECTED Nov 19 07:38:50.392 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113ad1d80 -- thread:0x113a7c820
    CONNECTED Nov 19 07:39:50.556 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x115d36700 -- thread:0x113a7c820
    CONNECTED Nov 19 07:40:50.669 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x1138a9280 -- thread:0x113ae9530
    CONNECTED Nov 19 07:41:50.796 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x115d134b0 -- thread:0x113ae9530
    CONNECTED Nov 19 07:42:50.919 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113abcf70 -- thread:0x113ae9530
    CONNECTED Nov 19 07:43:51.034 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x115d39060 -- thread:0x113aea880
    CONNECTED Nov 19 07:44:51.147 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x115d134b0 -- thread:0x113aea880
    CONNECTED Nov 19 07:45:51.460 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138a9280 -- thread:0x113aea880
    CONNECTED Nov 19 07:46:51.582 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x115d134b0 -- thread:0x113aea880
    CONNECTED Nov 19 07:47:51.692 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113ad53f0 -- thread:0x113aea880
    CONNECTED Nov 19 07:48:51.867 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11386e520 -- thread:0x113aea880
    CONNECTED Nov 19 07:49:52.051 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x113842ac0 -- thread:0x113893750
    CONNECTED Nov 19 07:50:52.167 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11380c7c0 -- thread:0x113893750
    CONNECTED Nov 19 07:51:52.277 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113842ac0 -- thread:0x113893750
    CONNECTED Nov 19 07:52:52.436 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x115d5f0c0 -- thread:0x113831290
    CONNECTED Nov 19 07:53:52.629 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138a9280 -- thread:0x113831290
    CONNECTED Nov 19 07:54:52.760 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x115d36700 -- thread:0x113831290
    CONNECTED Nov 19 07:55:52.937 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x1019f42c0 -- thread:0x113ae3960
    CONNECTED Nov 19 07:56:53.093 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138d3fd0 -- thread:0x113ae3960
    CONNECTED Nov 19 07:57:53.217 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113a9da20 -- thread:0x113ae3960
    CONNECTED Nov 19 07:58:53.347 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x1005eb250 -- thread:0x1138d1660
    CONNECTED Nov 19 07:59:53.456 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1138d3fd0 -- thread:0x1138d1660
    CONNECTED Nov 19 08:00:53.591 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x113a9da20 -- thread:0x1138d1660
    CONNECTED Nov 19 08:01:53.706 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x1005eb250 -- thread:0x113ae3960
    CONNECTED Nov 19 08:02:53.827 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1005796c0 -- thread:0x113ae3960
    CONNECTED Nov 19 08:03:53.969 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1005eb250 -- thread:0x113ae3960
    CONNECTED Nov 19 08:04:54.101 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x115d5ce50 -- thread:0x113ac0cd0
    CONNECTED Nov 19 08:05:54.242 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1019f42c0 -- thread:0x113ac0cd0
    CONNECTED Nov 19 08:06:54.355 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x115d5ce50 -- thread:0x113ac0cd0
    CONNECTED Nov 19 08:07:54.486 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.me.com -- port:993 -- socket:0x101954c30 -- thread:0x113ae3960
    CONNECTED Nov 19 08:08:54.658 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x1005eb250 -- thread:0x113ae3960
    CONNECTED Nov 19 08:09:54.787 [kCFStreamSocketSecurityLevelNone] -- host:mail.me.com -- port:993 -- socket:0x11380c7c0 -- thread:0x113ae3960

  • HT5129 how do i get iPhoto to stop bothering me with Mobile Me Migration windows when everything's already on my hard drive?

    how do i get iPhoto to stop bothering me with Mobile Me Migration windows when everything's already on my hard drive?

    Click "More Info", not "o.k.".
    Then open the iPhoto Preferences "Accounts" tab and remove the "Mobile  Me" account, if it is still there.
    Quit iPhoto.
    Check, if "Mobile Me" is still enabled in the System Preferences > Mobile Me panel (if you still have this panel). if yes, sign out.
    Log off and on again.
    Test, if iPhoto still is bugging you to transfer your Mobile Me content. If yes, you need to delete your iPhoto Preferences from your User Library.
    ~/Library/Preferences/com.apple.iPhoto.plist
    And also remove the file
    ~/Library/Caches/com.apple.iPhoto/mmsunset.plist
    from the Caches in the User Library - this file contain the end date of Mobile me.

  • How do i get my contacts from ICLOUD over to sync with Mobile me?

    All of my contacts are in ICLOUD on my mobile device. But my IMAC only Syncs with Mobile me. How do I get my contacts from ICLOUD over to sync with Mobile me?

    Well, you can go into setting>mail, contacts, calendars>add new account or through iTunes you can plug your phone into your computer, open iTunes, select your device, then select info. I hope this helps. Au revoir!

  • Adobe Photoshop Elements 13 won't launch email with photos attached, why?

    Adobe Photoshop Elements 13 won't launch email with photos attached, why?

    Gordon,
    Are you trying to use email functionality in Elements Organizer and then witnessing this problem.
    If this is the case, I would recommend you to go through this article once and see i it helps:
    Elements Organizer Help | Share files and slideshows by email
    Thanks,
    Anwesha

  • I can't get my me mail to work on iCloud keeps rejecting my user id nothing works on the pad or pod either to do with mobile me aaaaaaaaaaaargh

    I can't get my me mail to work on iCloud keeps rejecting my user id nothing works on the pad or pod either to do with mobile me aaaaaaaaaaaargh
    Apple - please please let us know what is going on

    ewaller wrote:
    fazio96,
    Could I prevail upon you to come up with a better thread title?  I resisted my first inclination to move the thread to "Dustbin"; but I will say the title does little to inspire us to help.   You may wan to read the article linked in my signature.
    Thanks.
    I'll change it now. I just realized it sounds rough, but I was mad because I couldn't get it work, it isn't anyone's fault, sorry
    EDIT: I got it to work at an usable state! By using the 8192cu driver on the AUR and the suggestions in the comments about disabling power-save, I got it to be usable. It now has up to 8% packet loss, not 30-40% like before, and the ping spikes are now 300-400 ms and less frequent, not 1000-1200ms. It's not working really well but now I can at least surf the web. Thank you all for the patience.
    EDIT 2: after testing more I realized it still disconnects every few seconds when I'm far from the AP. However, when connected, I still have very strong signal. If I use it on windows or another distro it doesn't disconnect. I tried compiling the driver from realtek by myself using the istructions in the second post but I don't know how to fix some compile errors, so I decided I'll stick with my usb dongle. Maybe someone will find a better solution.
    Last edited by fazo96 (2013-09-30 16:08:10)

  • Trouble with mobile site. Displays for a second then screen goes black.

    Trouble with mobile site. Displays for a second then screen goes black. Using safari, 4s on Verizon. Example: m.mlb.com/lad/

    I hadn't checked the site since January or so, when it worked. It might be related to the Opening Weekend skin they have on the site, but for me, it shows the top part of the page for 3 seconds while it's loading (scrolling down is impossible) and then all of a sudden it turns black, showing nothing. It's that way for every MLB mobile site.
    At first:
    Two seconds later:
    I noticed this on 4/7/12. Does anyone NOT have this problem?
    Matt

  • My media widget is asking for a updated version of i tunes with mobile support what is this

    my media widget is asking for a updated version of itunes with mobile support to connect to i tunew what is this i have the newest version of itunes 10.6.1

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • How to I get rid of the message your contacts or calendar is being synced with Mobile Me over the air

    I keep getting the message that my Contacts or my Calendar is being synced with Mobile Me over the air even though Mobile Me no longer exists on my computer or as an Apple product
    I have downloaded and am running the latest version of iTtunes running on a Win8 Pro 64bit machine
    Ernie

    It's because you must have sent some information like you must have clicked on Submit button to perform any query. So when you will click on back button it will again send this info.
    So, right click on Back button and choose 2nd site from the top of the list to go to previous page.
    ''<hr>Note: If anyone's reply has solved your problem, then please mark that reply as "Solved It" to the right of that reply after logging in your account. It will help us to concentrate on new questions.''

  • SAP WMS with Mobile Data Entry Unit

    Hi,
    I understand that the transaction codes for WMS transactions using mobile data entry unit are different from the conventional way. I wonder how I can know the standard transactions and transaction codes provided by SAP for mobile data entry unit.
    Ideas?
    Thanks.
    Regards,
    Tom

    Follow the link below
    An Introduction to RFID - /people/steve.winkler/blog/2006/05/03/an-introduction-to-rfid
    RFID Scenario Installation-Configuration - /people/shang-ling.jui2/blog/2005/08/28/rfid-scenario-installation-configuration
    Concept of RFID & Usage with Mobile Infrastructure - /people/rajendra.yadav2/blog/2005/07/19/concept-of-rfid-usage-with-mobile-infrastructure
    RFID Scenario Installation-Preparation - /people/shang-ling.jui2/blog/2005/08/09/rfid-scenario-installation-preparation
    RFID Scenario Installation-Installation - /people/shang-ling.jui2/blog/2005/08/17/rfid-scenario-installation-installation

Maybe you are looking for