How to extract data using bluetooth other device...

Hi all

First, I describe my problem:

I want an application that extract the xml data in ECG device using bluetooth after accessing this data make some calculation and send it to the server... I am able to serach all the device compatible bluetooth after that, I am also able to connect from the particular device... (Now I use bluetooth Simple device as phone, pc or anything which is Bluetooth)

Now the problem is... After connection of the device, I want to go get a (for example an image or text document.) file of the device connected using my camera...

can anyone know how to extract data or file to another device that is currently associated with my camera... using BlackBerry device...

Please help me to overcome this problem...

Currently, I am working with Blackberry.6

As suggested, I would recommend you try the samples provided.

Tags: BlackBerry Developers

Similar Questions

  • How to extract data using substring & Instring

    Hello

    I have data like

    a_76488b_2780c

    a_76488b_2780c_

    a_76488b_c2780

    a_76488b_c2780

    a_31487b_5542

    a_76488b_2780

    I want to extract data such as the last 4 digits digital only

    2780

    2780

    2780

    2780

    5542

    2780

    Without regexp? It depends on your comments... If you know a definitive character set you want to replace, and then you can go for:

    (strictly dependent on your entry in the question)

    SELECT TRANSLATE)

    SUBSTR (RTRIM (str, '_'), INSTR (RTRIM (str, '_'), '_',-1) + 1);

    '~c_',' ')

    Str

    T;

    See you soon,.

    Manik.

  • How to extract data using PL/SQL

    Hello
    I'm new to XMl, I just need to extract the id, type, the number from below because of the xml data. Any help will be much appreciated.

    < SOAP - ENV:Envelope xmlns:SOAP - ENV = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:i24n = "http://www.w3.org/2005/09/ws-i24n" xmlns:typ = "http://oracle.com/determinations/server/10.3/rulebase/assess/types" >
    < SOAP - ENV:Envelope >
    < SOAP - ENV:Header >
    < i24n:international >
    en_US < i24n: local > < / i24n: local >
    < i24n:tz > GMT-0700 < / i24n:tz >
    < / i24n:international >
    < / SOAP - ENV:Header >
    < SOAP - ENV:Body >
    < type: assessment / response >
    < type: global instance >
    < typ:attribute id = "myfee" type = "currency" >
    < typ:number - 6.0 > out < / typ:number - out >
    < / typ:attribute >
    < typ:entity id = "entity_fee" >
    < typ:instance id = "8899776" >
    < typ:attribute id = "mycost" type = "currency" deducted = "true" >
    < typ:number - 108.0 > out < / typ:number - out >
    < / typ:attribute >
    < typ:attribute id = "myplace" type = "text" >
    < typ:text - out > K < / typ:text - out >
    < / typ:attribute >
    < typ:attribute id = "myroll" type = "text" >
    < typ:text - out > NNA < / typ:text - out >
    < / typ:attribute >
    < / typ:instance >
    < / typ:entity >
    < / typ: global instance >
    < / typ: assess / answer >
    < / SOAP - ENV:Body >
    < / SOAP - ENV:Envelope >

    Thank you

    Mhand

    Works for me.

    If you want to retrieve the attributes at different levels, use a descendant axis:

    SQL> with t as(
      2  select xmltype(
      3  '
      6  
      7  
      8  en_US
      9  GMT-0700
     10  
     11  
     12  
     13  
     14  
     15  
     16  100.0
     17  
     18  
     19  
     20  
     21  16.0
     22  
     23  
     24  D
     25  
     26  
     27  
     28  
     29  
     30  
     31  ') col
     32  from dual)
     33  select x.*
     34  from t,
     35       xmltable(XMLNamespaces('http://schemas.xmlsoap.org/soap/envelope/' AS "SOAP-ENV",
     36                                'http://oracle.com/determinations/server/10.3/rulebase/assess/types' AS "typ")
     37       , 'SOAP-ENV:Envelope/SOAP-ENV:Body/typ:assess-response/typ:global-instance/descendant::typ:attribute'
     38         passing t.col
     39         columns
     40           id_1 varchar2(100) path '@id',
     41           type_1 varchar2(100) path '@type',
     42           val varchar2(100) path 'typ:number-val'
     43       ) x
     44  ;
    
    ID_1                     TYPE_1        VAL
    ------------------------ ------------- ----------
    Currency_type            dollar        100.0
    currency_fee             dollar        16.0
    currency_v_type          USD
     
    
  • How to extract data using the xml data type

    Hello
    I tried the following example using the xml data type, but not the desired output.
    could you please correct the query in order to obtain the necessary
    CREATE TABLE TEST.EMP_DETAIL
    (
      EMPNO       NUMBER,
      ENAME       VARCHAR2(32 BYTE),
      EMPDETAILS  SYS.XMLTYPE
    )
    Insert into EMP_DETAIL
       (EMPNO, ENAME, EMPDETAILS)
     Values
       (7, 'Martin', XMLTYPE('<Dept>
      <Emp Empid="1">
        <EmpName>Kevin</EmpName>
        <Empno>50</Empno>
        <DOJ>20092008</DOJ>
        <Grade>E3</Grade>
        <Sal>3000</Sal>
      </Emp>
      <Emp Empid="2">
        <EmpName>Coster</EmpName>
        <Empno>60</Empno>
        <DOJ>01092008</DOJ>
        <Grade>E1</Grade>
        <Sal>1000</Sal>
      </Emp>
      <Emp Empid="3">
        <EmpName>Samuel</EmpName>
        <Empno>70</Empno>
        <DOJ>10052008</DOJ>
        <Grade>E2</Grade>
        <Sal>2530</Sal>
      </Emp>
      <Emp Empid="4">
        <EmpName>Dev</EmpName>
        <Empno>80</Empno>
        <DOJ>10032007</DOJ>
        <Grade>E2</Grade>
        <Sal>1200</Sal>
      </Emp>
    </Dept>
    '));
    I need to get the record for Empid = '2'
    Then tried the following query with no expected o/p
    SELECT a.empno,a.ename,a.empdetails.extract('//Dept/Emp/EmpName/text()').getStringVal() AS "EmpNAME",
         a.empdetails.extract('//Dept/Emp/Empno/text()').getStringVal() AS "EMPNumber",
          a.empdetails.extract('//Dept/Emp/DOJ/text()').getStringVal() AS "DOJ",
          a.empdetails.extract('//Dept/Emp/Grade/text()').getStringVal() AS "Grade",
          a.empdetails.extract('//Dept/Emp/Sal/text()').getStringVal() AS "Salary",
          a.empdetails.extract('//Dept/Emp[@Empid="2"]').getStringVal() AS "ID",
          a.empdetails.extract('//Dept/Emp[EmpName="Coster"]').getStringVal() AS "CHK"
         FROM emp_detail a 
         where empno=7  
               AND a.empdetails.existsNode('//Dept/Emp[@Empid="2"]') =1
    Thank you...

    Karthick_Arp wrote:
    I'm not very good at that... But if your XML code should not be more like this

    SQL> Insert into EMP_DETAIL
    2     (EMPNO, ENAME, EMPDETAILS)
    3   Values
    4     (7, 'Martin', XMLTYPE('
    5    
    6      1
    7      Kevin
    8      50
    9      20092008
    10      E3
    11      3000
    12    
    .. cut ..
    

    Why? It is perfectly valid to data as attributes rather than elements and also quite common for key values.

  • How to extract data from a signed pdf that was sent to me.

    I can extract data from a PDF file that is not signed, but how to extract data from a signed PDF? Exporting data option does not work once it is signed. Specifically, I want to combine the data into a csv file, but a PDF signed does not to me.

    Hi evanb92625060,

    It is not possible to extract (using Acrobat |) Collection and management of the PDF to form data) data from a signed PDF form is that it locks all fields in the form.

    Kind regards
    Nicos

  • How to extract data from SQL server in the FDM

    Hi Experts

    How to extract data from a SQL server HFM to another SQL Server using scripts for integration in FDQM?

    concerning

    Dev

    Could you clarify why you want to do this?

    If you try to synchronize two databases (apps) to have a backup or something running in a development environment, I suggest configuring replication between two databases. It would be much more effective to do it at the SQL Server level through the application of FDM, IMHO.

    Charles

  • How to extract data from SAP and COBOL using ODI

    Hi people,

    Can you please let me know the procedures in ODI to extract data from SAP and COBOL?

    Thank you all for the help.

    Hello

    You can download the Patch 8571830 to Oracle metalink.

    It has a new technology 'SAP ABAP' and KMs to extract and load data-
    RKM SAP ERP and SAP to Oracle ERP LKM.

    Thank you

  • I use windows XP service pack 3 and I can't connect to the internet on your laptop even if I can connect using my other devices.

    I have tried everything I can think of nothing doesn't. The strange thing is that it connects as usual and I can even use Skype and download updates, but I can't surf the net. I can't understand. I have tried ipconfig release and then renew, repairs of stack TCP/IP, Winsock reset and the use of different browsers. I ran the XP connection troubleshooting tool and received the following message, that this is probably caused by your firewall settings

    "check the settings of the firewall for the HTTP port (80), HTTPS (443) AND ftp PORT (21) port.

    The problem is that I can't change my firewall settings that I can not start the firewall and get this error message every time I try

    Cannot start the service Windows Firewall/Internet Connection Sharing (ICS) on the Local computer.
    Error 0 x 80004015: the class is configured to run as a different caller's security id

    I downloaded the hotfix from microsoft, but it made no difference unfortunately.

    I use AVG 2011 antivirus protection. I tried connecting via the wireless and wired. I did ipconfig and tried to rattle of my other devices and my router and everything seems normal because they can communicate with each other. See below.

    Microsoft Windows XP [Version 5.1.2600]

    Copyright (C) 1985-2001 Microsoft Corp.

    C:\Documents and Settings\Administrateur > ipconfig

    Windows IP configuration

    Ethernet wireless network connection card:

    The connection-specific DNS suffix. : gateway.2wire.net

    IP address...: 192.168.1.72

    ... Subnet mask: 255.255.255.0.

    ... Default gateway. : 192.168.1.254

    C:\Documents and Settings\Administrateur > ping 127.0.0.1

    Ping 127.0.0.1 with 32 bytes of data:

    Reply from 127.0.0.1: bytes = 32 time<1ms ttl="">

    Reply from 127.0.0.1: bytes = 32 time<1ms ttl="">

    Reply from 127.0.0.1: bytes = 32 time<1ms ttl="">

    Reply from 127.0.0.1: bytes = 32 time<1ms ttl="">

    Ping statistics for 127.0.0.1:

    Packets: Sent = 4, received = 4, lost = 0 (0% loss),

    Time approximate round trip in milli-seconds:

    Minimum = 0ms, Maximum = 0ms, average = 0ms

    C:\Documents and Settings\Administrateur > ping 192.168.1.72

    Ping 192.168.1.72 with 32 bytes of data:

    Response to 192.168.1.72: bytes = 32 time<1ms ttl="">

    Response to 192.168.1.72: bytes = 32 time<1ms ttl="">

    Response to 192.168.1.72: bytes = 32 time<1ms ttl="">

    Response to 192.168.1.72: bytes = 32 time<1ms ttl="">

    Ping statistics for 192.168.1.72:

    Packets: Sent = 4, received = 4, lost = 0 (0% loss),

    Time approximate round trip in milli-seconds:

    Minimum = 0ms, Maximum = 0ms, average = 0ms

    C:\Documents and Settings\Administrateur > ping 192.168.1.254

    Ping 192.168.1.254 with 32 bytes of data:

    Request timed out.

    Response from 192.168.1.254: bytes = 32 time = 2ms TTL = 255

    Response from 192.168.1.254: bytes = 32 time = 4 ms TTL = 255

    Response from 192.168.1.254: bytes = 32 time = 1ms TTL = 255

    Ping statistics for 192.168.1.254:

    Packets: Sent = 4, received = 3, Lost = 1 (25% loss),

    Time approximate round trip in milli-seconds:

    Minimum = 1ms, Maximum = 4ms, average = 2ms

    C:\Documents and Settings\Administrateur > ping 192.168.1.70

    192.168.1.70 ping with 32 bytes of data:

    Response of 192.168.1.70: bytes = 32 time = 2ms TTL = 128

    Response of 192.168.1.70: bytes = 32 time = 94ms TTL = 128

    Response of 192.168.1.70: bytes = 32 time = 8ms TTL = 128

    Response of 192.168.1.70: bytes = 32 time = 13th month TTL = 128

    Ping statistics for 192.168.1.70:

    Packets: Sent = 4, received = 4, lost = 0 (0% loss),

    Time approximate round trip in milli-seconds:

    Minimum = 2ms, Maximum = 94ms, average = 29ms

    C:\Documents and Settings\Administrateur > ping 192.168.1.254

    Ping 192.168.1.254 with 32 bytes of data:

    Response from 192.168.1.254: bytes = 32 time = 1ms TTL = 255

    Response from 192.168.1.254: bytes = 32 time = 2ms TTL = 255

    Response from 192.168.1.254: bytes = 32 time = 3ms TTL = 255

    Response from 192.168.1.254: bytes = 32 time = 3ms TTL = 255

    Ping statistics for 192.168.1.254:

    Packets: Sent = 4, received = 4, lost = 0 (0% loss),

    Time approximate round trip in milli-seconds:

    Minimum = 1ms, Maximum = 3ms, average = 2ms

    C:\Documents and Settings\Administrateur >

    I worked on it for 2 days straight trying to find a solution and this is my last resort. I really hope that someone can help me because I even tried technicians internet ATT who couldn't help me. There must be a solution out there. I must be missing something. It must be a software problem or something simple. Help!

    Hello

    You can check this link:

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

    Note:

    It implies also on Windows XP SP3

  • How to upgrade data using load data page?

    Hi all

    im doing a migration page where my user will provide the csv file, so I could load into my table. problem is that loading data using apex collection so I know columns are limited, but I forgot how. (probably 40 something).

    So I decided to split the csv file with the two files with a common column, which is a key. If im guessing two files can be linked using this key. However when I upload the second file, he will still do an insert instead of update action. How updated? is this what I need to set or activate?

    just to check that I tried to download the csv... and then changed some content inside and re upload... even if I that.it always inserts instead of update. Can anyone share how can I update? It's really important because I have a lot of columns to download. so in my situation, the best way is to separate files.

    Help, please...

    In components, under the loading of data shared. On the model of your table, you specify the unique columns (up to 3). I believe that if there is no match, it will insert. If it finds a matching record, it will update. So if you have a single column that is in each worksheet, you must specify here

  • How to enable the use of multiple devices of cuda in Adobe AE?

    I had nvidia gtx 690 and nvidia gtx 760. They were both considered by the pilot 340.52 and we tick "use multiple GPU devices." Adobe AE CC 2014 so rendered was recognizing and using the two GPU devices. Then I replaced the gtx 690 with gtx 780Ti as a primary device. The driver does not have the option to use multiple devices and gpu in the AE preferences only the ti 780 is displayed.   When the don't return that this graphic card works. My question is how to use ti 760 & 780 two GPU in the rendering, as was the case with gtx 760 & 690?

    Thanks a lot for your help.

    Read the paragraph that begins with "If you have several installed GPU, GPU acceleration traced the beam 3D renderer will use the CUDA cores on each of them, as long as they are of the same level of CUDA computation" here:

    Features GPU (CUDA, OpenGL) in After Effects

  • How to extract data from an arbitrary xml file and export it to a CSV friendly?

    Hallo,
    I am facing big problems in the use of XML files. I have a
    application that generates XML files with clusters containing arrays
    and scalars as in the example pasted below. My task is to
    Read it and export the data into a CSV document readable by a human.
    Since I do not know the actual content of the cluster, I need some sort
    Smart VI through the XML looking for berries
    and other data structures for export properly in the CSV file
    format (columns with headers).
    Thank you



    3


    6


    0



    1



    2



    3



    4



    5




    3.14159265358979



    Ciao

    Rather than to get the

    node, you can just go directly to the node since ' one that really interests you. Basically what it means to determine the elements of table how much you have, and it depends on if you have 1 or 2 knots . The rest is just of the child nodes and the next siblings. See attachment as a starting point. The attached XML file is a table 2D (change the .xml extension).

    Notes on the example:

    • I did not close properly references, so it's something you need to do.
    • It is limited to tables 1 d or 2D.
    • I suggest using a control path of the file to specify the input XML file and path of the file/folder control to specify the location of the output file.

  • How to extract data from waveform

    I have prepared a VI for acquisition and analysis. I have data from NI 9203 manuplate (power source). I have to use a lot of channels and more than 1 sample of a channel so Daqmx read vi out of waveform module and it is not a choice for table 1 d. How can I this form to scale data and display 2 diffferent scale given in a graphic waveform?

    The DAQmx Read returns an array of waveforms.  Each waveform is t0, dt, Y components and optional attributes.  See the palette of waveform for tools to extract the components and build waveforms.

    To make your scaling that you do these things:

    1. Select the waveform you want to scale by using the Index table or index of waveform Array.vi.

    2. download the component Y of the selected waveform.

    3. resize it if Y' = m * Y = b, where is the original painting and the Y' is the matrix to scale.  You can use the standard digital functions for * and + because they work for arrays and scalars.

    4 build a new waveform using Y'.

    Lynn

  • iBooks - not published data synchronization with other devices

    using iBooks, iCloud, El Capitan, all upgrades are current - recently, I edited all the data of iBooks on the iMac.  Provides that these data be synchronized on my Air iPad or iPhone when I plugged in all night. Nothing happened. Still waiting.   They show only partial lists of the documents with the names of old documents, collections and categories. Tried to delete app full on the iPad then have iCloud restore, but iOS wouldn't let me do that.  Can not even remove documents to iBooks on the iPad... that they all indicate the symbol of the cloud, but the old name, etc.

    Hello

    Keep your books to date on your devices

    If you start reading a book on one device, you can pick up where you left off on another device. Collections, highlights, notes and bookmarks sync on all your devices. Follow the steps below to synchronize.

    On your Mac


    • Open the iBooks app.
    • Select iBooks > Preferences > General.
    • Select "Sync bookmarks, facts highlights and collections across devices.
      This setting is enabled by default.

    On your iPhone, iPad or iPod touch


    • Go to settings > iBooks.
    • Select the Collections of synchronization and synchronization of bookmarks and Notes.
      In iBooks 3.2 or earlier, select Synchronize Collections and synchronization of bookmarks.

    If you don't see all your information on all your devices, check your settings:

    • Make sure that you have turned on sync above settings on all of your devices.
    • Make sure you use the same Apple ID in the store, iBooks on all your devices.

    Above information may also be found here > iBooks of synchronization between your Mac and your iPhone, iPad or iPod touch - Apple Support

  • How to extract data from partially ipad from itunes backup

    My wife has removed some photos and voice Memos from my iPad 2. Luckily, I backed up their with iTunes two weeks ago. The question is that I need only restore a few items from the backup instead of a full restore. I don't want the existing data are overwritten by the backup. Is there any application for this? Or there are other ways out. Thank you

    Hello

    When you recharge an iPhone / ipad automatically saves it to iCloud on your wifi

    If you restore from a backup of cloud ipad, you should get all your apps / data folder.

    I have not use my PC for more than 2 years for iPhone / iPad all the updates and apps updates

    Fact on my WiFi.

    See you soon

    Brian

  • How to extract data from cluster of component-level?

    I use the harmonic Analyzer function to read the cluster of component-level, which cotain for channel 0 and 1 data

    But having problem with playing on the basic component for each channel (part of the table 1). Pleas help.

    Thank you

    Yes! What I need is a function of the index before using of unbundling by name to extract the desired data. THX

Maybe you are looking for

  • Satellite Pro L630 close without warning

    my laptop has been close without warning - today got an error message on any ideas - failure of the cooling system If it is the fan / repairable or perhaps other components default?

  • Mute witness keyboard stays on

    Hello: Pavilion DV7-4270us Windows 7 64 bit The mute button on the keyboard remains orange/red all the time, even if the sound is not muted. This seemed to happen around the time I installed a replacement hard drive. Any suggestions to fix this? Than

  • SE raw tension of the NI 9237

    Hello I have a load cell connected to a NI 9237 module and she's excited to 10V. I would like to read the voltage of the load without the scale cell to get the output voltage. Thank you for your time

  • Vista no longer sees my nvidia 8600gt video card

    Vista no longer sees my nvidia 8600gt video card, I didn't add or uninstall new programs or hardware, antivirus is up to date, and on a side note the pc stops by itself (when you click on the start menu) this day 1 began after my video card problem I

  • Upgrade to 4.5 blackBerry smartphones

    I was trying to update my curve 8310 to 4.5 when he showed "deletion requests" and I freaked out and unplugged now my phone will not come on or anything, it flashes only the red light at the top. I tried to remove the battery and put it back on, but