File Upload Example in ADF Development Guide

I tried to upload a file using ADF as described in Development Guide. I have taken a <af:inputFile> component as described.
<af:inputFile label="#{res['srfileupload.uploadlabel']}"
valueChangeListener="#{backing_SRFileUpload.fileUploaded}"
binding="#{backing_SRFileUpload.srInputFile}"
columns="40"/>
[Page 620]
Now, what is the type of that variable "srInputFile" in the backing bean?
Is there any full written code for this ADF Development Guide example? Where from can I download that?

All the needed code is on page 617 of the ADF Dev Guide 10.1.3
http://download.oracle.com/docs/pdf/B25947_01.pdf
It is also located in the SRDemo ADF Tutorial support files
http://download.oracle.com/otndocs/products/jdev/10131/ADF_tutorial_setup.zip

Similar Messages

  • PDF (Oracle ADF Developer Guide 10g Handbook) not found

    Hi all,
    I try to open : http://www.oracle.com/technology/products/jdev/collateral/training10g.html
    to download PDF file [ [b]Oracle ADF Developer Guide 10g Handbook (free)
    JSF, ADF Business Components tech stack.]
    but when i try to click on book link , oracle send me to other subject "Oracle Application Development Framework Developer's Guide for Forms/4GL Developers"
    Please any body help my, because i need this book soooooooo much ASAP

    Dear MarkP
    Have a nice day,
    Thanks for your link but this guid is ( Oracle ADF Developer Guide 10g Handbook JSF, EJB 3.0, TopLink tech stack.)
    What I need is (Oracle ADF Developer Guide 10g Handbook JSF, ADF Business Components tech stack.)!!!!
    BR

  • File upload example - browser freezing

    We implemented the web file upload example in Forms 6i a while ago. It seemed to work however if we load several files in one session the browser freezes - has anyone else experienced this problem? Can anyone help?
    Many Thanks
    Steve

    We implemented the web file upload example in Forms 6i a while ago. It seemed to work however if we load several files in one session the browser freezes - has anyone else experienced this problem? Can anyone help?
    Many Thanks
    Steve

  • Problems with  File Upload Example

    Hi,
    I follwed all the steps as in File Upload Example, still I am getting this exception,
    Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Deployment Error -- Error loading deployment descriptors for _linnfdb -- There is no web component by the name of uploadFile here.
    Has any one got a clue???????????
    Any help will be greatly appreciated.
    cheers
    kush

    Hi,
    There is a relevant topic on EA discussion.
    Topic:mini-mini FileUpload tutorial
    https://feedbackprograms.sun.com/project/forum/thread.html?cap={3F4DA363-16D3-4D4C-920C-992ECB054B6D}&forid={CC6B8562-F896-4A44-ACB6-4684BDD05E19}&topid={7EDEB723-F414-4DE5-9B8E-A4A4C625474E}
    Hope this helps.
    Please post messages related to Creator 2 EA at the feedbacks programs portal. The URL is:
    https://feedbackprograms.sun.com/login.html
    Thanks,
    RK.

  • ADF Developer guide

    hi,
    May I know the where latest ADF developer guide(11g) available,
    Link mentioned below url,not working..Please advice
    http://www.oracle.com/technology/products/adf/learnadf.html
    <Click on Developer Guide Book)
    Thanks
    -Ravi

    Ravi,
    Just tried that link - works fine for me.
    Here is the HTML version of the book: http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/toc.htm
    John

  • File upload, download using ADF UIX and not JSP

    I have examples for the file upload, download using JSP
    But I want to use ADF UIX. Look and feel in this is impressing and I want to use this. Any one have example for this.
    Users will select a file from their desktop
    This will be stored into the database (Any document. Word, Excel)
    When they query the records then the UIX column need to give a hyperlink. Clicking on the link should prompt to download the file to the local system

    Sure, I use the Apache Commons File Upload package, so that is what I will discuss here ( [Commons File Upload|http://commons.apache.org/fileupload/] ).
    The Commons File Upload uses instances of ProgressListener to receive upload progress status. So first create a simple class that implements ProgressListener:
    public class ProgressListenerImpl implements ProgressListener {
        private int percent = 0;
        public int getPercentComplete() {
            return percent;
        public void update(long pBytesRead, long pContentLength, int pItems) {
            if (pContentLength > -1) { //content length is known;
                percent = (new Long((pBytesRead / pContentLength) * 100)).intValue();
    }So in your Servlet that handles file upload you will need to create an instance of this ProgressListenerImpl, register it as a listener and store it in the session:
    ServletFileUpload upload = new ServletFileUpload();
    ProgressListenerImpl listener = new ProgressListenerImpl();
    upload.setProgressListener(listener);
    request.getSession().setAttribute("ProgressListener", listener);
    ...Now create another servlet that will retrieve the ProgressListenerImpl, get the percent complete and write it back (how you actually write it back is up to you, could be text, an XML file, a JSON object, up to you):
    ProgressListenerImpl listener = (ProgressListenerImpl) request.getSession().getAttribute("ProgressListener");
    response.getWriter().println("" + listener.getPercentComplete());
    ...Then your XMLHttpRequest object will call this second servlet and read the string returned as the percent complete.
    HTH

  • Help:simple file upload example not working

    Request input on what's wrong with this -
    Using JDeveloper 10G.
    1) I created a simple jsp file upload file using the OJSP
    File Access Tag library options. With empty JSP file,I
    dropped in the httpUploadForm and the httpUpload tags.
    Now when I run this I get the following error stack on
    the web page.
    javax.servlet.jsp.JspTagException: Posted content type isnt multipart/form-data at oracle.jsp.webutil.fileaccess.tagext.HttpUploadTag.doStartTag(HttpUploadTag.java:130)at test4.jspService(test4.jsp:10)[test4.jsp]
    2)Now if I use a simple JSP without the tag library - the
    page fails to display. Found that commenting out the
    line "upbean.upload()" lets the page run and atleast
    show me the upload form. What's wrong with this
    standard example from the OC4J documentation -
    <%@ page import =
    "javax.servlet.http.*,
    java.io.*,
    java.util.*,
    oracle.jsp.webutil.fileaccess.*;" language="java" session="true" contentType="text/html;charset=windows-1252"
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Upload</title>
    </head>
    <body>
    <% String userdir = "mydir"; %>
    <form action="pUpload.jsp" ENCTYPE="multipart/form-data" method=POST>
    <br>
    File to upload: <INPUT TYPE="FILE" NAME="File" SIZE="50" MAXLENGTH="120" >
    <br>
    <INPUT TYPE="SUBMIT" NAME="Submit" VALUE="Send">
    </form>
    <jsp:useBean id="upbean" class="oracle.jsp.webutil.fileaccess.HttpUploadBean" >
    <jsp:setProperty name="upbean" property="destination" value="<%= userdir %>" />
    </jsp:useBean>
    <% upbean.setBaseDir(application, request);
    //upbean.upload(request);
    %>
    </body>
    </html>

    It's not clear from your post, but are you aware that the
    documentation is really showing multiple files?
    The doc examples are based on the ones you can try out by downloading the ojspdemos.ear file.
    They use discrete steps. For example, the fileUploadIndex.html contains the following
    This will call the form and set the action in the form to call the tag upload jsp file. The form will do the multi-part post and the tag upload file does display the text after the <upload:httpUpload> tag. I just re-ran the example to be sure.
    The same basic mechanism applies to the upload bean. That is it is called via:
    This is the only way that these can work because the upload code (beans & tags) both require a multi-part post. I hope this helps

  • Problem with Multi File upload example, help needed

    I got the code from the following location.....
    http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html
    And I've got it to work to some degree except I cant get the file transfer to work when pressing, Upload.   Below is what my debugger outputs.  Any thoughts on how to fix this or even what it means?
    At the very bottom of this message is the upload.cfm code.......
    Thanks in advance for the help
    <html>
    <head>
      <title>Products - Error</title>
    </head>
    <body>
    <h2>Sorry</h2>
    <p>An error occurred when you requested this page.
    Please email the Webmaster to report this error.
    We will work to correct the problem and apologize
    for the inconvenience.</p>
    <table border=1>
    <tr><td><b>Error Information</b> <br>
      Date and time: 12/07/09 22:25:51 <br>
      Page:  <br>
      Remote Address: 67.170.79.241 <br>
      HTTP Referer: <br>
      Details: ColdFusion cannot determine how to process the tag &lt;CFDOCUMENT&gt;. The tag name may be misspelled.<p>If you are using tags whose names begin with CF but are not ColdFusion tags you should contact Allaire Support. <p>The error occurred while processing an element with a general identifier of (CFDOCUMENT), occupying document position (41:4) to (41:70).<p>The specific sequence of files included or processed is:<code><br><strong>D:\hshome\edejham7\edeweb.com\MultiFileUpload\upload.cfm      </strong></code><br>
      <br>
    </td></tr></table>
    </body>
    </html>
    <!---
    Flex Multi-File Upload Server Side File Handler
    This file is where the upload action from the Flex Multi-File Upload UI points.
    This is the handler the server side half of the upload process.
    --->
    <cftry>
    <!---
    Because flash uploads all files with a binary mime type ("application/ocet-stream") we cannot set cffile to accept specfic mime types.
    The workaround is to check the file type after it arrives on the server and if it is non desireable delete it.
    --->
        <cffile action="upload"
                filefield="filedata"
                destination="#ExpandPath('\')#MultiFileUpload\uploadedfiles\"
                nameconflict="makeunique"
                accept="application/octet-stream"/>
            <!--- Begin checking the file extension of uploaded files --->
            <cfset acceptedFileExtensions = "jpg,jpeg,gif,png,pdf,flv,txt,doc,rtf"/>
            <cfset filecheck = listFindNoCase(acceptedFileExtensions,File.ServerFileExt)/>
    <!---
    If the variable filecheck equals false delete the uploaded file immediatley as it does not match the desired file types
    --->
            <cfif filecheck eq false>
                <cffile action="delete" file="#ExpandPath('\')#MultiFileUpload\uploadedfiles\#File.ServerFile#"/>
            </cfif>
    <!---
    Should any error occur output a pdf with all the details.
    It is difficult to debug an error from this file because no debug information is
    diplayed on page as its called from within the Flash UI.  If your files are not uploading check
    to see if an errordebug.pdf has been generated.
    --->
            <cfcatch type="any">
                <cfdocument format="PDF" overwrite="yes" filename="errordebug.pdf">
                    <cfdump var="#cfcatch#"/>
                </cfdocument>
            </cfcatch>
    </cftry>

    Just 2 things in my test:
    1) I use no accept attribute. Coldfusion is then free to upload any extenstion.
    Restricting the type to application/octet-stream may generate errors. Also, it is unnecessary, because we perform a type check anyway.
    2) I have used #ExpandPath('.')#\ in place of #ExpandPath('\')#
    <cfif isdefined("form.filedata")>
    <cftry>
    <cffile action="upload"
                filefield="filedata"
                destination="#expandPath('.')#\MultiFileUpload\uploadedfiles\"
                nameconflict="makeunique">
            <!--- Begin checking the file extension of uploaded files --->
            <cfset acceptedFileExtensions = "jpg,jpeg,gif,png,pdf,flv,txt,doc,rtf"/>
            <cfset filecheck = listFindNoCase(acceptedFileExtensions,File.ServerFileExt)/>
    <!---
    If the variable filecheck equals false delete the uploaded file immediatley as it does not match the desired file types
    --->
            <cfif filecheck eq false>
                <cffile action="delete" file="#ExpandPath('.')#\MultiFileUpload\uploadedfiles\#File.ServerFile#"/>
                <cfoutput>Uploaded file deleted -- unacceptable extension (#ucase(File.ServerFileExt)#)</cfoutput>.<br>
            </cfif>
    Upload process done!
            <cfcatch type="any">
                There was an error!
                <cfdocument format="PDF" overwrite="yes" filename="errordebug.pdf">
                    <cfdump var="#cfcatch#"/>
                </cfdocument>
            </cfcatch>
    </cftry>
    <cfelse>
    <form method="post" action=<cfoutput>#cgi.script_name#</cfoutput>
            name="uploadForm" enctype="multipart/form-data">
            <input name="filedata" type="file">
            <br>
            <input name="submit" type="submit" value="Upload File">
        </form>
    </cfif>

  • Developer Guide for ADF Product Development

    Hello All, I am planning to learn Oracle ADF, Can anyone one please share Oracle ADF Developer Guide link or document or please share document number. Please also share some good examples on this and other useful documents which i can learn quick and faster Thanks in advance. Thanks, Niranjan.

    Check out http://docs.oracle.com/cd/E37547_01/tutorials/toc.htm for tutorials and samples. Find the fusion developers guide at http://docs.oracle.com/middleware/1212/adf/ADFFD/index.html
    Timo

  • Download_my_file example from HTMLDB 2 day developer Guide

    Hi -
    I'm using htmldb/APEX v 1.6. I'm following the Oracle HTMLDB 2 Day Developer Guide chapter 8. In this example, we are uploading files to be stored in the database as BLOB's. Then we are downloading the files.
    The example works as advertised until we create the custom table and procedure called download_my_file.
    Using the default table and procedure, the file upload and download work correctly.
    Using the procedure called download_my_file fails with error:
    [Thu Feb  4 13:11:18 2010] [error] [client 100.100.100.11] [ecid: 1265307078:100.100.100.202:18991:0:163,0] mod_plsql: /pls/htmldb/HTMLDB.DOWNLOAD_MY_FILES HTTP-404 \nHTMLDB.DOWNLOAD_MY_FILES: PROCEDURE DOESN'T EXIST\n
    Here is my version of procedure download_my_file:
    (p_file in number) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(2000);
    Lob_loc BLOB;
    BEGIN
    SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM file_subjects_1
    WHERE id = p_file;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'),FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment; filename="'||substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    end download_my_file;
    Edited by: user11367243 on Feb 4, 2010 11:27 AM
    Execute privileges on procedure download_my_file have been granted to Public and HTMLDB_PUBLIC_USER. Procedure is owned by user HTMLDB

    Please.. Could you change your forum handle to something more human, we are a friendly group here and lik to know who we are talking to.. Secondly, WHy are you using such an OLD version oft he product. You would be better off installing 3.2.1 (latest released build) and asking your questions after you do that..
    (I am sorry, it's like asking for help in a Windows support forum about issues you are having with Windows 3.1)
    Thank you,
    Tony Miller
    Webster, TX

  • Status of ADF BC / JSF Version of Developer Guide?

    Can anyone provide an update on when this will be available (Developer guide based on ADF BC and JSF vs. Toplink)? I'm EAGERLY awaiting - this will be very helpful.
    I was able to download the SRDemo app based on ADF BC / JSF - this is very helpful to see some real code examples. For example, I read topics related to programming View Objects and Application Modules, but viewing the actual code examples for how to call these methods was invaluable. Any other sources for ADF BC / JSF Technology scope code examples greatly appreciated.
    Thanks

    Hi,
    I think this information is what you can already get from the SRDemoBc application. I remember from an internal training i delivered that the login is performed by a ViewObject that is acting as the root VO for all application VO. In addition, to store global values, a VO is created that doesn't use queries.
    Note that I am not really a suppoter of applications that handle the login logic in itself. Its good for demos, but in praxis they should use either JAAS or J2EE authentication to fit into an overall enterprise security strategy.
    Frank

  • File uploading in ADF faces

    I tried to use af:inputFile component to upload files, but i can't upload file bigger than 2K, for example i received:
    Successfully uploaded file 1.txt (4337 bytes) - file.getLength() returns
    but:
    Available to upload : 2048 - file.getInputStream().available() returns
    I try to set in web.xml params:
    <context-param>
    <!-- Maximum disk space per request (in bytes) -->
    <param-name>oracle.adf.view.faces.UPLOAD_MAX_DISK_SPACE</param-name>
    <!-- Use 5,000K -->
    <param-value>5120000</param-value>
    </context-param>
    <context-param>
    <!-- Maximum memory per request (in bytes) -->
    <param-name>oracle.adf.view.faces.UPLOAD_MAX_MEMORY</param-name>
    <!-- Use 500K -->
    <param-value>512000</param-value>
    </context-param>
    <context-param>
    <!-- directory to store temporary files -->
    <param-name>oracle.adf.view.faces.UPLOAD_TEMP_DIR</param-name>
    <!-- Use an ADFUploads subdirectory of /tmp -->
    <param-value>D:\tmp</param-value>
    </context-param>
    but nothing changed. How can i upload file bigger than 2K ?
    JDeveloper 10.1.3
    Application Server: OC4J

    Hi,
    set the following context parameter in web.xml
    <context-param>
    <!-- Maximum memory per request (in bytes) -->
    <param-name>oracle.adf.view.faces.UPLOAD_MAX_MEMORY</param-name>
    <!-- Use 5000K -->
    <param-value>5120000</param-value>
    </context-param>
    Frank

  • ADF for developer guide sample 5-7 gives JBO-33001: error

    We are trying to take information from view object using code .
    j Dev 10.1.3.
    We are trying to make ADF for developer guide sample 5-7 work.
    first we create a JSF/ADFBC project.
    After than we create entity, view and application modeule object for emp table.
    Then in model project
    we create a class TestClient. Than past sample 5-7 code.
    it gives fallowing error.
    oracle.jbo.ConfigException: JBO-33001: configuration file in classpath /test/common/bc4j.xcfg can not be found.
    we add project content java content bc4j.xcfg files path.
    But it doesn't solve our problem.
    anything we tried not solve problem too.
    We are at the beginneing of a project and we stuck.
    Thanks for your help.
    All error trace
    C:\jdev103\jdk\bin\javaw.exe -ojvm -classpath
    Exception in thread main
    oracle.jbo.ConfigException: JBO-33001: Classpath içinde konfigürasyon dosyası /test/common/bc4j.xcfg bulunamıyor
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:367)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:284)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:539)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1494)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1472)
         at iski.view.TestClient.main(TestClient.java:14)
    Process exited with exit code 1.

    we tried faloowing theread.
    Steve, "Simple JSF Popup List of Values Page " does not work..
    But it doesn't solve our problem to..
    (Jdev 10.13 SU5)

  • How to solve Fusion ADF file upload and download?

    Now we are building web application with Fusion ADF (JDeveloper 11.1.2.0.0). We want to downloading and uploading from tables.Is there any special tool in Fusion ADF or should I going with traditional java coding. Thanks

    Actually ADF Provide Components for file upload and download
    Download :
    <af:fileDownloadActionListener/>
    See tagDoc: http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_fileDownloadActionListener.html
    Upload
    <af:inputFile/>
    See tagDoc: http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_inputFile.html
    Edited by: -CHS on Jul 6, 2011 9:52 AM

  • Developer Toolbox File Upload

    I am trying to build a page to upload pdf files to my website. It is an intranet site for real estate agents. I tried making a form with a file field and then applied the Developer toolkit file upload behavior. When I try to view the page I get this error:
    Microsoft VBScript compilation error '800a0401'
    Expected end of statement
    /BusCenter/forms/formsUpload.asp, line 49
    ins__forms_.setTable ""forms""
    -----------------------^
    Can anyone help me get this working?
    Thanks!
    Ben
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="../Connections/conBusCenterString.asp" -->
    <!--#include file="../includes/common/KT_common.asp" -->
    <!--#include file="../includes/tNG/tNG.inc.asp" -->
    <%
    'Make a transaction dispatcher instance
    Dim tNGs: Set tNGs = new tNG_dispatcher
    tNGs.Init "../"
    %>
    <%
    ' Start trigger
    Dim formValidation: Set formValidation = new tNG_FormValidation
    formValidation.Init
    formValidation.addField "fmName", true, "text", "", "", "", "Please enter a valid form name."
    formValidation.addField "fmDesc", true, "text", "", "", "", "Please enter a valid description."
    formValidation.addField "fmCatA", true, "text", "", "", "", "Please enter a valid catagory."
    formValidation.addField "fmCatB", true, "text", "", "", "", "Please enter a valid catagory."
    formValidation.addField "fmFile", true, "", "", "", "", "Please select a file to uoload."
    tNGs.prepareValidation formValidation
    ' End trigger
    %>
    <%
    'start Trigger_FileUpload trigger
    'remove this line if you want to edit the code by hand
    Function Trigger_FileUpload (ByRef tNG)
      Dim uploadObj: Set uploadObj = new tNG_FileUpload
      uploadObj.Init tNG
      uploadObj.setFormFieldName "fmFile"
      uploadObj.setDbFieldName "fmFile"
      uploadObj.setFolder "../forms/forms/"
      uploadObj.setMaxSize 2500
      uploadObj.setAllowedExtensions "pdf, txt"
      uploadObj.setRename "auto"
      Set Trigger_FileUpload = uploadObj.Execute()
    End Function
    'end Trigger_FileUpload trigger
    %>
    <%
    ' Make an insert transaction instance
    Dim ins__forms_: Set ins__forms_ = new tNG_insert
    ins__forms_.init MM_conBusCenterString_STRING
    tNGs.addTransaction ins__forms_
    ' Register triggers
    ins__forms_.registerTrigger Array("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1")
    ins__forms_.registerTrigger Array("BEFORE", "Trigger_Default_FormValidation", 10, formValidation)
    ins__forms_.registerTrigger Array("END", "Trigger_Default_Redirect", 99, "formsList.asp")
    ins__forms_.registerTrigger Array("AFTER", "Trigger_FileUpload", 97)
    ' Add columns
    ins__forms_.setTable ""forms""
    ins__forms_.addColumn "fmName", "STRING_TYPE", "POST", "fmName", ""
    ins__forms_.addColumn "fmDesc", "STRING_TYPE", "POST", "fmDesc", ""
    ins__forms_.addColumn "fmCatA", "STRING_TYPE", "POST", "fmCatA", ""
    ins__forms_.addColumn "fmCatB", "STRING_TYPE", "POST", "fmCatB", ""
    ins__forms_.addColumn "fmFile", "FILE_TYPE", "FILES", "fmFile", ""
    ins__forms_.setPrimaryKey "fmID", "NUMERIC_TYPE", "", ""
    %>
    <%
    'Execute all the registered transactions
    tNGs.executeTransactions
    %>
    <%
    'Get the transaction recordset
    Dim rs_forms_
    Dim rs_forms__numRows
    Set rs_forms_ = tNGs.getRecordset(""forms"")
    rs_forms__numRows = 0
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="../includes/skins/mxkollection3.css" rel="stylesheet" type="text/css" media="all" />
    <script src="../includes/common/js/base.js" type="text/javascript"></script>
    <script src="../includes/common/js/utility.js" type="text/javascript"></script>
    <script src="../includes/skins/style.js" type="text/javascript"></script>
    <% Response.Write tNGs.displayValidationRules()%>
    </head>
    <body>
    <%
    Response.Write tNGs.getErrorMsg()
    %>
    <form action="<%= KT_escapeAttribute(KT_getFullUri()) %>" method="post" enctype="multipart/form-data" name="fmFile" id="fmFile">
      <table cellpadding="2" cellspacing="0" class="KT_tngtable">
        <tr>
          <td class="KT_th"><label for="fmName">Name:</label></td>
          <td><input type="text" name="fmName" id="fmName" value="<%=(KT_escapeAttribute(rs_forms_.Fields.Item("fmName").Value))%>" size="32" />
              <%=(tNGs.displayFieldHint("fmName"))%> <%=(tNGs.displayFieldError(""forms"", "fmName"))%> </td>
        </tr>
        <tr>
          <td class="KT_th"><label for="fmDesc">Description:</label></td>
          <td><input type="text" name="fmDesc" id="fmDesc" value="<%=(KT_escapeAttribute(rs_forms_.Fields.Item("fmDesc").Value))%>" size="32" />
              <%=(tNGs.displayFieldHint("fmDesc"))%> <%=(tNGs.displayFieldError(""forms"", "fmDesc"))%> </td>
        </tr>
        <tr>
          <td class="KT_th"><label for="fmCatA">CatA:</label></td>
          <td><input type="text" name="fmCatA" id="fmCatA" value="<%=(KT_escapeAttribute(rs_forms_.Fields.Item("fmCatA").Value))%>" size="32" />
              <%=(tNGs.displayFieldHint("fmCatA"))%> <%=(tNGs.displayFieldError(""forms"", "fmCatA"))%> </td>
        </tr>
        <tr>
          <td class="KT_th"><label for="fmCatB">CatB:</label></td>
          <td><input type="text" name="fmCatB" id="fmCatB" value="<%=(KT_escapeAttribute(rs_forms_.Fields.Item("fmCatB").Value))%>" size="32" />
              <%=(tNGs.displayFieldHint("fmCatB"))%> <%=(tNGs.displayFieldError(""forms"", "fmCatB"))%> </td>
        </tr>
        <tr>
          <td class="KT_th"><label for="fmFile">File:</label></td>
          <td><input type="file" name="fmFile" id="fmFile" size="32" />
              <%=(tNGs.displayFieldError(""forms"", "fmFile"))%> </td>
        </tr>
        <tr class="KT_buttons">
          <td colspan="2"><input type="submit" name="KT_Insert1" id="KT_Insert1" value="Insert record" /></td>
        </tr>
      </table>
    </form>
    <p> </p>
    </body>
    </html>

    Well at first you can try the ADDT support forum and not this
    one. Its more likely to have a reply there.
    At second, the basic question:
    Are your server folders with 777 permission?

Maybe you are looking for

  • IPhone fails receiving calls and text messages

    Hi everyone, here is my problem. I have an iPhone 4 32GB. It was on iOs 5.1 (always worked perfectly) untill few days ago I have upgraded to iOs 7.1. The problem after the upgrade is that phone calls or sms messages fails to be received. Strange thin

  • SAP Add On for Crystal Reports - no window for account setup

    Already installed the add on: windows server 2008 64 bit / SAP Business One 8.8 PL 12. Crystal Runtime is installed too. After activating the add on, we tried to do the 'account setup'. But there was a error: ' Item - could not commit action because

  • How to Use a Picklist with a HTML form

    I use the HTMl Web Bean Edit Form. I want to add a text box in the second cell of the table instead of creating a new row. Furhter How can I specify a Picklist which fetches data from a view object on the same form. null

  • Use iptables on DMZ server to port forward

    Hello! My ISP have this great idea that we have to go to their site to do port forwarding and changing settings on the router/modem, so I was thinking to just set one of my servers as a DMZ, and do port forwarding with iptables on that server. The pr

  • Error ORA-12505, TNS:listener does not currently know of SID given in co

    Hi , When I am running the jdeveoper for my adf application , I am getting the follwoing error: starting weblogic with Java version: java version "1.6.0_14" Java(TM) SE Runtime Environment (build 1.6.0_14-b08) weblogic.common.ResourceException: weblo