How to display and modify an image in JDeveloper11g

we tried http://kuba.zilp.pl/?id=241 example. I think it's for JDeveloper 10g because i get this error when i run in JDeveloper 11g.
Please suggest solution ....
Thanks Flor Moncada
24-oct-2009 19H54' CEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1256406855238' for task '0'. Error is: 'java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag'
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
>
<24-oct-2009 19H54' CEST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'ImageServlet'.>
<24-oct-2009 19H54' CEST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
>
[07:54:23 PM] Weblogic Server Exception: weblogic.application.WrappedDeploymentException: oracle.adf.view.faces.webapp.UIXComponentTag
[07:54:23 PM] See server logs or server console for more details.
[07:54:23 PM] #### Deployment incomplete. ####
oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
     at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:341)
     at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:235)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:442)
     at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
     at oracle.jdevimpl.runner.adrs.AdrsStarter$6$1.run(AdrsStarter.java:1469)
Caused by: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
     at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:483)
     at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:332)
     ... 11 more
Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
     at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:465)
     ... 12 more
#### Cannot run application ImageServlet due to error deploying to DefaultServer.
[Application ImageServlet stopped and undeployed from Server Instance DefaultServer]

The error continues. The problem is in my application.
There is a Periodista.jsff page which shows an image. The code is:
<af:panelGroupLayout id="panelimagen" layout="horizontal"
binding="#{PeriodistaBean.panelimagen}">
<af:image source="/ImageServlet?Peid=#{bindings.Peid.inputValue}" id="imagen"/>
</af:panelGroupLayout>
<af:inputFile label="Imagen" id="inputFile"
valueChangeListener="#{PeriodistaBean.onUploading}"
binding="#{PeriodistaBean.inputFile}"/>
<af:panelGroupLayout id="pgl3" layout="horizontal">
<af:commandToolbarButton text="Guardar fichero" id="ctb1"
actionListener="#{PeriodistaBean.commitUpload}"/>
<af:commandToolbarButton text="Cancelar" id="ctb2"
actionListener="#{PeriodistaBean.cancelUpload}"/>
</af:panelGroupLayout>
There is a bean Periodista.java, the code is:
public class Periodista {
private RichInputFile inputFile;
private RichPanelGroupLayout panelimagen;
public Periodista() {
super();
public void commitUpload(ActionEvent evt) {
ADFUtils2.executeOperation("Commit");
AdfFacesContext.getCurrentInstance().addPartialTarget(panelimagen);
public void cancelUpload(ActionEvent evt) {
inputFile.resetValue();
inputFile.setValue(null);
public void onUploading(ValueChangeEvent evt) {
UploadedFile file = (UploadedFile)evt.getNewValue();
String fileName = file.getFilename();
String contentType = ContentTypes.get(fileName);
Row newRow = ADFUtils2.getIterator("PeriodistaView1Iterator").getCurrentRow();
newRow.setAttribute("Filename", fileName);
newRow.setAttribute("Content", createBlobDomain(file));
newRow.setAttribute("Contenttype", contentType);
private BlobDomain createBlobDomain(UploadedFile file) {
InputStream in = null;
BlobDomain blobDomain = null;
OutputStream out = null;
try {
in = file.getInputStream();
blobDomain = new BlobDomain();
out = blobDomain.getBinaryOutputStream();
byte[] buffer = new byte[8192];
int bytesRead = 0;
while((bytesRead = in.read(buffer, 0, 8192)) != -1) {
out.write(buffer, 0, bytesRead);
in.close();
} catch (IOException e) { e.printStackTrace();  }
catch (SQLException e) { e.fillInStackTrace(); }
return blobDomain;
public void setInputFile(RichInputFile inputFile) {
this.inputFile = inputFile;
public RichInputFile getInputFile() {
return inputFile;
public void setpanelimagen(RichPanelGroupLayout panelimagen) {
this.panelimagen = panelimagen;
public RichPanelGroupLayout getpanelimagen() {
return panelimagen;
Error is: 'java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag'
Messages on Running Default Server:
[Running application Periodico on Server Instance DefaultServer...]
<25-oct-2009 13H25' CET> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application Periodico is not versioned.>
25-oct-2009 13:25:56 oracle.mds.internal.lcm.logging.MDSLCMLogger info
INFO: Identificador de Aplicación : Periodico
25-oct-2009 13:25:56 oracle.mds.internal.lcm.logging.MDSLCMLogger info
INFO: "Servicios de Metadatos: Archivo de metadatos (MAR) no encontrado."
25-oct-2009 13:25:56 JpsApplicationLifecycleListener Migrate Application Credential Store
ADVERTENCIA: Overwriting credentials is allowed in application credential store migration with Weblogic server running in Development Mode and system property 'jps.app.credential.overwrite.allowed' set to true
25-oct-2009 13:26:05 oracle.mds.internal.lcm.logging.MDSLCMLogger log
INFO: MBean: oracle.mds.lcm:name=MDSAppRuntime,type=MDSAppRuntime,Application=Periodico deregistered
25-oct-2009 13:26:05 oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener postStop
INFO: ADFApplicationLifecycleListener.postStop
25-oct-2009 13:26:05 oracle.adf.share.config.ADFConfigFactory cleanUpApplicationState
INFO: Cleaning up application state
<25-oct-2009 13H26' CET> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1256473556031' for task '0'. Error is: 'java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag'
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
>
<25-oct-2009 13H26' CET> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'Periodico'.>
<25-oct-2009 13H26' CET> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:55)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
>
[01:26:05 PM] Weblogic Server Exception: weblogic.application.WrappedDeploymentException: oracle.adf.view.faces.webapp.UIXComponentTag
[01:26:05 PM] See server logs or server console for more details.
oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
     at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:341)
     at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:235)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
     at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
     at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:442)
     at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
     at oracle.jdevimpl.runner.adrs.AdrsStarter$6$1.run(AdrsStarter.java:1469)
Caused by: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
     at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:483)
     at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:332)
     ... 11 more
Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
     at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:465)
     ... 12 more
#### Cannot run application Periodico due to error deploying to DefaultServer.
[01:26:05 PM] #### Deployment incomplete. ####
[Application Periodico stopped and undeployed from Server Instance DefaultServer]
Please help ...

Similar Messages

  • Working with Chinese characters: How to paste and modify them as sentences; not as individual images?

    Working with Chinese characters: How to paste and modify them as sentences; not as individual images?
    From 2004, this is so far the most detailed answer I could find: http://en.allexperts.com/q/Adobe-Illustrator-1027/FONTS-display-problem-Adobe.htm, but is this really still the most up-to date solution?
    Is it possible at all to work with Chinese characters, if I don't have the Chinese version of Illustrator? (http://www.proz.com/forum/dtp_desktop_publishing/221125-chinese_in_indesign.html)

    Thanks for your reply.
    I'm using Version 17.1.0 (64-bit) - basically CS6.
    Operating system is Windows 8.1. Installed is the simplied Chinese language package.
    I have received the text in a Word document. It contains mixed characters, something like this:
    教授资料
    学术背景:
      博士;曾于波恩大学(Rheinische Friedrich-Wilhelms-Universität Bonn)、台湾师范大学、
    I have tried to paste it in the two following ways:
    1) to create a text box and paste the text. The result is that some of the characters are not showed correctly.
    2) Paste it directly without any preparation. This result into a single "image" or group of images. I can cancel modify each character one at a time, or I can dissolve the group, but the result is the same.

  • How to display  servlet dynamically generated image ?

    Hi,
    How to display servlet dynamically generated image ?
    I have a servlet generating a buffered image in the doGet. I want to display the image in a jsp page with other information. I'm not able to get it properly displayed.
    **Try n# 1 **************************************************************
    This displays my image but nothing elle :
    ServletOutputStream sos = pResponse.getOutputStream();
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sos);
    encoder.encode(img);
    **Try n# 2 ****************************************************************
    I tried also :
    In the servlet :
         request.setAttribute("renderedImage", img);
    and in the jsp page :
         BufferedImage image = (BufferedImage) request.getAttribute("renderedImage");
         <img src="<%=ImageIO.write(image,"jpeg",response.getOutputStream())%>" width="300" height="280"/>
    This last try draws big crap in the jsp page, thank you in advance.
    Nelson

    Call another servlet from the IMG tag. Have the servlet stream out the image using ImageIO (instead of writing HTML).

  • DISM "you do not have permissions to mount and modify this image"

    I have tired to mount a vista and 7 WIM to add a service pack, but I keep getting the error "you do not have permissions to mount and modify this image"
    I'm running as administrator I'm running from the waik, I was able to mount with readonly permissions but that not what I need.
    Louis Ramirez

    Thanks Juboori, this solved the issue for me too.
    The odd thing though is that the "Read Only" attribute was NOT ticked in the Right-Click Properties windows but it WAS enabled when checking via a DOS command prompt.
    How to check in DOS:
    "Attrib Install.wim" (you'll see the 'R' attribute is enabled)
    How to disable in DOS
    "Attrib Install.wim -R" (Removes the 'Read Only' attribute)

  • How to find and modify  item in a nested array collection?

    Hi,
    would anybody know how to find and modify item in a nested
    array collection:
    private var ac:ArrayCollection = new ArrayCollection([
    {id:1,name:"A",children:[{id:4,name:"AA",children:[{id:8,name:"AAA"}]},{id:5,name:"AB"}]} ,
    {id:2,name:"B",children:[{id:6,name:"BA"},{id:7,name:"BB"}]},
    {id:3,name:"C"}
    Let's say I've got object {id:8, name:"X"} , how could I find
    item in a collection with the correspoding id property, get handle
    on it and update the name property of that object?
    I'm trying to use this as a dataprovider for a tree populated
    via CF and remoting....
    Thanks a lot for help!

    Thanks a lot for your help!
    In the meantime I've come up with a recursive version of the
    code.
    This works and replaces the item on any level deep:
    private function findInAC(ac:ArrayCollection):void{
    var iMatchValue:uint=8;
    for(var i:uint=0; i<ac.length; i++){
    if(ac
    .id == iMatchValue){
    ac.name = "NEW NAME";
    break;
    if(ac
    .children !=undefined){
    findInAC( new ArrayCollection(ac.children));
    However, if I use the array collection as a dataprovider for
    a tree and change it, the tree doesn't update, unless I collapse
    and reopen it.
    Any ideas how to fix it ?

  • How to draw and modify double lines with Adobe Illustrator?

    I need tot draw roadmaps. This should be easy using the pen tool, but my problem is that I cannot find a way to draw double lines with this tool. I have seen many fancy border styles and patterns. Some do have double or even quadruple lines, but the problem is than that they have an offset from the vector line and the space in between the two lines (the edges of the road) cannot be filled. Somewere I also found some pens called 'Double line 1.1' to 'Double line 1.6' but they also had an offset from the vector and I could not chance the size of the lines and the interval in between them independently.
    What I am looking for is a way to draw two lines in parallel and have the option tot fill the space in between with a color or even a pattern.
    The color and size of the lines should be changeable to make a distinction between several types of road.
    Is there an existing set of pencils for this purpose? It would be nice to be able to draw not only roads, but also railways and rivers!
    I am surely not the first person who needs to do this?
    I use AI version 6

    Jacob,
    Thanks for the answer. I have been searching for a solutions for a long
    time, but today I found the solution on a forum (not on this one). That
    solution is exactly as you described below, i.e. using a coloured line and a
    narrower white line on top of the first one. My problem was that I did not
    know how to create a custom brush based on the two lines. Now I know how to
    do that. However, I still have the problem. I can now draw double lines and
    I can change the color of the background line (the coloured one) but I
    cannot change the white colour of the narrower line. I assume that I have to
    completely redefine a new brush when I need to change that colour too.
    Regards,
    Rob Kole
    Van: Jacob Bugge [email protected]
    Verzonden: donderdag 28 maart 2013 17:04
    Aan: RKOLE
    Onderwerp: How to draw and modify double lines with Adobe
    Illustrator?
    Re: How to draw and modify double lines with Adobe Illustrator?
    created by Jacob Bugge <http://forums.adobe.com/people/Jacob+Bugge>  in
    Illustrator - View the full discussion
    <http://forums.adobe.com/message/5186535#5186535

  • How to organize and resuse my image resources and icons

    Hi JDeveloper experts,
    How to organize and resuse my image resources and icons JDeveloper IDE and deployed system.

    Thanks for answer Timo,
    My JDeveloper edition "Studio Edition Version 11.1.2.0.0" .
    I'm developing web application with BC + ADF + SQL92 compatible database.
    What is the generic java solution or BC + ADF solution for reuse and organize icons, images, resource libraries ?

  • How to display html content with image in Adobe Flash and Flex mobile project?

    Hi,
      I have a html content with image in it. How to display it in Adobe Flash Builder and Flex mobile project? Which control needs to be used for this?

    Hello,
    The only current way is to use an iFrame, or if you only need some html tags you could use the Text Layout Framework.
    Here this is the iFrame approach:
    http://code.google.com/p/flex-iframe/
    If the swc do not work in Flex4 just use its ource code which works...
    ...it is basically based on this:
    http://www.deitte.com/archives/2008/07/dont_use_iframe.htm
    see also and vote, please:
    http://bugs.adobe.com/jira/browse/SDK-12291
    http://bugs.adobe.com/jira/browse/SDK-13740
    Regards
    Marc

  • How to open and modify a internet service.

    I want to modify Internet Service PZ02. I checked in SICf, it is listed under bc/gui/sap/its and is also activated.
    But when i go to SE80 and search for it in Internet Service, i get a message saying "Service PZ18 does not exist, create object? "
    How do i open, get access to code of pz18 and modify it
    Thanks
    Sharath

    Chris-
    Thanks for the reply.
    How do i create the ITS service (service file, template, theme etc..) out of the dynamically generated HR service PZ02.
    Pleae let me know if the following steps are correct
    1. In SE80, Choose Internet service and enter a name like zpz02.
    2. In the pop-up for transaction code enter pz02. Check the box for ITS mixed mode
    3. Then Right click in zpz02, select create->template->
    assign theme=99,
    program number-SAPMPZ02
    screen number=1000
    generating style=webgui
    ( The above informtaion was found out in the following way: go to se93 -> enter pz02 as the transaction code ->
    click display.
    When i did that it displayed the following info
    program : SAPMPZ02
    selection screen: 1000 )
    When i click on save it says that the screen 1000 does not exist in the program SAPMPZ02.
    But from the info that i got from the SE93 it looks like the screen number is 1000??
    What is the mistake ?? Is the approach wrong
    Help will be really appreciated
    Sharath

  • How to create and modify an XML file from an Oracle Form

    I would like to build an Oracle Form to maintain a small XML file in the file system (i.e. Not in Oracle database but in the operating system).
    I would like the Form to display existing values from the XML file and the user can update and save content back to the XML file.
    Can any one tell me how this can be done? Thanks.

    Does Forms 9i provide any XML Parser Functions?
    Can I insert the XML file into a table column by inserting XML using the XSU Front End rather than using TEXT_IO to maintain the XML file directly?
    Can I use XSU PL/SQL API in Forms to retrieve and modify XML values?
    Any help is appreciated.

  • How to sort and filter all images when using stacks?

    I have a project where all images are arranged in stacks. I have also gone through and given each image a rating or rejected it. Now I want to sort out and display only a certain selection of images, i.e. rejected images for deletion or four star images etc. But the selection filter only seems to work on the stack pick. Can I change this so that the filter works on all images, even if they are part of an open stack? If not, how could I else single out all the rejected ones and delete them? I don't want to break the stacks.

    The only current way to do this is via Smart Albums, as there is a checkbox at the bottom of the settings HUD: 'Ignore Stack Groupings'.
    Ian
    P.S. If you'd like to see this added to the regular search HUD (I know I would), please leave feedback at http://www.apple.com/feedback/aperture.html

  • How to save and retrieve an image in JSP/Java and MS SQL/server 2000?

    Hi All,
    I am uploading an image from the JSP page and want to store it in MS SQL server. I have made a column by the name "COMPANY_LOGO" with data type as image MS SQL/server 2000. How do I save the full image in the table and how do I display the thumb nail image on the JSP page???
    Regards,
    Raj

    BEFORE YOU POST A TOPIC HERE: Please be sure your topic is related to features or functionality of this site. This forum is not for general technology questions. Not sure which forum to use? Try searching for your topic in the "Search Forums" element on the left panel.
    Post your question in
    http://forum.java.sun.com/forum.jspa?forumID=45
    or
    http://forum.java.sun.com/forum.jspa?forumID=48
    Do not reply here

  • How to display JTextField over an Image

    I want to put an image to background of an JPanel, and then add components to this panel, so components will be displayed over image.
    How can I do this?
    Thanks

    Since you are using Swing there are at least two ways:
    a) Subclass JComponent/JPanel/etc. and override
    paintComponent() and draw the image.
    b) Create a JComponent/JPanel/etc. that has OverlayLayout
    as the LayoutManager. Add a JLabel (with your image).
    Then add you other children.

  • How to display and edit the clob datatype column from Data base

    Hi ,
    I have a requiremsnt as below
    1) One Table having some columns with CLOB data type along with varchar columns
    2) need to display the data from DB in search screen and need to be edited clob column in edit screen
    I created EO and VO with that Table and how to display the clob value into the input box for editing.
    using Jdev 11.1.1.5.0 version.
    Can you please help on this.
    THanks & REgards,
    Madhu

    Hi,
    If you are using an inputText component to display a Character Large Object (CLOB), then you will need to create a custom converter that converts the CLOB to a String.
    For custom convertor refer below link,
    http://docs.oracle.com/cd/E2438201/web.1112/e16181/af_validate.htm#BABGIEDH
    (section7.4 Creating Custom JSF Converters)
    Thanks,
    Santosh M E

  • How to read and paste an image file in the Adobe Indesign document by using plugins?

    Hai i'm senthil...
    i had just now started working with Adobe Indesign plugins...
    Can any one tell me how to read an image file from the hard disk and paste that image file in a text box in the document...
    plzz send me the codings and in which file we want to attach these codings...
    thank you..
    bye
    senthil

    hai art,
    thanks for ur reply...
    i tried and developed the program for pasting the image from
    the database...
    But now i want to paste 3 images in a page...
    for this i had used while loop;
    But i'm having 6 images in the database...
    when the 4th image is in reading, automatically a new page will
    be created and the 4th image will be pasted in the newly created page.. i tried and develped for creating a new page...
    But how shall i paste the 4th image in the newly created page...
    is there methods or classes?
    plzz reply...
    thanks..
    senthil..

Maybe you are looking for

  • PO Release procedure report

    Hello All, Is there any report using which we can see how many POs are pending for release & from which approver? Regards, Amit

  • Best Export Settings For Fast/Low-Res QuickTime Movies

    I couldn't find a discussion room for FCP 7 so I figured if anybody is proficiant with FCP X, they could help me. Hello, I really could use some help with my export settings using FinalCut Pro 7.  Most of my shows are no more than 20 minutes and I pr

  • Problem in enjoy transaction

    hi, I have a doubt that why we cannot record enjoy transactions? Can you tell me the reasons for that? thank you. regards raghu

  • Source file fields number

    Hello, If I have a source file with, say 10 fields, can I have a recording that uses only 2 fields? I can have the source file with only 2 fields in the first place but I want to know if the above scenario is possible. Thank you very much

  • HOTSYNC freezes on both Tungsten T5 device and desktop

    I recently wipe out all data on my Tungsten T5 device and re-setup for my daughter.  I installed the desktop software on the my home computer running Windows XP Pro (SP2) and also downloaded and installed version 4.1.4e.  The Step 1 desktop software