Distinguish between 1.4.2_03 and 1.4.2_06

Hi there, I was wondering if anyone could provide some advice:
Our webstart app works fine on 1.4.2_03, but throws a CORBA marshalling error on 1.4.2_06. The class it fails to marshall is a MutableTreeNode, so it appears this class is incompatible between the JRE used on the server and the JRE used on the client.
To prevent this, I was hoping there was some way to distinguish between the 2 JREs. From my understanding of the JNLP spec, I can have something like:
<j2se version="1.4.2_03" href="localURL"/>But this would mean the localURL gets called each time, and a JRE repeatedly installed. Another idea I had was to create a small Main Proxy class that each JNLP invokes first, which would check the JRE version, then pass over to the real application.
Any other ideas? Thanks, Neil

hi neil..
this might help u..
<j2se version="1.4+"/>Thanks for the suggestion. Unfortunately I've already tried this :-(

Similar Messages

  • How can I distinguish between a regular iPod and a iPod 4 s?

    How can I distinguish between a regular iPod and a iPod 4 s?

    Hi ARPantoja!
    I have an article here that can help you distinguish different iPod models:
    Identifying iPod models
    http://support.apple.com/kb/HT1353
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Distinguish between manually entered file and file uploaded by conversion

    Hi ,
    I am involved in a conversion wherein i have the requirement to get those file uploaded form front end.
    Is there any distinguishing column to know as to whether the file loaded in fnd_lobs or fnd_documents_tl are from front end or through conversion.
    Please let me know if any of you have a solution to it?
    Thanks and Regards,
    Amar Deep Gautam

    You can consider using the upload_Date column.
    OR
    You can consider a naming convention for the file name (such as CONV_PO_TERMS.dat).
    Sandeep Gandhi

  • How can I make Siri distinguish between calendar appointments (busy) and calendar events (free)?

    When I ask Siri "How does my day look tomorrow?" she tells me every appointment (busy) and task (free) I have scheduled. I'm trying to find a way to let her know that I'm only interested in seeing what appointments (busy) I have that day.
    Has anyone found a way to do this? I'm using iCloud calendars on all my devices.
    I've already used iCloud calendars to designate each individual event as either "free" or "busy," but she continues to display all calendar events when I ask for an overview of my day. I've tried to do this from my iPhone, Macbook, and iCloud website.
    Moving my tasks to my "Reminders" app won't help, because I need to be able to schedule time to work on specific tasks and also put important deadlines into my calendar. At the same time, when I ask Siri, "How does my day look," I am only interested in knowing what appointments I have that day.
    I've also tried asking specifically "What meetings do I have in my [work/personal/family etc. calendar]" but that doesn't work either.
    I've also tried asking "Can you show me when I'm busy today" and "Can you show me todays's appointments."
    It may be that Siri doesn't have this capability yet, but it would be nice to know if its in the works or if it exists.

    When I ask Siri "How does my day look tomorrow?" she tells me every appointment (busy) and task (free) I have scheduled. I'm trying to find a way to let her know that I'm only interested in seeing what appointments (busy) I have that day.
    Has anyone found a way to do this? I'm using iCloud calendars on all my devices.
    I've already used iCloud calendars to designate each individual event as either "free" or "busy," but she continues to display all calendar events when I ask for an overview of my day. I've tried to do this from my iPhone, Macbook, and iCloud website.
    Moving my tasks to my "Reminders" app won't help, because I need to be able to schedule time to work on specific tasks and also put important deadlines into my calendar. At the same time, when I ask Siri, "How does my day look," I am only interested in knowing what appointments I have that day.
    I've also tried asking specifically "What meetings do I have in my [work/personal/family etc. calendar]" but that doesn't work either.
    I've also tried asking "Can you show me when I'm busy today" and "Can you show me todays's appointments."
    It may be that Siri doesn't have this capability yet, but it would be nice to know if its in the works or if it exists.

  • A way to distinguish between 'Parent' keys and 'Referential' keys

    Hi,
    We use referencial keys to specify the FK to a parent table and also link to other tables... I need to write a script that needs to distinguish between a 'Parent' key and and a 'Referential' keys. In the database they both look the same, as they are both foreign keys...
    What's the easiest way to determine whether a FK is a link to a parent table or a link to an unrelated table..
    I hope this question makes sense...
    EDIT:
    Here's an example of the tables, and a better explanation
    CREATE TABLE PARENT_TABLE(
    par_id number PRIMARY key,
    par_name varchar2(200)
    create TABLE RELATED_TABLE(
    rel_id number PRIMARY key,
    rel_name varchar2(200)
    create TABLE CHILD_TABLE(
    kid_id PRIMARY key,
    kid_name varchar2(200),
    par_id,
    rel_id,
    CONSTRAINT kid_par_fk FOREIGN KEY(par_id) REFERENCES PARENT_TABLE(par_id),
    CONSTRAINT kid_rel_fk FOREIGN KEY (rel_id) REFERENCES RELATED_TABLE(rel_id)
    )Ok, as you can see the child table has 2 references but no way to tell which one is the parent table.. In our database we have this hirearchy of parent-child tables (where it's one-to-many relationships) where we consider a table a parent of other.. And also we have a ton of other foreign keys that link to related tables (many-to-many) relationships...
    Now i need a clean way of distinguishing between PARENT and RELATED table.. A more elegegant solution to a keeping a hierarchy table of parent, child tables.. I'm sure others have this kind of structure..
    let me know if there is more clarification needed.. Sorry for the confusion..
    Edited by: wonderboy87 on 23-Jan-2011 4:07 PM
    Edited by: wonderboy87 on 23-Jan-2011 5:59 PM
    Edited by: wonderboy87 on 23-Jan-2011 6:00 PM

    wonderboy87 wrote:
    Yes sorry.. I can see how consufing this is. Here goes;
    CREATE TABLE PARENT_TABLE(
    par_id number PRIMARY key,
    par_name varchar2(200)
    create TABLE RELATED_TABLE(
    rel_id number PRIMARY key,
    rel_name varchar2(200)
    create TABLE CHILD_TABLE(
    kid_id PRIMARY key,
    kid_name varchar2(200),
    par_id,
    rel_id,
    CONSTRAINT kid_par_fk FOREIGN KEY(par_id) REFERENCES PARENT_TABLE(par_id),
    CONSTRAINT kid_rel_fk FOREIGN KEY (rel_id) REFERENCES RELATED_TABLE(rel_id)
    )Ok, as you can see the child table has 2 references but no way to tell which one is the parent table.. You are right. There is no way to tell which one is the "parent". It's only your own business rules and usage that make one of the FK relationships to a "parent" while the other is to .. what, an "uncle"? ;-) Oracle has no way of knowing what your business rules and usage are.
    In our database we have this hirearchy of parent-child tables (where it's one-to-many relationships) where we consider a table a parent of other.. And also we have a ton of other foreign keys that link to related tables (many-to-many) relationships...
    Now i need a clean way of distinguishing between PARENT and RELATED table.. A more elegegant solution to a keeping a hierarchy table of parent, child tables.. I'm sure others have this kind of structure..
    let me know if there is more clarification needed.. Sorry for the confusion..
    Edited by: wonderboy87 on 23-Jan-2011 6:00 PM

  • Check concordance between the package database and the filesystem

    Hello, I'd like to write this down :
    To list the packages installed in the database, I use
    pacman -Qsq
    -Q because it's a query on the local database, s to search and q for quiet.
    If you would like to list the files installed by pacman on your computer, you would do
    pacman -Qqs | xargs pacman -Ql | cut -f2 -d' '
    and if you would to count them you could write
    pacman -Qqs|xargs pacman -Ql|wc -l
    If you'd want to know if the files actually exist, and reporting for errors, you could run
    for a_package in $(pacman -Qqs) ; do
    for a_file in $( pacman -Ql ${a_package}|cut -d' ' -f2 ) ; do
    if [ ! -e ${a_file} ]; then
    echo package ${a_package} is broken: file ${a_file} is missing. ;
    # use the following if you would wish to remove the broken package.
    # sudo pacman -R ${a_package} ;
    # break
    fi ;
    done ;
    done
    The if test does check if the file, whatever its kind (folder, symbolic link, etc), does actually exist on your computer, and report a problem if the file is missing. In a generality purpose, I used test -e. You could look at the test manpage, to look for more elaborate examples. You can imagine report what kind of file is missing, or run a check of the permissions and owner which file has in the file system.
    So, I use this because I recently messed up my system with AUR build that came along with the database, but was hard to debug. I don't know how to distinguish between an AUR package and an official package, so this solution came out to clean my database.
    I hope I could post more code snippets here if you find it useful. See you.
    Last edited by dkremer (2011-08-12 13:05:26)

    Allan wrote:pacman -Qk ?
    yes. It does the job as well. Just a question: can you use the output of this command to remove the packages which are broken ?
    EDIT: actually pacman -Qqk gives the name of broken packages. My apologies.
    Last edited by dkremer (2011-08-14 13:20:23)

  • How can I distinguish between iMessages and SMS messages in the iOS 7's "Messages" app?

    I often chat with the same contact using both services, but I just have a duplicate contact thread in the "Messages" app, which I cannot distinguish unless I go into the thread itself and check to see whether the conversation is blue or green. Is there a way to distinguish between the two services? If so, how?
    If not... Apple, get on it.

    Excuse me great powerful one. I will certainly deal with it and I'll try to survive. Sorry if I have troubled you, great Sir. I am not worthy of your answers.
    BTW: If you would have read the Q thoroughly you would not have posted an exact same answer.
    "...unless I go into the thread itself and check to see whether the conversation is blue or green. Is there a way to distinguish between the two services?"
    And I got your reply saying:
    "Yes, by going into the thread itself and check to see whether the conversation is blue or green."
    Wow, that was heplful.

  • Distinguish between Document Libraries and Subsite

    Hello Team,
    When I create a Subsite or create a document Library, How can I access the Document library through the network Share
    If I add documents to a Document Library:
    Does it create a static link or a dynamic link
    How can I access the Document library through the network Share
    If I create a folder structure and add document to the folders to subsite
    Does it create a static link or a dynamic link
    How can I access the folders in a subsite through the network Share
    How can I distinguish between a sharepoint site or document library by just looking through a URL

    Following links explain how a Document library can be accessed using Network Share/Windows explorer.
    https://hubone.zendesk.com/hc/en-us/articles/200167580-SharePoint-Using-Explorer-View-or-Mapped-Network-Drives
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/b3425c4b-6558-4b51-882d-f9603c36f214/accessing-sharepoint-documents-from-windows-explorer-on-the-server?forum=sharepointgenerallegacy
    The Url of a Document library will conatin "Forms" in it. Example:
    http://yoursite/MyDocs/Forms/AllItems.aspx
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • Distinguishing between CSV and Excel file formats

    I am trying to distinguish between CSV and Excel files.   Most of the files I need to process are CSV, but some have been opened and re-saved in Excel format.  I know about the Excel toolbox available, but haven't used it yet. 
    I need to be able to open a spreadsheet file regardless of if it is in CSV or Excel format.  Any help would be greatly appreciated.
    Here are two example files, one CSV and one Excel.  Both have .XLS file extensions. 
    Attachments:
    20-4-XLS.xls ‏21 KB
    20-5-CSV.xls ‏8 KB

    Hi Paul,
    I think the matter is not the extention (xls or csv or whatever) but the format of the data written in your file.
    To see what I mean, open the xls file you posted with notepad... What does it look like ?
    You have tobe sure of the format of the file you want to read so that you can develop an appropriate VI... if you want to be able to read different type of data format, do a test before reading the file and then use an appropriate routine for each format.
    Hope this helps you...
    BTW, to read the one named CSV, a simple "read from spreadsheet file" VI will do the job
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • HOW-TO Distinguish between file exported from Datapump and normal export

    How to distinguish between the dmp file export from the data pump utility and the export utility in Oracle 10g and 11g .
    Thanks,
    SS

    Like Werner suggested, it's never hurt to try anyway.
    use imp with SHOW=Y, if it works then Original otherwise Data pump.
    Once you determined one file, there's good chance that the rest are same. I don't think previous DBA will go through the trouble by mixing data pump and traditional exp/imp.

  • Distinguishing between IDocs for Delivery, Shipment and Invoice

    Hi Experts,
    I have a requirement where I am triggering IDocs from SAP for Delivery Document, Shipment and Invoice and sending them to a third-party middleware everytime they are created in SAP, by configuring output types for these documents.
    I want to know if we have any field in these IDocs's Structures that can be used to distinguish between the different documents such that we can identify which document has been received based on this field (or combination of fields)?
    I tried to use Document Category for this purpose, but this field is not available in Invoice and moreover, the IDoc Segment names are different for every IDoc's message type.
    The key point here is that I am not allowed to do any sort of Customization in SAP to achieve this and I can only go about using the Standard Functions inherently available in SAP.
    Please suggest a possible solution for this predicament of mine.
    Thanks in advance.
    Regards,
    Keerthi

    Hello Keerthi
    I do not see where the problem lies.
    We exchange via FTP share  similar documents with one of our logistics partner:
    Inbound delivery (VL33N) => sent as DESADV.DELVRY03 => converted on SAP-XI to TRADACOMS ORDHDR => file suffix .LTI
    Shipping Order (VL03N) => sent as SHPORD.DELVRY03   => converted on SAP-XI to TRADACOMS ORDHDR => file suffix .LTO
    I am not a fan of functional file names yet if the third-party tools is not capable to distinguish between the documents based on their contents at runtime then we need old-fashioned unique file suffixes.
    Of course the two ORDHDR messages can be distinguished based on their contents. The message contains a TYP segment with the following qualifiers:
    TYP/TYP2 = '0430' = (shipping) order (= outbound delivery)
    TYP/TYP2 = '0660' = inbound delivery
    From this logistics partner we receive two different kinds of DLCHDR (delivery confirmation) messages:
    TYP/TYP2 = '0670' = Proof of Delivery for (shipping) order => mapped to STPPOD.DELVRY03
    TYP/TYP2 = '0695' = Goods receipt for inbound delivery    => mapped to WHSCON.DELVRY03
    The files have different suffixes yet they are not evaluated. SAP-XI just picks both messages and evaluates at runtime whether it has to transform the DLCHDR into a STPPOD or WHSCON IDoc.
    Regards
      Uwe

  • Distinguish between pure AS3 and Flex project

    Hey,
    how can I distinguish if I am compiling currently an AS3 or a Flex project (mxml vs. pure as)?
    I acutally want to look something up in the "evaluate" method of a GenerativeFirstPassEvaluator before doing the processing. So I need to know it there.
    Any help is much appreciated.
    Best,
    Joa

    MXML is converted to AS3 code as part of the compilation process, then the AS3 is compiled normally like the rest of the project. I don’t think that GFPE is run over anything but an AS3 tree. There
    may be a way to figure out where the original source came from, e.g. .mxml or .as file, but you’d have to interactively debug and scan the data structures — I don’t know off hand.
     - Jono
    From: Joa Ebert <[email protected]>
    Reply-To: <[email protected]>
    Date: Mon, 31 Mar 2008 05:40:13 -0700
    To: <[email protected]>
    Subject: Distinguish between pure AS3 and Flex project
    A new discussion was started by Joa Ebert in
    Developers --
      Distinguish between pure AS3 and Flex project
    Hey,
    how can I distinguish if I am compiling currently an AS3 or a Flex project (mxml vs. pure as)?
    I acutally want to look something up in the "evaluate" method of a GenerativeFirstPassEvaluator before doing the processing. So I need to know it there.
    Any help is much appreciated.
    Best,
    Joa
    View/reply at Distinguish between pure AS3 and Flex project
    <http://www.adobeforums.com/webx?13@@.59b4da24>
    Replies by email are OK.
    Use the unsubscribe
    <http://www.adobeforums.com/webx?280@@.59b4da24!folder=.3c060fa3>  form to cancel your email subscription.

  • Distinguishing between topics and queues

              Hi,
              I have a generic piece of code that takes a javax.jms.Destination that does different
              things depending if the destination is a queue or a topic.
              The problem is that it seems that destinations in Weblogic implement both queue
              and topic:
              instanceof queue <new_JMSTopic_1>
              queue name: <new_JMSTopic_1>
              weblogic.jms.common.InvalidDestinationException: Destination must be a queue,
              ne
              w_JMSTopic_1
              at weblogic.jms.common.Destination.checkDestinationType(Destination.java
              :113)
              at weblogic.jms.client.JMSSession.createBrowser(JMSSession.java:1516)
              at weblogic.jms.client.JMSSession.createBrowser(JMSSession.java:1500)
              at Test.run(Test.java:100)
              at Test.main(Test.java:311)
              Is there anyway for me to programatically distinguish between queues and topics
              as there seems not to be any javadoc on weblogic.jms.common.Destination and instanceof
              does not work? I would prefer not to rely on exceptions.
              I'm using Weblogic 8.1 sp2.
              Thanks
              Riad
              

              Cool. Thanks for your help Tom.
              Riad
              Tom Barnes <[email protected]> wrote:
              >Hi Riad,
              >
              >This has come up before.
              >
              >For now, you may cast dest to weblogic.jms.common.DestinationImpl
              >and call "isQueue()". Normally, only the javadoc'd methods
              >in weblogic.jms.extensions are intended for public use,
              >but for this case we make an exception.
              >
              >In the next release, this method will be exposed through
              >a new public WL JMS API extension:
              >weblogic.jms.extensions.WLDestination,
              >and might not be available otherwise.
              >
              >Tom, BEA
              >
              >P.S. A java tip: The JDK's built-in "javap"
              >is useful for viewing an arbitrary class api.
              >As in "javap weblogic.jms.extensions.JMSHelper".
              >
              >Riad wrote:
              >> Hi,
              >>
              >> I have a generic piece of code that takes a javax.jms.Destination that
              >does different
              >> things depending if the destination is a queue or a topic.
              >>
              >> The problem is that it seems that destinations in Weblogic implement
              >both queue
              >> and topic:
              >> instanceof queue <new_JMSTopic_1>
              >> queue name: <new_JMSTopic_1>
              >> weblogic.jms.common.InvalidDestinationException: Destination must be
              >a queue,
              >> ne
              >> w_JMSTopic_1
              >> at weblogic.jms.common.Destination.checkDestinationType(Destination.java
              >> :113)
              >> at weblogic.jms.client.JMSSession.createBrowser(JMSSession.java:1516)
              >> at weblogic.jms.client.JMSSession.createBrowser(JMSSession.java:1500)
              >> at Test.run(Test.java:100)
              >> at Test.main(Test.java:311)
              >>
              >> Is there anyway for me to programatically distinguish between queues
              >and topics
              >> as there seems not to be any javadoc on weblogic.jms.common.Destination
              >and instanceof
              >> does not work? I would prefer not to rely on exceptions.
              >>
              >> I'm using Weblogic 8.1 sp2.
              >>
              >> Thanks
              >> Riad
              >
              

  • Distinguishing between bookmark page and ordinary jsp

    If I bookmark a page in my project and close the browser , and again on restarting the browser
    viewing the same bookmark page without logging in,
    All the links should work.
    It is working , but problem arises here
    how to
    distinguish between bookmark page and ordinary jsp
    which is viewed with login

    The problem is not the bookmark.
    Review your JSP, you may find it does not check the session id.
    In this case, everyone can access the page without login.

  • Distinguish between AW5 and 6 in script

    I'm trying to create an application in Automator to automate the conversion of AW to iWork. I'm using one of Yvan's scripts to convert AW6 to iWork successfully. The only step remaining is to convert to AW6 from 5, something that shouldn't be too hard since all it has to do is open and save. However, I can't find a good way to distinguish between AW5 and 6. In his script, I believe Yvan does this here:
    on AWtoAW6(leCheminOriginal_UniText) -- leCheminOriginal_UniText est Unicode text
              local leFichier, flag, nf, l, nouveauChemin
              set leFichier to leCheminOriginal_UniText as alias
              try
                        tell application "AppleWorks 6.2.9"
      activate
      open leFichier
                                  set nf to name of document 1
                                  if nf contains v6 then
                                            set AppleScript's text item delimiters to v6
                                            set l to text items of nf
                                            set AppleScript's text item delimiters to ""
                                            set nf to l as text
                                  end if
                                  if nf does not end with ".cwk" then set nf to nf & ".cwk"
                                  set nouveauChemin to cheminDeStockage & nf
                                  tell application "System Events"
                                            if exists (file nouveauChemin) then set name of file nouveauChemin to (text 1 thru -(2 + (length of "cwk")) of nf) & my horoDateur(modification date of file nouveauChemin) & ".cwk" (* name stamped *)
      make new file at end of folder cheminDeStockage with properties {name:nf, file creator:"BOBO", file type:fileType}
                                  end tell
                                  set leFichier to nouveauChemin as alias
      save document 1 in leFichier
      close document 1
                        end tell -- AppleWorks 6
              on error
                        set rapport to rapport & msg96 & nouveauChemin & return
              end try
    end AWtoAW6
    But I'm not sure. What I need is a script that opens, checks if it's an AW5 file, if it is opens and saves in AW6, and then proceeds to open my other script that can do the

    I'm not sure what you mean. The files have to be saved as AW6 for the iWork apps to be able to open them.
    Yvan has added all of his AppleWorks scripts to his Box.com account. He says the one you need is https://app.box.com/s/hqq9jwfi45nknjpf6d52

Maybe you are looking for

  • How do i save a numbers doc under a different name

    I'm trying to save a numbers document under a different name.  I could change it easily yesterday but it's not working today?

  • Converting httpSession creation time to Date format

    I have the need to convert the value returned from httpSession.getCreationTime() to a Date format. The value returned from getCreationTime is long. I need to parse this value into 2 other fields. The first needs to be in year, month, day format. The

  • Questions on Initial MARS setup

    I have a question on the ?Topology Discovery? piece in MARS. I will be using SNMP to discover and poll all devices in the network. What I don?t want is the MARS box to scan entire subnets looking for devices. I want to control exactly what MARS is do

  • Syncing Phone with Windows 7

    I dowloaded Palm Desktop 6.2 and have a Verizon Palm Treo 755p. Computer is 64 bit Windows 7.  I bought the bluetooth that Palm recommended.  Was able to sync phone with help from palm support however, it caused my system to crash.  Had to reboot Win

  • Clarification on was6.40

    hi sap experts we are using mySAP ERP 2004 ECC 5.0, i want to know whether WAS components need seperate installation or they come up with business suite, actually i am not aware installation of my systems. reply ASAP thanx sandeep