Javascript declaration in jspX files

Hello,
I have a problem with <script> tag in the jspX file.
When I include this declaration <script language="JavaScript" type="text/javascript" src="javascript/file.js"></script>  or <script ..../> in the jspx file (playing the role of a JSF page) the result is an uncorrect page. Only some parts are correctly rendered.
But when I do the same in classic JSP page, everything is correct.
Thank you for any response.

I use it this way:
<?xml version="1.0" encoding="utf-8"?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
          xmlns:c="http://java.sun.com/jsp/jstl/core"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html">
<jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
            doctype-system="http://www.w3.org/TR/html4/loose.dtd"
            doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
<jsp:directive.page contentType="text/html;charset=utf-8"/>
<f:loadBundle basename="package.labels" var="labels"/>
<f:view>
<html>
<head>
  <title>PAGE</title>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <meta http-equiv="Content-Language" content="cs" />
  <link rel="SHORTCUT ICON" href="images/icon.gif"/>
  <link href="style/style.css" rel="stylesheet" type="text/css" />
  <script language="JavaScript" type="text/javascript" src="javascript/script.js"></script>
</head>
<body>
.but it doesn't work in body neither.
I use JSF 1.2.

Similar Messages

  • How can i find the no.of components in a jspx File

    Hi,
    I need to find the no.of InptuText components in a jspx file by using ADF concept whether it is adf javascript/backing bean concept.
    not by looping the components from root to till end of the page.
    Reg,
    Brahma.

    Thanks for u r imm reply, in script i can provide the AdfRichInputText. is there any possibility to findno.of RichInputText by providing AdfRichInputText in javascript.
    reg,
    Brahma

  • .jspx file with CDATA

    In my .jspx file, I have:
              <script type="text/javascript" language="JavaScript">
              // <![CDATA[
    (JavaScript code)
              // ]]>
              </script>However, the CDATA tags get stripped in the markup that gets rendered to the browser. How do I get the CDATA tags to render?

    The cdata must be double escaped:
    <script type="text/javascript">
    //<![CDATA[
    //<![CDATA[
        if(a && !b) alert("foo!");
    //]]>
    //]]& gt;
    </script>Without the space between & and gt;
    -- but it seems the forum can't handle that.

  • Not able to load jspx file from the classpath in Integrated OC4J

    Hi,
    I am using integrated OC4J from my jdeveloper to deploy my application as an ear file. It contains one jar file (with ejb deployment desscriptors) and a war file (including Model and Viewcontroller project contents).
    The war file contails a jspx file (say Test.jspx) which contails a link to another jspx file (say Remote.jspx) which resides in its WEB-INF/lib directory.
    When I load Test.jspx and click on the link, it fails to look for the Remote.jspx. It displays a message "OracleJSP error: java.io.FileNotFoundException:" on the web browser.
    From the message written to log file, found that it is actually trying to search for Remote.jspx file in the current context.
    Also tried including the classpath to the jar file containing the Remote.jspx file in orion-web.xml of the web application. using the following:
    <classpath path="file:/xxx/yyy.jar" />
    The issue is still there even after this.
    Can anyone suggest me how to achieve this?
    Thanks,
    Aparna

    this.getCodeBase(), would get RSPL / RLog or whatever you have in your codebase (html parameter of
    the OBJECT/APPLET(:hope not) tag.
    URL u = new URL(this.getCodeBase(), "../something.jpg");
    would get RSPL/something.jpg
    URL u = new URL(this.getCodeBase(), "../VIRA/JPG/00/1.jpg");
    would get RSPL / VIRA / JPG / 00 / 1.jpg
    If you are not sure what your codebase is your can print it out:
    System.out.println(this.getCodeBase().toString());

  • Sql in jspx file

    In my jspx file .....iam using JSTL package for exceuting sql query in jsf page....
    but it could not run here i mentioned my code ..whats is mistakes in my code
    <sql:setDataSource
    driver="sun.jdbc.odbc.JdbcOdbcDriver"
    url="jdbc:odbc:dsn4"
    user="xyz"
    password="zyz"/>
    <sql:query var="employees">
    SELECT * FROM ggggg
    </sql:query>
    <c:forEach var="row" items="#{employees.rows}">
    <af:outputText value="#{row.Currcode}" />
    </c:forEach>
    i tried this one also
    c:forEach var="row" items="${employees.rows}">
    <af:outputText value="${row.Currcode}" />
    </c:forEach>
    but still i getting error
    Thanks in advance
    Message was edited by:
    user611389

    my jspx file .....iam using JSTL package for exceuting sql query in jsf page....
    but it could not run here i mentioned my code ..whats is mistakes in my code
    <sql:setDataSource
    driver="sun.jdbc.odbc.JdbcOdbcDriver"
    url="jdbc:odbc:dsn4"
    user="xyz"
    password="zyz"/>
    <sql:query var="employees">
    SELECT * FROM ggggg
    </sql:query>
    <c:forEach var="row" items="#{employees.rows}">
    <af:outputText value="#{row.Currcode}" />
    </c:forEach>
    i already imported the jstl package in name space ,
    when i run this page in jdeveloerits showing error is
    Error: Expression Language not supported in compile time attribute items

  • JavaScript To Save A File In Adobe 8?

    Can anyone show me a sample JavaScript to save a file in Adobe 8?
    I tried using "Execute a menu item
    File>Save"
    but it doesn't seem to work in adobe 8.

    Adobe does not consider this a 'safe' menu item and has removed from the list of menu items that can be executed. There is more information available in Acrobat JS API Reference.

  • Javascript to upload a file to SharePoint 2010 document library

    Please share your ideas. I am using SharePoint 2010. Currently when uploading files to a document library, first the upload form is opening to upload the document and then the edit form. I would like to have both this in the same form. I am trying to
    create a webpart page with the controls to upload the file to document library and assign values to the fields in the library. I am looking for some javascript for doing this. Is there any other way of achieving this? Please share any sample
    code.
    <label for="title">Enter the title for this document:</label> <input type="text" id="title"><br/><br/>
    <input id="inputFile" type="file"/><br/><br/>
    <input id="uploadDocumentButton" onclick="UploadDocument()" type="button" value="Upload Document"/><script type="text/javascript">
            function UploadDocument() {
                //javascript to upload the file to MyLibrary and update the title field
    </script>

    Use the below code step by step :) 
    (1) Html
      <input type="file" id="attafh"  class="AlltextAccount"  />
          <input type="button" value="upload" onclick="rundCode()" />
    (2) JS File 
    function rundCode() {
        var file = document.getElementById('attafh').files[0];
        if (file) {
            UploadMe(file);
    (3) 
    function UploadMe(readFile) {
        var reader = new FileReader();
        reader.readAsArrayBuffer(readFile); //array buffer
        reader.onprogress = updateProgress;
        reader.onload = loaded;
        reader.onerror = errorHandler;
    (4)
    function loaded(evt) {
        var fileString = evt.target.result;
        var X = _arrayBufferToBase64(fileString); // this is the mothod to convert Buffer array to Binary
            var fileInput = document.getElementById('attafh');
            var fileDisplayArea = document.getElementById('fileDisplayArea');
                var file = fileInput.values;
                 var filePath = $('#attafh').val(); // "c:\\test.pdf";
            var file = filePath.match(/\\([^\\]+)$/)[1];
            var soapEnv =
                "<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'> \
                    <soap:Body>\
                        <CopyIntoItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'>\
                            <SourceUrl>" + filePath + "</SourceUrl>\
                                <DestinationUrls>\
                                    <string>http://intranet/sites/English/DocumentLibrary/" + file + "</string>\
                                </DestinationUrls>\
                                <Fields>\
                                    <FieldInformation Type='Text' DisplayName='Title' InternalName='Title' Value='Test'  />\
                                      <FieldInformation Type='Text' DisplayName='BudgetId' InternalName='BudgetId' Value='8'  />\
                                </Fields>\
                            <Stream>" + X + "</Stream>\
                        </CopyIntoItems>\
                    </soap:Body>\
                </soap:Envelope>";
            $.ajax({
                url: "http://intranet/_vti_bin/copy.asmx",
                beforeSend: function (xhr) { xhr.setRequestHeader("SOAPAction", "http://schemas.microsoft.com/sharepoint/soap/CopyIntoItems"); },
                type: "POST",
                dataType: "xml",
                data: soapEnv,
                complete: processResult,
                contentType: "text/xml; charset=\"utf-8\""
        SP.SOD.executeOrDelayUntilScriptLoaded(initialize, 'SP.js');
        SP.SOD.executeOrDelayUntilScriptLoaded(test, 'SP.js');
    function errorHandler(evt) {
        if (evt.target.error.name == "NotReadableError") {
            // The file could not be read.
    function _arrayBufferToBase64(buffer) {
        var binary = ''
        var bytes = new Uint8Array(buffer)
        var len = bytes.byteLength;
        for (var i = 0; i < len; i++) {
            binary += String.fromCharCode(bytes[i])
        return window.btoa(binary);
    (5)
    function updateProgress(evt) {
    http://www.abdulazizfarooqi.wordpress.com Abdul Aziz Farooqi [BizTalk & SharePoint Consultant] MCPD Web & MCPD SharePoint 2010

  • How to declare ftp in File class. I want to display filename of file in FTP

    How to declare ftp in File class. I want to display filename of file in FTP server.
    I try
    File f2= new File("ftp://abc:abc1111@ABC/file");
                   String n[] = f2.list();
                   System.out.print(n[0]);
                   Vector filename = null ;
                   for (int i2 = 0; i2 < n.length; i2++) {
                        filename.add(n[i2]);
    but it is not work
    Thank you.

    You can use Jakarta's net-package to connect to a FTP server.
    Download it here:
    http://jakarta.apache.org/site/downloads/downloads_commons-net.cgi
    Here's a small demo:
    import org.apache.commons.net.ftp.*;
    public class FTPTest {
        private boolean isConnected;
        private FTPClient client;
        public FTPTest() {
            isConnected = false;
            connect();
        private void connect() {
            String server = "server.org";
            String username = "user";
            String password = "password";
            client = new FTPClient();
            try {
                client.connect(server);
                client.login(username, password);
                String[] files = client.listNames();
                for(int i = 0; i < files.length; i++) {
                    System.out.println(files);
    isConnected = true;
    disconnect();
    catch(Exception e) {
    e.printStackTrace();
    private void disconnect() {
    if(isConnected) {
    try {
    client.disconnect();
    isConnected = false;
    catch(Exception e) {
    e.printStackTrace();
    public static void main(String[] args) {
    new FTPTest();

  • [ADF-11.1.2.2] 404 error for shared libraries jspx file.

    Hi,
    I got 2 ADF application
    1. Base Application, in which I have BTF (Base-BTF.xml) with one Jspx file in it.
    2. Main Application, In which there is one BTF (Main-BTF.xml) with jsff pages, and I am calling Base-BTF of Base Application as a dialog.
    When I run the pages from Main Application that has a region to Main-BTF, I am able to see pages of main-app. But when I click on button to call Base-BTF, I get following error. But...
    1. If I create same scenario in base application, and call Base-BTF as a dialog, it works fine. (i.e. only one ADF application is involved)
    2. If I have Base-BTF2 with page fragments (jsff files) in Base Application. And If I call same from Main App BTF, it works fine and I can see base app jsff content (Note I haven't used open as dialog, as it is not applicable here).
    Note that Security is not enabled for both the applications. I am not sure, why the issue of 404 is coming for Jspx file when called from another application.
    Please let me know if I am doing anything wrong.
    javax.servlet.ServletException: ADF_FACES-60101:HTTP Error Status Code: 404."
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse._logException(XmlHttpServletResponse.java:140)
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse.sendError(XmlHttpServletResponse.java:106)
         at oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse.sendError(XmlHttpServletResponse.java:100)
         at javax.servlet.http.HttpServletResponseWrapper.sendError(HttpServletResponseWrapper.java:128)
         at com.sun.faces.application.ViewHandlerResponseWrapper.sendError(ViewHandlerResponseWrapper.java:82)
         at weblogic.servlet.FileServlet.findSource(FileServlet.java:269)
         at weblogic.servlet.FileServlet.doGetHeadPost(FileServlet.java:191)
         at weblogic.servlet.FileServlet.service(FileServlet.java:173)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:546)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at javax.faces.context.ExternalContextWrapper.dispatch(ExternalContextWrapper.java:93)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:167)
         at com.sun.faces.application.view.JspViewHandlingStrategy.executePageToBuildView(JspViewHandlingStrategy.java:363)
         at com.sun.faces.application.view.JspViewHandlingStrategy.buildView(JspViewHandlingStrategy.java:154)
         at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.buildView(ViewDeclarationLanguageFactoryImpl.java:341)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:987)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:339)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:237)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    it's a simple call to base-BTF task flow call from Main-BTF.xml
    call to base-BTF
    <control-flow-case id="__2">
            <from-outcome>viewuserdetail</from-outcome>
            <to-activity-id>Base-UserDetail-BTF</to-activity-id>
          </control-flow-case>and button on main page has action "viewuserdetail".

  • How to get the system time(hh:mm:ss) in jspx file itself.

    Hi I'm using jdeveloper 11.1.1.3.0.
    I am having one transient attribute in VO (data type is Timestamp and format is hh:mm:ss) and created the data control. Now I am drag and drop that attribute in one jspx file itself. if i run that page mean i need the current system time as a output. it ll automatically run in the output page(like digital clock - HH:MM:SS). how to implement this one plz help me sir.

    Hi john
    I got the output using the poll operation in the jspx file. But the mouse pointer is also updated(arrow mark and round alternatively). so how to stop the mouse pointer update.
    Regards
    Ragu

  • Javascript to Optimise a file at 150 and Retain/Embed all the fonts

    I need a Javascript to Optimise a file at 150 and retain and embed fonts.
    Any Help?
    Acrobat version 9.

    Ok, I can see the permission problem now:
    java.security.AccessControlException: access denied (java.io.FilePermission c:\myfile.txt read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkRead(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
    Edited by: user10047839 on 1-feb-2013 7.29
    signing the Jar and downloading the certificate permanently does not change anything in Firefox. The Java console keeps giving the above exception.
    Any idea?

  • Publish javascript to a separate file during CS4 publish

    While publishing my movies in CS4, I noticed that the javascript required to embed the movie in a web page was published as inline javascript in the published page. This means that code would be downloaded for each page my movie is on. Is it possible to configure Flash CS4 to publish that javascript to a separate .js file, instead of having to manually copy-paste that each time??
    If no, I believe that js is independent of the Flash movie (please correct me, if I am wrong). So, can I copy-paste that javascript to an external file just once, and use the js file for all my movies being published??

    You should be able to copy the js to a separate file and link the file in to each web page.

  • JDeveloper 11g breakpoints do not work in .jspx file.

    Hi, there is an issue with the JDeveloper 11g debugger, running an ADF application with embedded WL server (JSF version - Trinidad).
    It stops at the breakpoints in the .java file, but not in the .jspx files.
    Any suggestions on configurations to check....
    Currently:
    -Generate Debug info is checked,
    -precompile JSP is unchecked
    -server and application are being ran in debug mode
    Spent a lot of time already seeing similar posts but there is no meaningfull answer as to what configurations are responsible for the debugger.
    Please do not waist your time or mine advising to reboot pc or re-install Jdev ;-)
    Thank you

    Hi John,
    Thank you for your prompt response.
    Here is a sample code with the breakpoint.
    (breakpoint here)<tr:outputText value="Date of hire #{bk_editSalesRoleBean.salesRole.person.effective}">
    <f:convertDateTime pattern="#{res['date.format.readOnly.display']}"/>
    </tr:outputText>
    It's a source line type breakpoint and the execution should be halted at it. I wanted to review value in the pattern reference in the convertDateTime tag.
    Thanks,
    Taras

  • Can I use jsp in jspx file

    is it possible to write HTML and JSP in the JSPX file, I know some tricks using jsp and I don't have any idea how to implement them in jspx files

    you can use jsp:include tag.. or <af:declarativcomponent> tag.. with viewId
    <af:declarativeComponent id="dc0" viewId="/includes/myIncludeFragment.jsff" />
    http://prsync.com/oracle/adf-faces-avoid-use-of-ltjspincludegt-tag-32141/

  • Setting Content-Type in .jspx file

    Hello,
    My application is not rendered by an HTML Browser.
    I need to set the contentType to application/x-ywidget+xml in my JSPX file.
    The content type returned is always text/xml !!!
    I have tried:
    1. To create a phaseListener and overloading before or after phase in ANY_PHASE
    FacesContext context = FacesContext.getCurrentInstance();
    ExternalContext extContext = context.getExternalContext();
    HttpServletResponse response =
    (HttpServletResponse)extContext.getResponse();
    String contentType = "application/x-ywidget+xml";
    response.setContentType(contentType);
    2. To add a new MimeType extension in web.xml and create my file under this extension
    <servlet-mapping>
    <servlet-name>jsp</servlet-name>
    <url-pattern>*.xygo</url-pattern>
    </servlet-mapping>
    <mime-mapping>
    <extension>xygo</extension>
    <mime-type>application/x-ywidget+xml</mime-type>
    </mime-mapping>

    Frank,
    Thanks you for you help.
    What i would like to do is to use a JSF library components to build YahooGO pages (Yahoo mobile widgets).
    For this my server needs to return an xml document with the application/x-ywidget+xml content type.
    Regarding you question i don't think that the target device understand the HTML.. on my mobile, it's J2ME application...
    Perhaps you can provide me some advices.
    Regards,
    Fred

Maybe you are looking for

  • Which browser is best for macbook pro?

    Which browser is best for macbook pro. I have used Safari for a couple of years but have been told recently that I would be better switching to Chrome

  • Java Development Tools - jar Question

    I have developed a application which i would like to be able to execute from a jar file (i.e. java -jar ... ). Anyway my gui requires some image files which are in the archive. Its just that when i try to run the application from the archive, it does

  • How do I update gcc to 4.9 without an internet connection?

    Hi, I am trying to move my os over from running on a Lenovo Ideapad u260 to a Lenovo Ideapad yoga 13. Unfortunately, the wireless router in the new computer is not recognized, and the computer doesn't have an ethernet port. Nothing shows up under lsp

  • Barcode Fonts not showing in BIP reports in PDF format in Siebel Remote

    Hi, We have successfully setup the PDf report with Barcode fonts in Siebel Web Clinet. Now we are trying to setup the report in Siebel Mobile clinet. We did the following tomake it work in mobile clinet. 1) Copied the font file i.e. .ttf file in C:\W

  • Planning_Partitions

    Hi ALl, We have 2 EPMA deployed Planning Apps. Budget1 & Plan1.......We need to create an EPMA Planning APP REPORT(Dummy Appjust for partition/Reports) & create transparent partition to both Budget1 & Plan1. The FR willpoint to REPORT App With this a