For others, here's my little MS java adventure

I was tasked with updating this ancient java applet with some new features. I add the new stuff, recompile the jar and upload it to production. This applet gets about 1000 users a day, so we decided to incrementally roll out this updated version to more and more people over the week.
Day 1 & 2 (given to 10% and then 20% of users) -- no complaints.
Day 3 & 4 (given to 50% of users) -- 2 people call in claiming that they get a grey box when loading the applet. the help desk had them install a new java version and everything was fine.
Day 5 (100% of users) -- 50 people call in the morning claiming they get the grey box, so we had to roll back the jar and determine what caused this.
From one of the customers I was able to get this little nugget:
java.lang.NoClassDefFoundError
java.lang.ClassNotFoundException: com.wsod.bai.Main
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/vm/loader/URLClassLoader.loadClass
     at com/ms/applet/AppletPanel.securedClassLoad
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.processSentEvent
     at com/ms/applet/AppletPanel.run
     at java/lang/Thread.runDoing some research, I found that our ancient java applet was designed to run on Java 1.1. I had never even installed 1.1 before, so I had no idea this could happen. Unfortunately our QA department didn't test for this either, but now we know.
I was able to set "generate .class files compatibility" to 1.1 in eclipse and recompile it. Then I find that functions I used String.split and parseDouble aren't in the 1.1 api, so i had to whip up a suitable replacement.
Now it works in MS JVM 1.1 and all is well. So, here's one for troubleshooters using Google, as I wasn't able to find a good example of this problem when I looked it up.
-Adam

Thanx!!! A frustrating hour and a half later I found your post and it worked beautifully!

Similar Messages

  • To create home page which consists of menu for other pages in a tree format

    hi, i'm using Jdev 11g, i want to create one home page which having a tree format menu for other pages ,plz tell me

    Hi,
    the tree structure must be defined in a tree model that you then associate as the value to the tree component. I think the best doc to start with is from Trinidada: http://myfaces.apache.org/trinidad/devguide/tree.html
    Note that ADF Faces components base on Trinidad, so the docs can be used here as well. Also, while you are on this page, have a look at the XML Menu Model, which is a nice way of creating hierarchical structures in XML so the structure is not hard coded in a Java class
    Frank

  • Posting Feature Requests for others to Copy/Paste

    I recently posted a Feature Request I sent to Adobe for another member to copy/paste as his own FR since he liked the suggestion (see the FR below). 
    After doing so, I got the idea that we could all do this: copy/paste FRs we send to Adobe into threads on this forum to help each other support the idea with similar requests, or even copy/paste the FR as our own.  With limited resources and time, there's only so many requests Adobe can implement in every new version.   That why it's so important that new features the Premiere Pro team invests their hard work and time on be the tools that would benefit the greatest number of editors.  The more people back up certain ideas, the more likely they'll be implemented sooner than later.
    There's power in numbers, so how about using this forum to share our best ideas and make it easier for others to add their voice of support?  It's great that Adobe provides us with a way to send them feedback, but it's too bad that it's a one-way conversation with very little, if any, dialogue back and forth between the submitter and Adobe.  That's why I thought it would be great to bring more of that potential dialogue here, where we can share ideas and support the creation of an ever better Premiere Pro!
    If you've never posted a FR or BR (Bug Report) before, you can easily join the effort to make Premiere Pro become all that it can be, here: www.adobe.com/go/wish
    Comments?  Ideas?  Please share!
    Here's the FR I pasted in another thread, as an example. 
    *******Enhancement / FMR*********
    Brief title for your desired feature:  Drag&Drop Modified clips into Project Window
    How would you like the feature to work?
    Ability to Drag&Drop clips with effects, motion settings, keyframes and/or markers back into the Project Window from the Timeline for later use.
    Why is this feature important to you?
    The Project Window is far better than Sequences for storing/organizing modified clips for future use, since it is:
    Searchable
    Sortable
    Viewable in Icon and List views
    Full of helpful metadata columns such as 'Video/Audio Usage'
    Foolproof in that the original sequence can be deleted without losing any created subclips
    Given these advantages, why only allow us to store modified clips in Sequences? Please fix this by allowing users to Drag&Drop clips from the Timeline to the Project Window while preserving all of their modifications (effects, keyframes, motion settings and/or markers).

    Comments?  Ideas?  Please share!
    As it has already been discussed in this thread (and duplicated threads are not allowed in Adobe Forums), the aforementioned feature request is mainly based on the false statement that an editor can either store raw clips in the Project panel or modified clip in the timeline. That's false because an editor can nest modified clip right in the timeline and the nested sequence will be automatically stored in the Project panel, turning into a regular reusable asset.
    Unfortunately, the OP, as was also outlined in the duplicated thread, carefully avoids any mentioning this ability, which becomes your second nature if you use After Effects (which is unlike FCP is a part of Adobe Suite).
    However, since the OP asks for sharing ideas, I do not hesitate to do this once again. Here is the feature request intended to improve the usability of such PrPro assets as 'Sequences' without breaking existing workflow:
    *******Managing Sequences*******
    It would be nice if managing capabilities for such assets as 'Sequences' were extended with the following features:
    - similar live thumbnail view, which was introduced for footages in CS6. A small 'Sequence' badge in the top left corner of the thumbnail would allow to differentiate between sequences and clips;
    - enabled metadata and ability to handle them like for any other regular asset;
    - ability to remove empty audio or video tracks completely, i.e. get a sequence as an Audio or Video asset only;
    - pop-up dialog box on hitting 'Nest' command, which would allow to give meaning name instead of default 'Nested Sequence XXX', contain 'Delete All Empty Tracks' checkbox and a button for advanced dialog for logging metadata right on a brand new asset creation.
    These features would improve an ability to exploit sequences as reusable assets and preserve consistent applications behaviour throughout the Suite instead of breaking existing workflow by inventing new FCP style 'subclip with effects' type of asset. See this discussion in PrPro Forum for some more details:
    http://forums.adobe.com/thread/1204107?tstart=0

  • Forum for other aspects of J2SE 1.5 ?

    I nothiced this forum after reading the chat transcript. Is there a similar forum for other questions on other aspects of J2SE 1.5? I dont want to ask off topic questions here but I am currious about other things in Tiger and think it would be a good thing if Sun had a forum for it.

    I was wondering if the very cool Properties feature of
    C# will be in 1.5 and if not 1.6? Who do we talk to
    about getting Java this feature. I am referring to
    public class test
    protected int _age;
    public int age
    get {return this._age;}
    set {this._age = value;}
    }I think this implementation of properties (in C#) is syntactic sugar going way too far, for the following reasons:
    1. The only bits the compiler generates for you are the get and set method signatures. Whilst this is slightly beneficial, you still have to declare the field (_age), the property (age), the get method contents {return this._age;}, and the set method contents {this._age = value;}. Also, you still need to ensure the type of the field and property match up.
    2. Having "value" as a sort of builtin variable is very ugly, in my opinion.
    3. There seems to be no way of making your "get" public but your "set" protected.
    I think syntactic sugar works best when 80-90% of typical uses can be improved massively (the 'foreach' construct being the classic example).
    Getting back to properties, you might say that around 90% of properties in existing Java code involve a simple assignment in the get and set methods. So how about something like this:
        public class Person {
            // This defines the field firstName, and generates public methods
            // getFirstName() and setFirstName().
            private String firstName {public get, public set};
            // This defines the field age, and generates the public method getAge()
            // and the protected method setAge().
            private int age {public get, protected set};
            // This defines the field dateOfBirth, and generates the public method
            // getDateOfBirth().
            private Date dateOfBirth {public get};
            // Because our setDateOfBirth is more complicated than
            // { this.dateOfBirth = dateOfBirth; }
            // we have to write our own method in full.
            public void setDateOfBirth(Date dateOfBirth) {
                this.dateOfBirth = dateOfBirth;
                setAge(DateUtils.calculateAge(dateOfBirth));
        }Geoff

  • If i want to make money with this program and my knowledge of it what would be the best way to start doing work for others

    I have been doing lots of work on final cut and want to know how some of you maybe starded doing work for others to make $

    .. just to add my 5¢:
    There're several ways to moneytize your editing skills.
    ● freelance editor:
    Indeed, then first question of any client is "What apps do you handle?" I dare to say, depending in what area you live, those huge fabs searching for freelancers use very little FCPX; here, they're looking for Avid, GVproducts, maybe FC/pro...
    ● one-man-slaughter-houses aka Wedding-photographer
    If your skills are beyond editing-only, and you're an (excellent) DoP, for sure offering your 'products' is the obvious; Weddings, Bar Mizwahs, Funerals, Services, lectures, workshops, company image movies, demoes, exhibit videos... But, as other mentioned: nobody is intersted with what tools you create the film; only results count; in private products, lots of 'eye-candy' gives a happy bunny customer
    ● 'Yellow Pages': I'll make you a movie...
    I'm not doing that professional, but occasionally for money: people ask me, to grab a harddrive full of 'files' to create 'a nice movie', lately two 'flat' birthdays (30/40), tons of pics, shakey iPhone messages, music, dissolves, done. - nothing for living...
    ● Teaching?
    teach other your skills, have a look here http://training.apple.com/act
    Hurdle to go for all those: hen-egg-dillema
    People want to see your skills in advance; but without jobs, nothing to see yet.

  • I can only see some of the info (e.g. the email Facebook gives you) for some friends in Contacts. I can see everything for others. Their b-days aren't listed in my Contacts (but these friends have their B-days on their profile on FB). Can anyone help?

    Hello,
    I can only see some of the information of my Facebook friends in my Contacts. For example, a friend has a birthday today. I received an email that she and another friend have birthdays this week. I received a notification on my iPhone and iPad that her birthday was today. It was never displayed in my Notification Center or Calendar beforhand, like it's displayed for other friend's (for other friends, it's displayed in the Notification Center, with the Calendar icon, 1 day before). I looked at every setting I could think of and the Help pages on Facebook. Nothing is working. My friend with the birthday today has her birthday openly listed on her Profile information on her Facebook page. In my contacts, her Facebook email (the one Facebook assigns you when you join) is listed. However her picture and birthday are not listed. I displayed my Facebook Contacts only, and roughly 20 showed up and not the rest. It's like the devices are not recognizing those people and putting their information in the respective places. I have an iPad 3rd Gen, iPhone 5, and MacBook Pro (purchased in January 2013. I hope that helps) and ALL the software updates are current. Can anyone help? Also, my MacBook cannot access my Contacts from Yahoo. Despite my typing in the correct password repeatedly as well as deleting and adding the Yahoo account again. I'd be grateful for any and all help. Thank you. 

    Step by step, how did you arrive at seeing this agreement?

  • Time Machine Hard Drive for other uses other than backups

    I use a WD My Studio II, 2 TB Hard Drive.
    Time machine uses the drive as its backup drive, but since the the drive is so big I would like to use it as a general hard drive too. In other words, on a single hard drive, can I have Time Machine backing up my Macbook, as well as use the remaining space to store general stuff that is to big for my mackbook.
    The may seem a little illogical, but bare in mind I have the RAID 1 setting, so the one drive is automatically backed up onto the 2nd 1TB drive.
    I hope this makes sense, and I hope someone has an answer.
    Regards
    H

    you might want to consider partitioning your drive, one for TM backups and one for other stuff.
    see these user tips: http://web.me.com/pondini/Time_Machine/3.html and http://web.me.com/pondini/Time_Machine/6.html
    JGG
    edited by the Jolly Green Giant (where Green stands for environmentally friendly)

  • Auto_lexer (stemming) not working for other languages(other than english)

    Hi All,
    We are planning to use AUTO_LEXER instead of MULTI_LEXER and observed that stemming is not working for German where as it is working for English when I use AUTO_LEXER. I even used query templates but of no use.
    But when i use MULTI_LEXER, creating sub lexers for German and Enlgish, Stemming is working for German also after changing the session language and setting stemmer of wod list to German (Which is expected).
    Following is the code for AUTO_LEXER creation:
    CREATE TABLE test_auto_lexer(pkey NUMBER(5,0),
    lang_index VARCHAR2(3),
    content_text CLOB,
    CONSTRAINT test_auto_lexer_pk primary key (pkey))
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (1,'eng','I drive a bike')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (2,'eng','I drove a bike')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (3,'eng','I have driven a bike')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (4,'eng','Just check for other things')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (5,'eng','always drive a car')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (6,'eng','it is nothing')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (7,'ger','Ich fahre ein Fahrrad')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (8,'ger','Ich fuhr ein Fahrrad')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (9,'ger','Ich habe ein Fahrrad gefahren')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (10,'ger','Aktivieren Sie einfach für andere Dinge')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (11,'ger','immer Auto fahren')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (12,'ger','es ist nichts')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (13,'ger','sprechen')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (14,'ger','sprach')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (15,'ger','gesprochen')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (16,'ger','tale')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (17,'ger','Indlæg')
    INSERT INTO test_auto_lexer(pkey,lang_index,content_text)
    VALUES (18,'ger','tales')
    BEGIN
    ctx_ddl.create_preference('auto_lexer1', 'auto_lexer');
    END;
    BEGIN
    ctx_ddl.set_attribute('auto_lexer1','index_stems','yes');
    END;
    BEGIN
    ctx_ddl.set_attribute('auto_lexer1','language','danish english german');
    END;
    BEGIN
    ctx_ddl.set_attribute('auto_lexer1','alternate_spelling','german');
    END;
    CREATE INDEX test_auto_lexer_ix1
    ON test_auto_lexer(content_text)
    INDEXTYPE IS ctxsys.context
    PARAMETERS ('datastore ctxsys.direct_datastore filter ctxsys.null_filter lexer auto_lexer1')
    select to_char(content_Text) from test_auto_lexer where contains(content_text,
    '<query>
    <textquery lang="ger" grammar="context">
    $fahren
    </textquery>
    <score datatype="integer"/>
    </query>') > 0
    this doesnt work even after changing the session language. My default Sesson language is AMERICAN.
    Could any one help me with this, in case I am missing something here. I would be really thankful.
    Edited by: Nagendra Prasad on Jan 23, 2010 12:05 AM

    In the future, please begin a new thread for a new question and provide a link to a related question.
    According to the online documentation, Oracle only supports stemming for English, Dutch, French, German, Italian, Spanish, and Japanese. Oracle does not support Russian stemming, although you may have gotten some accidental results, due to identifying it as a different language and applying stemming rules for that language. The following manual sections show the languages available for the index_stems attribute of the basic_lexer and stemmer attribute of the basic_wordlist:
    Basic_lexer attributes:
    http://docs.oracle.com/cd/E11882_01/text.112/e24436/cdatadic.htm#CIHHBAAD
    Basic_wordlist attributes:
    http://docs.oracle.com/cd/E11882_01/text.112/e24436/cdatadic.htm#g1019326
    Also, please see the following note:
    Features not available in 11.2.0.3:
    http://docs.oracle.com/cd/E11882_01/readmes.112/e22488/toc.htm#BABDGGDB
    "Certain Oracle Text functionality based on third-party technologies, including AUTO_LEXER and CTX_ENTITY, have been disabled in this release (reference Bug 12618046). For BASIC_LEXER, the usage of the INDEX_STEMS attribute values that depend on third-party technologies, is also affected. If this impacts an existing application, contact Oracle Support Services for guidance."
    Also, the auto_lexer has been replaced by the world_lexer, which only has one attribute:
    http://docs.oracle.com/cd/E11882_01/text.112/e24436/cdatadic.htm#BHCJEGFJ
    I don't work for Oracle, so I don't know why they do things the way they do.
    So, you need to stick with the basic_wordlist for stemming, not the lexers. However, you may get better performance by combining the multi_lexer with the basic_wordlist, as the multi_lexer eliminates time spent on automatic language detection. But, you need to remember not to use the index_stems with your lexer, since it will conflict with the wordlist. I am not experiencing any time problems as you have. Please see the demo below. I have provided the whole script below that, so that you can reproduce it on your system. If you still have problems, then it may be due to differences in versions.
    -- demo:
    SCOTT@orcl_11gR2> select * from v$version
      2  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE     11.2.0.1.0     Production
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    5 rows selected.
    SCOTT@orcl_11gR2> select value from v$nls_parameters
      2  where  parameter = 'NLS_CHARACTERSET'
      3  /
    VALUE
    AL32UTF8
    1 row selected.
    SCOTT@orcl_11gR2> DROP TABLE news
      2  /
    Table dropped.
    SCOTT@orcl_11gR2> EXEC CTX_DDL.DROP_PREFERENCE ('my_wordlist')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> EXEC CTX_DDL.DROP_PREFERENCE ('global_lexer')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> EXEC CTX_DDL.DROP_PREFERENCE ('english_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> EXEC CTX_DDL.DROP_PREFERENCE ('german_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> CREATE TABLE news
      2    (pkey            NUMBER,
      3       lang            VARCHAR2 (2),
      4       short_content  CLOB)
      5  /
    Table created.
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO news (pkey, lang, short_content)
      3    VALUES  (1, 'en', 'I drive a bike.')
      4  INTO news (pkey, lang, short_content)
      5    VALUES  (2, 'en', 'I drove a bike.')
      6  INTO news (pkey, lang, short_content)
      7    VALUES  (3, 'en', 'I have driven a bike.')
      8  INTO news (pkey, lang, short_content)
      9    VALUES  (4, 'en', 'I always drive a car')
    10  INTO news (pkey, lang, short_content)
    11    VALUES  (5, 'en', 'This is nothing')
    12  INTO news (pkey, lang, short_content)
    13    VALUES  (6, 'de', 'Ich fahre ein Fahrrad.')
    14  INTO news (pkey, lang, short_content)
    15    VALUES  (7, 'de', 'Ich fuhr ein Fahrrad.')
    16  INTO news (pkey, lang, short_content)
    17    VALUES  (8, 'de', 'Ich habe ein Fahrrad gefahren.')
    18  INTO news (pkey, lang, short_content)
    19    VALUES  (9, 'de', 'Ich habe immer ein Auto fahren.')
    20  INTO news (pkey, lang, short_content)
    21    VALUES  (10, 'de', 'Es ist nichts.')
    22  SELECT * FROM DUAL
    23  /
    10 rows created.
    SCOTT@orcl_11gR2> BEGIN
      2    -- word list:
      3    ctx_ddl.create_preference ('my_wordlist',   'basic_wordlist');
      4    ctx_ddl.set_attribute      ('my_wordlist',   'stemmer',           'auto');
      5    -- english lexer:
      6    ctx_ddl.create_preference ('english_lexer', 'basic_lexer');
      7    -- german lexer:
      8    ctx_ddl.create_preference ('german_lexer',  'basic_lexer');
      9    ctx_ddl.set_attribute      ('german_lexer',  'composite',       'german');
    10    ctx_ddl.set_attribute      ('german_lexer',  'alternate_spelling', 'german');
    11    ctx_ddl.set_attribute      ('german_lexer',  'mixed_case',       'no');
    12    ctx_ddl.set_attribute      ('german_lexer',  'base_letter',       'yes');
    13    -- multi_lexer:
    14    ctx_ddl.create_preference ('global_lexer',  'multi_lexer');
    15    ctx_ddl.add_sub_lexer      ('global_lexer',  'default',            'english_lexer');
    16    ctx_ddl.add_sub_lexer      ('global_lexer',  'german',            'german_lexer');
    17  END;
    18  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> create index search_news
      2  on news (short_content)
      3  indextype is ctxsys.context
      4  parameters
      5    ('lexer            global_lexer
      6        language column  lang
      7        wordlist       my_wordlist')
      8  /
    Index created.
    SCOTT@orcl_11gR2> EXEC DBMS_STATS.GATHER_TABLE_STATS (USER, 'NEWS')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> COLUMN short_content FORMAT A30
    SCOTT@orcl_11gR2> ALTER SESSION SET NLS_LANGUAGE = 'AMERICAN'
      2  /
    Session altered.
    SCOTT@orcl_11gR2> set timing on
    SCOTT@orcl_11gR2> select * from news
      2  where  contains (short_content, '$drive') > 0
      3  /
          PKEY LA SHORT_CONTENT
             1 en I drive a bike.
             2 en I drove a bike.
             3 en I have driven a bike.
             4 en I always drive a car
    4 rows selected.
    Elapsed: 00:00:00.05
    SCOTT@orcl_11gR2> select * from news
      2  where  contains (short_content, '$drove') > 0
      3  /
          PKEY LA SHORT_CONTENT
             1 en I drive a bike.
             2 en I drove a bike.
             3 en I have driven a bike.
             4 en I always drive a car
    4 rows selected.
    Elapsed: 00:00:00.05
    SCOTT@orcl_11gR2> ALTER SESSION SET NLS_LANGUAGE = 'GERMAN'
      2  /
    Session altered.
    Elapsed: 00:00:00.01
    SCOTT@orcl_11gR2> select * from news
      2  where  contains (short_content, '$fahr') > 0
      3  /
          PKEY LA SHORT_CONTENT
             6 de Ich fahre ein Fahrrad.
             7 de Ich fuhr ein Fahrrad.
             8 de Ich habe ein Fahrrad gefahren.
             9 de Ich habe immer ein Auto fahren
    4 rows selected.
    Elapsed: 00:00:00.07
    SCOTT@orcl_11gR2> select * from news
      2  where  contains (short_content, '$fuhr') > 0
      3  /
          PKEY LA SHORT_CONTENT
             6 de Ich fahre ein Fahrrad.
             7 de Ich fuhr ein Fahrrad.
             8 de Ich habe ein Fahrrad gefahren.
             9 de Ich habe immer ein Auto fahren
    4 rows selected.
    Elapsed: 00:00:00.16-- script for you to reproduce the demo on your system:
    select * from v$version
    select value from v$nls_parameters
    where  parameter = 'NLS_CHARACTERSET'
    DROP TABLE news
    EXEC CTX_DDL.DROP_PREFERENCE ('my_wordlist')
    EXEC CTX_DDL.DROP_PREFERENCE ('global_lexer')
    EXEC CTX_DDL.DROP_PREFERENCE ('english_LEXER')
    EXEC CTX_DDL.DROP_PREFERENCE ('german_LEXER')
    CREATE TABLE news
      (pkey           NUMBER,
       lang           VARCHAR2 (2),
       short_content  CLOB)
    INSERT ALL
    INTO news (pkey, lang, short_content)
      VALUES  (1, 'en', 'I drive a bike.')
    INTO news (pkey, lang, short_content)
      VALUES  (2, 'en', 'I drove a bike.')
    INTO news (pkey, lang, short_content)
      VALUES  (3, 'en', 'I have driven a bike.')
    INTO news (pkey, lang, short_content)
      VALUES  (4, 'en', 'I always drive a car')
    INTO news (pkey, lang, short_content)
      VALUES  (5, 'en', 'This is nothing')
    INTO news (pkey, lang, short_content)
      VALUES  (6, 'de', 'Ich fahre ein Fahrrad.')
    INTO news (pkey, lang, short_content)
      VALUES  (7, 'de', 'Ich fuhr ein Fahrrad.')
    INTO news (pkey, lang, short_content)
      VALUES  (8, 'de', 'Ich habe ein Fahrrad gefahren.')
    INTO news (pkey, lang, short_content)
      VALUES  (9, 'de', 'Ich habe immer ein Auto fahren.')
    INTO news (pkey, lang, short_content)
      VALUES  (10, 'de', 'Es ist nichts.')
    SELECT * FROM DUAL
    BEGIN
      -- word list:
      ctx_ddl.create_preference ('my_wordlist',   'basic_wordlist');
      ctx_ddl.set_attribute     ('my_wordlist',   'stemmer',            'auto');
      -- english lexer:
      ctx_ddl.create_preference ('english_lexer', 'basic_lexer');
      -- german lexer:
      ctx_ddl.create_preference ('german_lexer',  'basic_lexer');
      ctx_ddl.set_attribute     ('german_lexer',  'composite',          'german');
      ctx_ddl.set_attribute     ('german_lexer',  'alternate_spelling', 'german');
      ctx_ddl.set_attribute     ('german_lexer',  'mixed_case',          'no');
      ctx_ddl.set_attribute     ('german_lexer',  'base_letter',         'yes');
      -- multi_lexer:
      ctx_ddl.create_preference ('global_lexer',  'multi_lexer');
      ctx_ddl.add_sub_lexer     ('global_lexer',  'default',             'english_lexer');
      ctx_ddl.add_sub_lexer     ('global_lexer',  'german',              'german_lexer');
    END;
    create index search_news
    on news (short_content)
    indextype is ctxsys.context
    parameters
      ('lexer            global_lexer
        language column  lang
        wordlist         my_wordlist')
    EXEC DBMS_STATS.GATHER_TABLE_STATS (USER, 'NEWS')
    COLUMN short_content FORMAT A30
    ALTER SESSION SET NLS_LANGUAGE = 'AMERICAN'
    set timing on
    select * from news
    where  contains (short_content, '$drive') > 0
    select * from news
    where  contains (short_content, '$drove') > 0
    ALTER SESSION SET NLS_LANGUAGE = 'GERMAN'
    select * from news
    where  contains (short_content, '$fahr') > 0
    select * from news
    where  contains (short_content, '$fuhr') > 0
    /

  • When I select a netflix movie on my iPad and push it to my apple TV, why doesn't the Apple TV take over the streaming, so that I can then use my iPad for other things?

    From what I can tell, when I select the movie and hit the airplay button to move it to the apple TV, my iPad is still doing all the work of streaming the movie.  Why can't the apple TV take over the heavy work at this point?  I'd like to be able to use my iPad as more of a remote with an awesome interface for the apple TV.  The netflix app on iPad is great, and the easiest way to browse movies, and pushing them to the apple TV is fantastic, but once the movie starts, I want to use my iPad for other things!!!  Can this be put on the "to do" list for devs?

    the guy behind you wrote:
    From what I can tell, when I select the movie and hit the airplay button to move it to the apple TV, my iPad is still doing all the work of streaming the movie.  Why can't the apple TV take over the heavy work at this point?  I'd like to be able to use my iPad as more of a remote with an awesome interface for the apple TV.  The netflix app on iPad is great, and the easiest way to browse movies, and pushing them to the apple TV is fantastic, but once the movie starts, I want to use my iPad for other things!!!  Can this be put on the "to do" list for devs?
    Have you tried the Remote app on iPhone/iPad to control AppleTV, do searches etc?  Should be easier than the remote alone and this does not involve Airplay.
    Please note, only users read/comment here  - your idea is quite sensible in my view (maybe have a 'Continue viewing on AppleTV' option or something.  I doubt this would be high on Apple's roadmap but send them feedback here:
    http://www.apple.com/feedback/appletv.html

  • Can I stream a movie from my Macbook to my Apple TV on one display, and still use my Macbook for other things?

    I have a Macbook Pro and an Apple TV. What I'd like to do is stream a movie from my CinemaNow Account to my television by using my Apple TV and my Macbook. I know that I can do this my using the mirroring feature, however then I can no longer use my Macbook for anything else because my TV will only display what is on the screen of my Macbook. Now with this is mind, what then is the point of having multiple displays through the use of my Apple TV, if only one display can be used at a time unless they both show the same image? Or is there a way for me to be able to stream the movie to my TV and still use my Macbook for other purposes (multi-tasking)? 

    To enable a second display over AirPlay, you first need to be connected to the same network as your Apple TV. Next, open System Preferences > Displays, and select your Apple TV from the “AirPlay Display” drop-down menu.
    Once you do this, your display may flash as the second display connection is acquired, and the Apple TV takes over as the second display. If the displays are mirrored, then you can correct this by opening the “Arrangement” tab in System Preferences > Displays, and ensuring that the “Mirror Displays” checkbox is unchecked.
    In this same “Arrangement” tab, you can move the displays around in the pane to ensure that they're positioned correctly, relative to your physical space (usually side-by-side, or top-down). The primary display here is denoted here by the Menu bar on the display. The arrangement helps with being able to drag windows from one display to the next: if your secondary display is arranged to be to the right of your primary one, for example, you can drag things to it through the right side of your primarcy screen.

  • Purchase iCloud storage for other users

    Can I buy iCloud storage for other users?
    Thank you.

    To the best of my knowledge, purchased storage stays with Apple id it is purchased to. To the best of my knowledge, it is unlike itunes store, and is not obligated to comply with local laws/regulations for downloads.
    I wish sometimes that people like you could create tips on do's and don'ts internationally, since we are all a bit shortsighted when it comes to Non our country situation. Unfortunately that tip here will die in the dark.
    BTW, I think your switching store may backfire for you, but I am sure you were informed of that on the phone.
    Question:
    Is it possible to pay in EU for iCloud accounts valid in China (RMB) and in the US (USD)
    They do not care( they will charge in acceptable units and card will take care of exchange rate), as long as card is accepted by corresponding store ( it is if it is on your file, and if not on file -you will find out as soon as you try to put it on it )
    As in the end they will end up back in the EU.
    What happens if you extend the storage in 1 country and then move to another country with a different currency and extend it again?
    I think I already answered that one.

  • Is it possible for other people to download my files in iCloud?

    is it possible for other people with different Apple ID to download my files in iCloud?

    The only way for you to allow others to access iCloud documents at the moment is by trusting your Apple ID log in and password - NOT good for security as they would also have access to your e-mail/notes/calendar/address book and reminders !
    With this information others could log in at this web address in just about any browser ,
    click on the iWork button, select the app Notes/Pages/Keynote
    https://www.icloud.com
    Here they can download/upload documents.
    Mouce over the document you want to download and a choice of PDF/Word (.doc) or native iWork formats can be made.Just click the download button
    To upload simply drag and drop a document from Finder/Windows explorer or the desktop onto the browser window !
    The missing function however is there is NO ONLINE editing !
    Now if Apple would incorporate an invite and e-mail address system similar to dropbox they that would solve the security issue I think.

  • I created a form with Single Choice fields, 4 days with times listed. But, I want the user to only be able to choose one time, and the time chosen to be unavailable for other users. How do I do this?

    I created a form with Single Choice fields, 4 days with times listed. But, I want the user to only be able to choose one time, and the time chosen to be unavailable for other users. How do I do this? I have 4 blocks of Single Choice fields in order for the summary page to give me each day in the final report. But, I need the user to be able to make a selection of any day and time and that apointment to no longer be available to future users when they log in. Plus, when the user clicks on the time, they are unable to change their mind and choose another time. Here's the link if you want to see what I'm talking about: 2015-2016 Workload Apportionment Review

    I'm afraid not.    It's not rocket science but you need to do some coding. 
    You'll need to find a script (php) and save it to your local site folder.  Then reference the script in your form's action attribute like so.
         <form action="path/form-to-email-script.php" >
    The input fields in your HTML form need to exactly match the script variables. 
    I'm  assuming you're hosted on a Linux server which uses PHP code.  Linux servers are also case sensitive, so upper case names are not the same as lower case names.  It's usually best to use all lower case names in your form and script to avoid confusion.
    Related Links:
    Formm@ailer PHP from DB Masters
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    If this is all a bit beyond your skill set, look at:
    Wufoo.com (on-line form service)
    http://wufoo.com/
    Nancy O.

  • I bought my iPhone 4 open line in Vancouver, Canada last week for use here in my home base in Bangkok, Thailand.  But when I tried using my Thai sim, I get a very weak signal, if not a weak signal, then a no service status.  What do I do?

    I bought my iPhone 4 open line in Vancouver, Canada last week for use here in my home base in Bangkok, Thailand.  But when I tried using my Thai sim, I get a very weak signal, if not a weak signal, then a no service status.  I also have very weak wifi reception.  What do I do?
    I already tried the following:
    a. Turned the phone off and then on.
    b. Checked all wifi connections – no problem given that all our laptops and desktops can connect seamlessly.
    c. I tried restoring the phone to original factory settings via itunes
    d. Tried resetting the phone.
    e.     Tried different microsims from all networks
    f. However, all methods failed given that the network reception is very weak and often reflects – “no service”.  And with regards to the wifi reception It has difficulty in reading even the signal right in front of the wifi router.
    I went to two Apple resellers here in Bangkok and requested that they please look at my Iphone and have it serviced.  I was frustrated when they said that given that I bought my phone in Canada, they are not able to support me and should instead try to contact the Apple store in Canada. 
    I went to apple.ca website and went to the expresslane support and I was said to register and callback.  Tried calling the 1800 number but given that I was in Thailand I had difficulty getting a connection.

    1st sentence, 4th page of the iPhone warranty found here:
    Apple may restrict service to the country where Apple or its
    Authorized Distributors originally sold the hardware product.
    From the Repair terms and conditions found here:
    9. Availability of Service.
    Apple may restrict service to the country where Apple or its authorized distributors originally sold the
    hardware product, and to the countries listed in the table below. A list of authorized distributors is
    available online at:
    http://images.apple.com/legal/warranty/docs/iPhoneAuthorizedDistributors.pdf
    If you do not believe that, then see these search results which confirm my statement.

  • People picker is not working for ie11 but working fine for other lower version

    i am using sharepoint 2010 and windows authentication
    recently i have updated my ie to ie11 and problem goes here.
    when i try to select from people picker, there are an unexpected error happened 
    however when i use other ie version, people picker work fine, what goes wrong?
    i have already added my system as trusted site
    if there any others thing i miss out?

    Hi,
    According to your post, my understanding is that People picker is not working for ie11 but working fine for other lower version.
    IE 11 is known to have compatibility issues on SharePoint 2010, please make sure to:
    first of all, try installing latest update for IE 11 (several compatibility issues were fixed since the first release)
    add the site to compatibility view (in IE> Tools> Compatibility view settings> type site name> add)
    add the site to trusted sites and set the zone security level to low (in IE> Internet Options> Security> trusted sites> sites>add your site there> ok> custom level> select low> reset> ok)
    You can use developer tools (f12) and set browser mode to the version that is most compatible with your environment.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • WIJ 20002

    I am trying to import a WEBI report from Infoview that I created and keep getting the error:  "Unexpected error.  If you cannot reconnect to the server, close Web Intelligence and start again. (WIJ 20002)" The details of the error are as follows: Ver

  • Frm-41211 SSS error

    When i'm running the reports from a form under Forms6i it is giving an error like FRM:41211 integration error.SSL failure running another product. please give me the solution.

  • Custom landscape page size - - content squashed portrait

    I'm trying to create a PDF for an MS PowerPoint file with a very large page size, 46" x 36" (landscape). I'm using Acrobat 7.0 on Windows XP. In keeping with guidelines at www.adobeforums.com/webx/.3bbad46c/0 I selected the printer properties and cre

  • Named Anchor?

    I have used named anchors before when I am trying to link something within that page but when I have something on a different page and want to have a link take a person to a certain spot on a different page, it doesn't seem to be working. Are named a

  • Where can I find drivers for Satellite L855-159?

    Hello! I am a recent owner of a brand new Toshiba Satellite L855-159 laptop. I cannot seem to find any drivers listed for it. i have download some drivers from similar series laptops, like the ethernet driver. That works fine on it, but i cannot seem