5530XM Problem 2 - S Type Jaguar Compatibility

Has anyone had success connecting to an S Type or have any tips.  My own experience is that the first time I tried it paired and automatically uploaded the phone book!
Since the initial pairing with full phone book access, more than 200 numbers, it  now connects OK but no phone book.  Should I try the manual upload from the car?  I am a bit concerned about trying this as it uploaded automatically the first time.  Also the phone is not on the Jaguar list but the 5800XM is and is fully compatible with the automatic phone book upload.
Axel   

Aparna,
Try the Merant DataDirect SequeLink driver.
It doesn't require you to install any OCI libs which can cause crashes
like the one that you describe below.
http://www.merant.com/products/datadirect/_jdbc/sljava/jpxsequelinkjava.asp
Cheers,
Dimitri
Aparna <[email protected]> wrote in message news:<3b7e4e5e$[email protected]>...
"we are using weblogic's inbuilt type 2 driver for oracle. We have a long type field returned in the resultset but the jvm crashes and shows the following exception

Similar Messages

  • Bluetooth: 8310 won't complete pairing with hands-free kit in 2006 X-type Jaguar

    My new 8310, v4.2.2.181 (Platform 2.5.0.35), recognises the hands-free kit in our 2006 Jaguar X-type ("Jaguar" shows on the Bluetooth paired devices screen), but the pairing won't complete through to connection.  Our dealer has confirmed that other phones will.  The Jag website confirms full compatibility with the 8310 to v4.2.2.146 (Platform 2.5.0.16), also "Latest Tested Version".  I'm asking Jaguar what the latter is.  But is there anything simple that I'm getting wrong here?  I've read the trouble-shooting pages in the manuals for the 8310 and the car, have tried disabling the encryption, and changed the "trust" option to Yes.  No result so far: help!   

    for DVD:
    which DE you use ?
    post your
    /etc/fstab

  • I have Problems to type some ASCII caracteres who

    When i run an applet.....
    I have Problems to type some ASCII caracteres who "@", etc..
    When hay type alt+64 "@" or alt+92 "\"....
    how i can to resolve this problem...
    My keyboard is in spanish.......
    Thanks in advance...
    Regards
    Mario Durand S.
    [email protected]

    try
    java.lang.String[] getParameterValues(java.lang.String name) which is a method from ServletRequest interface. You can use this with a for loop.
    String[] arrayParameter = request.getParameterValues("ParameterName");

  • HELLO, I HAVE THE SNOW OF LEOAPARD 10.6.8, I WOULD LIKE TO UPDATE THE LAST LION. I WOULD LIKE TO KNOW IF THERE ARE PROBLEMS WITH THE SOFTWARE COMPATIBILITY NOW, EXAMPLES: LOGIC, REASON, SUITE ADOBE CS5 ... THANK YOU

    HELLO, I HAVE THE SNOW LEOAPARD 10.6.8, I WOULD LIKE TO UPDATE THE LAST LION. I WOULD LIKE TO KNOW IF THERE ARE PROBLEMS WITH THE SOFTWARE COMPATIBILITY NOW, (EXAMPLES: LOGIC, REASON, SUITE ADOBE CS5 ...) THANK YOU!

    Have a look here:
    http://applehelpwriter.com/2011/07/24/will-my-old-apps-work-with-lion/
    (Like any website owner, I may (or may not) derive compensation from my website)

  • Problem with type ahead, maybe known as keyboard buffer or keyboard buffering

    Hi, I'm new to Lightroom and am halfway through Martin Evening's excellent book, but there's a problem I have which I can't find an answer to anywhere so far.
    I work on an older PC that has three screens.  My problem is if I have LR on one screen and type into an application in another screen, or rather think I'm typing into the other application but actually the LR screen is still active, then LR basically goes nuts as it attempts to carry out what is in effect a random series of keyboard shortcuts.  I have to wait for LR to finish jumping about and then so a long series of undo's and hope that one of the shortcuts wasn't a delete.
    It's occurred to me within LR when I've been typing into the keywords box and predded Enter twice by mistake to confirm an auto complete suggestion by LR and so subsequently exited the keywords box causing LR to interpret all my following keyword letters as commands.
    Is there any way to change this? To my mind there shouldn't be any need for LR to read from the keyboard buffer at all.  Is there any way to turn off keyboard shortcuts either all of them or selectively?

    Biganon,
    If you are willing to experiment, you could try the following simple xorg.conf:
    Section "Device"
    Identifier "Configured Video Device"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Default Screen"
    Device "Configured Video Device"
    DefaultDepth 24
    EndSection
    This minimal xorg.conf is only needed because xorg must be told to use the nvidia drivers.
    It should figure everything else by itself.
    For the Keyboard and mouse handling, install xf86-input-evdev, if not already there.
    Start hal from the daemons Line in /etc/rc.conf:
    DAEMONS=(syslog-ng network netfs !dbus hal ....
    For the Keyboard layout, copy the file:
    /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi
    to
    /etc/hal/fdi/policy/10-keymap.fdi
    and edit this copy as follows:
    <merge key="input.xkb.layout" type="string">ch</merge>
    <merge key="input.xkb.variant" type="string">fr</merge>
    I don't particularly appreciate this fdi thing, but, from experience, letting a particular
    Desktop/Window Manager manage the keyboard layout is even worse.
    Further info at:
    http://wiki.archlinux.org/index.php/Xor … otplugging
    Needless to say, if you try this, backup your original xorg.conf.
    Mektub

  • Problem with type conversion and primary key during row fetch

    [Note, this error occurs in Oracle XE, APEX 2.1.0.00.39]
    I have been having a problem with Automatic Row Fetch:
    ORA-01460: unimplemented or unreasonable conversion requested
    So in an effort to resolve this, I created a PL/SQL process with the query below and was able to isolate the same error. The problem seems to come from one of the primary keys being a "number" type (APP_ID). The error occurs on the line:
    where u.app_id=:P5_APP_ID
    I have tried the following variations on this line in an effort to resolve this, but all generate the same error:
    1) where to_char(u.app_id) = :P5_APP_ID
    2) where u.app_id = to_number(:P5_APP_ID)
    3) where to_char(u.app_id) = to_char(:P5_APP_ID)
    I've also tried the laternate syntax "&__." and "#__#", but these don't function in the Source field and show up as syntax errors.
    Any suggestions are welcome.
    begin
    for r in (
    select app_name, apptype, appcreator, appurl
    from application_users u, application_info i
    where u.app_id=:P5_APP_ID
    and i.app_id=u.app_id
    and u.username=:P5_USERNAME)
    loop
    begin
    :P5_APP_NAME := r.app_name;
    :P5_APPURL := r.appurl;
    exception
    when others then
    raise_application_error(-20000,'In Loop Failure',true);
    end;
    end loop;
    exception
    when others then
    raise_application_error(-20000,'Out of Loop Failure',true);
    end;
    Thanks in advance,
    Barney

    I found a prior post referencing a similar issue and it was solved by using the "v(__)" syntax. This did resolve my issue, however, I have a quick follow-on which I'm hoping someone can answer quickly...
    Since the "v(__)" syntax won't work for the Automatic Row Fetch (at least to the best of my knowledge), I have to do a manual process. However, the manual query as shown above doesn't actually populate any of the form values through the bind variables. They all remain at their cached values from prior data entry on the form.
    Is using the bind variables for assignment incorrect, or is there something that must be done to get the updates to show up in the form (ordering of processes, etc.).
    My manual process is running in the Load: Before Header state so I would have expected it to update all of the fields.
    Thanks in advance,
    Barney

  • Home Hub 3 (type A) compatibility with Xbox Live a...

    Just got a new Bt Broadband activated a couple of days ago.
    All set up nice, getitng a 8mb download speed which is good for our area.
    2 laptops, 1 PC, and a wireless printer all set up using wifi. All good.
    Even managed to get Xbox Live connected via wifi.
    BUT - when updating any software or games on the XBOX, what used to take seconds is now taking hours!
    I even tried my old Dlink router on the new BT Broadband, and it all works fine, but as soon as my Home Hub 3 (type A) is connected, the software updates to the xbox take an age.
    All other connections seem fine.
    Is it true that Home Hub 3 type 'B' is the best one for using with Xbox Live?
    If anyone's had this exact same issue, and managed to solve it - please tell me how.
    Thanks
    Impster
    Solved!
    Go to Solution.

    Seems to be the same.
    The only thing worse (so far) is the BT customer services team. I spent over 3 hours on the phone with various people from BT yesterday. Only when I threatened to cancel the contract did anyone take me seriously.
    I really wish I'd stayed with my previous broadband provider.
    What I'd like to know is how to resolve this issue - preferably from someone who's had similar experience to mine. I'm not going to go through a troubleshooting process yet again. My HomeHub 3A is simply not compatible with connecting wirelessly with any significant speed to my xbox, nor to my android mobile phone.
    I have run every possible check on our line and home network.
    The only variable that causes this problem to re-emerge is the Home Hub 3 (type A) which I was sent 2 days ago.

  • Problem with type 4 driver using oracle 10g

    HI,
    I am unable to establish a type 4 connection with oracle 10g.
    Specs:
    Driver used: OracleDriver that comes with the ojdbc14.jar along with oracle 10g
    JDK used: Tried using both j2sdk1.4.2 and using JDK 5.0
    JRE: Again, JRE that was shipped with j2sdk 1.4.2 and JRE 5.0
    OS: Windows XP sp2
    I am able to compile the following piece of code, so there is no classpath problem, etc.
    When I try to run the program, the exception thrown is "No Suitable Driver"
    There is no problem with the TNSListener, etc...even if all Oracle related services in 'services.msc' are Started/Stopped, the error remains.
    I am, however, able to establish the connection using type1 driver.
    Please Help!
    import java.sql.*;
    import java.io.*;
    class TestConn
         Connection connection;
         Statement statement;
         ResultSet resultset;
         public void testConn() throws SQLException, ClassNotFoundException
              DriverManager.registerDriver(new oracle.jdbc.driver.OracleStatement());
              //DriverManager.registerDriver(new sun.jdbc.odbc.JdbcOdbcDriver());
              connection = DriverManager.getConnection("oracle:jdbc:thin:@127.0.0.1:1521", "scott", "tiger");
              //connection = DriverManager.getConnection("jdbc:odbc:dsn1", "scott", "tiger");
              System.out.println("Connection Established");
              statement = connection.createStatement();
              resultset = statement.executeQuery("select ename from emp");
              while(resultset.next())
                   System.out.println(resultset.getString(1));
    class Test
         public static void main(String args[]) throws SQLException, ClassNotFoundException
              TestConn obj = new TestConn();
              obj.testConn();
    };

    The JDBC URL should include the database SID. For example, if the database SID is Orcl
    connection = DriverManager.getConnection("oracle:jdbc:thin:@127.0.0.1:1521:Orcl", "scott", "tiger");

  • Problem with types

    Hello,
    I have a problem. I have created a type
    create or replace type type1 as object (
      field1 number,
      field2 number,
      constructor function type1 return self as result
    );, and also the body.
    Now i have another type
    create or replace type type2 as table of type1In a package function i have somewhere
    tmp type2;
    tmp=new type2();
    tmp.extend --works
    tmp(tmp.last).field1 := ...<something>; --does not work, i got: Reference to an unitialized variable..., so that field1 is unrecognizedIf i issue 'describe type2' i see field1 and field2.
    What i'm doing wrong?
    Thanks
    Edited by: Roger22 on 12.07.2010 14:26

    Hi
    I hope this solves your problem...
    Create a Object Type body(With the definition of the constructor function) since u have defined a constructor, by specifying a constructor in your type specification you are overriding the default object constructure provided internally by oracle ...
    constructor function type1 return self as resultEdited by: Prathamesh on Jul 12, 2010 4:40 AM

  • Problem with Type Reference "TYPE' in JCO

    Hi All,
    I am facing a weard situation when i am creating a custom RFC function module. This FM is called by Java program with JCO. But, if i define the FM parameters with Reference type as 'TYPE', the Java application is not able to get the data. But the same time, if i declare the parameters with 'LIKE', it is working successfully.
    Can anybody advise me, why it is behaving differently? Is the problem with JCO which is not able to recognise the 'TYPE' reference or from SAP side?
    And, any solution to use 'TYPE' reference successfully?

    hi Sailesh,
    You are right. SAP doesn't recommend the usage of Like in PROGRAMS/REPORTS - mind it, only REPORTS.
    But when it comes to RFC enabled FMs, JCo Understands only LIKE. what you had observed is true. LIKE creates a WA and JCo looks into a workarea. TYPE can refer to a pool of variables but your JCo can't differentiate them. So, you use LIKE.
    Again, you use LIKE only Remote enabled FMs not in Reports/Programs. so, you may use TYPE as your company remommends in reports but in RFMs, use LIKE.
    Hope this cleared.
    Regards
    Ak.
    PS: If my post helped, don't forget the rewards!

  • Problems with type ... is table of - values

    Hello,
    please look at the following procedure:
    CREATE OR REPLACE PROCEDURE fct_s_snpdb_ersetzung_einzeln (
    p_tnr IN VARCHAR2,
    p_ersetzung IN VARCHAR2
    IS
    -- DECLARE VARIABLES
    p_ersetzung_rep VARCHAR2(4000);
    v_test_table NUMBER;
    TYPE nersetzungtab IS TABLE OF VARCHAR2(4000)
    --s_snpdb_tnr_ersetzung.ersetzung%TYPE
    INDEX BY BINARY_INTEGER;
    v_ersatzliste nersetzungtab;
    v_anzersatzliste NUMBER;
    v_test VARCHAR2(4000);
    v_instr NUMBER;
    i NUMBER := 1;
    BEGIN
    SELECT 1
    INTO v_test_table
    FROM all_tables
    WHERE table_name LIKE 'S_SNPDB_TEMP_ERSETZUNG';
    IF (v_test_table <> 1) THEN
    EXECUTE IMMEDIATE 'create table s_snpdb_temp_ersetzung (tnr_ersetzung varchar2(19))';
    END IF;
    EXECUTE IMMEDIATE 'truncate table s_snpdb_temp_ersetzung';
    IF (p_tnr IS NOT NULL) THEN
    p_ersetzung_rep := '''' || p_tnr || ''',' || p_ersetzung;
    p_ersetzung_rep := REPLACE(p_ersetzung, '''', '');
    ELSE
    p_ersetzung_rep := REPLACE(p_ersetzung, '''', '');
    END IF;
    v_instr := INSTR (p_ersetzung_rep, ',');
    WHILE (v_instr > 0) LOOP
    v_test := TRIM(SUBSTR(p_ersetzung_rep, 1, v_instr - 1));
    v_ersatzliste(i) := v_test;
    p_ersetzung_rep := SUBSTR(p_ersetzung_rep, v_instr + 1);
    v_instr := INSTR(p_ersetzung_rep, ',');
    i := i + 1;
    END LOOP;
    --now the problem comes
    FOR f IN 1 .. i LOOP
    EXECUTE IMMEDIATE 'INSERT INTO s_snpdb_temp_ersetzung VALUES(:tnr)'
    USING v_ersatzliste(i);
    END LOOP;
    END fct_s_snpdb_ersetzung_einzeln;
    The inputvalue for p_ERSETZUNG = 'A42020002 39 ','A42020004 55 ','A54017901 02 ','A54017901 03 ','A42020002 60 ','A42020004 15 '
    I want to separate each value in separate row of a table.
    It runs fine until the "insert into" statement.
    Here I get the error "no data found". This means, that the variable v_ersatzliste(i) contains no value. I used the debugger, the separation of the value runs fine, but why the variable v_ersatzliste(i) has no values. I didn't find the problem.
    Its not the first time, I use "type ... is table of", but till now I never had problems with this.
    What could be the reason for no founded data in my variable.
    Thanks in advance
    D. Mildner

    ohhh yes, you're right.
    I think I should go home now :-).
    Thanks very much.

  • APD problem - data type & currency translation

    Hi,
    I am using APD to get hung number of records from mulitprovider. I use a query to as a source of APD.
    In the query, there is an option to select currency translation in variable screen.
    But I encounter the following problems:
    1. key figures in the output file are in floating point. is it possible to change data type in APD?
    2. when I select currency translation in this query, does APD support currency translation?
    Thanks a lot.
    Regards,
    Helen

    Hi Helen,
    You can use an routine ABAP to change the format of your data type & currency transation.
    Regards
    Romain

  • Problems with Type in Photoshop 5.1

    Hi. After downloading a 30 day trail version of Captivate, I noticed that my Font Preview was no longer available in Photoshop (although still visible in MS Word, Powerpoint and Captivate). Also, the Type Tool has become inoperable in Photoshop 5.1. I get the dialoge box 'Could not complete your request because something prevented the text engine from being initialized"
    What to do??
    I have downloaded all Photoshop 5.1 updates. I have checked Font Preview Box in Preferences, and also unchecked Font Preview in Preferences to no avail. I do not have any of the problem Fonts. I ran Malware and Windows Security Essentials and found no problems.
    What to do?
    Thanks for any advise.

    Thank you so much for your reply. I downloaded all the available downloads for Photoshop 5.1, and then did nothing. Today I pulled an old Photoshop file into the software, and the Font Previews were there again, and the type tool worked fine.
    So I closed that file and created a new project. The type tool worked fine, as did the Font Preview.
    Don't have any explanation to offer except the Adobe Gods took pity upon me and fixed it while I was sleeping.
    Thank you again for your reply and solution recommendations. Apparently your thoughtful solutions were so effective I didn't even need to act upon them! Good MoJo Silkrooster. Now please give some thought to World Peace please.

  • Identify Browser Type - Safari Compatability

    Some web pages have code to identify the "Browser Type"
    eg is it IE, NS etc.
    How should Safari be correctly identified ?
    -- assuming that it's this test that is causing Safari to fail
    -- what test should be added to make the site Safari compatable ?

    http://developer.apple.com/internet/safari/faq.html#anchor2
    has some info on identifying the Safari Browser.

  • DVD+R book type for compatibility

    Hi,
    I'm going to be burning about 80 DVDs of a theater production, and I'm at the point where I'm testing the first burn. I asked for volunteers amongst the purchasers (we're a church community) for anyone that had an old DVD player. One person had an older model built into a tube TV, and of course it does not recognize the DVD. I've been reading a lot about compatibility, and I was wondering if the feature in DVD Studio Pro that allows you to add DVD-ROM data to the DVD will set the DVD's book type to DVD-ROM. I have heard this could increase compatibility with older DVD players.
    I am burning Verbatim DVD+R DL, and I have a recent I7 MacBook Pro with a HL-DT-ST DVDRW GS23N.
    Thanks,
    Howie

    6 megabits per second (mbps) to 5.5 is lower, but not by much. I wouldn't sweat the bitrate if that is your bitrate (although, if you are using PCM audio then you are using quite a bit higher than that; use AC3 audio).
    I make disc images with DVDSP; then I can burn with more options with Toast.
    Seriously, there is no way to proof completely against old DVD players. But using a laser lens cleaner in them can help.

Maybe you are looking for

  • Calender for dates in parameter Form!!

    Can we show calendar object on dates in Parameter Form in Reports6i. Please advise. Thanks a lot. Kind Regards Sarda

  • 1 song out of 14,740 won't sync to ipod

    1 song out of 14,740 won't sync to ipod, how do I find out which one it is?

  • Dispatcher emergency shutdown after instance started

    Hi, I am getting the below error while starting SAP instance: ***LOG Q0I=> NiIBindSocket: bind (126: Cannot assign requested address) [nixxi.cpp 3227] ERROR => NiIBindSocket: SiBind failed for hdl 0 / sock 8     (SI_EADDR_NAVAIL/126; I4; DG; 127.0.0.

  • Abap text book

    sure punnose i ll give the points

  • Changing DVD region settings

    Hello! I just got my MacBook Pro today and I am trying to watch DVD's on it. For some reason it is not allowing me to change the DVD region. Since I just got it today I obviously haven't had to change the region so I should still have my 5 times to c