Application works is not on the device...

Hello

My application is going to hang up my camera. whenever I click on the search button.

what I did:

delete all the log files.

Run the application.

then check out the newspaper.

E net.rim.udp - TNLf 0
a net.rim.tunnel - 1 Pdp1
a net.rim.tunnel - STnc-00000000
a net.rim.tunnel - Open - blackberry .net
a net.rim.udp - open

What that means!

But the application works fine with wifi

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

Continue... http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&thread.ID=38547

=================================================================================

The full changelog is:

a net.rim.tunnel STac-BlackBerry .net-6/3 10:49:22 by net.rim.tunnel Open-BlackBerry .net-6/3 10:49:22 by net.rim.mdp - Pbdr - 6/3 10:49:14 by net.rim.mdp - Ramallah - 6/3 10:49:14 by net.rim.tunnel STac - blackberry .net - 10:49:11 by net.rim.tunnel Open - blackberry .net 6/3-6/3 10:49:11 by net.rim.udp - open - 6/3 10:49:11

a net.rim.tunnel - Pdp0 1-6/3 10:49:11

a net.rim.tunnel STnc-00000004 - 6/3 10:49:03 has Open net.rim.tunnel - .net - 6/3 10:49:03 BlackBerry has net.rim.tunnel STnc-00000000 - 6/3 10:49:01 by net.rim.tunnel Open - BlackBerry .net - 6/3 10:49:01 by net.rim.udp - open - 6/3 10:49:01

E net.rim.udp - TNLf 0-6/3 10:48:47

a net.rim.tunnel - Pdp1 1-6/3 10:48:47

a net.rim.tunnel STnc-00000000-6/3 10:48:47 by net.rim.tunnel Open - blackberry .net - 6/3 10:48:47 by net.rim.udp - open - 6/3 10:48:47

E net.rim.udp - TNLf 0-6/3 10:48:47

a net.rim.tunnel - Pdp1 1-6/3 10:48:47

a net.rim.tunnel STnc-00000000-6/3 10:48:47 by net.rim.tunnel Open - blackberry .net - 6/3 10:48:47 by net.rim.udp - open - 6/3 10:48:47

E net.rim.udp - TNLf 0-6/3 10:48:47

a net.rim.tunnel - Pdp1 1-6/3 10:48:47

a net.rim.tunnel STnc-00000000-6/3 10:48:47 by net.rim.tunnel Open - BlackBerry .net - 6/3 10:48:47 by net.rim.udp - open - 6/3 10:48:47

E net.rim.udp - TNLf 0-6/3 10:48:47

a net.rim.tunnel - Pdp1 1-6/3 10:48:47

a STnc-00000000 net.rim.tunnel-6/3 10:48:47 by net.rim.tunnel Open-BlackBerry .net-6/3 10:48:47 by net.rim.udp - open - 6/3 10:48:47 by net.rim.mdp - conservation - 6/3 10:48:27 by net.rim.mdp - conservation - 6/3 10:48:27 by net.rim.mdp - INtr - 6/3 10:48:27 by net.rim.tunnel - Init - 6/3 10:48:07

a net.rim.tunnel - Pdp0 2-6/3 10:46:52

a net.rim.tunnel STnc-00000000 - 10:46:33 by net.rim.tunnel Open-wap 6/3 - 6 / 3 10:46:33

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * @author ASTJPR USER
 */

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import javax.microedition.io.Connector;
import javax.microedition.io.HttpConnection;

import net.rim.device.api.system.EventLogger;

public class ConnectionThread extends Thread {

    private boolean start = false;
    private boolean stop = false;
    private String url;
    private String data;
    public int status=0;
    public static boolean sendResult = false;
    public boolean sending = false;
    private String requestMode = HttpConnection.POST;
    public static String responseContent = null;

    public void run() {
        EventLogger.register(0xf512941762fdb1c2L, "Zain5", EventLogger.VIEWER_STRING);
        while (true) {
            if (start == false && stop == false) {
                try {
                    sleep(200);
                } catch (InterruptedException e) {
                    System.out.println("Errorr: " + e.getMessage());
                    EventLogger.register(0xf512941762fdb1c2L, "Zai4n", EventLogger.VIEWER_STRING);
                    EventLogger.logEvent(0xf512941762fdb1c2L, e.getMessage().getBytes());
                }
            } else if (stop) {
                return;
            } else if (start) {
                http();
            }
        }
    }

    private void getResponseContent( HttpConnection conn ){
        InputStream is = null;
        try {
            is = conn.openInputStream();
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        // Get the length and process the data
        int len = (int) conn.getLength();
        if ( len > 0 ) {
            int actual = 0;
            int bytesread = 0;
            byte[] data = new byte[len];
            while ( ( bytesread != len ) && ( actual != -1 ) ) {
                try {
                    actual = is.read( data, bytesread, len - bytesread );
                } catch (IOException e) {
                    System.out.println("EWrror: " + e.getMessage());
                    EventLogger.register(0xf512941762fdb1c2L, "Zain6", EventLogger.VIEWER_STRING);
                     EventLogger.logEvent(0xf512941762fdb1c2L, e.getMessage().getBytes());
                }
                bytesread += actual;
            }
            responseContent = new String (data);

           // Dialog.alert(responseContent);

        } else {
            int ch;
            try {
                while ( ( ch = is.read() ) != -1 ) {
                     responseContent += (byte) ch;
                     //Dialog.alert(responseContent);
                }
            } catch (IOException e) {
                EventLogger.register(0xf512941762fdb1c2L, "Zain3", EventLogger.VIEWER_STRING);
                 EventLogger.logEvent(0xf512941762fdb1c2L, e.getMessage().getBytes());
                e.printStackTrace();
            }
        }

    }

    private void http() {
        HttpConnection conn = null;
        OutputStream out = null;
        int responseCode;
        try {
            /*conn = (HttpConnection) Connector.open(url);
            conn.setRequestMethod(HttpConnection.POST);
            conn.setRequestProperty("User-Agent", "BlackBerry/4.6.0");
            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            conn.setRequestProperty("Content-Length", "" + data.length());
            */
            conn = (HttpConnection) Connector.open(url, Connector.READ_WRITE, true );
            conn.setRequestMethod(requestMode);
            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            //  conn.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
            out = conn.openOutputStream();
            out.write(data.getBytes());
            out.flush();

            responseCode = conn.getResponseCode();
            status = responseCode;
            if (responseCode != HttpConnection.HTTP_OK) {
                sendResult = false;
                responseContent = null;
            } else {
                //status = 1;
                sendResult = true;
                getResponseContent( conn );
            }
            start = false;
            sending = false;

        } catch (Exception e) {
            EventLogger.register(0xf512941762fdb1c2L, "Zain2", EventLogger.VIEWER_STRING);
             EventLogger.logEvent(0xf512941762fdb1c2L, e.getMessage().getBytes());
            System.out.println("ZahidERROR : " + e.getMessage());
            start = false;
            sendResult = false;
            sending = false;
        }  finally {
            try {
                out.close();

            } catch (IOException e) {
                EventLogger.register(0xf512941762fdb1c2L, "Zain1", EventLogger.VIEWER_STRING);
                 EventLogger.logEvent(0xf512941762fdb1c2L, e.getMessage().getBytes());
            }
        }
    }

    public void get(String url) {
        this.url = url;
        this.data = "";
        requestMode = HttpConnection.GET;
        sendResult = false;
        sending = true;
        start = true;
    }

    public void post(String url, String data) {
        this.url = url;
        this.data = data;
        requestMode = HttpConnection.POST;
        sendResult = false;
        sending = true;
        start = true;
    }

    public void stop() {
        stop = true;
    }

}
ConnectionThread connThread = new ConnectionThread();
                connThread.start();
                try{
                    //connThread.get(url
                    connThread.get("http://w30gcliwn.30daytrial.webappcabaret.com/Zain_Servlet/second?f1="
                            + NameTextField.editField.getText()
                            + "&m2="
                            + AreaTextField.editField.getText()
                            + "&l2="

                             + LastTextField.editField.getText() + ";deviceside=true;ConnectionUID=" + getWap2TransportUid());

Tags: BlackBerry Developers

Similar Questions

  • Mobile: The spark fade effect works is not on the device

    Hello:

    I have a TabbedViewNavigatorApplication with Flex SDK 4.6 that has four ViewNavigator (tabs). In the first, his original point of view has a list of spark with custom IconItemRenderer and by clicking on an element, the browser pushes another opinion. I applied a spark effect to make a fade on the current view before pushing a new (on the EFFECT_END event).

    It's the definition of the effect:

    < fx:Declarations >

    < s: Fade duration = "{ParamsModel.timeoutFadeOut}" id = "fadeOutEffect" alphaFrom = alphaTo "1.0" = "0" / > "

    < / fx:Declarations >

    And that is launched when the user clicks on an item in the list:

    public void loadView(view:*,_data:Object):void

    {

    Avoid the transition between slides by default between views

    tabbedNavigator.activeView.navigator.defaultPushTransition = null;

    Add listener to detect the end of the fade effect

    fadeOutEffect.addEventListener (EffectEvent.EFFECT_END, function(event:EffectEvent):void

    {

    Delete this listener until the next call to 'loadView() '.

    IEventDispatcher (event.currentTarget) .removeEventListener (event.type, arguments.callee);

    After erasing is completed, press the new view

    tabbedNavigator.activeView.navigator.pushView (display, data);

    }

    Play the fade on the current active view effect

    fadeOutEffect.play ([tabbedNavigator.activeView]);

    }

    In fact, this short code smooth on the emulator, but I can´t see no fade effect on the device. I mean, it s not that the effect works buggy or slow. He doesn´t bland at all. West a time (exactly the duration of the effect) where nothing happens, and then the new view load without any effect. What Miss me? I really miss a kind of "emulated hardware installation" on the emulator definitely know if what I see on the computer will work (in terms of performance) on the device... I easily spend 50% the time coding and 50% this kind of continuous performance of fixing problems.

    EDIT: In one of the tabs, a custom list has a gradient background. I Don t know why, but this background is the only element that seems to be affected by the fade effect. Gently, she turns to alpha: 0, but his Don t containing elements.

    Thanks in advance!

    I can´t believe it... While writing the previous post, I thought of a really simple solution and compiled to give it a try. It works perfectly!

    As simple as setting the property "cacheAsBitmap" to "true" on the spark lists points of view!

  • HFM Application works is not via the workspace

    Hello

    When I try to access the HFM application via the workspace I get the following error:

    There was a communication error. The answer is:

    http://Server/HFM/GlobalWorkspaceNav/BPM/modules/com/Hyperion/HFM/Web/appcontainer/ADF.asp <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 / / IN" "http://www.w3.org/TR/html4/strict.dtd" >
    < HTML > < HEAD > < TITLE > page can not be found < / TITLE >
    < META HTTP-EQUIV = "Content-Type" Content = text/html"; charset = Windows-1252 ">"
    < STYLE type = "text/css" >
    BODY {make: verdana 8pt/12pt}
    H1 {make: verdana 13pt/15pt}
    H2 {make: verdana 8pt/12pt}
    A:link {color: red}
    A: visited {color: maroon}
    < / STYLE >
    < / HEAD > < BODY > < TABLE width = 500 border = 0 cellspacing = 10 > < TR > < TD >

    < h1 > the page could not be found < / h1 >
    The page you are looking for has been removed, had its name changed, or is temporarily unavailable.
    < hr >
    < p > please try the following: < /p >
    < ul >
    < li > make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly. < /li >
    < li > if you have reached this page by clicking a link, please contact
    the Web site administrator to alert them that the link is badly formatted.
    < /li >
    < li > click the back button to try another link. < /li >
    < /ul >
    < h2 > HTTP error 404 - file or directory not found. < br > Internet Information Services (IIS) < / h2 >
    < hr >
    information technology (for support staff) < p > < /p >
    < ul >
    < li > go to the Microsoft Product Support Services and perform a search by title for the words HTTP < /b > < b > and < b > 404 < /b >. < /li >
    < li > < b > help IIS < /b >, which is accessible in IIS (inetmgr) Manager, to open
    and search for topics titled < b > setting up a Web Site < /b >, common administrative tasks < /b > < b > and < b > on the Custom Error Messages < /b >. < /li >
    < /ul >

    < Table > < /TR > < / TABLE > < BODY / > < / HTML >

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

    I tried to reconfigure the web server (I use IIS) several times.

    I have HFM 9.3 installed windows2003 server.

    The rest of the components work fine through the workspace... dim library, library of the app etc.

    Any help would be greatly appreciated. Thank you.

    You can also try the following:

    1. from the IIS Manager > Web Service Extensions try to change the following:
    Internet data connector = allowed
    WebAnalysis = authorized
    allowed = workspace
    HR = accepted
    AWB admitted =
    WebDAV authorized =
    then restart IIS

    2 edit web site properties by default in IIS to remove all entries in the ISAPI filters tab

    KN

  • I have laptop Toshiba and windows 7, but my webcam is not working it shows that the device is locked by another application.

    I have laptop Toshiba and windows 7, but my webcam is not working it shows that the device is locked by another application. Help me please!

    For a built-in webcam see this support from manufacturers or their forums.

    You could I think trying a boot minimum http://support.microsoft.com/kb/929135 and see if its then OK

  • To run all the applications of the laptop or install download applications works does not error message indicating that the application is not valid "win32.exe or win32.application.

    To run all the applications of the laptop or install download applications works does not error message indicating that the application is not valid "win32.exe or win32.application.

    Hello m.velentino,

    Not sure if you are still having the error message isn't valid win32.applicaiton.

    Get the error: not a valid 32-bit application can have several origins:
    I have listed some of them below.

    The file is corrupted, bad or missing.
    -If the hard disk is damaged or hurt it cause work programs to fail, either because not all data can be read from the hard drive the program is damaged on the drive. Run scandisk and defrag on the hard disk to check for potential errors.
    -If you run the program from a shortcut on the computer, verify that the program is still on the computer. In some cases if the program is no longer installed on the computer, you can get this error.

    File is not designed for your version of Windows:
    -If you try to run a program that is not designed for your version of Windows, you can get this error.
    -Although many old programs designed to work in older versions of Windows will work with new versions of Windows, unfortunately, not all programs will not work.
    -If the program is an MS-DOS program more former start program or Windows, you can get this error.
    -If the program is designed for a 64-bit version of Windows and you are running in a 32-bit version of Windows, it will not work and generate this error.

    File is a virus, worm or other malicious program file.
    -
    This error can be generated by a file that is a virus, worm, Trojan horse or other type of malware file. Often, this will result because the antivirus installed on the computer will not allow the file to install or run. Try to analyze the file to check, it is not a virus or infected.
    -If the file has been checked and is clean, it is always possible that the virus protection program or a another program installed on the computer is at the origin of questions during installation or execution of the program. Start the computer in Mode safe and try to run the program. start the computer in Mode safe will be that nothing is running in the background that could cause this problem.

    Hardware incompatibility.

    -If you get this error during the installation of a program, it is also possible that the CD-ROM drive or the drive that you are installing the program from is not compatible with Windows or has drivers that are not compatible with Windows.
    -Download the latest drivers for your CD player or other of the manufacturer of the computer or the manufacturer of the equipment. (Microsoft does not pilot for other materials)

    Let us know if these suggestions help you.

    Marilyn

  • Windows displays the device works correctly. However, the device does not appear in windows Explorer. also, I can not format disks.

    Windows displays the device works correctly.  However, the device does not appear in windows Explorer. also, I can not format disks.

    What should I do next

    Hello

    1. Are you referring to the NEC USB Floppy Driver?
    2. You try to format floppy disks?
    3. Was - this earlier work, if so, did the chnages on the computer before this problem?

    If it worked, I suggest the following methods and check the status of the issue.

    Method 1:

    Open the hardware and devices troubleshooter.

    http://Windows.Microsoft.com/en-us/Windows7/open-the-hardware-and-devices-Troubleshooter

    Method 2:

    Update a hardware driver that is not working properly.

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly

  • Hello my MacBook Pro model (MacBook Pro (15 inch, early 2011 am Dubai bought the Sryalsh C02FD2CPDF8 number and I am in Iran that MacBook Pro not enter the device screen when I turned on the pink vertical lines can be seen, the problem is restless))

    Hello my MacBook Pro model (MacBook Pro (15 inch, early 2011 am Dubai bought the Sryalsh C02FD2CPDF8 number and I am in Iran that MacBook Pro not enter the device screen when I turned on the pink vertical lines can be seen, the problem is agitated and it is not difficult to work with him because I like and what I should I do?))

    Serial number C02FD2CPDF8V

  • USB doesn't work is not on the external hard drive

    I have Vista Ultimate and here I noticed recently USB not working only not on the external hard drive. I tried to update the drivers and the system responds with the most recent driver already installed. Verified the USB ROOT property and shows nothing when it comes to th Ext. HD but it sees the usb hub and head phones. An organization can help its driving me crazy!

    Hi Chaser07,

    Follow the instructions below that may help you resolve the issue.

    Method 1:

    I suggest you try to use an external hard drive on another USB plug and check if it works.

    Method 2:

    Automatically diagnose and repair problems with the devices when the Device Manager does not detect your hardware, audio, USB, or other devices, or when your devices are disabled or does not.

    Click run now in the link below to diagnose and fix problems automatically.

    Hardware devices not detected or does not

    http://support.Microsoft.com/GP/hardware_device_problems

    Check whether the problem is resolved.

    Method 3:

    Click on the link below to run Fix it which will help you to solve the problem.

    Tips for solving problems of USB devices

    http://windowshelp.Microsoft.com/Windows/en-us/help/c39bd203-f729-47a4-8351-83291e13c8a81033.mspx

    Check whether the problem is resolved.

    Method 4:

    Click on the link below and install the update.

    Rollup cumulative update for USB in Windows Vista Basic components

    http://support.Microsoft.com/kb/941600

    Please post back and let us know if it helped to solve your problem.

    Kind regards

    KarthiK TP

  • Smartphones from blackBerry Desktop Manager does not recognize the device without administrator privileges

    Hello. My "BOLD" BB works fine at home with 4.6 DM. However, at work DM detects that the device is plugged when I get with administrative privileges (Windows XP Pro, SP2). When I am denied the additional privileges DM cannot detect the BB.

    DM has been intalled under administrator privileges, but I'm not allowed with this privilege permanently.

    Any ideas?

    Thanks in advance.

    It seems that when DM has been installed, it has not been installed "for all users".  Maybe uninstall and when it is reinstalled, make sure that the option "for all users" is checked (insteald "only for this user").

  • Windows controllers USB 8 not on the Device Manager list

    Bus controllers series not on the Device Manager list. USB ports not working do not. I tried equipment difficulty and said could not find drivers for multifunction device clicked on fix not found the drivers for it. could use a little help with that.

    USB windows 8

    Hello

    Sounds like hardware and you cannot resolve hardware with the software. Check with the system
    Manufacturer of support, their books online, the diagnosis and ask in their forums (if
    There are). Or check with a real computer store (one who does on its own in-store service
    This brand and model of laptop).

    Remember that you can not resolve hardware with the software.

    =====================================================

    Troubleshooting you can try:

    Note the use of Win Key + X and Win Key + W (to go on the Control Panel, Run and parameters
    According to needs). Win + D key calls the office and using Win Key active / disable the Office
    and the splash screen.

    Follow these steps to remove corruption and missing/damaged file system repair or replacement.

    Windows key + X (or right click in the lower left corner) - (Admin) command prompt

    C:\Windows\System32\ >

    At the prompt, type in SFC/scannow above
    (There is a space between C and /)

    How to run the command "SFC/scannow" at startup or in Windows 8
    http://www.eightforums.com/tutorials/3047-sfc-scannow-command-run-Windows-8-a.html

    -----

    Then run CheckDisk (chkfdsk/f/r)

    File (formerly Windows Explorer)

    Right click on drive C: - Properties - tab tools - error checking - Check

    Windows 8/8.1 - improve performance by optimizing your hard drive - see "to repair a drive:
    http://Windows.Microsoft.com/en-us/Windows-8/improve-performance-optimizing-hard-drive

    How to check a drive for errors with "chkdsk" in Windows 8/8.1
    http://www.eightforums.com/tutorials/6221-chkdsk-check-drive-errors-Windows-8-a.html

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

    Then lets refresh the USB stack

    Control the click Control Panel - Device Manager - no matter where in the box of white/white - then the VIEW - see the
    Devices disabled - look around (with the exception of USB controllers) for your devices (can have
    zero or more than one) and top - right click UNINSTALL.

    Control Panel right CLICK on EVERYTHING - Serial USB controllers - device configuration-manager and
    UNINSTALL all but the category itself - REBOOT - it refreshes the driver and battery USB

    This KB shows XP how to and methods of Vista and Windows 7 are identical (and
    Windows 8/8.1)
    http://support.Microsoft.com/kb/310575

    This is a utility to help you, but do 1 above.

    USBDeview is a small utility that lists all USB devices currently connected to your computer.
    as well as all USB devices that you previously used. Run Options and tick three 1
    are there choices to see if any.

    http://www.NirSoft.NET/utils/usb_devices_view.html

    You must remove all instances of the devices and restart.

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

    Install USB 3.0 and other USB devices
    http://Windows.Microsoft.com/en-us/Windows-8/install-USB-3-USB-devices

    Hardware and drivers
    http://Windows.Microsoft.com/en-us/Windows/hardware-drivers-help#hardware-drivers-help=Windows-8

    Set up your PC - configure your devices
    http://Windows.Microsoft.com/en-us/Windows-8/set-up-devices#1TC=T1

    Why Windows is not find my device?
    http://Windows.Microsoft.com/en-us/Windows-8/why-isn ' t-windows-conclusion-device

    What happens if a device is not installed correctly
    http://Windows.Microsoft.com/en-us/Windows-8/what-device-isn ' t-installed-correctly

    ===================================================

    If necessary:

    Try to do a "Refresh you PC without affecting your files" (or modification of your personal data
    settings) or even a restore.

    Windows 8/8.1 includes special discount methods (keep files and settings) or a reset
    (new installation remove all).

    How to restore, refresh or reset your PC
    http://Windows.Microsoft.com/en-us/Windows-8/restore-refresh-reset-PC

    How to create a system image to refresh your PC in Windows 8
    http://support.Microsoft.com/kb/2748351

    How to update Windows 8/8.1
    http://www.eightforums.com/tutorials/2293-refresh-Windows-8-a.html

    How to reset Windows 8/8.1
    http://www.eightforums.com/tutorials/2302-reset-Windows-8-a.html

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How to activate bluetooth Qualcomm Atheros AR3012 on laptop Asus when "Windows could not activate the device (the function of bluetooth?

    airplance mode: off

    WiFi: connected.
    Bluetooth: off
    Ultrabook ASUS, bought on 14 April 2013
    Qualcomm-Atheros Bluetooth 4.0 AR3012 + HS
    Unable to activate the device.
    Basic troubleshooting done:
    1. reboot the PC
    2. activate and deactivate the airplance mode
    3. put updated driver
    Impossible to activate bluetooth
    error message: windows could not activate the device.
    tried steps 1-3 again me. same message showed.
    no other device is connected via USB when trying to enable bluetooth.
    known issue after removing antivirus software and install another antivirus software. but now I'm running on windows Defender.

    Hello

    Thank you for the update.

    As none of the above suggestions work, I suggest you to contact the Asus support for any future reference.

    http://support.ASUS.com/ServiceHome.aspx?SLanguage=en

    Feel free to contact us for any other questions related to Windows.

  • LR 5 doesn't work is not on the new Macbook Pro.

    LR 5 doesn't work is not on the new Macbook Pro.  Have tried 2 CC downloads, download licensed 5.6 and 5.5 download licensed, all the results in the same thing.  It comes up with the screen base but no signs and gives that an error occurred when changing the modules.  Nothing I have tried seems to help.  He also said "start with lightroom mobile at the top on the left, although it said it's Lr 5.6.  Anyone else having problems?  Calls to adobe are no help and have to wait until Monday for technical support.  Surely this must run on a NEW laptop with any other installed software!

    Setup logs was very good.  Application installed but is not working properly.  Finally got Adobe support and it turns out be a file permissions error.  Had to add applications and myself as accessors of the Lightroom folder under ~/Library/Adobe/ path and set permissions to read & write (was read only for everything except system) and apply to all the cases closed.   Works fine now.  Including this here in case when someone else is going through this issue.

  • Someone at - he had problems with 9.2.1 and pairing Bluetooth devices?  My iPhone will not be connected or pair of devices.  Devices to recognize the iPhone 6, but the will of the iPhone 6 does not recognize the device.  Is there a problem with 9.2.1?

    Someone at - he had problems with 9.2.1 and pairing Bluetooth devices?  My iPhone will not be connected or pair of devices.  Devices to recognize the iPhone 6, but the will of the iPhone 6 does not recognize the device.  Is there a problem with 9.2.1?

    Kev2012 wrote:

    Someone at - he had problems with 9.2.1 and pairing Bluetooth devices?  My iPhone will not be connected or pair of devices.  Devices to recognize the iPhone 6, but the will of the iPhone 6 does not recognize the device.  Is there a problem with 9.2.1?

    It would depend on what you're trying to link to?

    Here are the supported Bluetooth profiles an Apple device can connect to iOS: Bluetooth profiles supported - Apple Support

  • HP Pavilion: Touchscreen doesn't work is not in the browser

    My touch screen stopped working specifically in Chrome.  It seems to work everywhere else, including IE.  It's probably a frame in Chrome or something on the computer settings I managed to accidentally change?  Thank you!

    Hi there @jexylou,

    Welcome to the Forums of HP Support! It's a good place to find the help you need, other users, HP experts and other support staff. I understand that you have a problem with the chrome browser works only not with the touch screen. I'll be happy to help you.

    Open chrome

    Put this in the address bar: chrome://flags/#touch-events

    Change the setting "enable Touch events" "Automatic" to "Enable"

    Please keep me informed of the progress of things.

    If you need help, let me know and I will gladly make all that I can to help you.

    Please let me know if that solves the problem by marking this post as "accept as a Solution.
    To simply say thank you, click the Thumbs up below!

    Thank you.

  • "Messenger Service, or the Net send command not working only not on the service remote computerhe.

    Messenger Service, or the Net send command not working only not on the remote computer, despite the messenger service is started "it works only if I restart the service.
    operating system is windows xp
    service pack 3

    Hi Charbel,

    Have you done a recent software or hardware changes to the system?

    This problem occurs because the Messenger service is disabled. The Messenger service must run on the destination computer to activate the NET SEND command.

    Because the service is already started, and you must restart the service, you can try to stop the service, change the startup type to automatic and start the service. Check if it helps.

    Please refer to the article to define the service as automatic:

    Programs or services that use the alerts service or the Messenger service do not work as expected after you install Windows XP Service Pack 2

    For more information, see the article:

    The NET SEND command may not work correctly on a computer that is running Windows XP Service Pack 2

    Hope the helps of information.

    Let us know if you need help with Windows related issues. We will be happy to help you.

Maybe you are looking for