LR and networked computers and mobile devices

I would like to see better computer networking options in LR4. Exporting and importing catalogs is a bit of a pain. I would love to see a server/client setup. It would be super awesome if this type of integration included mobile apps so that you could display and sell your images on a large TV or an iPad. Photographic studios often have a "File Storage/Management" PC, a "Editing" PC and a "Viewing and Sells" PC... Each computer serves a purpose, has different specs, and should be able to pull and push info, using Lightroom as a information hub.

Did you install the Intune client on them or are you using the built-in (OMA-DM) management capabilities of Win 8.1? Assuming the latter, then this is normal and expected because the device/system is using the MDM "stack" of Intune and not the PC management
capabilities which require the full client. Thus you will not be able to do certain things like deploy updates or managed SCEP.
Jason | http://blog.configmgrftw.com

Similar Messages

  • Question about bluetooth communication between PC and mobile device

    I am a newbie of bluetooth communication. This time I need to have connumication between PC and mobile device (mainly mobile phone) by sending strings. PC is acted as server and mobile device act as client.
    For using bluetooth in PC, I use bluecove 2.0.1
    I have already connected them successfully.
    When I want to send strings between them, it is found that it can only do one cycle of communication (client -> server -> client).
    For my design, they can communicate multiple times.
    I simulate the core class of the system, the performance is fine.
    Cound anyone help me to watch the code and give me some advices?
    Server Side - ServerBox.java
    public class ServerBox implements Runnable {
       LocalDevice localDevice;
       StreamConnectionNotifier notifier;
       ServiceRecord record;
       boolean isClosed;
       ClientProcessor processor;
       CMDProcessor cmd;
       MainInterface midlet;
       private static final UUID ECHO_SERVER_UUID = new UUID(
               "F0E0D0C0B0A000908070605040302010", false);
       public ServerBox(MainInterface midlet) {
           this.midlet = midlet;
       public void run() {
           boolean isBTReady = false;
           try {
               localDevice = LocalDevice.getLocalDevice();
               if (!localDevice.setDiscoverable(DiscoveryAgent.GIAC)) {
                   midlet.showInfo("Cannot set to discoverable");
                   return;
               // prepare a URL to create a notifier
               StringBuffer url = new StringBuffer("btspp://");
               url.append("localhost").append(':');
               url.append(ECHO_SERVER_UUID.toString());
               url.append(";name=Echo Server");
               url.append(";authorize=false");
               // create notifier now
               notifier = (StreamConnectionNotifier) Connector.open(url.toString());
               record = localDevice.getRecord(notifier);
               isBTReady = true;
           } catch (Exception e) {
               e.printStackTrace();
           // nothing to do if no bluetooth available
           if (isBTReady) {
               midlet.showInfo("Initalization complete. Waiting for connection");
               midlet.completeInitalization();
           } else {
               midlet.showInfo("Initalization fail. Exit.");
               return;
           // produce client processor
           processor = new ClientProcessor();
           cmd = new CMDProcessor();
           // start accepting connections then
           while (!isClosed) {
               StreamConnection conn = null;
               try {
                   conn = notifier.acceptAndOpen();
               } catch (IOException e) {
                   // wrong client or interrupted - continue anyway
                   continue;
               processor.addConnection(conn);
       // activate the set up of process
       public void publish() {
           isClosed = false;
           new Thread(this).start();
       // stop the service
       public void cancelService() {
           isClosed = true;
           midlet.showInfo("Service Terminate.");
           midlet.completeTermination();
       // inner private class for handling connection and activate connection handling
       private class ClientProcessor implements Runnable {
           private Thread processorThread;
           private Vector queue = new Vector();
           private boolean isOk = true;
           ClientProcessor() {
               processorThread = new Thread(this);
               processorThread.start();
           public void run() {
               while (!isClosed) {
                   synchronized (this) {
                       if (queue.size() == 0) {
                           try {
                               // wait for new client
                               wait();
                           } catch (InterruptedException e) { }
                   StreamConnection conn;
                   synchronized (this) {
                       if (isClosed) {
                           return;
                       conn = (StreamConnection) queue.firstElement();
                       queue.removeElementAt(0);
                       processConnection(conn);
           // add stream connection and notify the thread
           void addConnection(StreamConnection conn) {
               synchronized (this) {
                   queue.addElement(conn);
                   midlet.showInfo("A connection is added.");
                   notify();    // for wait() command in run()
       // receive string
       private String readInputString(StreamConnection conn) {
           String inputString = null;
           try {
               DataInputStream dis = conn.openDataInputStream();
               inputString = dis.readUTF();
               dis.close();
           } catch (Exception e) {
               e.printStackTrace();
           return inputString;
       private void sendOutputData(String outputData, StreamConnection conn) {
           try {
               DataOutputStream dos = conn.openDataOutputStream();
               dos.writeUTF(outputData);
               dos.close();
           } catch (IOException e) {
       // process connecion
       private void processConnection(StreamConnection conn) {
           String inputString = readInputString(conn);
           String outputString = cmd.reactionToCMD(inputString);
           sendOutputData(outputString, conn);
    /*       try {
               conn.close();
           } catch (IOException e) {}*/
           midlet.showInfo("Client input: " + inputString + ", successfully received.");
    }For "CMDProcessor" , it is the class of message processing before feedback to client.
    Client side - ClientBox.java
    public class ClientBox implements Runnable, CommandListener{
        StringItem result = new StringItem("","");
        private DiscoveryAgent discoveryAgent;
        private String connString;
        private boolean isClosed = false;
        private boolean boxReady = false;
        StreamConnection conn;
        private static final UUID ECHO_SERVER_UUID = new UUID( "F0E0D0C0B0A000908070605040302010", false);
        Form process = new Form("Process");
        ClientInterface midlet;
        public ClientBox(ClientInterface mid){
            this.midlet = mid;
            process.append(result);
            process.addCommand(new Command("Cancel",Command.CANCEL,1));
            process.setCommandListener(this);
            new Thread(this).start();
        public void commandAction(Command arg0, Displayable arg1) {    
            if(arg0.getCommandType()==Command.CANCEL){
                isClosed = true;
                midlet.notifyDestroyed();
        public synchronized void run() {
            LocalDevice localDevice = null;
            boolean isBTReady = false;
            /* Process Gauge screen */
            midlet.displayPage(process);
            Gauge g=new Gauge(null,false,Gauge.INDEFINITE,Gauge.CONTINUOUS_RUNNING);
            process.append(g);
            showInfo("Initalization...");
            System.gc();
            try {
                localDevice = LocalDevice.getLocalDevice();
                discoveryAgent = localDevice.getDiscoveryAgent();
                isBTReady = true;
            } catch (Exception e) {
                e.printStackTrace();
            if (!isBTReady) {
                showInfo("Bluetooth is not avaliable. Please check the device.");
                return;
            if(!isClosed){
                try {
                    connString = discoveryAgent.selectService(ECHO_SERVER_UUID, ServiceRecord.NOAUTHENTICATE_NOENCRYPT, false);
                } catch (BluetoothStateException ex) {
                    ex.printStackTrace();
            else return;
            if (connString == null) {
                showInfo("Cannot Find Server. Please check the device.");
                return;
            else showInfo("Can Find Server, stand by for request.");
            boxReady = true;
        /* True if the clientbox is ready */
        public boolean getBoxReady(){
            return boxReady;
        /* True if the clientbox is closed in run() */
        public boolean getIsClosed(){
            return isClosed;
        public String accessService(String input) {
            String output = null;
            try {
                /* Connect to server */
                StreamConnection conn = (StreamConnection) Connector.open(connString);
                /* send string */
                DataOutputStream dos = conn.openDataOutputStream();
                dos.writeUTF(input);
                dos.close();
                /* receive string */
                DataInputStream dis = conn.openDataInputStream();
                output = dis.readUTF();
                dis.close();
            } catch (IOException ex){
                showInfo("Fail connect to connect to server.");
            return output;
        private void showInfo(String s){
            StringBuffer sb=new StringBuffer(result.getText());
            if(sb.length()>0){ sb.append("\n"); }
            sb.append(s);
            result.setText(sb.toString());
    }Client side - ClientInterface.java
    public class ClientInterface extends MIDlet implements Runnable, CommandListener{
        private ClientBox cb = new ClientBox(this);
        private Form temp = new Form("Temp");
        private Command select = new Command("Select", Command.OK, 1);
        private Command back = new Command("Back", Command.BACK, 1);
        Alert alert;
        String[] element;
        String out;
        List list;
        public void run(){
            /* Send message and get reply */
            out = cb.accessService("Proglist");
            element = split(out,",");
            /* Use the reply to make list */
            list = createList(element[0], List.IMPLICIT, out);
            list.addCommand(select);
            list.addCommand(back);
            list.setCommandListener(this);
            Display.getDisplay(this).setCurrent(list);
        public void startApp() {
            System.gc();
            waitForBoxSetUp(); /* Recursively check for clientbox status */
            new Thread(this).start();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            notifyDestroyed();
        public void displayPage(Displayable d){
            Display.getDisplay(this).setCurrent(d);
        private void waitForBoxSetUp(){
            while(!cb.getBoxReady()){
                if(cb.getIsClosed())
                    notifyDestroyed();
        public void commandAction(Command c, Displayable d){
            if (c.getCommandType() == Command.OK){
                if (d == list){
                    /* Send the choice to server */
                    out = cb.accessService(list.getString(list.getSelectedIndex()));
                    alert = new Alert("Output", "selected = "+out, null, AlertType.ALARM);
                    alert.setTimeout(2000);
                    Display.getDisplay(this).setCurrent(alert,list);
            if (c.getCommandType() == Command.BACK){
                notifyDestroyed();
        public void showWarning(String title, String content){
            alert = new Alert("Output", "selected = "+list.getString(list.getSelectedIndex()), null, AlertType.ALARM);
            alert.setTimeout(3000);
            Display.getDisplay(this).setCurrent(alert,list);
        private List createList(String name, int type, String message){
            List temp;
            String[] source = split(message,",") ;
            temp = new List(name, type, source, null);
            return temp;
        private static String[] split(String original,String regex)
            int startIndex = 0;
            Vector v = new Vector();
            String[] str = null;
            int index = 0;
            startIndex = original.indexOf(regex);
            while(startIndex < original.length() && startIndex != -1)
                String temp = original.substring(index,startIndex);
                v.addElement(temp);
                index = startIndex + regex.length();
                startIndex = original.indexOf(regex,startIndex + regex.length());
            v.addElement(original.substring(index + 1 - regex.length()));
            str = new String[v.size()];
            for(int i=0;i<v.size();i++)
                str[i] = (String)v.elementAt(i);
            return str;
    }

    i haven't worked with devices but only with the toolkit emulators;
    it definitely is possible...
    u have to send the image as a bytestream and receive the image at the jsp end...
    and then reconstruct the image.
    the Stream classes in J2ME AND J2SE are all u will require.
    also the Image class.
    i have not done this but i have successfully sent an image frm a jsp and displayed it on the emulator.

  • Okay so I'm trying to download Adobe Flash Pro. I've gone to creative cloud and downloaded "Flash Professional CC and Mobile Device Packaging (2014)" and I have no idea what to do afterwords... There's no way to open or run the file. And to be honest, I'm

    Okay so I'm trying to download Adobe Flash Pro. I've gone to creative cloud and downloaded "Flash Professional CC and Mobile Device Packaging (2014)" and I have no idea what to do afterwards... There's no way to open or run the file. And to be honest, I'm not even sure if it's the right download... Help!

    I'm using PC with Windows 8.1. I got onto the Creative Cloud and downloaded "Flash Professional CC and Mobile Device Packaging (2014)". <--- That would be the file. I can't open or run it from CC and I couldn't find a file in my computer either.
    I've also found direct downloads for the trial version and hit the set-up button, it loads up, and then nothing happens.

  • Has anyone else had problems since downloading latest update?  My iTunes stopped working and mobile device won't download, I now don't have Apple to backup my iphone?

    Has anyone else had problems since downloading latest update?  My iTunes stopped working and mobile device won't download, I now don't have Apple to backup my iphone?

    As i've posted in this thread:
    http://discussions.apple.com/thread.jspa?threadID=746408&tstart=30
    I've tried everything others have suggested without any luck.
    Now I'm stuck with a 300 bucks mp3 jalopy.
    My big question here is :
    why aren't we hearing from apple? why aren't they saying something like "yeah we messed things up but be patient. we are trying our best to fix it..." ?
    I was thinking to buy the macbook pro but now I'm afraid of the day things will get messy with that too.
    Pentium 4   Windows XP  

  • WebtoGo for laptop and mobile device - urgent

    Hi,
    I need to develop a web to Go application for both laptop and mobile device. The code which i generate for laptop should work on mobile device too.
    ie the single application should work for both mobile and laptop devices.
    Now coming to lightweight framework and small footprints what technologies should i use in J2EE.
    If i use struts is that going to be mess in mobile device. Some one guide me here about choosing the technologies.
    Thanks

    our java app that we have just ported from PDA to laptop uses AWT components as these work on the PDA. need to go for what will work on the windows mobile device, abnd this may restrict you to older and less functional components.
    NOTE platform is defined within the application on the server side (the name of the database on the client), and therefore you will need two applications in terms of oracle lite publications, so define the database name external to the code in some kind of a properties/config file

  • Javascript created in fireworks doesn't work with touch ipad and mobile devices.

    My website was created in DreamWeaver.
    Navigation is a popup/dropdown menu run by javascript created in FireWorks
    Website: www.woodstockchamber.com
    Problem:
    The mouse over doesn't work on iPads and mobile devices.
    The menu opens up and the category highlights, but that is where the action stops.
    It doesn't complete the action and link.
    It has worked well for years on desk tops and laptops.
    This is a serious issue for me as iPads and mobile devices are so popular and used a lot in this tourist town.
    Thanks,
    Norm

    http://www.smashingmagazine.com/2010/05/28/web-development-for-the-iphone-and-ipad-getting -started/
    http://www.inspiredm.com/2010/02/09/ipad-design/
    http://blogs.sitepoint.com/2010/06/23/develop-for-ipad-with-html5-trial-and-error/

  • IPhone composition   The payload of   and mobile device management is not installable in a utility.

    Hello.
    You.
    And thank you.
    I want you to help me if you please.
    I am not good at English.
    The status code of 201,204 which Apache returns from a MDM server.
    iPhone composition   The payload of   and mobile device management is not installable in a utility.
    iPhone composition   Console of a utility.
    May 1 09:46:15 unknown mc_mobile_tunnel[13281] <Notice>: (Note) MC: mc_mobile_tunnel shutting down.
    May    1 09:46:18 unknown. profiled [13274] <Notice>:   (Note)  MC:   Checking. for. MDM installation ... May 1 09:46:18 unknown profiled[13274] <Notice>: (Note) MC: ...finished checking for MDM installation.
    May    1 09:46:18 unknown. profiled [13274] <Notice>:   (Note)  MC:   Beginning. profile. installation ... May 1 09:46:20 unknown profiled[13274] <Notice>: (Error) MDM: Cannot Authenticate. Error: NSError:Desc     : Since a transaction with the server in "https://www.anetm.com/dav/chkin" was in the situation of "204", it failed.
    US Desc:   A transaction with the server at"https://www.anetm.com/dav/chkin"has failed with the status"204."
    Domain : MCHTTPTransactionErrorDomain
    Code   : 23001
    Type   : MCFatalError
    Params : (
    "https://www.anetm.com/dav/chkin",
    204
    May    1 09:46:20 unknown profiled [13274] <Notice>:   (Error) MC:   Cannot install MDM "mobile device management" .Error:   NSError:
    Desc    :   A payload "mobile device management" was not able to be installed.
    Sugg    :   Since a transaction with the server in "https://www.anetm.com/dav/chkin" was in the situation of "204", it failed.
    US Desc:   The payload "mobile device management" could not be installed.
    US Sugg:   A transaction with the server at"https://www.anetm.com/dav/chkin"has failed with the status"204."
    Domain : MCInstallationErrorDomain
    Code   : 4001
    Type   : MCFatalError
    Params : (
    "\U30e2\U30d0\U30a4\U30eb\U30c7\U30d0\U30a4\U30b9\U7ba1\U7406"
    ...Underlying error:
    NSError:
    Desc    :   Since a transaction with the server in "https://www.anetm.com/dav/chkin" was in the situation of "204", it failed.
    US Desc:   A transaction with the server at"https://www.anetm.com/dav/chkin"has failed with the status"204."
    Domain : MCHTTPTransactionErrorDomain
    Code   : 23001
    Type   : MCFatalError
    Params : (
    "https://www.anetm.com/dav/chkin",
    204
    I would like to solve this problem.
    If you please, please help me.

    Hello Jack,
    Thank you for providing the details about the Apple Mobile Device USB Driver is not being listed.  I found an article with some additional steps you can take. 
    I recommend following the steps in the section titled "If the Apple Mobile Device USB Driver is not listed" in step 5 of the following article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Update Flash Professional CC and Mobile Device Packaging

    The adobe crative cloud app says that I have an upgrade for Flash Professional CC and Mobile Device Packaging.  It has been failing for as long as I can remember.  How do you download and install the update?
    R/Jens

    Here are the individual Flash updates: http://www.adobe.com/support/flash/downloads.html

  • Adobe Air and Flash Future on Desktop and Mobile Devices

    Hello,
    iam interested to develop for mobil and desktop devices with AS3 and Flash Professional and i have any question.
    I see also many benefits to develop in flash as in java because javas gui development is based on swing a old java graphics engine.
    Next reason is the plattform like Linux,Windows,IOS.,the Game Development and other stuff.
    With Flash i can create nextgen interactive stunning cool gui interfaces for apps.
    I dont know why flash sucks for the market and devices.
    My question: is as3 and flash save for the future ?
    Make it really sense to learn as3 and Flash ?
    I have read many blogs,threads on adobe and other forums year 2012 Adobe stop flash development,
    and now 2013 google androids kitkat now have removed api features that kills complete flash !!!
    Other comments says Flash is dead for the market!? Many frustradet flash developers he work 10 years and more with flash are crying.
    So what is really the Future for the A3 and Flash Development ?
    Thanks and greetings

    Hi mc_gfx,
    > You think i can get started with flash and air development without worries?
    Software development always involves risk, so you can't really do much without worries.       AIR in particular is a cutting (bleading?) edge technology. Adobe is attempting to solve a difficult problem with limited resources, and the results aren't always ideal.
    If you want to deploy to Android and iOS, and you write two native apps, you face a 100% risk that you'll have to write your app twice. While this may not take twice as long as writing it once, it will come close.
    If you use AIR, you only have to write your app once, but you face other risks.
    Here's the problem. In AIR, Adobe is attempting to create a framework that translates ActionScript into bytecode for two different platforms. This isn't easy. Every time Apple or Google upgrades their operating system Adobe has to try to refine AIR so that it translates everything correctly for the new OS. AIR also has to maintain backward compatability with all previous OSs (is that the plural of OS?). AIR also has to work with many different models of Android and iOS devices. This includes supporting most, though not all, of the many different capabilities that these OSs support. Adobe, wisely, doesn't try to support every new feature immediately. Instead, it picks and chooses which new features it will support, and how soon. But even taking this approach I have the impression that their task is daunting.
    If you research this forum you'll find numerous examples of people complaining about features that don't quite work correctly. For example, I've put ~6 developer months into developing a language learning app, only to find that AIR's MP3 playback support has some limitations which severely impact the playback of voice recordings, which severely degrades the value of my app. I'm hoping that Adobe will fix this bug, but it's been two months now, with no movement. Another serious bug, involving audio recording using the device microphone, took three months to get fixed. During that period I had no idea whether it would get fixed, or whether I'd have to disable an important feature of my app on iOS.
    So, you want "without worries"?  
    Some people are lobbying Adobe to include support for Windows Phone in the AIR framework. IMHO, this is madness. Adobe clearly has limited resources. Let them first focus on making basic features like MP3 playback work properly on the platforms that they already support.
    The same issues probably apply to all the other cross-platform development frameworks - Sencha, Xamarin, etc. They face the same difficult technical challenges. I can't speak to the question of how well they're addressing them, but I'd want research them carefully before I invested a lot of time into developing with them.
    With regards to AIR, here's my advice: Before you start a non-trivial project using AIR, make a list of all the things that your app will do, then see if you can find existing apps created with AIR that do these things. Make sure that the feature works on both Android and iOS. You won't be able to test on every device that you'd like to support, but pick a few and test on them.
    You don't need to worry about your app's logic - ActionScript is great for that - and AIR translates it just fine. But think carefully about your app's 'skin' - all the ways that you want it to interact with the outside world - input and output - and confirm that apps exist that demonstrate that AIR can handle these features. Also think about the app's infrastructure - network interactions - database interactions - etc.
    You'll probably end up with a list of features that you haven't been able to confirm. You can vet these by creating a proof of concept that confirms that AIR will support these needs. Do this before you start developing the full app. Once that's done, pray that everything that works now will continue to work with future OSs and devices. Adobe has a pretty good record on this sort of things, but there aren't any guarantees.
    Don't worry, be happy        ?
    HTH,
    Douglas

  • Strange Occurrence: Apple TV and Mobile Devices

    I am on a wireless home network, and what I describe below has now happened twice in one week: I lose internet connectivity (via wifi) on my Apple TV and mobile Apple devices (iPhone 5s, iPad 3), but retain it for my two laptops (both mid 2010 MacBook Pro) and my iMac (early 2009).
    I reset my modem and wireless router and connection is still not there for the aforementioned discconected devices.
    All devices have their most up-to-date operating systems, and the mobile devices are trying to connect strictly through wifi.
    What gives?

    I will start with that, thanks. Was hoping it might be something obvious because I feel they will ask me to direct connect and look at my modem connection for the time I am on the phone with them, and see nothing.
    I should edit my intro slightly; the iMac does lose connection as well, so it is only the laptops that remain connected.

  • Problem with Lion and mobile device

    I can access the web only through a mobile pen drive. Lion can't make the access because need a java run time for the mobile device and can't get the run time because not internet connected!

    So for reference, in case other people are experiencing this problem...
    It seems to be happening to iMacs running Lion and using bluetooth keyboard and/or mouse and/or trackpad. What happens is when you turn the computer on and the bluetooth devices on at the same time Lion can't find them, panics and starts up in Safe Mode. That is why functionality (including network) is limited. Restarting the computer seems to fix the problem and Safe Mode is avoided on the second boot up.
    The fix is apparently (and it works) to turn the iMac on and wait for the grey background and apple logo. Wait for the spinning circle/clock face to stop and vanish, then turn the bluetooth devices on when you see your desktop. I've been doing it for the last ten days and it's worked perfectly every time.
    In the mean time, Apple please can you recognise this as an issue and fix it?!

  • Can't install new itunes and mobile device support keeps crashing

    a while ago, i tried getting new quicktime, but my computer crashed in the middle of the updating (also a problem- anyone know why it keeps lagging, freezing, and crashing on me?). i ignored it, and plugged in my ipod a few days later. itunes wouldn't pop up, and when i clicked the icon, i got a popup saying "itunes not found, please reinstall" or something along those lines.
    i tried reinstalling it, but it gets stuck at "copying new files". i also tried getting the new quicktime, but it get stuck about 2/3s through it. also, after leaving my computer on for a night to see if it would install, i started getting a popup from microsoft windows saying that "MobileDeviceService has stopped working". if i try to check online for a solution, the popup dissapears after a while, but pops up again in a few seconds. same with if i just close the popup. this popup has also started to appear the second i log on to my computer.
    i also tried uninstalling mobile device support (using this), but when it's preparing for installation, my computer freezes and stops working.
    tldr: updated to quicktime, but crashed in the middle. now i can't get new itunes or quicktime, and i get popups about apple mobile device support that won't go away. any suggestions?
    and my computer started to lag and freeze a lot about a month ago.. i'm not sure why. but it's been very annoying since i have to keep hitting the power button cause the freezing doesn't allow me to do anything. i ran 3 virus scans, and only 1 managed to finish without crashing, and it's telling me that nothing's wrong. i've also uninstalled and deleted a lot of things, but that hasn't helped either.
    i have vista, and would really appreciate some help.

    anyone?
    *i've managed to download quicktime, but am still unable to download itunes. after reaching a certain point in downloading itunes, (about 1/3 of the way?) it stops at "copying files", and my computer freezes and i have to hold the power button in order to shut it off and do anything, or i get a popup asking me if i want to change something so itunes can finish downloading. i click "yes", but then the download stops completely and i get a message saying "itunes has finished downloading, but with errors" and it tells me to download it again.
    a popup from MobileServiceDevice keeps appearing as well, but it won't go away. the details are:
    Problem Event Name:    APPCRASH
      Application Name:    AppleMobileDeviceService.exe
      Application Version:    17.88.0.7
      Application Timestamp:    4e66ceff
      Fault Module Name:    kernel32.dll
      Fault Module Version:    6.0.6002.18005
      Fault Module Timestamp:    49e038c0
      Exception Code:    c06d007f
      Exception Offset:    0001e124
      OS Version:    6.0.6002.2.2.0.768.3
      Locale ID:    1033
      Additional Information 1:    fd00
      Additional Information 2:    ea6f5fe8924aaa756324d57f87834160
      Additional Information 3:    fd00
      Additional Information 4:    ea6f5fe8924aaa756324d57f87834160
    but the fault module name changes on me. sometimes it's kernel32.dll, and sometimes it's something else, and i've already tried using task manager /find str but it doesn't help.

  • Sharepoint Workflow - change URL Path for inside and mobile device email access

    I have a workflow that work perfect when accessing from a desktop.  An email is sent with a link to the item,
    [%Workflow Context:Current Item URL%].  The real address is http://sql/layouts/.......
    When the user tries to click on the link in the email from a mobile device, it doesn't work.
    If I change the mobile device to http://50.xx.xxx.xxx/layouts... it works fine!  (50.xx.xxx.xxx is the port open on our firewall to access SharePoint)
    How can I add a separate link in my workflow email so that users can access the SharePoint task list item from a mobile device?
    I was thinking of having a link for the inside, http://sql... and a link for the mobile device, http://50.xxx.xxx.xxx/...
    Thank you!

    List item URLs are basically a URL to the list item using the item Id. In this case 159 is the item id. The URL represents a downloadable resource like a file in a document library. However in a document library you would get the name of the file plus
    it's extension. For example Contract.pdf. The .000 represents the file extension for the list item URL. If you typed in your URL in the browser to servername/list name/159_.000 you would be prompted to save the file (list item). You can save it to your local
    file system and it will be a file called 159_.000. However the file will be empty since a list item does not contain any binary content. You will have to some how modify the workflow to replace the servername/list name/159._000 to use servername/lists/list
    name/dispform.aspx?id=159. This URL will display the view form for the list item.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • Minimun requirements to see a 3D model in a PC and mobile devices

    What are the minimum requirements to see a 3D model in a PC?
    CPU, RAM, Graphics Card...
    And other question about this matter. I have tried to see a 3dpdf in a ipad but nothing is displayed at the 3d window.
    Is it posible to display 3d pdf in Tablets, Ipad, and smartphones?
    Thank you

    About 3dmedia at mobile devices.
    I have traslated this question to Adobe Reader forum
    The answer from Adobe is very disappointing
    http://forums.adobe.com/thread/988034?tstart=60
    It seems like Adobe has no plans to make 3dmedia available for mobile devices.
    Ipad, tablets, smartphones are growing in the market more and more. Laptops are being replaced for  mobile devices everyday.
    I will tell Adobe to better wake up or they are loosing a big piece of cake and in this matter Adobe is getting obsolete.
    I will even tell Adobe to make available 3Dmedia in Ebook techgnology...
    3D Designers need all the posibilities to spread out our documents ( PC, Ipad, tablets, smartphones...)

  • Question about Java SDK 1.5.0 and mobile devices...

    Hello, everyone. This is my first time posting on these forums since I usually find the answers I need from old threads (this place is VERY informative and HELPFUL). I wanted to know if it's possible at all to create a program from the Java Standard Edition Development Kit and have it operate on a mobile device or a suitable mobile device emulator? Or is that ony feasible with the J2ME kit? Any revelant response would be much appreciated. Thanks!

    A J2SE application will not work on most mobile
    devices.I know J2SE applications that don't even work on non-mobile devices.

  • Iweb and mobile devices

    I have a published site. www.joegasior.com
    The site does not appear correctly on mobile devices.
    Have checked on blackberry, ipod touch, ipad, and htc.
    The nav bar does not appear. any ideas?

    David ~ This old thread may help:

Maybe you are looking for

  • Does the Creative Cloud app on Mac have to launch at login to check for updates?

    I don't really care to have the Creative Cloud app on my Mac running all the time.  I don't use any of the features for it other than to update apps. If I UNcheck "Launch at login"....will I still get notified of updates? -Kevin

  • [solved] Writing systemd service file - forking no pidfile

    Hey all, I am trying to write .service files for TORQUE, but am having some difficulty and quite can't understand the docs.  Here's what I have so far for the server [Unit] Description=TORQUE server Wants=basic.target After=basic.target network.targe

  • No audio cross dissolve in iMovie 10.0.8/Yosemite?

    I know iMovie is not a professional editing solution, but I am baffled why I cannot cross-dissolve audio clips but I can do so with picture. Before the flamers start in on me, I am going to be teaching an editing class in an inner city magnet school

  • Importing Settings from another Aperture Library?

    Hi folks! I want to create a new Aperture Library to start again instead of cleanning up the one I already have, but when I create a new Library and import the photos the adjustments I did to the same photos but located on the other library doesn't a

  • Once form9i running, which step to get reports work

    Hi, All forms are running in form Developer 9i, but I can get the reports work Which are the steps to get reports runing. I had changed the reports to the new format with the command RUN_REPORT_OBJECT. But I4m not getting nothing. If you can help ple