Detecting mobile phone browsing

Trying to find a solution to detect if a user is browsing a
specific web site from a mobile device, and then redirect them to a
simplified version of the site?
Any ideas?

You could do as darrel has suggested and but if you want
automatic redirection the you want to put a script in place that
detects what useragent a browser is using. Below are some. the
WURFL database will give you huge list of useragents.
IE 6 .0 on Windows XP SP2 with .NET Framework 1.1 installed:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR
1.1.4322)
IE7 beta running on Windows Vista — Mozilla/4.0
(compatible; MSIE 7.0b; Windows NT 6.0)
Firefox 1.5b1 on Windows XP — Mozilla/5.0 (Windows; U;
Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050908 Firefox/1.4
Opera 8.51 on Windows XP — Opera/8.51 (Windows NT 5.1;
U; en)
Pocket PC IE on Windows Mobile 2003 — Mozilla/4.0
(compatible; MSIE 4.01; Windows CE; PPC; 240x320
Nokia 6230 Mobile Phone:
Nokia6230/2.0+(04.43)+Profile/MIDP-2.0+Configuration/CLDC-1.1+UP.Link/6.3.0.0.0
You will need to use ASP which is server-side detection
rather than javascript with alot of mobile phones have trouble
with.
You could try this code below, though you wil need a large
list of user agents:
<%
userAgent = Request.ServerVariables("HTTP_USER_AGENT")
isMobile = false
if((InStr(userAgent, "AvantGo") > 0) OR (InStr(userAgent,
"Windows CE") > 0) OR (InStr(userAgent, "NetFront") > 0) OR
(InStr(userAgent, "BlackBerry") > 0) ) then
isMobile = true
end if
if isMobile then
response.redirect("
http://www.namesandnumbers.com/mobile")
end if
%>
Hope this helps
regards
Paul

Similar Messages

  • Portal content in java enabled mobile phone browser

    Hi Experts,
    I havwe a requirement in which the portal webdynro application is to accesed through java mobile phones , but the portal is designed for computers(desktops).....
    my query is that how to reuse the same portal app for the mobile phone and can we have wrapper for mobile so that the mobile phone uses 'light' mode of portal
    regards,
    prakash

    Hi,
    Take a look at the following link [https://cw.sdn.sap.com/cw/groups/portal-on-device].
    Regards,
    Alex

  • How to detect mobile phone number???

    Hi,
    Is there a way to get phone number somehow? well what i m trying to do is, connect a web site from mobile and fill some fields (may be send picture to this page). While connected to this page, i want to detect and keep this mobile's number. Any suggestions??
    thanks in advance.

    gimbal2 wrote:
    I can only guess, but generally it is in the line of "because you won't use it legally" that information is kept hidden from you.No, it's not really that. IIRC some manufacturers have a proprietary Java ME API for some models that lets you access the IMEI. And all handsets have a code that can be entered via the keypad to display the IMEI.
    To expect to be able to access it using Java SE is more than absurd.
    db

  • Iphone Vs.mobile phone browsing .mobi

    I find a lot of times when I browse to some popular web sites (amazon, MySpace etc.) That I'm automatically routed to the Mobile site in default. I really get frustrated when I'm given this Mobile site in stead of the real deal. Is there a way to get around this mobile system? I though that with Safari we were able to go to the Real website instead of the mobile version.

    This is determined by the web server hosting the site, not the iPhone. The iPhone is capable of visiting the full version site but instead you are redirected by the page.
    Most sites have a link on the bottom to return to the full site or offer an alternate site address to get you to the full site.

  • Satellite A500/02U cannot connect to mobile phone using BT - detection of service failes

    Hi
    I have only had my laptop a week but when I go and connect to my sony ericson phone it while see the phone try and pair it but keep coming 'detection of service failes'....
    Phones brand new also and connects to everything else bluetooth so its definately this laptop. driver has just been installed so cannot be this....feel this taking teh laptop bakc to teh shop and getting them to fix it if I had the energy.....can anyone help with this?
    Thanks
    Eddie

    Before you contact anyone try to install latest BT stack.
    Strange is that I found several identical threads in different forums about this issue but always with Sony mobile phones.
    If you have some time check THIS interesting thread.

  • Mobile Phone Web Browsing - Automated Authentication.

    Our company currently provides subscription data content to our customers which they access via mobile web services on their mobile phones. Instead of requiring our customers to enter a user name and password to access our secure website, we would like to automate the subscribers authentication to our website with an automated authentication technology.
    Is anyone familiar with any tools available to support authentication technologies (i.e.; digital certificates) that are supported by (recent at best) versions of mobile phones?

    I have tried your suggestion with both Firefox beta and opera bowser. Same issue. Works perfectly in chrome, but I would prefer to use Firefox browser. Thanks for your suggestion. I have also removed all cookies in every browser. Any other suggestions would be gratefully received.

  • Access/Browse pictures from your mobile phone

    Hello everyone and Good day,
    I was wondering if there is anyone who knows how to browse/access image files that is in the mobile phone and attached it or any such options that can be done when creating a MIDlet.
    That would mean that after running a MIDlet is would be similiar like creating an email with an attachment to a server database.Any ideas as such would be greatly appreciated

    You can create midlet with the images at design time and view it. please see the below small program for your reference:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.util.*;
    import java.io.*;
    public class PhotoSlider extends MIDlet implements CommandListener
    {     private Command exitCommand;
         private Display display;
         private PhotoCanvas screen;
         public PhotoSlider( )
         {     display = Display.getDisplay(this);
              exitCommand = new Command("Exit", Command.EXIT, 2);
              screen = new PhotoCanvas( );
              screen.addCommand(exitCommand);
              screen.setCommandListener(this);
         public void startApp( ) throws MIDletStateChangeException
         {     display.setCurrent(screen);
         public void pauseApp( ){}
         public void destroyApp(boolean unconditional)
         {     notifyDestroyed( );
         public void commandAction(Command c, Displayable s)
         {     if (c == exitCommand)
              {     destroyApp(false);
    class PhotoCanvas extends Canvas
    {     private Image[ ] photos;
         private String[ ] captions = {"1","2","3","4","5"};
         private int currentPhoto = 0;
         public PhotoCanvas( )
         {     try
              {     photos = new Image[5];
                   photos[0] = Image.createImage("/1.jpg");
                   photos[1] = Image.createImage("/2.jpg");
                   photos[2] = Image.createImage("/3.jpg");
                   photos[3] = Image.createImage("/4.jpg");
                   photos[4] = Image.createImage("/5.jpg");     
              catch (IOException e)
              {     System.err.println("Image Loading Failed!");
         public void keyPressed(int keyCode)
         {     int action = getGameAction(keyCode);     
              switch (action)
              {     case LEFT:
                        if(--currentPhoto < 0)
                        {     currentPhoto = photos.length -1;
                        repaint( );
                        break;
                   case RIGHT:
                        if (++currentPhoto >= photos.length)
                        {     currentPhoto = 0;
                        repaint( );
                        break;
         public void paint(Graphics g)
         {     g.setColor(255,255,255);
              g.fillRect(0,0,getWidth(),getHeight());
              g.drawImage(photos[currentPhoto],getWidth()/2,getHeight()/2,Graphics.HCENTER | Graphics.VCENTER);
              Font f = Font.getFont(Font.FACE_PROPORTIONAL,Font.STYLE_BOLD,Font.SIZE_MEDIUM);
              g.setFont(f);
              g.setColor(0,0,0);
              g.drawString(captions[currentPhoto],getWidth()/2,0,Graphics.HCENTER | Graphics.TOP);
    }hope this will help you make the concept clear....:)

  • Mobile Phone Partitions only detected with hal

    Hi,
    I switched from KDE 4.6 to awesome this week and deleted all packages that came with KDE.
    To reenable automounting of my devices, I installed udisks and udiskie. All my normal volumes are automounted, except the two on my Sony Ericsson w595 mobile phone. After some checking I found out, that the partitions are not even detected (at least blkid gave me no other information). After installing and running of hal both partitions are detected and automounted by udiskie.
    I thougt udisks was a replacement for hal?
    How can I get udisks/udev to detect my mobile phone?
    Attached is the output of lsusb --verbose:
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 64
    idVendor 0x1d6b Linux Foundation
    idProduct 0x0002 2.0 root hub
    bcdDevice 2.06
    iManufacturer 3 Linux 2.6.38-ARCH ehci_hcd
    iProduct 2 EHCI Host Controller
    iSerial 1 0000:00:1d.7
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 0mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0004 1x 4 bytes
    bInterval 12
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 6
    wHubCharacteristic 0x000a
    No power switching (usb 1.0)
    Per-port overcurrent protection
    bPwrOn2PwrGood 10 * 2 milli seconds
    bHubContrCurrent 0 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0503 highspeed power enable connect
    Port 2: 0000.0100 power
    Port 3: 0000.0503 highspeed power enable connect
    Port 4: 0000.0100 power
    Port 5: 0000.0100 power
    Port 6: 0000.0100 power
    Device Status: 0x0003
    Self Powered
    Remote Wakeup Enabled
    Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 1.10
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 64
    idVendor 0x1d6b Linux Foundation
    idProduct 0x0001 1.1 root hub
    bcdDevice 2.06
    iManufacturer 3 Linux 2.6.38-ARCH uhci_hcd
    iProduct 2 UHCI Host Controller
    iSerial 1 0000:00:1d.0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 0mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0002 1x 2 bytes
    bInterval 255
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 2
    wHubCharacteristic 0x000a
    No power switching (usb 1.0)
    Per-port overcurrent protection
    bPwrOn2PwrGood 1 * 2 milli seconds
    bHubContrCurrent 0 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0100 power
    Port 2: 0000.0100 power
    Device Status: 0x0003
    Self Powered
    Remote Wakeup Enabled
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 1.10
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 64
    idVendor 0x1d6b Linux Foundation
    idProduct 0x0001 1.1 root hub
    bcdDevice 2.06
    iManufacturer 3 Linux 2.6.38-ARCH uhci_hcd
    iProduct 2 UHCI Host Controller
    iSerial 1 0000:00:1d.1
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 0mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0002 1x 2 bytes
    bInterval 255
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 2
    wHubCharacteristic 0x000a
    No power switching (usb 1.0)
    Per-port overcurrent protection
    bPwrOn2PwrGood 1 * 2 milli seconds
    bHubContrCurrent 0 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0100 power
    Port 2: 0000.0100 power
    Device Status: 0x0003
    Self Powered
    Remote Wakeup Enabled
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 1.10
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 64
    idVendor 0x1d6b Linux Foundation
    idProduct 0x0001 1.1 root hub
    bcdDevice 2.06
    iManufacturer 3 Linux 2.6.38-ARCH uhci_hcd
    iProduct 2 UHCI Host Controller
    iSerial 1 0000:00:1d.2
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 0mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0002 1x 2 bytes
    bInterval 255
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 2
    wHubCharacteristic 0x000a
    No power switching (usb 1.0)
    Per-port overcurrent protection
    bPwrOn2PwrGood 1 * 2 milli seconds
    bHubContrCurrent 0 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0100 power
    Port 2: 0000.0100 power
    Device Status: 0x0003
    Self Powered
    Remote Wakeup Enabled
    Bus 001 Device 002: ID 05e3:0605 Genesys Logic, Inc. USB 2.0 Hub [ednet]
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 1 Single TT
    bMaxPacketSize0 64
    idVendor 0x05e3 Genesys Logic, Inc.
    idProduct 0x0605 USB 2.0 Hub [ednet]
    bcdDevice 6.0b
    iManufacturer 0
    iProduct 1 USB2.0 Hub
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 25
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xe0
    Self Powered
    Remote Wakeup
    MaxPower 100mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 9 Hub
    bInterfaceSubClass 0 Unused
    bInterfaceProtocol 0 Full speed (or root) hub
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0001 1x 1 bytes
    bInterval 12
    Hub Descriptor:
    bLength 9
    bDescriptorType 41
    nNbrPorts 4
    wHubCharacteristic 0x00e9
    Per-port power switching
    Per-port overcurrent protection
    TT think time 32 FS bits
    Port indicators
    bPwrOn2PwrGood 50 * 2 milli seconds
    bHubContrCurrent 100 milli Ampere
    DeviceRemovable 0x00
    PortPwrCtrlMask 0xff
    Hub Port Status:
    Port 1: 0000.0303 lowspeed power enable connect
    Port 2: 0000.0303 lowspeed power enable connect
    Port 3: 0000.0100 power
    Port 4: 0000.0503 highspeed power enable connect
    Device Qualifier (for other device speed):
    bLength 10
    bDescriptorType 6
    bcdUSB 2.00
    bDeviceClass 9 Hub
    bDeviceSubClass 0 Unused
    bDeviceProtocol 0 Full speed (or root) hub
    bMaxPacketSize0 64
    bNumConfigurations 1
    Device Status: 0x0002
    (Bus Powered)
    Remote Wakeup Enabled
    Bus 001 Device 003: ID 045e:00dd Microsoft Corp. Comfort Curve Keyboard 2000 V1.0
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 8
    idVendor 0x045e Microsoft Corp.
    idProduct 0x00dd Comfort Curve Keyboard 2000 V1.0
    bcdDevice 1.73
    iManufacturer 1 Microsoft
    iProduct 2 Comfort Curve Keyboard 2000
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 59
    bNumInterfaces 2
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xa0
    (Bus Powered)
    Remote Wakeup
    MaxPower 100mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 1 Boot Interface Subclass
    bInterfaceProtocol 1 Keyboard
    iInterface 0
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.11
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 60
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0008 1x 8 bytes
    bInterval 10
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 1
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 0 No Subclass
    bInterfaceProtocol 0 None
    iInterface 0
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.11
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 86
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x82 EP 2 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0008 1x 8 bytes
    bInterval 10
    Device Status: 0x0000
    (Bus Powered)
    Bus 001 Device 004: ID 046d:c05a Logitech, Inc. Optical Mouse M90
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 8
    idVendor 0x046d Logitech, Inc.
    idProduct 0xc05a Optical Mouse M90
    bcdDevice 54.00
    iManufacturer 1 Logitech
    iProduct 2 USB Optical Mouse
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 34
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xa0
    (Bus Powered)
    Remote Wakeup
    MaxPower 98mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 1 Boot Interface Subclass
    bInterfaceProtocol 2 Mouse
    iInterface 0
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.11
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 67
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0006 1x 6 bytes
    bInterval 10
    Device Status: 0x0000
    (Bus Powered)
    Bus 001 Device 018: ID 059f:1027 LaCie, Ltd
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    idVendor 0x059f LaCie, Ltd
    idProduct 0x1027
    bcdDevice 1.00
    iManufacturer 1
    iProduct 2 LaCie iamaKey
    iSerial 3 1b76c4b169a01d
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 39
    bNumInterfaces 1
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0x80
    (Bus Powered)
    MaxPower 98mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 3
    bInterfaceClass 8 Mass Storage
    bInterfaceSubClass 6 SCSI
    bInterfaceProtocol 80 Bulk (Zip)
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x01 EP 1 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 1
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x82 EP 2 IN
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 1
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x83 EP 3 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0040 1x 64 bytes
    bInterval 8
    Device Qualifier (for other device speed):
    bLength 10
    bDescriptorType 6
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    bNumConfigurations 1
    Device Status: 0x50b8
    (Bus Powered)
    Bus 001 Device 017: ID 0fce:e0f3 Sony Ericsson Mobile Communications AB W595
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    idVendor 0x0fce Sony Ericsson Mobile Communications AB
    idProduct 0xe0f3 W595
    bcdDevice 0.00
    iManufacturer 1 Sony Ericsson
    iProduct 2 Memory Stick
    iSerial 3 3590510282716660
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 32
    bNumInterfaces 1
    bConfigurationValue 2
    iConfiguration 6 MSC Device
    bmAttributes 0x80
    (Bus Powered)
    MaxPower 500mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 2
    bInterfaceClass 8 Mass Storage
    bInterfaceSubClass 6 SCSI
    bInterfaceProtocol 80 Bulk (Zip)
    iInterface 7 Sony Ericsson Memory Stick
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x05 EP 5 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x85 EP 5 IN
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Device Qualifier (for other device speed):
    bLength 10
    bDescriptorType 6
    bcdUSB 2.00
    bDeviceClass 2 Communications
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    bNumConfigurations 4
    Device Status: 0x0000
    (Bus Powered)

    i am having the same exact problem now as the op. i started getting weird numbers im not familiar with. it first started 3 weeks ago and it was an international #, like 011...  then a few times i got a 530 area code number and some other out of state area code. now lately they are coming in as local area codes. just this morning i received 5 calls, 3 of them within 3 minutes. i usually dont answer them, but a couple times i answered or i called them back and it's always the same skype greeting, "to accept press 1, to leave a message in voicemail press 2". i'm starting to get worried someone somewhere around the world has my number and is using it. anyone have a solution??

  • LG mobile Phone not detected with USB cable!

    What should i do?
    My new LG KG810 Mobile does not Sync with my mac. are there some hacks available?

    BitPim supports many LG phones but not the Chocolate. 
    Given the poor support for Macs in Mobile Phones you really need to buy a phone on the iSync list if you intend to use it as such.
    mrtotes

  • Nokia Phone Browser "could not connect to the phon...

    Hi friends, I have a Nokia N72 mobile and am using PC suite 6.81.13.0. My problem is that I can't see the folders within my phone memory or memory card using nokia phone browser. As soon as it shows connected, I click on file manager and the error appears. Although it shows Nokia N72 connected I get a message that says "Could not connect to the phone" even though it is definitely connected. Windows explorer eventually opens and although Nokia N72 is visible no folders/files below this are. Only the synchronization option is working fine. This problem is same both with data cable and bluetooth dongle. I have also installed the latest version of nokia pc suite but of no use. Plzz help me out as it is very urgent...Hoping for early response... Thanx in advance...

    Also experiencing the Cannot connect to OVI Account Server issue.
    I turned off my firewall; confirmed correct account information and Internet connectivity via account sign in on ovi.com website. Can not update MfE or Music player on my 5800 XpressMusic (RM-428) via Ovi Suite as a result of this account server connectivity issue.
    I was able to perform the updates via NSU 3.0.223.
    I echoed this posting to the "Give Us Feddback" section of Ovi Suite.
    System Information
    Nokia Ovi Suite 3.0.0.284  
    Nokia PC Suite 7.1.51.0 
    Ovi Player 2.1.11020.2
    PC Connectivity Solution 10.50.2.0 
    Connectivity Cable Driver 7.1.36.0
    Nokia Ovi Suite Software Updater 2010.44.0.60888
    Maps Service API 4.0.24.1
    Nokia mPlatform 2.7.44
    Ovi Desktop Sync Engine 1.4.1.42
    Operating system:
    Microsoft Windows XP 32-bit Edition, Service Pack 3
    Language: English
    Detected internet browsers:
    - Microsoft Internet Explorer 8.0.6001.18702 (Default browser)
    - Mozilla Firefox 3.6.13
    Detected Bluetooth stacks:
    - Microsoft (Version: 5.1.2600, Build: 5512), In use.
    Detected USB drivers:
    - Default Hub Driver for USB 5.1.2600.5512
    - USB Modem Driver 5.1.2600.5512
    - EHCI eUSB Miniport Driver 5.1.2600.5512
    3390 - 6103b - 6133 - 6290 - 6301b - N78-3 - 5610d-2b XpressMusic - 5800d-1b XpressMusic, N900 RX-51, N8-00, C7 Astound, 808 Pureview, Lumia 1020.
    Nicer phones and still no one calls me!

  • Error when trying to sign in on mobile phone

    Dear Admin,
    I want to browse the ORACLE ADF FORUMS in my mobile phone (nokia x2-01 with UC and Opera mini Browser), the forum page opens correctly but when i try to signin it gives me error.
    ORACLE ACCESS MANAGER
    ERROR:
    System error. Please re-try your action. If you continue to get this error, please contact the administratorIts strange that when i try to do same using my PC it works......
    Any Ideas?? Can any one there resolve this issue....
    Regards,
    Santosh

    Probably because Opera is a non-supported browser on Oracle sites...

  • 'The mobile phone rejected the operation' Error - ...

    Hi,
    Using E70 via Bluetooth. Everything works for sync etc.
    When I click on contacts, it gives me the error 'The mobile phone rejected the operation' and does not allow me to view my contacts.
    On occasions it will show the contacts, then something 'hides' them again and will then go back and browse the 'root' directory of the phone.
    Im not aware of any security settings or such. At the moment, when I try and do something the phone asks to allow the connection, I do - but still nothing.
    Any ideas?
    Thanks

    working now - upgraded pc suite again - a few reboots - and sorted. bug in previous pc suite??

  • New iMac and Bluetooth connection to mobile phone

    Hi,
    I have a brand new iMac 21.5", 3.33 GHz here and I use a Motorola KRZR K1 mobile phone and the emitSMS widget, to send SMS messages.
    But this widget can't detect the Bluetooth connection to the mobile phone.
    I delete the bluetooth preferences, but this does't help.
    On my MacBook with MacOS X 10.6.2 is no problem.
    Anybody an idea, what's the problem?

    Hi again,
    Can it be, that's a problem with the last Airport Client Update?
    On my MacBook is this update not installed and there is no problem.

  • I am looking for Microsoft Media Player plugin for Firefox for Mobile, where can I find it for download and installation on my Samsung S2 Mobile phone running Android (2.3.3)

    I am not able to watch web videos on my mobile phone firefox browser (version 6.0) and running Android 2.3.3 Gingerbread.
    Kindly assist me in this regard.
    Thanks
    Huzefa Darolywala
    [email protected]
    [ed. removed phone #]

    There is no such plugin for any Android browser. I doubt Microsoft will ever make one. The best chance you have is if the site provides a direct link to the file and you download it. You then might be able to play the file with one of the media players on the phone.

  • Accessing a file in a mobile phone

    Hi ,
    Is it possible to access and read the contents of a text file in a mobile phone using JSP. The regular file select component in JSP is not workin on the phone. when i click on the browse file button it says unable to view this file.
    This is the code of the page, i got it from the internet only. This seems to work properly if it runs on a PC, but when i try it on a mobile it is not able to select the file.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <form ENCTYPE="multipart/form-data" action="single_upload_page.jsp" method="POST">
    <input type="file" name="selection" value="" />
    <input type="submit" value="submit" />
    </form>
    </body>
    </html>
    ------ > single_upload.jsp
    <%--
    Document : show
    Created on : Nov 26, 2008, 3:25:30 PM
    Author : root
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page import="java.io.*,java.io.File, org.apache. commons. io. *" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <%
         //to get the content type information from JSP Request Header
         String contentType = request.getContentType();
         if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
              DataInputStream in = new DataInputStream(request.getInputStream());
              //we are taking the length of Content type data
              int formDataLength = request.getContentLength();
              byte dataBytes[] = new byte[formDataLength];
              int byteRead = 0;
              int totalBytesRead = 0;
              //this loop converting the uploaded file into byte code
              while (totalBytesRead < formDataLength) {
                   byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
                   totalBytesRead += byteRead;
    String file = new String(dataBytes);
    out.print(file);
              //for saving the file name
              String saveFile = file.substring(file.indexOf("filename=\"") + 10);
              saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
              saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1,saveFile.indexOf("\""));
              int lastIndex = contentType.lastIndexOf("=");
              String boundary = contentType.substring(lastIndex + 1,contentType.length());
              int pos;
              //extracting the index of file
              pos = file.indexOf("filename=\"");
              pos = file.indexOf("\n", pos) + 1;
              pos = file.indexOf("\n", pos) + 1;
              pos = file.indexOf("\n", pos) + 1;
              int boundaryLocation = file.indexOf(boundary, pos) - 4;
              int startPos = ((file.substring(0, pos)).getBytes()).length;
              int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
              // creating a new file with the same name and writing the content in new file
              FileOutputStream fileOut = new FileOutputStream("/root/Desktop/"+saveFile);
              fileOut.write(dataBytes, startPos, (endPos - startPos));
              fileOut.flush();
              fileOut.close();
              %><Br><table border="2"><tr><td><b>contents of the file:</b>
              <% out.println(saveFile); %></td></tr></table> <%
    %>
    </body>
    </html>

    Disclaimer: your code is unformatted and thus hard to read, so I have't read it thoroughly.
    In the future please use tags to post the code in. You can get them by pressing the CODE button in the toolbar of the message editor toolbar.
    ram.west wrote:
    Is it possible to access and read the contents of a text file in a mobile phone using JSP. The regular file select component in JSP is not workin on the phone. when i click on the browse file button it says unable to view this file.So this error message immediately pops up when you press the 'browse' button? What's the exact error message? Have you tried another mobile webbrowsers as well?
    This is the code of the page, i got it from the internet only. I highly recommend you to use the thoroughly developed, tested and maintained library Apache Commons FileUpload. Here is its homepage: [http://commons.apache.org/fileupload]. Checkout the 'User Guide' and 'Frequently Asked Questions' sections for code samples and a lot of tricks.
    This seems to work properly if it runs on a PC, but when i try it on a mobile it is not able to select the file.You need to exclude either the client side or the server side from being suspect. Answer the questions I asked before.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Extended notifications and UWL

    Hi Friends,   I am using Extended notifications for sending notifications to lotus notes. In the notification we can maintain shortcut to open the workitem in SAP GUI. But the users use only UWL to access work items.So Is there any way to maintain th

  • How can i put or create ringtones on my iPhone 3G?

    I have downloaded an App from the App Store on my iPhone 3G. The video for putting the ringtones onto the iPhone after creating them uses an old version of iTunes which included a ringtones folder in the iTunes sidebar. Since the newest version of iT

  • Installation Problem

    A newly purchased Photoshop CS6 installed without problems on my MacBook Pro (OSX6.8).  However, when I tried to install it on my work computer, an iMac with the same OSX6.8, I received multiple error messages after the installation and the program w

  • Proxy error in CRM

    Hello, The scenario is from XI->CRM,  the reciever communicaiton channel is as below. PROXY_INVOICE_Recv, Transport protocol : http 1.0. Now i need to debug the proxy in my recieving system CRM. Can some body guide about this. Thanks in advance. Best

  • Accounting item text problems when MIRO

    Dear all:          In the MIRO transaction,  after posted the item text will be generated to FI doc. item text?          Item text of MIRO basic data will be generated to fi doc. item text when after miro.          But I not sure the item text will b