Create a file xml using dbms_xmldom

i'm using dbms_xmldom to create a file xml. i use to create a node this line:
IV_element:= dbms_xmldom.createElement(doc,'CATEGORIA');
dbms_xmldom.setAttribute(IV_element, 'natura','prova');
IV_node:=dbms_xmldom.appendChild(III_node,dbms_xmldom.makeNode(IV_element));
where
doc dbms_xmldom.DOMDocument;
IV_node dbms_xmldom.DOMNode;
IV_element dbms_xmldom.DOMElement;
and i have a line
<CATEGORIA natura="prova"/>
how can i have this line?
<CATEGORIA natura="prova">prova categoria</CATEGORIA>
thank you

try this.
ap0021_element := dbms_xmldom.createElement(doc,'AP0021');
cntbtch_element := dbms_xmldom.createElement(doc,'CNTBTCH');
new_element := DBMS_XMLDOM.makeElement(
                  DBMS_XMLDOM.appendChild(DBMS_XMLDOM.makeNode(ap0021_element)
                 ,DBMS_XMLDOM.makeNode(cntbtch_element)));

Similar Messages

  • Is it possible to create .ncd file without using MAX?

    Is it possible to create .ncd file without using MAX? I am trying to read the data given by hundreds of possible Arb. IDs on one of the CAN port without having to create it from the MAX.
    Thank you

    Hi,
    the NI-CAN driver software does not provide functions/VIs to generate
    *.ncd files. However the *.ncd file format is just plain XML (ASCII text). Take a
    look at the example.ncd file that gets installed with NI-CAN
    (<ProgramFiles>\National Instruments\NI-CAN\):
    <?xml version="1.0" encoding="UTF-8"?>
    <nican_config version="0.1">
    <saved>8/8/2005,17:58</saved>
    <message name="TransmissionFluids">
      <id extended="0">82</id>
      <dbc>C:\Program Files\National Instruments\NI-CAN\example.ncd</dbc>
      <conflicts>0</conflicts>
      <bytes>6</bytes>
      <interface>1</interface>
      <comment></comment>
      <channel name="ClutchPressure">
        <conflicts>0</conflicts>
        <bitfield start="0" bits="8" order="0" type="1"/>
        <linear_scaling factor="1.600000e+001"
    offset="0.000000e+000" max="4.000000e+003" min="0.000000e+000"
    default="0.000000e+000" unit="kPa"/>
        <comment></comment>
      </channel>
    </message>
    </nican_config>
    Thus, you could generate *.ncd files with simple file I/O. Having XML-specific file I/O functions simplifies this task.
    -B2k

  • How can remove child into file xml using J2ME

    i want to delete child from file xml using midlet but nothing is changed into file
    please help me
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package ajou;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.util.Vector;
    import javax.microedition.io.Connector;
    import javax.microedition.io.HttpConnection;
    import javax.microedition.midlet.MIDlet;
    import org.kxml2.io.KXmlParser;
    import org.kxml2.kdom.Document;
    import org.kxml2.kdom.Element;
    import org.kxml2.kdom.Node;
    * @author -Manel-
    public class manelGO extends MIDlet {
    public void startApp() {
    try {
              //Open http connection
              HttpConnection httpConnection = (HttpConnection) Connector.open("http://localhost:8080/examples/users.xml");
                   //Initilialize XML parser
                   KXmlParser parser = new KXmlParser();
                   parser.setInput(new InputStreamReader(httpConnection.openInputStream()));
                   Document theDoc = new Document();
                   theDoc.parse(parser);
                   Element rootElement = theDoc.getRootElement();
    rootElement.removeChild(1);
              catch (Exception e) {
                   e.printStackTrace ();
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
    }

    To achieve this you can use the bpelx:remove function: http://download.oracle.com/docs/cd/E12483_01/integrate.1013/b28981/manipdoc.htm#CIHJBJFD
    your assign will look like:
    <bpel:assign>
    <bpelx:remove>
    <target variable="person" query="/person/@per" />
    </bpelx:remove>
    </bpel:assign>
    Regards,
    Melvin

  • Does we need to Create a file Before using Open dataSet

    Hi Guys,
                Can  any body tell me whether we have to create a File before using Open dataset  for writing files in Application Server.
               Can anybody write a program for EKPO table to store it in application Server using OpendatasSet ?Is there any specific care we have to take for Executing   pgm in Background?
    I wrote the pgm for Foreground using GUI- Download.
    PGM.
          select * into table it_ekpo  from  ekpo .
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    filename ='c:\EKPO.xls'
    filetype = 'ASC'
    WRITE_FIELD_SEPARATOR = 'X'
    TABLES
    data_tab = it_ekpo
    *fieldnames = l_heading
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3 .
                       Plzzzzzzzzz Make the changes for existing Pgm.any help is awarded with points.Its Urgent.
    Thanks,
    Gopi.

    Hi Guys,
                 Thanks for ur immediate response.I am sending the code just confirm me whether is correct r not?
    DATA : wa_EKPO_file   TYPE file_table-filename.
    select * into table it_ekpo  from  ekpo .
      OPEN DATASET wa_EKPO_file FOR OUTPUT         "Write to appl. server
                                          IN TEXT MODE
                                          ENCODING DEFAULT.  "Open dataset Return code
    IF sy-subrc = 0.
    LOOP at IT_EKPO into WA_EKPO.
    TRANSFER wa_ekpo to wa_ekpo_file.
    ENDLOOP.
    ENDIF.
                                             I want write the data into SPREAD Sheet .Can u guys  tell me how to write into Spread Sheet using Open data Set.
    Thanks,
    Gopi.

  • Creating A File Resource Using Tomcat JNDI

    Hi guys,
    My problem is that I am creating a web service and I cannot get to a properties file without creating an absolute reference to that file. If I was creating a servlet I would simple use getServletContext() method to get a relative reference to it. However since it is an axis web service i have to deploy my applications in the WEB-INF/services directory, and because it does not interact with the axis servlet I cannot use getServletContext(). So i thought I could create a JNDI file resource reference in the tomcatHome/conf/context.xml file, similar to how I created a JNDI connection pool. The resouce definition looks like this;
    <Resource name="resource/dialogueEngineConfig" auth="Container"
                      type="java.io.File"
                      url="file:/Applications/apache-tomcat-5.5.1/webapps/axis2/META-INF/DialogueEngine.properties">
    </Resource>now I tried to access the resource in my code like this;
    // Obtain our environment naming
    Context envCtx = (Context) new InitialContext().lookup("java:comp/env");
    // Look up our file
    File  f = (File) envCtx.lookup("resource/dialogueEngineConfig");However I get a NamingException; 'Cannot create resource instance'
    I don't understand why I cant create a file resource in JNDI, it seems like a simple enough thing to do. Am I doing something wrong or missing something? Any help would be greatly appreciated.
    Thanks

    Hello xalien,
    I have the same problem. I need to access external xml config file via JNDI from my servlet, running on Tomcat 5.0.28. Have you manage to define an URL resource? If so, please provide an example how to do it. Many thanx.

  • Create pdf file dynamically using XML

    Hi Experts,
    I have a Webdynpro application where I want to print the data for 'N' number of employees using adobe interactive forms. I have designed the form for one employee. I want to use the same format for the rest of the employees. Can any body please guide me how to go about this.
    Regards,
    Abdullah

    In your context , create a node <b>MasterNode</b> of cardinality <b>1...1</b> and <b>singleton</b> set to <b>true</b>. Bind this to the <b>dataSource</b> property of the <b>InteractiveFormElement</b>.
    Inside this <b>MasterNode</b> create a node <b>Data</b> of cardinality <b>0...n</b> and <b>singleton</b> set to <b>false</b>. Keep all of your payslip attributes inside this node.
    In your interactive form element , in the Body Page create a subform of Type <b>Flow Content</b> and Flow Direction <b>Table</b> .Check the chechbox  for <b>Allow Page Breaks within Context</b> . Inside this subform create another subform of Type <b>Flow Content</b> and Flow Direction <b>Western Text</b> . Uncheck the checkbox for <b>Allow Page Breaks within Context</b> . Put all of your pay slip UI elements inside this subform and bind them with the attributes under the node Data. Also tick the property of the inner subform under the section Object->Subform that says <b>Repeat Subform for each Data Item</b>
    In your view controller coding area , create an element of the node Data for each employee record and populate it with values for the particular employee .  
    Add all of the elements that you created into an ArrayList and bind this ArrayList to the node Data. Now your form is ready for n number of employees.
    Put this sort of coding in your view controller coding:
    IDataElement objData = null;
    ArrayList arlData = null;
    int intNumberOfEmployees=0;
    try
            arlData = new ArrayList();
            intNumberOfEmployees = //Get size of your model node that returns employee info
            if(intNumberOfEmployees>0)
                    for(int i=0;i<intNumberOfEmployees;i++)
                            objData  = wdContext.createDataElement();
                            objData.setName("//Value fetched from backend here");//Eg:wdContext.nodeEmployeeInfo.getEmployeeInfoElementAt(i).getname()
                            //Similarly set all of the values
                            arlData.add(objData);
            wdContext.nodeData.bind(arlData);

  • How to create DTD from XML using DOM

    Hi,
    Is there a way to create a corrosponding DTD of a xml-file using DOM. I have a XML-file that's pretty huge I want to create a DTD for that XML-file using DOM. Can anyone plz. lead me how to do this. I tried to use XMLSpy to convert the XML into DTD but the resulting DTD is not correct. Is there a way to create the DTD using DOM.
    Any help is really appreciated. Thanks

    When you say you are trying to convert XML to DTD, do you mean you are trying to convert a XSD (schema) to a DTD, or that you are trying to create a schema that corresponds to a given XML document.
    Realize that DTDs are not very powerful. XSD documents allow for much more detail. I don't have a proof, but I'm absolutely confident that any DTD can be expressed as a schema but not all schemas can be represented as a DTD. In other words, DTDs are not worth the trouble, in my opinion.

  • How to create SDA file for using AXIS Framework in the SOAP Adapter

    Hi experts,
    I have the following question:
    How I can create the SDA file aii_af_axisprovider.sda for using the AXIS Framework in the SOAP Adpater described in http://help.sap.com/saphelp_nw04/helpdata/en/45/a4f8bbdfdc0d36e10000000a114a6b/content.htm ?
    I have downloaded the files axis.jar, commons-discovery-0.2.jar, commons-logging-1.0.4.jar, commons-net-1.0.0-dev.jar and wsdl4j-1.5.1.jar. But how to create the SDA file aii_af_axisprovider.sda? Which tool I have to use for this? It is enough to compress these 5 jar-files in the sda file or need I further files with further information (meta information etc.)?
    Thanks and best regards
    Christopher

    Hi Christopher,
        Check this discussion if you have not checked already.
    Re: NTLM Authentication dosent work with XI ?
    Regards,
    Ravi

  • How Can i create this  especific xml using structNew()?

    Hi everyone!
    I'm starting my first steps using coldfusion technology and i have been facing some problems when i try to create a client that consumes my webservices.
    What i trying to do is:
    to create this kind of xml structure:
    <elem att1="1" att2="2"/>
    i use this coldfusion code:
    elem= structNew();
    elem.att1= "1";
    elem.att2= "2";
    But, what if i want to create this kind of structure
    <elem att1="1" att2="2">ELEMENT VALUE</elem>
    what can i do to insert the element value "ELEMENT VALUE"
    I tried structInsert, but i don't think it'll help me.
    Thank in advance,
    Felipe

    Thanks again for your help and patience, Ian.
    I wrote two client webservices using coldfusion structNew() and worked perfectly because they didn't use element values, just attribute values
    In my client webservices i use this to consume the webservices:
    message= structNew();
    message.date = "2009-11-16";
    message.num = "010203";
    user= structNew();
    user.account= "902301003456175";
    user.pwd= "123456";
    objetcWS = structNew();
    objetcWS.message = message;
    objectWS.user = user;
    ws = createObject("webservice", "http://www.somedomain.com/soap/wsfile.wsdl");
    return =  ws.getSomeData(objectWS);
    Those codes above creates the xml request structure that communicates  with  the servef through SOAP protocol:
    <message date="2009-11-16" num="010203"/>
    <user account= "902301003456175" pwd= "123456"/>
    As i said, that works fine, but the problem is when i have to send to my webservices server something with the xml structure like this
    <user account= "902301003456175" pwd= "123456">USERNAME</user>
    i have no idea how to set the value (Text) of the element user.
    That my main question (for now hahahaha).
    sorry for any confusing concepts i wrote.
    Thanks again

  • Can't create a file by using BufferedWriter

    Hello,
    I am going to create a new html file "C:\test1.html" by modifying the old file "C:\test.html".
    However I have not seen the file in the c driver.
    Thanks for any help.
    import java.awt.Point;
    import java.io.*;
    import java.util.*;
    public class AddIdinHtml
         private File file1;
    //     private File file2;
    //     private HashMap<String, Double> sta;
         public void AddId() {
    //     public void AddIdinHtml(String FileName, String Directory) {
         String path = System.getProperty("user.dir");
          try{
    //      String filenames = path+'/'+Directory+'/'+FileName;
              String filenames = "C:\\test.html";
          FileInputStream fstream = new FileInputStream(filenames);
        // Get the object of DataInputStream
            DataInputStream in = new DataInputStream(fstream);
                BufferedReader br = new BufferedReader(new InputStreamReader(in));
            String Line;
            String secondLine;
    //        firstLine = br.readLine();
            String[] parts;
            String[] newLines;
            int lineId = 0;
            List contents = new ArrayList();
            while ((Line = br.readLine()) != null)   {
                Line = Line.trim();
                contents.add(Line);
                if(Line.startsWith("<body")){
                    while ((Line.startsWith("</body")!= true)) {
                        Line = br.readLine();
    //                System.out.println(Line);
                    parts = Line.split("\\s");
                    if(Line.startsWith("<p")){
                       Line = "<p"+" "+"id="+lineId+Line.substring(2,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<li")){
                       Line = "<li"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<li")){
                       Line = "<li"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h1")){
                       Line = "<h1"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h2")){
                       Line = "<h2"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h3")){
                       Line = "<h3"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h4")){
                       Line = "<h4"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h5")){
                       Line = "<h5"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<h6")){
                       Line = "<h6"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<div")){
                       Line = "<div"+" "+"id="+lineId+Line.substring(4,Line.length());
                       contents.add(Line);
                       System.out.println(Line);
                       lineId++;
                    else if (Line.startsWith("<table")){
                       Line = "<table"+" "+"id="+lineId+Line.substring(6,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<tr")){
                       Line = "<tr"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<th")){
                       Line = "<th"+" "+"id="+lineId+Line.substring(3,Line.length());
                       contents.add(Line);
                       lineId++;
                    else if (Line.startsWith("<td")){
                       Line = "<td"+" "+"id="+lineId+Line.substring(4,Line.length());
                       contents.add(Line);
                       lineId++;
    //            contents.add(Line);
                lineId++;
             file1 = new File("C:\\test1.html");
                if(file1.exists())//to judge if difference file exists,delete it
                    file1.delete();
             FileWriter outFile1 = new FileWriter(file1,true);
                BufferedWriter out1 = new BufferedWriter(outFile1);
               newLines = (String[]) contents.toArray(new String[contents.size()]);
               StringBuffer buffer2 = new StringBuffer();
               for(String rec : newLines){
                     buffer2.append(rec);
                     buffer2.append("\n");
                     out1.write(buffer2.toString());
                     out1.flush();
              in.close();
        }catch (Exception e){//Catch exception if any
          System.err.println("Error1: " + e.getMessage());
        public static void main(String[] args){
            AddIdinHtml ad = new AddIdinHtml();
            ad.AddId();
    }

    kajbj,
    you are right. It is not executing.
    I added one printing but no output.for(String rec : newLines){
                      StringBuffer buffer2 = new StringBuffer();
                     buffer2.append(rec);
                       System.out.println("test");// no printing here
                     buffer2.append("\n");
                     out1.write(buffer2.toString());
                     out1.flush();
               }but why?

  • Creating UDL file for use of HFMCopyApplication utility

    I'm trying to create the UDL file on the HFM server to link to the SQL database where HFM sits.
    I followed the instructions and created a new text document, rename it as extension .udl. According to the instruction, I'm supposed to double click on this new file and an data link property window will appear. But all I see is still a blank text document.
    Am I missing something? In the past I always asked our application support guys to do that but now I have to figure it out myself....
    Thanks!

    Hi,
    The reason to rename the file to .UDL is that the UDL extension should be mapped to an application that will let you make a database connection.
    You either have one of two problems if double clicking on the UDL file opened in Notepad:
    #1 - At some point .UDL file extensions were mapped to point to Notepad (or whatever text editor the file opened in) [I'm doubtful this is the problem]
    #2 - In Windows Explorer you do not have file extensions visible; therefore, when you renamed your file, it didn't rename it the way you wanted it to. For instance instead of renaming database.txt to database.udl, you ended up with database.udl.txt This file would still open in Notepad as .TXT is associated with Notepad (or other text editor).
    IF #2 is the problem, do the following:
    #1 - Open a File Explorer window and navigate to the folder with the UDL file.
    #2 - Click on Tools
    #3 - Folder Options
    #4 - Click on View
    #5 - Make sure 'Hide extensions for known file types' is unchecked.
    #6 - Hit OK
    #7 - Refresh the File explorer window and note the filename.
    #8 - If the filename is something like .UDL.txt, rename it to remove te .txt.
    If #1 is the issue: (Note : I'm giving you windows 7 version which may be different than XP, but it should still be in the control panel somewhere)
    #1 - Open Control Panel
    #2 - Open Default Programs
    #3 - Open Set Associations
    (NOTE: Instead of steps 1-3 click Start and type in associations and one of the results will be to set file associations)
    #4 - Locate the .UDL file extension and confirm it is set as Microsoft Data Link, OLE DB Core Services
    ---IF NOT set to OLE DB Core Services --
    #5 - Click on Change Program
    #6 - Select OLE DB Core Services from Recommended Programs List

  • How to create pdf files dynamically using Java

    I am new to java world. I got a task of generating dynamic pdf files using Java. I have tried with some third party APIs for generating pdf. But most of them are not so feasable. I am looking for source code for one such APIs so that I can build my custom requirements over it.
    Thanks

    I am new to java world. I got a task of generating
    dynamic pdf files using Java. I have tried with some
    third party APIs for generating pdf. But most of
    them are not so feasable. Which ones? What was wrong with them?
    I am looking for source
    code for one such APIs so that I can build my custom
    requirements over it.What are your exact requirement?

  • Creating js file to use in JSP????

    Could someone please tell me how to move javascript code that I have in my JSP to a separate js file and then use that js code in my JSP???

    This is the entire mainjavascript.js file ...
    <script>
         function checkForm()
              if(document.Check.Barcode.value == "")
                   alert("Sorry, you must enter a barcode");
                   return false;
              if(document.Check.Title.value == "")
                   alert("Sorry, you must enter a title");
                   return false;
              if(document.Check.Barcode.value.length > 5)
                   alert("Sorry, the barcode can not exceed 99,999");
              if(document.Check.Title.value.length > 100)
                   alert("Sorry, the title can not be more than 100 characters long");
                   return false;
              if(document.Check.Author.value.length > 40)
                   alert("Sorry, the author can not be more than 40 characters long");
                   return false;
              if(document.Check.Publisher.value.length > 30)
                   alert("Sorry, the publisher can not be more than 30 characters long");
                   return false;
              if(document.Check.Isbn.value.length > 20)
                   alert("Sorry, the ISBN can not be more than 20 characters long");
                   return false;
              if(document.Check.Publishdate.value.length > 7)
                   alert("Sorry, the publish date field must be in the format YYYY-MM");
                   return false;
              if(document.Check.Description.value.length > 500)
                   alert("Sorry, the description can not be more than 500 characters long");
                   return false;
              if(document.Check.Orderedby.value.length > 40)
                   alert("Sorry, the ordered by field can not be more than 40 characters long");
                   return false;
              if(document.Check.Mediatype.value == "0")
                   alert("Sorry, you must enter a media type");
                   return false;
              if(document.Check.Location.value == "0")
                   alert("Sorry, you must enter a location");
                   return false;
              var a = parseInt(document.Check.Barcode.value);
              var b = parseInt(document.Check.largestBarcode.value);
              if(a <= b)
                   alert("Sorry, you must enter a barcode that is greater than " + document.Check.largestBarcode.value);
                   return false;
    </script>
    <script language="JavaScript">
         function StripQuotes(){
         //This function will prevent double quotes from being placed around title
         var preamble = document.Check.Title.value;
         var strTitle = "";
         for (i=0; i < preamble.length; i = i + 1){
         if (preamble.charAt(i) == "\""){
              preamble.charAt(i) == "";
                   }// ends IF
                   else{var strTitle = strTitle + preamble.charAt(i);}
         }// ends FOR
         document.Check.Title.value = strTitle;
         }// ends StripQuotes() function
    </script>

  • Problem in creating a build.xml for weblogic portal application

    Team ,
    I am facing problem in creating the build.xml using weblogic.BuildXMLGEN tool .
    a) Below is the structure of my portal application
    SrcCode
    --- .metadata (eclipse plugins folder)
    --- B2BApp ( Ear Content)
    --- b2bPortal ( portal related file(controllers,jsp)
    --- b2bsrc     (java src)
    b) Now I executed below utility to generate the build.xml "
    java weblogic.BuildXMLGen -projectName B2BApp -username weblogic -file build.xml -password welcome1 F:\srcCode"
    c) Based on the above step , build.xml got generated .
    d) when I execute "ant compile" target from the command prompt , I see the below exception
    ant compile
    Buildfile: build.xml
    compile:
    +[wlcompile] [JAM] Warning: failed to resolve class AbstractJspBacking+
    +[wlcompile] [JAM] Error: unexpected exception thrown:+
    +[wlcompile] com.bea.util.jam.internal.javadoc.JavadocParsingException: Parsing failure in F:\b2bNew\b2bPortal\src\portlets\b2b\dmr\Picker\PickerController.java at line 58.+
    e) I suspect , the problem is bcoz of classpath issues , as I generated build.xml donot have the references to dependent lib's.As build.xml looks like below :
    +<target name="compile" description="Only compiles B2BApp application, no appc">+
    +<wlcompile srcdir="${src.dir}" destdir="${dest.dir}">+
    +<!-- These referenced libraries were not found -->+
    +<!-- <library file="p13n-core-web-lib" /> -->+
    +<!-- <library file="jersey-web-lib" /> -->+
    +.....+
    +....+
    Please help me to reslove these issues .
    PS: I able to deploy the application using 10.3.2 weblogic workshop ( i.e inbuilt eclipse )

    i JaySen ,
    thanks for your response. As mentioned we added all the necessary library within the -librarydir but still we see the same error :
    +[JAM] Error: unexpected exception thrown:+
    com.bea.util.jam.internal.javadoc.JavadocParsingException: Parsing failure in F:\b2bNew\b2bPortal\src\portlets\typeAhead\TypeAheadController.java at line 70.  Most likely, an annotation is declared whose type has not been imported.
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.getAnnotationTypeFor(JavadocTigerDelegateImpl_150.java:410)
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.extractAnnotations(JavadocTigerDelegateImpl_150.java:176)
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.extractAnnotations(JavadocTigerDelegateImpl_150.java:152)
    at com.bea.util.jam.internal.javadoc.JavadocClassBuilder.addAnnotations(JavadocClassBuilder.java:404)
    at com.bea.util.jam.internal.javadoc.JavadocClassBuilder.populate(JavadocClassBuilder.java:359)
    ===================
    a) this is a upgrade project [ upgrading from wlp 8.1.4 to 10.3.2 ]
    i.e we are using weblogic portal 10.3.2 version.
    b) Searched some sites/forums regarding the above error, and it says something related to "jwsc" ant task [ i.e while compiling a webservice(JWS) ], but we see this error while compiling a normal controller(jpf) class :(
    c) we are using "ant compile" target which internally calls wlcompile task , while executing wlcompile this error is thrown .
    Help Appreciated
    Thx,
    Sarat

  • How to create our own XML Schema (.xsd) in Weblogic WorkShop

    Hi,
    I am new to Weblogic Workshop.I want to create one xml schema with custom elements.
    when I am creating a file xml schema(.xsd).The file contains default namespace and no child elements in it.I don't know how to add elements to that file.
    please tell me how to add parent elements and child elements and also our own xml namingspace.

    Hi Sivaram,
    Unfortunately, the 8.1 IDE did not have special tooling for schema generation.
    You will need to create it by hand or using an external tool
    If you are using an external tool to create the file within the schema project, you might want to disable the schema project auto build, which will be triggered every time a file save takes place
    cheers
    Raj

Maybe you are looking for

  • ResourceMultiParentClassLoader-3d19dc64-alive - ERROR in SOAP Recvr Channel

    Hi,      We have a WS Sender to SOAP Receiver scenario :- The message from the IE has been processed but has failed in the adapter and throws the below error :- Audit Log of Receiver SOAP Communication Channel :- =====================================

  • VK11/12- Warning pop up

    Hii All There is a requiement in condition record where we want to have a warning pop up when we enter the valid from date i.e. whenever the valid from date is in past the system should give a pop up message. Can anyone let me know the settings where

  • LMS 4.2 - CPU Utilization Reports

    We have CPU reports set to run daily for some of our higher priority switches, and we've noticed that some of the data isn't meshing with what we see on the switch. We have one heavily utilized switch that reports near 100% CPU utilization sometimes.

  • Help! I'm having trouble with images on my web page.

    I'm trying to create a page with a bunch of my photos but I need the photos broken up into groups so I can discuss the different groups. So I simply cut and paste the photo area several times BUT now when I click on any picture in any group it only d

  • Sorting application folders

    hi there, i think i can answer this myself but just in case my head ain't right, how can you sort an application folder, ie. have the sub-folders at the top alphabetical then the application objects at root sorted alphabetical. cheers, paul.