JMS Text Msg Payload - Oracle 8i

I am using Oracle8i Enterprise Edition Release 8.1.7.4.0 for creating a queue uisng Oracle AQ with payload type
SYS.AQ$_JMS_TEXT_MESSAGE. When I tried create a queue, I found some of components in SYS.AQ$_JMS_TEXT_MESSAGE are missing in Oracle 8i. Without those components usage, the message cannot set as payload in the queue. The explanation is as below.
My script for creation of queue is as follows..
CREATE OR REPLACE PROCEDURE NCR_ESB_NOL_SCRIPT(order_clob_load in CLOB)
IS
qtable_present number;
queue_present number;
enqopt dbms_aq.enqueue_options_t;
msgprop dbms_aq.message_properties_t;
enq_msgid raw(10000);
order_headers_clob clob;
msgsize number(38);
message sys.aq$_jms_text_message;
clob_msg_queuetable varchar2(100);
clob_msg_queue varchar2(100);
BEGIN
-- Queue table and queue
clob_msg_queuetable := 'TEST_QTAB';
clob_msg_queue := 'TEST_Q';
order_headers_clob := order_clob_load;
--create queue table
select count(*) into qtable_present from user_tables where table_name = 'TEST_QTAB';
     if (qtable_present <> 1)
     then
          dbms_aqadm.create_queue_table(queue_table => clob_msg_queuetable,
                                        multiple_consumers => TRUE,
                                   queue_payload_type => 'SYS.AQ$_JMS_TEXT_MESSAGE',
                                   compatible => '8.1');
     end if;
--create queue 
select count(*) into queue_present from user_queues where name = 'TEST_Q';
     if (queue_present <> 1)
     then
          dbms_aqadm.create_queue(queue_name=>clob_msg_queue,
queue_table => clob_msg_queuetable,
retention_time => 86400);
dbms_aqadm.add_subscriber(clob_msg_queue, SYS.AQ$_AGENT ('OA', NULL, NULL));
     end if;
dbms_aqadm.start_queue(clob_msg_queue);
message := sys.aq$_jms_text_message.construct;
message.setText(order_headers_clob);
dbms_aq.enqueue(
queue_name => clob_msg_queue, -- IN
enqueue_options => enqopt, -- IN
message_properties => msgprop, -- IN
payload => message, -- IN
msgid => enq_msgid); -- OUT
COMMIT;
When I tried the above script, I got error as follows.
PL/SQL: Statement ignored
PLS-00302: component 'CONSTRUCT' must be declared
PL/SQL: Statement ignored
PLS-00302: component 'SETTEXT' must be declared
When I tried DESC SYS.AQ$_JMS_TEXT_MESSAGE , it shows as :
SQL> DESC SYS.AQ$_JMS_TEXT_MESSAGE
Name Null? Type
HEADER AQ$_JMS_HEADER
TEXT_LEN NUMBER(38)
TEXT_VC VARCHAR2(4000)
TEXT_LOB CLOB
It does not show the components CONSTRUCT and SET_TEXT. Also I will be in need of GET_TEXT component also to dequeue the queue data and test it. I would like to know whether the components CONSTRUCT and SET_TEXT are availble in Oracle 8i or not. Without those components, is there any other way to set payload in the queue?
Help in this regard from any body who knows about this is really appreciated.
Thanks

Hi, not sure where you have sorted this out yet, but I ended up creating my own wrappers. Hope these are of use:
FUNCTION new_properties
RETURN SYS.AQ$_JMS_USERPROPARRAY
IS
l_prop_arr SYS.AQ$_JMS_USERPROPARRAY;
BEGIN
l_prop_arr := SYS.AQ$_JMS_USERPROPARRAY();
RETURN l_prop_arr;
END new_properties;
FUNCTION new_agent
RETURN SYS.AQ$_AGENT
IS
c_name CONSTANT VARCHAR2(30) := NULL;
c_address CONSTANT VARCHAR2(100) := NULL;
c_protocol CONSTANT NUMBER := 0;
l_agent SYS.AQ$_AGENT;
BEGIN
l_agent := SYS.AQ$_AGENT(c_name, c_address, c_protocol);
RETURN l_agent;
END new_agent;
FUNCTION new_header
RETURN SYS.AQ$_JMS_HEADER
IS
c_type CONSTANT VARCHAR2(100) := NULL;
c_jms_userid CONSTANT VARCHAR2(100) := 'waveq';
c_appid CONSTANT VARCHAR2(100) := NULL;
c_groupid CONSTANT VARCHAR2(100) := NULL;
c_groupseq CONSTANT INTEGER := 1;
l_replyto SYS.AQ$_AGENT;
l_proparr SYS.AQ$_JMS_USERPROPARRAY;
l_jms_header SYS.AQ$_JMS_HEADER;
BEGIN
l_replyto := new_agent();
l_proparr := new_properties();
l_jms_header := SYS.AQ$_JMS_HEADER(l_replyto, c_type, c_jms_userid, c_appid, c_groupid, c_groupseq, l_proparr);
RETURN l_jms_header;
END new_header;
FUNCTION new_payload(
io_message IN OUT NOCOPY VARCHAR2)
RETURN SYS.AQ$_JMS_TEXT_MESSAGE
IS
c_text_len CONSTANT INTEGER := 0;
c_text_vc CONSTANT VARCHAR2(4000) := NULL;
c_text_lob CONSTANT CLOB := EMPTY_CLOB();
l_header SYS.AQ$_JMS_HEADER;
l_jms_message SYS.AQ$_JMS_TEXT_MESSAGE;
BEGIN
l_header := new_header();
l_jms_message := SYS.AQ$_JMS_TEXT_MESSAGE(l_header, c_text_len, c_text_vc, c_text_lob);
l_jms_message.text_vc := io_message;
l_jms_message.text_len := LENGTH(io_message);
RETURN l_jms_message;
END new_payload;

Similar Messages

  • AQ JMS CLOB Msg

    Hi all,
    I have a PLSql proc that enqueues A CLOB to an AQJMS (AQ$_JMS_TEXT_MESSAGE) queue succesfully. You can see the data in the USER data section of the message on the queue table. When I try and dequeue it with a standalone java program the msg is dequeued succesfully, msg id is available and the msg disappears off the queue.
    BUT!!!! The msg payload is null. We are using the thin driver db is 9.2.5
    Has anyone seen this before or got any ideas? If you think we need to use the thick driver please tell use why we get a propblem with OCIHandles..
    Many thanks
    Stew

    Can you elaborate on how to this. My code is as follows:
    CREATE OR REPLACE PROCEDURE pr_enqueue_msg (
    pi_Operation IN VARCHAR2,
    pi_ObjectXML CLOB
    Purpose : Procedure to enqueue a message to the AQ table.
    IS
    enqueue_options DBMS_AQ.enqueue_options_t;
    message_properties DBMS_AQ.message_properties_t;
    message_handle RAW (16);
    MESSAGE SYS.AQ$_JMS_TEXT_MESSAGE;
    BEGIN
                   MESSAGE := SYS.AQ$_JMS_TEXT_MESSAGE(NULL, LENGTH(pi_ObjectXML), pi_ObjectXML, NULL);
                                  --MESSAGE.set_text(pi_ObjectXML);
                                  MESSAGE.set_string_property('OPERATION',pi_Operation);
    DBMS_AQ.enqueue (queue_name => 'CRAMER.Abraham_Node_AQ',
    enqueue_options => enqueue_options,
    message_properties => message_properties,
    payload => MESSAGE,
    msgid => message_handle
    COMMIT;
    END pr_enqueue_msg;
    If I enqueue the message with
    MESSAGE := SYS.AQ$_JMS_TEXT_MESSAGE(NULL, LENGTH(pi_ObjectXML), pi_ObjectXML, NULL);
    I can get use the jms code :
    message = (AQjmsTextMessage) receiver.receive(5000);
    String str = message.getText()
    If, however,
    If I enqueue the message with
    MESSAGE := SYS.AQ$_JMS_TEXT_MESSAGE(NULL, LENGTH(pi_ObjectXML), NULL, pi_ObjectXML);
    (The message is created with a CLOB rather than the VARCHAR)
    the the get text returns null.
    What java method do I need to use to get the CLOB???
    Any help is appreciated.
    Jon

  • HT4623 My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message. 

    My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message.  How an I get rid of that

    Try this...
    have a text convo with the person you want to delete. Go to the top contact in the text convo, hit edit contact, and delete that contact.
    That resolution came from another thread on this issue, and this did solve to poster's issue.

  • My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message.  How an

    My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message. How an I get rid of that

    Try this...
    have a text convo with the person you want to delete. Go to the top contact in the text convo, hit edit contact, and delete that contact.
    That resolution came from another thread on this issue, and this did solve to poster's issue.

  • Unable to find file error while loading data from text file to Oracle

    Hi,
    I am having a interface where i am loading a data of Text file to Oracle.
    But when i am trying to do this i am getting following error.
    ODI-1227: Task SrcSet0 (Loading) fails on the source FILE connection SAPMM.
    Caused By: java.sql.SQLException: File not found: d:/mdb/#General.get_filename
         at com.sunopsis.jdbc.driver.file.FileResultSet.<init>(FileResultSet.java:160)
         at com.sunopsis.jdbc.driver.file.impl.commands.CommandSelect.execute(CommandSelect.java:57)
         at com.sunopsis.jdbc.driver.file.CommandExecutor.executeCommand(CommandExecutor.java:33)
    SAPMM is connection name.
    I am using get_filename to get the filename and it is fetching correct value as the this variable refreshes in previous step of this interface.
    KM used for loading is File to SQL
    What would be cause of this error?
    Thanks,
    Mahesh

    Hi,
    Did a testing and following are the result
    I have
    A> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Execution of Interface which gets the file name from v_filename and load into target table
    Package executes successfully.
    B> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Scenario of Interface which gets the file name from v_filename and load into target table
    Package executes with erre as it is not able to find the file
    C> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Execution of Interface which gets the file name from v_filename and load into target table
    4. Now create a scenario of the package , use the generated scenario in another package say main_package
    Execution of main_package is successful.
    Thanks,
    Sutirtha

  • How to load date and time from text file to oracle table through sqlloader

    hi friends
    i need you to show me what i miss to load date and time from text file to oracle table through sqlloader
    this is my data in this path (c:\external\my_data.txt)
    7369,SMITH,17-NOV-81,09:14:04,CLERK,20
    7499,ALLEN,01-MAY-81,17:06:08,SALESMAN,30
    7521,WARD,09-JUN-81,17:06:30,SALESMAN,30
    7566,JONES,02-APR-81,09:24:10,MANAGER,20
    7654,MARTIN,28-SEP-81,17:24:10,SALESMAN,30my table in database emp2
    create table emp2 (empno number,
                      ename varchar2(20),
                      hiredate date,
                      etime date,
                      ejob varchar2(20),
                      deptno number);the control file code in this path (c:\external\ctrl.ctl)
    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime, ejob, deptno)this is the error :
    C:\>sqlldr scott/tiger control=C:\external\ctrl.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Mon May 31 09:45:10 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>any help i greatly appreciated
    thanks
    Edited by: user10947262 on May 31, 2010 9:47 AM

    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime, ejob, deptno)Try
    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime "to_date(:etime,'hh24:mi:ss')", ejob, deptno)
    this is the error :
    C:\>sqlldr scott/tiger control=C:\external\ctrl.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Mon May 31 09:45:10 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>
    That's not an error, you can see errors within log and bad files.

  • Why is iMessage taking my incoming emails and then not making them available for my PC to get?  Why can I not send a text msg with photos when iMessage is turned off (but MMS is still on).

    Apple is great!
    Why is iMessage taking my incoming emails and then not making them available for my PC to get?  Why can I not send a text msg with photos when iMessage is turned off (but MMS is still on).
    I compose an iMessage with the destination as my email address and I attach 2 photos I want on my PC.  I send them several times from my iPhone 5C but they never arrive. I look at my ipad later and realize that it's iMessage app is getting ( and swallowing) these emails. I then turn the ipad off.  Still can't get the photos through because iphone is now getting them on it's iMessage.  I turn off the iMessage feature and try to send photos from text msging.  Phone tells me it can't send photos unless iMessage it turned on.  What happened to regular MMS text messaging?  I go and try to send photos as an email attachment and see that there is no option to attach from the stupid email program.  I look up online to learn about the brave new world of apple attachments and send them.
    Why is iMessage taking my incoming emails and then not making them available for my PC to get?
    The email program on my iphone is not configured to remove messages from the server.
    If iMessage is turned off I don't have the issue.
    Why can I not send a text msg with photos when iMessage is turned off (but MMS is still on).

    Did not work. I've selected iMessage to ON and left it. After a few hours I recieved a message "activation unsuccessful. Turn on iMessage to try again". This has been going on for the past 3 days.

  • How can I merge my contacts on iphone but keep the text msgs

    I use my phone a lot for work and a lot of my correspondance is through text msgs. My best friend and I share the apple account and we have the same contacts so when I add it to the account my phone she does the same and we come up with duplicate contacts. We would like to be able to merge them and then create seperate apple id accounts so it doesnt happen again but we need to keep the text msgs.
    Please help!
    BTW...we cant update our ios either because of lack of room on our phone.

    I suppose you have/had them on your iPhone, but do not have your iPhone with you now.
    Did you ever sync the iPhone with iTunes, did you ever backed up the iPhone to iCloud?

  • Passing contents of text file in oracle cursor

    Hi,
    I need to pass the content of text file in cursor and pass it on to calling codes. then calling codes will generate another text at their end. Can some help how can I pass contents of text file in oracle cursor? Thanks

    i need to do it without tables for some reasons.

  • Reading Text Files using Oracle PL/SQL and UTL_FILE

    Hi, experts. I tried to read a text file into oracle. Here is what i did:
    1. Create a text file in the directory: C:\temp\New Text Document.txt
    2. Run the following SQL in PL/SQL:
    CREATE or replace DIRECTORY sampledata AS 'C:\temp\';
    grant read, write on directory sampledata to public;
    3. When I run the following code, it caused an error: ora-29280: invalid directory path. I have alread checked the directory path, it is correct. Would someone know what wrong is my code?
    declare
    f utl_file.file_type;
    s varchar2(3000);
    begin
    f := utl_file.fopen('sampledata','New Text Document.txt','R');
    utl_file.get_line(f,s);
    utl_file.fclose(f);
    dbms_output.put_line(s);
    end;
    Thank you

    Try with a filename without spaces:No problem with spaces
    SQL> declare
      2  f utl_file.file_type;
      3  s varchar2(3000);
      4  begin
      5  f := utl_file.fopen('SAMPLEDATA','New Text Document.txt','R');
      6  utl_file.get_line(f,s);
      7  utl_file.fclose(f);
      8  dbms_output.put_line(s);
      9  end;
    10  /
    line1
    PL/SQL procedure successfully completed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Import Text File to Oracle Table

    Hi Guys,
    Just needed some advice on how to approach this project. I need to set up an automated schedule to import a text file into an oracle table. There will be a folder set up, where a file is put every day for me. The file will have a name such as Name_Extract_<Date>. It will always start with the words Name_extract_ and the date appended to it. I need to import this text file into oracle, then perhaps copy the file to another folder when import is finished.
    What will be the best method to use to accomplish this?? SQl Loader, UTL_FILE package? Any help will be appreciated.

    Not much details but depending on versions etc of your Oracle database I'd look into external tables. Perhaps even leverage DBFS (only available in 11.2).
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10713/tablecls.htm#CNCPT1141
    -Andy

  • Upload text file to oracle table with checking and aggregation

    Hi Friends,
    I am new to ODI.  I have encountered a problem which is specific to ODI 11G (11.1.1.6.3) to upload text file to oracle table with checking and aggregation.  Would you please teach me how to implement the following requirement in ODI 11G?
    Input text file a:
    staffCode, staffCat, status, data
    input text file b:
    staffCodeStart, staffCodeEnd, staffCat
    temp output oracle table c:
    staffCat, data
    output oracle table d:
    staffCat, data
    order:
    a.staffCode, a.staffCat, a.status
    filter:
    a.status = ‘active’
    join:
    a left outerjoin b on a.staffCode between b.staffCodeStart and b.staffCodeEnd
    insert temp table c:
    c.staffCat = if b.staffCat is not null then b.staffCat else a.staffCat
    c.data = a.data
    insert table d:
    if c.staffCat between 99 and 1000 then d.staffCat = c.staffCat, d.data = sum(c.data)
    else d.staffCat = c.staffCat, d.data = LAST(c.data)
    Any help on fixing this is highly appreciated. Thanks!!
    Thanks,
    Chris

    Dear Santy,
    Many thanks for your prompt reply.  May I have more information about the LAST or SUM step?
    I was successful to create and run the following interfaces p and q
    1. Drag text file a to a newly created interface panel p
    2. Filter text file a : a.status = ‘active’
    3. Lookup text file a to text file b : a.staffCode between b.staffCodeStart and b.staffCodeEnd
    4. Drag oracle temp table c to interface panel p
    5. Set c.staffCat : CASE WHEN b.staffCat IS NULL THEN a.staffCat ELSE b.staffCat END
    6. Set c.data : a.data
    7. Drag oracle temp table c to a newly created interface panel q
    8. Drag oracle table d to interface panel q
    9. Set UK to d.staffCat
    10. Set Distinct Rows to table d
    11. Set d.staffCat = c.staffCat
    12. Set d.data = SUM(c.data)
    However, the interface q should be more than that:
    If c.staffCat is between 99 and 1000, then d.data = the last record c.data; else d.data = sum(c.data)
    Would you please teach me how to do the LAST or SUM steps?  Moreover, can interface p and interface q be combined to one interface and do not use the temp table c?  Millions thanks!
    Regards,
    Chris

  • "how to load a text file to oracle table"

    hi to all
    can anybody help me "how to load a text file to oracle table", this is first time i am doing, plz give me steps.
    Regards
    MKhaleel

    Usage: SQLLOAD keyword=value [,keyword=value,...]
    Valid Keywords:
    userid -- ORACLE username/password
    control -- Control file name
    log -- Log file name
    bad -- Bad file name
    data -- Data file name
    discard -- Discard file name
    discardmax -- Number of discards to allow (Default all)
    skip -- Number of logical records to skip (Default 0)
    load -- Number of logical records to load (Default all)
    errors -- Number of errors to allow (Default 50)
    rows -- Number of rows in conventional path bind array or between direct path data saves (Default: Conventional path 64, Direct path all)
    bindsize -- Size of conventional path bind array in bytes (Default 256000)
    silent -- Suppress messages during run (header, feedback, errors, discards, partitions)
    direct -- use direct path (Default FALSE)
    parfile -- parameter file: name of file that contains parameter specifications
    parallel -- do parallel load (Default FALSE)
    file -- File to allocate extents from
    skip_unusable_indexes -- disallow/allow unusable indexes or index partitions (Default FALSE)
    skip_index_maintenance -- do not maintain indexes, mark affected indexes as unusable (Default FALSE)
    commit_discontinued -- commit loaded rows when load is discontinued (Default FALSE)
    readsize -- Size of Read buffer (Default 1048576)
    external_table -- use external table for load; NOT_USED, GENERATE_ONLY, EXECUTE
    (Default NOT_USED)
    columnarrayrows -- Number of rows for direct path column array (Default 5000)
    streamsize -- Size of direct path stream buffer in bytes (Default 256000)
    multithreading -- use multithreading in direct path
    resumable -- enable or disable resumable for current session (Default FALSE)
    resumable_name -- text string to help identify resumable statement
    resumable_timeout -- wait time (in seconds) for RESUMABLE (Default 7200)
    PLEASE NOTE: Command-line parameters may be specified either by position or by keywords. An example of the former case is 'sqlldr scott/tiger foo'; an example of the latter is 'sqlldr control=foo userid=scott/tiger'. One may specify parameters by position before but not after parameters specified by keywords. For example, 'sqlldr scott/tiger control=foo logfile=log' is allowed, but 'sqlldr scott/tiger control=foo log' is not, even though the position of the parameter 'log' is correct.
    SQLLDR USERID=GROWSTAR/[email protected] CONTROL=D:\PFS2004.CTL LOG=D:\PFS2004.LOG BAD=D:\PFS2004.BAD DATA=D:\PFS2004.CSV
    SQLLDR USERID=GROWSTAR/[email protected] CONTROL=D:\CLAB2004.CTL LOG=D:\CLAB2004.LOG BAD=D:\CLAB2004.BAD DATA=D:\CLAB2004.CSV
    SQLLDR USERID=GROWSTAR/[email protected] CONTROL=D:\GROW\DEACTIVATESTAFF\DEACTIVATESTAFF.CTL LOG=D:\GROW\DEACTIVATESTAFF\DEACTIVATESTAFF.LOG BAD=D:\GROW\DEACTIVATESTAFF\DEACTIVATESTAFF.BAD DATA=D:\GROW\DEACTIVATESTAFF\DEACTIVATESTAFF.CSV

  • Facetime and Text msgs are NOT working

    My dad bought me new iPhone 4s and I have activated it today. I am unable to use Facetime eventhough wifi is there and connected with phone. I am unable to send text msg to excluding 2 phones of my parents which are in same contract/plan/service. I am unable to send Text to any other service provider's phones and also to sprint service which I am using. Whats going on with brand new phone ? Please help me out.. Tried almost Reseting all settings to Factory settings, Placing my own number to some info thing etc. etc. nothing is working..

    can you check if ur facetime and imessage has complete the activation?
    your current SIM card provides you with international sms function?
    if not maybe u can try with a diff SIM?

  • Can't hide the content in a text msg!! Help??

    Each time I receive a new text msg it is open for anyone to see! I turned on the passcode feature but then I have to unlock it each time I want to do anything on my phone! If someone is talking on my phone for example, and I get a text msg, all that person has to do is look at the phone w/o touching anything and they are able to read the message! It would be great if it only showed that you had a new text or maybe who it was from...but not the actual message!! Can anyone help with this? Every phone I have ever had in the past allows you to "hide" your messages! Also, it would be nice if you could save parts of the "conversations." Individual messages!

    Actually, I have put a lock on the SMS preview option and selected 0 words to view but that only had an effect on the emails that I received and not the text messages??? It would make sense that if you can change it in the emails previews that you also could in the text messages!! When the phone is locked it does only show the number but if it is unlocked it still shows the whole text! You would have to lock it each time you sent and received a text to keep it from being visible!! What a pain!!

Maybe you are looking for

  • ITunes keeps crashing with latest update when I try to sync my iPad and iPhone.  No issues syncing my ATV's.  Any suggestions?

    In fact, when I am in iTunes and click on either my iPad or IPhone it shows the sync options and ten within 10 or so seconds iTunes gets the "closed unexpectedly" error message.  Very frustrating....updated to latest iTunes version yesterday, and thi

  • InDesign to PDF - Keeping Paper color/ BG color transfer

    Hello, I'm working on a "Yellow pages" project, where i have changed the "paper" color to a canary yellow, as is going to printed. Is there a way to keep that color when exporting to PDF, so that the background/ paper color remains or transfers to th

  • Non-linear navigation with movie clips

    I am gradually learning Flash and am able to play a 56 frame movie clip in frame 5 using stop(); on the main level. What I don't know is how to move onto frame 6 on the main level once the clip is finished. Thank you for any guidance.

  • SelectItems and Map String,String

    Hi all - I'm using Tomcat 6.0.14, JSF 1.2 and JSTL 1.2. Consider the following code: <h:selectOneListBox size="1" value="#{myBean.value}">   <f:selectItems value="#{myBean.valueMap}"/> </h:selectOneListBox>And consider the following Map<String,String

  • Select multiple mail messages

    I just upgraded from Lion to Mountain Lion.  In Lion and all previous versions of Mail, I was able to click and drag over a bunch of messages to delete blocks of unwanted messages at the same time. In  the newer version I cannot seem to do that.  I c