HTML - Mobile XML

Hi,
We know that in HTML we can give an <input type="text"> with out a form element. I'am trying to achieve the same in mobile xml.
<SimpleForm>
<SimpleFormItem type="text" size="20" name="abc" value="this is mxml" />
</SimpleForm>
this would display a textfield with "this is mxml" typed into it, and a submit button is also rendered. This is because when a form is rendered a submit button is also rendered.
Now i want a textfield WITHOUT a submit button.
Removing the <SimpleForm> tag does not help as it does not render anyhting at all in that case!!
Any information will be useful..there is hardly any documentation on this...

I'm curious, though, what is the best database to use for efficiency and speed: mysql, xml, or html?
mySQL by far.  Databases are always faster than data sources because the XML and/or HTML has to be parsed with javascript before they are displayed.
When the app is completed, I expect to have about 6 small spry datasets of 100-200 pieces of data or maybe only one dataset of 1000 -1500 pieces of data.
The 100-200 is not bad.  The 1000-1500 couple be a little worse.  Typically at that point you would be better handling things with a database vs. Spry just for load times and for usability reasons.  You say this is for mobile, but how many people will sift through 1000+ records on a mobile phone?  I know I wouldn't.
*Adobe, if you monitor these forums, why not add a mobile selection to spry datasets for lists?
Adobe does not monitor these forums often.  They are for user-to-user support.  If you wish to make a feature request go here:
https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • HTML and XML files open in same window(KM Navigation iView)

    Hi All,
    I have created a KM navigation which is pointing the folder inside the documents repository. This folder contains HTML and XML files. It is rendering fine. But, when I click on the file links in KM Navigation iView, it is opening in new window.Here I need to open in same window. How can I acheive this?. Please help me.
    Thanks & Regards,
    Venkatesh R

    Hi ,
    check the below thread and try options mentioned in it
    https://www.sdn.sap.com/irj/sdn/thread?threadID=72594
    Koti Reddy

  • Export pdf to html/txt/xml

    Hi,
    I downloaded "adobe acrobat x pro" for trying the "save as"/export functionality to xml/htm/text etc. and the result was exactly what I was looking for in terms of output, keeping formatting etc.
    However, I am building an application which need to have an embeded library in order to do pdf to html/txt/xml conversion on the fly keeping formatting.
    I have tried a number of libraries for pdf to html/txt/xml conversion an none of them deliver anything near what adobe acrobat x pro does in terms om keeping format/tables etc.
    So, my question is how can I get access to the "save as"/export functionality in adobe acrobat x pro in any official adobe library, sdk, service, product etc. since I assume acrobat x pro does not expose any api for convert functionality or may be used serverside?
    Best regards,
    Rick

    It sounds like you want to use Acrobat as a web service. Rather than pursue this route, you may want to note that such a use of Acrobat is not permitted under the license. Thus it may not worth pursuing. Why convert to HTML is a possible question anyway, at least on a regular basis? On occasions I can understand the need.
    For programmable features you should probably check in the SDK forum.

  • HTML to XML Conversion ?

    Developed a content presentation java servlet implmenting xmlparser2.jar classes, works well. We're storing content (in XML) format as blob, then using parser we are able to do the transformation of the xml file to HTML for presentation.
    stream = null;
    String result = null;
    URL URLStream = new URL(xmlIn);
    ByteArrayOutputStream xbaos = new ByteArrayOutputStream();
    if(mStylesheet.startsWith("http"))
    stream = getURLInputStream(mStylesheet);
    else
    stream = new FileInputStream(mStylesheet);
    XSLProcessor processor = new XSLProcessor();
    DOMParser parser = new DOMParser();
    parser.setValidationMode(false);
    parser.setPreserveWhitespace(true);
    parser.parse(in);
    xdoc = parser.getDocument();
    XSLStylesheet xss = new XSLStylesheet(stream, URLStream);
    processor.processXSL(xss, xdoc, xbaos);
    result = xbaos.toString();
    parser.reset();
    return result; -- HTML conversion
    We are evaluating using xslt to convert the XML to a form based medium for content maintenance. Wondering if once a XML document is parsed to HTML (DOM) can it be parsed back to XML for subsequent update to stored value in blob column. Specifically interested in conversion (parser) from HTML to XML
    Simply can HTML (in DOM format validated against a xsd) be transformed back to XML ?

    Do you know of a method in the xdk that takes a well formed HTML doc and using xsd / xslt convert back to original xml spec?
    Because you created (and as long as you create) the HTML from XML it will be well formed (every tag will be ended with an end-tag) and you can therefore transform it back into XML.
    Most times it will not be possible to convert HTML found on the 'internet' into XML because this HTML is not well formed. For example, many people forget to end a paragraph of text within HTML with the </p> tag.
    We are evaluating using xslt to convert the XML to a form based medium for content maintenance. Wondering if once a XML document is parsed to HTML (DOM) can it be parsed back to XML for subsequent update to stored value in blob column. Specifically interested in conversion (parser) from HTML to XML
    Simply can HTML (in DOM format validated against a xsd) be transformed back to XML ?

  • HTML to XML converter

    please who knows where one can download a java HTML-to-XML converter class where all that is needed is to supply any http link and it will output XML to the outputstream or whatever
    thanks

    You must realize that there is no possible way all valid HTML can be made into valid (well-formed) XML - right?
    html can have over lapping tags (not real tags here, but you'll see):
    <tag1>
    <tag2>
    <tag1>
    <tag2>
    That's valid html, but totally invalid xml (xml doesn't let you overlap tags).
    If you're using XHTML, then your html is already xml.
    If you're going from XML to HTML, then you can use XSTL; but it won't work in the other direction.

  • BPELConsole: Initiate does not show HTML or XML form to fill in variables

    Hi,
    i am using a xsd with a cascaded import of other xsds.
    If i use one import layer everything is fine.
    But if i use something like:
    1.xsd (imports 2.xsd)
    2.xsd (imports 3.xsd)
    The BPELConsole refuses to show me a HTML or XML form where i can fill in the variables...

    Hi,
    For time being create one dummy process with request and response as a string type and call your process with the [xml]string input by creating partnerlink.
    Generate xml from the schema with xml generator tools.
    or use java api to invoke the process.
    Regards,
    Bogi

  • Change html to xml

    hello everybody im just a novce here very new to jsp and xml. Could someone teach how to make html to xml. Actually html is to display mysql data but I want it on xml could somebn\ody help here is the code this is a jsp file.
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.Date" %>
    <%
         Connection conn = null;
         Statement stmt = null;
         ResultSet rset = null;
         String SQLCOM = "";
         Class.forName("org.gjt.mm.mysql.Driver").newInstance();
         conn=DriverManager.getConnection("jdbc:mysql://localhost/test1");
         stmt = conn.createStatement();
    %>
    <html>
    <body>
    <hr>
    <%
         SQLCOM =     "select "+
                        "id_ctry, "+
                        "name "+
                        "from countries "+
                        "order by name ";
         rset = stmt.executeQuery(SQLCOM);
         while( rset.next() ) { %>
              <%= rset.getString("id_ctry") %>,
              <%= rset.getString("name") %><br>
    <%     }
         conn.close();
    %>
    <hr>
    </body>
    </html>

    Hello ABAP_SAP_ABAP ,
                                          Youneed to select the option "generate template data " and then on the displaying template there you will see the option for editing in the top left corner toolbar.
    Then after editing you can do a XMl syntax check and test your proxy.
    Hope this helps.
    Thanks,
    Greetson

  • Mobile XML transformation with MS or Java parser

    Dear all,
    I would like to set up an easy development environment for Mobile XML. For this reason, I would like to use a text editor (like emacs or notepad), and apply the Oracle 9iAS Wireless stylesheet (XSL file) to the Mobile XML with Internet Explorer parser.
    This works fine for a such file :
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <?xml-stylesheet type="text/xsl" href="TINY_HTML.xsl"?>
    <SimpleResult>
         <SimpleContainer>
         </SimpleContainer>
    </SimpleResult>
    but does not work for the following one :
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <?xml-stylesheet type="text/xsl" href="TINY_HTML.xsl"?>
    <SimpleResult>
         <SimpleContainer>
              <SimpleMenu>
                   <SimpleTitle>TP 9iAS Wireless</SimpleTitle>
              </SimpleMenu>
         </SimpleContainer>
    </SimpleResult>
    I have tried different XML/XSL parsers (MS, Java, XML Spy,...) but I got each time the same error message : "XSL parser stack overflow".
    Does anyone know a solution for this problem ?
    Thanks !
    Fabrice.

    I am not sure what the issue is, however within the next week or so, we will be offering an SDK on OTN with a small footprint (30MB) dev environment for Oracle9iAS Wireless. You will be able to use any IDE or text editor you wish.

  • Converting PDF Files to Html or Xml

    how can i tranfrom the pdf file to html or xml using Acrobat's API? The software already have the function(http://tv.adobe.com/watch/learn-acrobat-x/converting-pdf-files-to-other-file-formats/). In C# ,I can use the acrobat's dll open the pdf file  and  can invoke the  MenuItem SaveAs;
    like this:
                AcroApp.Show();
                AcroAVDoc.Open(@"D:\xpdf\a.pdf","aaaa");
                AcroApp.MenuItemExecute("SaveAs");
                AcroApp.CloseAllDocs();
                AcroApp.Exit();
    But this is not automatic.

    Try the forum for Acrobat SDK.

  • How to convert HTML into XML

    I know I can parse XML into some HTML, but is there any tools or methods existed to parse HTML into XML?
    I have a not well-formed HTML with a lot data fields, including a lot not closed tags. This HTML is generated by some XML(as I can see), but I can't find a way to reform it into a XML, and eventually stored the data into another database.
    Anyone can help me? I appreciate!
    KIB

    As SAm has told you, you can use jTidy, for the purpose, a sample code , which can convert an html file to xml file is given at following url:
    see the documentation as well.
    http://sourceforge.net/docman/display_doc.php?docid=1298&group_id=13153
    gaurav_k1

  • How do I generate HTML from XML & XSL using XSL Processor ?

    I want to generate a HTML from XML & XSL using XDK for C on
    linux-8i.
    I run the XSLSample well.
    But it only generate a XML from a XML & a XSL.
    Can any one give me some advise or sample code?

    Just use HTML tags instead of xml tags in your stylesheet, and
    you'll generate HTML instead.
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="/">
        <html>
          <body>
            <xsl:for-each select="ROWSET">
              <table border="1" cellspacing="0">
                <xsl:for-each select="ROW">
                  <tr>
                    <td><xsl:value-of select="EMPNO"/></td>
                    <td><xsl:value-of select="ENAME"/></td>
                  </tr>
                </xsl:for-each>
              </table>
            </xsl:for-each>
          </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>

  • Read datas from HTML or XML file in LabView

    Hi all,
    I need help in the following. I need to read the measurement results from test report into LabView. Test report format is HTML or XML. Please give me some advice on how to do this?
    Thank you.
    Mik

    A quick search through the forums will point you to this thread which has some excellent advice and a effecient parser vi
    Jeff

  • Is it possible to convert HTML to XML in as2?

    Hi,
    I am trying to develop a stock widget to use in my mobile using flashlite 2.x.
    I have chosen "http://charting.nasdaq.com" to obtain 5days chart /6months chart..
    But I am not able to use XML object for this and parse.. The values are in table format.. So I have to use LoadVars.. but writing a AS2 code
    to obtain values like High/Low price of the stock or volume is very lengthy since the data obtained are not in XML format..
    i tried this
    var example_xml:LoadVars = new LoadVars();
    example.ignoreWhite = true;
    example_xml.load("http://charting.nasdaq.com/ext/charts.dll?2-1-14-0-0-75-03NA000000www-&SF:4|5-WD=539-HT=39 5--XTBL-");
    example_xml.onLoad = function(success) {
         if (success == true) {
              trace(example_xml);
    Is it possible to convert them to xml and use relevent methods or xml properties?
    If I use example_xml:XML = new XML() then tracing example_xml (as above) doesn't give any data
    Any help?

    I had a project a few years ago where I converted 10s of thousands of TestStand HTML files from TS 1.0 and 3.0.
    Most of what I did is specific to our internal data structures, but I'll try to help get you started.
    The general idea is to pick out the report header and data sections from each file, then eliminate the HTML formatting.
    The attached file will extract the Report Header and data sections.
    To use this, you will need to download this additional VI that I posted here in the regex board a few years ago.
    http://forums.ni.com/t5/BreakPoint/Regular-Expressions-Board/m-p/1269088#M14343
    Here is one more file that will parse out each data record and dtermine it's Name, status, type value, limits and duration/timestamp info
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness
    Attachments:
    Parse TestStand HTML.vi ‏42 KB
    Parse TestStand HTML Data Section.vi ‏55 KB

  • ADF Mobile - XML Parsing

    Previously I posted on calling a remote webservice - Calling remote service using ADF Mobile and I get my weather application working already.
    The webservice returned me a string which is a XML form. I want to parse the XML to make it easy-read.
    The currently output from the webservice (http://www.webservicex.com/globalweather.asmx) is as below.
    *<string><NewDataSet>*
    *<Table>*
    *<Country>Singapore</Country>*
    *<City>Singapore / Paya Lebar</City>*
    *</Table>*
    *<Table>*
    *<Country>Singapore</Country>*
    *<City>Singapore / Changi Airport</City>*
    *</Table>*
    *</NewDataSet></string>*
    How do I parse this output so I can display the string properly in mobile?
    Singapore / Paya Lebar
    Singapore / Changi Airport
    Any direction on how to do this? Or is there any built-in function inside JDeveloper?

    Try to go to this link - http://www.webservicex.com/globalweather.asmx?op=GetCitiesByCountry and use Singapore as CountryName or any country you prefer
    The output is a string
    +<string></string>
    -<string>
    <NewDataSet>
    <Table>
    <Country>Singapore</Country>
    <City>Singapore / Paya Lebar</City>
    </Table>
    <Table>
    <Country>Singapore</Country>
    <City>Singapore / Changi Airport</City>
    </Table>
    </NewDataSet>
    </string>
    The tutorial for ADF Mobile from Oracle website is able to drag the output from data control - return -> value/class. But this webservice only return a single value of string. How do I change it to display properly in ADF Mobile?

  • How to include HTML in XML for OMNIPORTLET

    I have an OMNIPORTLET where I need to display a list of names along with a link to a story if they have a story.
    The goal is to list that NAME and if they have a story then show a (STORY) with a link under the STORY, and then for those names that do not have stories nothing would show for the second column.
    example below:
    ACME Rockets
    ACME Skis ( [Success Story|http://www.oracle.com])
    ACME Sleds
    The feed works correctly in displaying the names, but I need some guidance on how to handle displaying the Story link.
    In the XML file I have a tag for REFERENCE_URL and then within that tag is the &lt;a href="..."&gt; coding using *&lgt;* type escape characters to insure the HTML comes across embedded in the case where there is a Reference story. Also, when there is not a story, then the tag is left blank.
    The file looks fine when I check it out, but then when I include it in the OMNIPORTLET and run the Test button on the first page of the portlet configuration, all of the ampersands in front of the less than and greater than escape characters show that they are turned into having an extra ampersand in front of them.
    In the OMNIPORTLET I am using:
    * an HTML View
    * in the Layout in the Repeating Section with in the table column I display the ##COMPANY_NAME## and then the ##REFERENCE_URL## expecting to have the Reference URL push out a live HTML anchor and link.
    What happens is that I get a text display of the anchor instead of it coming out in HTML code to actually be an anchor.
    i.e.: ACME Systems &lt;a href="http://www.oracle.com/examplelink.pdf" target="_blank"&gt;Success Story&lt;/a&gt;
    Any guidance on what I should change or another method to handle what I am needing to do?
    Thanks,
    Stephen
    Edited by: slsmith on Feb 5, 2010 2:27 PM

    The define the "should not alter part" as CDATA?
    http://www.w3schools.com/XML/xml_cdata.asp

Maybe you are looking for