How do u include relevant api's in build.xml when using Ant ?

I am attempting to move from using KToolbar to using Ant to build my midlets.
I have succesfully built a simple midlet but need to know how to modify the build.xml file to include specific api's my application may use such as:
WMA, J2ME Web Services, MMAPI, or specific phone api's like Nokia.
Can anyone help?

You need to specify the wtk.midpapi so that it points to the classes you need:
<property name="wtk.home" value="[fill in the path to the appropiate SDK's class library]]"/>shmoove

Similar Messages

  • How can I get audio to play from my TV when using hdmi cable?  Video looks great, just no sound.

    How can I get audio to play from my TV when using hdmi cable?  Video looks great, just no sound.
    I've tried plugging the hdmi into the TV directly and the receiver.
    I get video every time.  HBO to Go , Xfinity, ABC, Youtube, etc...
    just no audio.  Any suggestions? 
    I've tried starting the apps then plugging in the hdmi cable.
    I never tried this before I upgraded to IOS 5.

    Claudiamil-
    I had not tried it with mine since upgrading to iOS 5, so I just did.  I'm using a small Vizio HDTV.  I did not try YouTube, but did try several videos and musical numbers.  In all cases there was sound, including stereo when the source had it.
    I assume you are getting sound from the iPad when the adapter is not connected, so the volume is not turned down.  Dah*veed's suggestion to reset may be what you need.
    Fred

  • How can I specify SMTP Email Server userID and password when using Email VIs?

    How can I specify SMTP Email Server userID and password when using Email VIs included in Internet Toolkit?

    Hi,
    A similar question was posted on Discussion Forums soem time back. Please see the link below.
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C7B00000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    You would find the last post in the above thread quite useful where it has a link to OpenG code. I am also copying that link for your reference.
    http://www.openg.org/tiki/tiki-index.php?page=OpenG+Internet+Connectivity+Tools
    Please feel free to respond to this post with any questions/comments you may have.
    Regards,
    Ankita A.
    National Instruments

  • How do I connect a camera to my macbook pro when using the computer with an external monitor in clamshell mode?

    How do I connect a camera to the Macbook Pro when using the computer in clamshell mode with an exrternal monitor?

    same as it ever was
    do it like nothing is different.
    be sure to have an external trackpad keyboard or mouse as you will loose them on the computer once it is closed.

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • Please help. my address bar has vanished. i have no idea how to retrieve it, so can only access bookmarked sites when using firefox.

    please help. my address bar has vanished. i have no idea how to retrieve it, so can only access bookmarked sites when using firefox.

    Make sure that you do not run Firefox in Full Screen mode with all toolbars hidden.
    * Press F11 to toggle full screen mode (Firefox/File > Full Screen)
    If the menu bar is hidden then press the F10 key or hold down the Alt key, that should make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout" (Linux, Windows)
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization

  • How do I know if my I pad is secure when using the Internet.

    How do I know if my I pad is secure when using the Internet?

    Pretty much the same way you'd know with any other device. Are you using cellular data? It's pretty secure. Are you using WiFi? If so, is it public, unsecured wifi? Or private WiFi with a password? If you're doing any type of sensitive transactions, are you checking to make sure that the website is secure by checking to see that the address begins with https not just http? Are you making sure you're typing in address for banks and financial institutions rather than clicking on links in email?

  • How do you include the actual CLOB value as ASCII when writing XML?

    When using the XDK for PL/SQL ( creating XML from query ) and the table that you query has a CLOB column the value in the resulting XML document is
    written as:
    <column>(CLOB)</column>
    how do you get the api to write the actual CLOB data?

    That article is talking about choosing HOW to STORE an XML document.
    I want to know how to write the contents of a CLOB column along with the other columns in a table in a single XML document.
    I know how to store an XML doc as a clob I know how to store an XML doc object relationally.
    I I have a table with 5 varchar2 columns 5 number columns and 1 clob column and I create an xml document as a clob from a select * on that table. I then write that clob to the file system. What is the clob columns data going to look like?
    its gonna be <column>(CLOB)</column> THATS NOT WHAT I WANT. I want the actual data that was in that CLOB column.
    Thank you for all responses.

  • How to force simple tags and null attributes to appear when using SQL/XML?

    Hello everybody:
    I'm developing a non-schema based XMLType view.
    When the XML document is generated, i noticed two things I need to manage in order to achieve the desired result:
    1. Oracle generates a <tag></tag> pair for each XMLELEMENT defined; in my case, some tags need to appear as <tag/>... how do I do? Is it possible when using schema based XMLType views? Is it possible while using a non-schema approach?
    2. When using XMLATTRIBUTE('' AS "attribute") or XMLATTRIBUTE(NULL AS "attribute"), no one attribute with label "attribute" and null value appears at the output; how do I force to Oracle DB to render those attributes which are with no values (needed to render those attributes as another parsing code will await for all the items)?
    3. Some tip about how to route the output to an XML text disk file will be appreciated.
    Thanks in advance.
    Edited by: Enyix on 26/02/2012 11:21 PM
    Edited by: Enyix on 26/02/2012 11:22 PM

    Hello odie_63, thanks for your reply:
    Reasons why needed single tags are these two next: Needed to generate a single XML file from 50,000,000 rows, where the XML ouput matches not only row data but another default values for another elements and attributes (not from database but using strings and types with default values); by using start and end tag, the generated file is as much twice bigger than using single tags; second, needed a very precise presentation for all the document.
    For generating that document, currently focus is based on using a batch process relying on Spring Batch with using a single JDBC query where a join happens between two tables. From my point of view, that approach uses: database resources, network resources, disk resources, and processing resources, including the price of making the join, sending to network, creating objects, validating, and making the file (Expending too much time generating that XML file). That processs currently is in development.
    I think possibly another approach is delegating the complete generation of that file to the database using its XML capabilities. My current approach following your recomendations is to generate a clob where I will put all the XML and putting it into a table. It leads me to another issues: Considering limitations on memory, processing and disk space, needed to append a single row-as-xml into the clob as soon as possible, and putting the clob inside the field as soon as possible, or putting the clob inside the field, and appending into it as the data is generated; so How do I manage the process in order to achieve that goals?. Seen these issues aren't related to my original question, so I'll open a new post. Any help will be apreciated.
    Thanks again in advance.

  • How can I save a reply email to drafts folder when using hotmail on my ipad2 with safari ??

    It appears that the iPad mail app cannot push drafts so I can access them on a pc.     If there is a way to do this, I would like to know
    If the above is not possible, I'd like to know how to save a reply email to the drafts folder when accessing hotmail on my iPad from safari.   I can't seem to find a button on the hotmail pag, or any help instructions anywhere.     I hav done this for years using a pc with Firefox or explorer with no problem.  This has to be so easy that it will seem like I asked q stupid Ustinov when I get the answer!

    I am still waiting for an answer.    If you don't know the answer, but know who to ask or where to look to find an answer, I'd really appreciate it.

  • How can I keep my signature on the left side when using rtl on mail application

    I'm writing in Hebrew & English on apple Mail application on OS X /mountain Lion.
    When I'm starting to write a mail in HEBREW it's automatically move the signature to the right side which I don't like it because my signature is in English (My Hebrew is a why better from my English ; )
    How can I keep the signature on the left side as default?
    Hope to get your support in this issue.
    Thanks in advance,
    Joni.

    Joni11 wrote:
    How could i do this?
    Sorry, I don't know.  But have you already tried selecting your sig and using the usual alignment tools?  It seems to work for me when used in the new message pane.

  • How to search for a particular element within a XML variable using studio?

    All,
    I am using studio 7.0 to develop a webbased application. In this, i need to access
    an oracle db using a WLAI Application View from my Workflow. I get some data back
    from Oracle as an XML variable and then apply an XPath statement to access the
    individual columns returned.
    My problem arises when there are no records in the db matching my criteria and
    an empty XML variable is returned to me from the app view. In these cases my
    XPath statement fails in studio causing an improper exit.
    Does anybody know how to check for content in a XML varaible using studio? So
    that if there is content i can proceed with XPath and if there is no content,
    then i will take a different route.
    Thanks in advance
    Regards
    Sri

    If I remember correctly, the adapter will return an XML document that contains
    XML elements for each row. You can just simply check the count of these elements
    with an XPath statement: ie. count(response/row)
    "Sri " <[email protected]> wrote:
    >
    All,
    I am using studio 7.0 to develop a webbased application. In this, i need
    to access
    an oracle db using a WLAI Application View from my Workflow. I get some
    data back
    from Oracle as an XML variable and then apply an XPath statement to access
    the
    individual columns returned.
    My problem arises when there are no records in the db matching my criteria
    and
    an empty XML variable is returned to me from the app view. In these
    cases my
    XPath statement fails in studio causing an improper exit.
    Does anybody know how to check for content in a XML varaible using studio?
    So
    that if there is content i can proceed with XPath and if there is no
    content,
    then i will take a different route.
    Thanks in advance
    Regards
    Sri

  • TS4268 How do I get facebook to say "posted from IPhone" when using my IPhone?

    When posting anything on facebook from my Iphone 4s. it tags as "posted from Mobile" how can I get it to say posted from Iphone. and yes I  downloaded the facebook app from the app store and when using the app it still says from posted from mobile. it would be nice to know that i spent alot of money for this phone, the least it can do is let my facebook friends know that i dont just have a mobile phone but an Iphone. Please HELP.

    This has nothing to do with Apple or the iphone.
    this is on the facebook developer, the posted from iphone was been removed a long time ago.  It now say IOS or mobile.
    If you don't like it I suggested you email the facebook app develper.

  • Ant: How to execute / skip tasks by property in build.xml ?

    Hi,
    I want to create a build.xml to execute / skip tasks dynamically by property in build.xml.
    eg: I can define one property "needObfuscate" in either "true" or "false". I will contruct 2 tasks for obfuscate and non-obfuscate to fullfill the 2 cases. Only one of them WILL be executed depend on the flag "needObfuscate".
    ** I know Antenna's task "wtkpackage" has an arguement "obfuscate" to set. It's an example, what I want to know is how to execute / skip the tasks.
    Task "condition" is just used to set the property in runtime.
    <condition property="result" value="User choose 001.">
    <equals arg1="001" arg2="${select}"/>
    </condition>
    There is other tasks can fullfill what I expect ?
    Please guide me how to make it.
    Thanks.

    Hi,
    I've done one build.xml like below:
    <?xml version="1.0"?>
    <project name="PropertyPromptExample" default="main" basedir=".">
    <target name="windowsTask">
    <echo>windowsTask</echo>
    </target>
    <target name="linuxTask">
    <echo>linuxTask</echo>
    </target>
    <target name="main">
    <input message="Please enter platform(0 Windows, 1 Linux):" addproperty="select"/>
    <condition property="platform" value="windowsTask">
    <equals arg1="0" arg2="${select}"/>
    </condition>
    <condition property="platform" value="linuxTask">
    <equals arg1="1" arg2="${select}"/>
    </condition>
    <antcall target="${platform}"/>
    </target>
    </project>
    :)

  • How can I enable self capitalization of the pronoun "I" when using my Mac Pro?

    I'm trying to see how to enable self-capitalization for the pronoun "I".  This would be helpful when starting a sentence and/or when using the pronoun within a sentence. I tried system preferences and substitutions, but that will only work with words that have more than one character.  HELP!!! Thanks!

    Go to System Preferences>Keyboard>Text. Click the "+" sign on the lower left part of the screen. Add the auto correction so when you press "i", the OS automatically changes it to "I".

Maybe you are looking for

  • F110 Run APP Error in creating payment document, read job log

    We are having 2 Bank Accounts ie from SBI and ICICI Bank. While making the Automatic payment run we are getting an error. where in i have checked all the configuration for it in Vendor Master, FBZP, House Banks, While maintaining the F110 Variant Che

  • Ctx_ddl.sync_index

    The sql below synchronizes all the pending context: set echo off set heading off set feedback off set pagesize 50000 spool c:\sync.sql select distinct 'exec ctx_ddl.sync_index(''' || PND_INDEX_OWNER || '.' || PND_INDEX_NAME || ''')' from ctx_pending;

  • Crystal report extremely slow after converting to SQL connection

    We have a VB application developed in Visual Studio 2005 that references: CrystalDecisions.CrystalReports.Engine v. 12.0.2000.0 CrystalDecisions.Enterprise.Framework v. 12.0.1100.0 CrystalDecisions.Enterprise.InfoStore v. 12.0.1100.0 CrystalDecisions

  • Anyone use the Line6 KB37 with Logic?

    I've been planning to get a new interface and was going to go with the Apogee Duet, but then discovered the Line6 KB37. Can anyone here that has it comment on it? How are the mic pres? Is it pretty stable? How is the latency? Feedback appreciated. Th

  • JDBC Sender Channel problem. Pls help

    Hi, In JDBC Sender Channel in Connectiion String I am giving value jdbc:oracle:thin:@cscappnoi022.asiapac.globalcsc.net:1527:IS1 where cscappnoi022.asiapac.globalcsc.net---is where Oracle server is installed 1527 --- is my Port IS1 is my system SID