Missing libraries for j2me?

Hi!
I have source code for Jess (java expert system) written in J2SE that I am trying to compile for J2ME. Of course, I keep getting compilation errors, since J2ME does not have e.g. java.util.Iterator or java.io.Serializable. What can I do (if anything?!) to solve this problem? Jess folks do not have a mobile device version. Are there additional libraries for J2ME I could download and happily compile my code? Thank you, I am really stuck with this!
-Buso

Hi Buso,
I am not sure if its a good solution, but you can try it as follows :
Use the source code that comes with Java SDK (src.zip in sdk ), extract the classes (and their dependant classes) to a different folder, compile them and make your own jar file. Keep this Jar file in in WTK's Lib folder.
I suppose this should work.
Cheers
Sudarshan

Similar Messages

  • Missing Preverify files for J2ME on Linux server

    Hi,
    I have J2ME application that runs perfectly on windows environment. I want to run my application on linux environment. I am encountered with the missing preverify files needed to run the application on linux server. Can anyone provide me the preverify.exe files for J2ME application that runs on linux environment. ??????
    Thanks in advance.
    Regards
    Surya Pratap

    Hi
    Web Server 7 PHP Add-on plugin was released with more focus towards allowing multi platform support . Hence, it is possible that some popular extensions are left out. However, this need not stop you from compiling php by yourself . If you are compiling PHP by yourself, you need to remember to compile with the following flags
    You can compile php by yourself on your machine by doing this following
    - download php from php.net
    - unzip the tar ball
    - configure and compile as follows
    ./configure
    --with-prefix=<ws7-install-root>/plugins/php
    enable-force-cgi-redirect enable-safe-mode enable-bcmath enable-ftp enable-sockets enable-shmop enable-pdo enable-calendar enable-inline-optimization enable-soap enable-dba enable-sysvmsg enable-sysvsem enable-sysvshm enable-sqlite-utf8 enable-zend-multibyte enable-exif enable-magic-quotes enable-wddx enable-mbstring enable-mbregex enable-gd-native-ttf enable-libxml enable-simplexml enable-xmlreader enable-xmlwriter enable-dom with-gd=/usr
    This should get you going
    Hope this helps

  • Oracle Initialization Failed -- likely missing libraries/dlls

    Hi,
    I've installed MDM 5.0 server with oracle 10.2 as the database on Windows 2003 server.
    When I try to create a repository for the first time I'm facing the following issue "Error initializing database engine"
    The log says:
    Oracle Initialization Failed -- likely missing libraries/dlls
    OCI Init
    ERROR CODE=0 |||
    Last CMD:
    I'm able to connect to the database through SQL plus also the tnsping tests are successfull.
    Please let me know your ides to resolve this issue.
    Regards,
    Varadhu

    Hi Varadharajan,
    Can you provide the detailed steps performed to resolve the issue.
    Even we have installed MDM 7.1 SP 10 Oracle 11.2.0, But we have 3 SAP instance running on the system:
    1) SRM:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    2) CRM:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit
    3) MDM:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    when the server is restarted the MDM is not able to connect to the Database.
    Thanks to provide the exact steps of execution.
    Regards,
    Prajakta Patkar

  • Libraries for Windows XP64

    I am Looking for SDK Libraries for the 64bit Windows XP Version to include Quicktime-Code in my 64bit Application. Does anyone know if there will be such a library soon or if there is already one and I have missed it? I looked everywhere I could think of but haven't found a single clue concerning Quicktime SDK for Windows XP64

    Thanks. I've already used it for our 32-bit Application.
    The Windows Quicktime SDK unfortunatelly only includes 32bit compiled libraries.
    I've also nowhere found any mentioning of an 64bit Library. Seems our 64bit application will not be able to produce Quicktime movies.

  • SDN Downloaded tutorial TutWD_Tree  needs missing libraries

    HI All
    SDN Downloaded tutorial TutWD_Tree has build errors due to missing libraries. is some one faced similar problem what are the libraries we have to include and where will i get these libraries.
    any suggestions please
    -Manohar

    Hi,
    I had the same problem. I think the reason is indeed that you are working with some newer version of the Studio. My version is 2004s (Version: 7.0.06 Build id: 200601142119). The example project references some directories like "com.sap.dictionary.runtime" (located under ...SAP\IDE\IDE70\eclipse\plugins). In my installation the name of this directory is a little different: "com.sap.dictinary.runtime_2.0.0". To solve this problem you will have to replace some jar-files referenced by the project. This works as follows:
    Right-click the project, then select "Properties" from the contex-menu. A new dialog appears. At the right side of this dialog select "Java Build Path". At the left you will see 4 tabs, select "Libraries". The references jar-files will be displayed. Probably several of them will be marked with a little yellow "!". For each marked jar-file perform the following steps:
    Select the jar-file. Press "Edit...". A new dialog will appear. Press "Extension...". A file-selection-dialog appears, where you can select the jar-file in the right directory.
    - Christoph -

  • Cibyl: C programming for J2ME phones

    Hello,
    For those that would like to program in C for J2ME phones, I'd like to announce my project called Cibyl,
    http://spel.bth.se/index.php/Cibyl
    which allows you to compile C programs into Java bytecode. It uses GCC to compile MIPS binaries which are then translated into Java bytecode. Cibyl supports a subset of J2ME with a C interface, but adding additional classes/methods is easy and semi-automatic, and it's also possible to mix C and Java.
    I've also implemented Lessphun,
    http://spel.bth.se/index.php/Lessphun
    which is an implementation of the Mophun C API for Cibyl that allows Mophun games to be ported to J2ME phones.
    Cibyl and Lessphun are free software (GPL'ed tools and LGPL'ed libraries) and implemented for GNU/Linux, although it should be possible to get working under other systems as well.
    // Simon

    Sure,
    I've measured two programs: A* and a game-of-life implementation, implemented for both "native" Java and in C. The performance varies depending on the virtual machines - I've run them with gij, kaffe, sablevm and the Sun JDK vm (the two benchmarks are not dependent on the J2ME classes) - and the performance generally varies between 1.5 and 2.2 times slower than the native Java implementation (with exceptions - the A* benchmark was almost 8 times faster with Cibyl on Kaffe).
    The two benchmarks were implemented in a "Cibyl-friendly" way, i.e., mainly using 32-bit types in the C code (I've optimized for loads/stores of these). 8- and 16-bit memory accesses are more expensive, but I've ported my boulder dash-style game from Mophun without changing the datatypes and there are no performance problems there anyhow - the time is spent in drawing graphics.
    So I would say that the performance is acceptable, and should be comparable to implementations in native Java.
    // Simon

  • Missing codecs for Blackmagic HD Extreme?

    I just installed a new BM HD Extreme card. I installed the latest driver (6.3)
    I am running QT 7.2 and FCP 6.0.1
    When I launch FCP it prompts me to select a Sequence Preset.
    The drop down window contains many Blackmagic options- but many others are missing. For example: I only have 3 choices of 1080i 59.94 (10bit, 10bit RGB, and 8bit). There are only 2 DVCproHD options. And there is no NTSC DV option, etc.
    If I choose CANCEL I do not get a Timeline or Canvas window and they are grayed out the Window drop down menu. If I choose a preset- even one I do not want I get a complete layout.
    Once inside FCP- I try Audio/Video Settings Menu.
    All options including 1080i 59.94 ProRes, 1080i 59.94 DVCpro, NTSC DV, etc.
    are available as Capture presets- but they are not listed under Sequence Preset menu.
    If I select Easy Set-up- ALL BM presets are listed.
    but when I try to edit to timeline I get a prompt telling to switch settings.
    Many of these same setting options are missing from the VIEW Video Playback menu as well.
    It's all very confusing. What is going on here?
    I suppose my question is:
    How do I get All Blackmagic presets to appear as options in all settings- including sequence preset and Video playback?

    time to call black magic support. I suspect (have not had time to check) the codecs are not in the proper location like in library>application support>final cut pro>??
    look for the setups you see and where they are. I think there are separate locations for easy setup and for sequence presets. I have the same thing in the B room with an older blackmagic card

  • SSO is not working - User is missing credentials for connecting to alias

    Dear Experts,
    I am facing a strange problem in SSO with reference system user mapping.  I have configured reference system user mapping for accessing R/3 for ESS/MSS and transactional iviews along with UWL.  The SSO was configured 2 months ago and was working fine till yesterday.
    Since this Monday, (2 days), the system connection tests are failing on connector.  But, ESS/MSS & Transaction iviews with SAP Logon tickets are working fine. But, while trying to access UWL tasks, SSO is failing. Following is the error message -
    "Exception occured Exception type:com.sap.netweaver.bc.uwl.connect.ConnectorException Message:Tue Aug 11 09:46:58 CEST 2009
    (Connector) :com.sap.portal.connectivity.destinations.PortalDestinationsServiceException:User is missing credentials for connecting to alias <Aliassystem>. Contact your system administrator. "
    I have created a destination for the respective backend in Visual Admin > node >  services > Destinations as some tasks are not visible in UWL as per Note-  1133821, 2 weeks ago.It was working fine till yestreday. While testing from destinations, for Connected User(SAP Logon ticket Assertion ticket) , getting the error message  -
    Error During ping operation:Ticket contain no/an  emplty ABAP user id(refer note 1159962). The destination is successfully connected with configured user.
    But from the Tracecollector logs, I can see that the mapped user is set in the SAP Logon ticket and the User <ABCD> is existing in the target ECC system. More over, the SSO with refence system user mapping is working fine for ESS/MSS and Transaction based iviews. It is failing only for UWL tasks and also in system connection tests for connector. ITS was failing since the beginning.WAS is successful even now.
    Trace file info -
    Mapped user [ABCD] set in SAP Logon Ticket. The authenticated user is [<portaluserid>]. Authentication stack: [ticket]..
    The created ticket is:
    [Ticket [initialized]
      Ticket Version  = 0
      Ticket Codepage =  (Encoding=1100)
      User = <ABCD>
      Issuing System ID    = EPD
      Issuing System Client = 000
      Creation Time = 200908110746
      Valid Time    = 8 h 0 min
      Signature (length=261 bytes)
    I checked tcode SSO2 in ECC system and it is ready for accepting the logon tickets.  The strange thing is single sign on is working for ESS/Transactional iviews and not for UWL. Second thing is UWL was working fine till yesterday morning and stopped working now with SSO problems.
    Can you pls advise where to look for fixing the SSO - missing user details for UWL destination?
    regards,
    Isvarya

    <title>reporting the text as formatted text - Dear Experts,</title>
    <!--[if gte mso 9]><xml>
    <o:DocumentProperties>
      <o:Author>Isvarya Bolisetti</o:Author>
      <o:LastAuthor>Isvarya Bolisetti</o:LastAuthor>
      <o:Revision>2</o:Revision>
      <o:TotalTime>1</o:TotalTime>
      <o:Created>2009-08-11T11:21:00Z</o:Created>
      <o:LastSaved>2009-08-11T11:21:00Z</o:LastSaved>
      <o:Pages>1</o:Pages>
      <o:Words>385</o:Words>
      <o:Characters>2195</o:Characters>
      <o:Company>Bekaert N.V</o:Company>
      <o:Lines>18</o:Lines>
      <o:Paragraphs>5</o:Paragraphs>
      <o:CharactersWithSpaces>2575</o:CharactersWithSpaces>
      <o:Version>11.9999</o:Version>
    </o:DocumentProperties>
    </xml><![endif]><![if gte mso 9]><![endif]><![if gte mso 9]>
    <!--
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
         {mso-style-parent:"";
         margin:0cm;
         margin-bottom:.0001pt;
         mso-pagination:widow-orphan;
         font-size:12.0pt;
         font-family:"Times New Roman";
         mso-fareast-font-family:"Times New Roman";}
    @page Section1
    div.Section1
    -->
    </style>
    <!--[if gte mso 10]>
    <style>
    /* Style Definitions */
    table.MsoNormalTable
         {mso-style-name:"Table Normal";
         mso-tstyle-rowband-size:0;
         mso-tstyle-colband-size:0;
         mso-style-noshow:yes;
         mso-style-parent:"";
         mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
         mso-para-margin:0cm;
         mso-para-margin-bottom:.0001pt;
         mso-pagination:widow-orphan;
         font-size:10.0pt;
         font-family:"Times New Roman";
         mso-ansi-language:#0400;
         mso-fareast-language:#0400;
         mso-bidi-language:#0400;}
    </style>
    <![endif]><![if gte mso 9]><![endif]><![if gte mso 9]>Mapped user set in SAP Logon Ticket. The
    authenticated user is . Authentication stack: ..
    The created ticket is:
    [Ticket

  • Can I have two different libraries for iTunes?

    I would like to have two different libraries for iTunes. How can I do it?
    Regards.

    To create or access a second (or more) library, hold down the Option key (or Shift key in Windows) when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library: Using multiple iTunes libraries -Mac
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one.

  • Seperate libraries for two ipods on same computer

    how can i set up seperate libraries for two ipods on same computer . running xp . after installing software for second ipod , i only have one version of itunes ,with only one library .tried setting up seperate playlists but that didnt help . thanks for help!

    The only way I know to have two entirely separate iTunes libraries on one computer is to have two Windows or Mac user accounts: How To Use Multiple iPods with One Computer

  • Multiple Libraries for iTunes

    I am wondering if there is any way to create multiple libraries for my music? I use my iTunes for both work and personal music and would like to be able to move my work music into a separate library. I've seen this concept in accounting programs, where you create new companys in order to store and track separate information. Any suggestions? I am currently using iTunes 5.0

    Cherrie:
    Try iTunes Library Manager. It's not free, but it does work.
    Lita

  • How do I set up two libraries on one pc so that we have two separate libraries for each iPhone?

    How do I set up two libraries on one pc so that we have two separate libraries for each iPhone?

    Launch it with the Shift key held down, or create a second Windows user account.
    (60390)

  • Multiple iPods with different libraries for each?

    Hi all, how do I set up iTunes so that I can sync up different iTunes libraries with different iPods? I have two iPods with different music on each and want to keep the libraries separate. (One is from an older computer.) The only option I see when plugging in the older iPod is "do you want to rease this iPod and sync with this iTunes library?" Yikes, no.
    I'm using iTunes 9.
    thanks,
    Scott

    It seems that you would just create your two separate libraries for the two iPods, library A for iPod A and B for B. Then, either don't connect iPod A to the computer when you have library B open or vice versa, but if you do, just select not to sync when the prompt appears.
    Alternatively, elect to manually manage the iPods.

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How do i restore missing files for i work 09 as it is asking me to reinstall but cant find the disk?

    how do i restore missing files for i work 09 as it is asking me to reinstall but cant find the disk?

    Hello Jessica472,
    It sounds like you need to recover some missing files but do not have access to the iWork '09 disc you used to install it. If you have a Time Machine backup and know what files you need, you can use the "Restoring specific files or folders" section of the following article to restore them:
    Mac Basics: Time Machine backs up your Mac
    If you do not have Time Machine, you will need the disc to reinstall the software suite.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

Maybe you are looking for