OAS Error with Servelet example from OTN

I have followed the servelet example
from OTN Oracle Java Roadmap and it works
in JDeveloper. THen I followed the steps for
deployment to OAS and I get the following
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `Java cartridge runtime intialize..., thr_id: 19
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `Notify object content initialized to null`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `config flag: MAX_HEAP value: 64M
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `config flag: SYSTEM_PROPERTY value: java.naming.factory.initial=oracle.oas.naming.jndi.CartxInitCtxFactory
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `config flag: SYSTEM_PROPERTY value: ORACLE_HOME=e:\oracle\oas
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `config flag: SYSTEM_PROPERTY value: ORAWEB_HOME=e:\oracle\oas\ows\4.0
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `Using Servlet runtime
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `config flag: RUNTIME_MODE value: JSERVLET
`
02-22-2000 13:21:43 0 demlwo193 `JAVAWEB` 445 7 0x400fff `CLASSPATH=e:\oracle\oas\ows\4.0\jdk\lib\classes.zip;e:\oracle\oas\ows\4.0\classes\services.jar;e:\oracle\oas\ows\cartx\jweb\classes\jweb.jar;e:\oracle\oas\ows\cartx\jweb\classes\j servlet.jar;e:\oracle\oas\orb\classes\yoj.jar;e:\oracle\oas\ows\4.0\classes\cosnam.jar;e:\oracle\oas\orb\classes\session.jar;e:\oracle\oas\orb\classes\cache.jar;e:\oracle\oas\jdbc\ lib\classes111.zip;e:\oracle\oas\ots\classes\oraclejts.jar;e:\oracle\oas\ots\classes\jtsjdbc.jar;e:\oracle\oas\ows\4.0\classes\ecoapi.jar;e:\oracle\oas\ows\4.0\classes\ejbapi.jar;e :\oracle\oas\ows\4.0\classes\oasdeploy.jar;c:\ctxdemo\DemoDBServelet.jar;c:\jCVS-5.1.1\jcvsii.jar
`
02-22-2000 13:21:47 0 demlwo193 `JAVAWEB` 445 0 0x400fff `Exception `
02-22-2000 13:21:47 0 demlwo193 `JAVAWEB` 445 0 0x400fff `in thread `
02-22-2000 13:21:47 0 demlwo193 `JAVAWEB` 445 0 0x400fff `"Thread-5"`
02-22-2000 13:21:47 0 demlwo193 `JAVAWEB` 445 0 0x400fff ` `
02-22-2000 13:21:47 0 demlwo193 `JAVAWEB` 445 0 0x400fff `Exception happend in executing:oracle.OAS.servlet.servletrunner.main(String[])
`
null

1. Which version of JDK you are using. OAS 4081 is certified for JDK 1.1.6. If you are using JDeveloper3.0 (JDK 1.2.2), please change over to JDeveloper3.0 (JDK 1.1.8).
2. Similarly, which version of JVM is used with OAS. You may have to edit your wrb.app to make necessary changes.
Jayakumar
null

Similar Messages

  • Error With Export/Print from Crystal Report Viewer

    Hello there,
    I've searched through the web and SAP discussion boards with not much luck with this issue.
    After working through this for some days now I've decided to look here for help.
    Environment:
    I have created a web Crystal Report viewer application(Developed with SBOP BI Platform 4.0 SP06 .NET SDK Runtime) that communicates with a managed Cyrstal Server 2011 SP4 (Product 14.0)
    I am able to connect and authenticate with the server, retrieve a token for communication and display reports in the Crystal report Viewer successfully.
    Problem:
    When I attempt to export, I receive the prompt to select format and pages.
    When I click export after selections most times I receive an error with the text
    Unable to cast COM object of type 'System.__ComObject' to interface type 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{74EEBC42-6C5D-11D3-9172-00902741EE7C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Other times the page simply refreshes on export.
    When I click to print, no print dialog is displayed the page always refreshes and no error is displayed.
    No Print or Export document is ever created.
    As many print/export issues seems to be related, I'm guessing this two issues are as well.
    Notes:
    I am utilizing the ReportClientDocument model
    I am storing this in session to use as the crystal report viewer report source on postbacks
    I am assigning a subset of export formats to the crystal report viewer
    I am setting particular parameters as well on the report source
    At this point I would appreciate every assistance I may receive on this issue
    Thanks in advance,
    Below is the pertinent code
    Code:
    <aspx>
       <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
       AutoDataBind="true" EnableDatabaseLogonPrompt="False"
       BestFitPage="False" ReuseParameterValuesOnRefresh="True"
      CssClass="reportFrame" Height="1000px" Width="1100px" EnableDrillDown="False"
      ToolPanelView="None" PrintMode="Pdf"/>
    <Codebehind>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.Shared;
    namespace ClassicInternalReportPage
        public partial class Reports : System.Web.UI.Page
            protected override void OnInit(EventArgs e)
                base.OnInit(e);
                if (!String.IsNullOrEmpty(Convert.ToString(Session["LogonToken"])) && !IsPostBack)
                    SessionMgr sessionMgr = new SessionMgr();
                    EnterpriseSession enterpriseSession = sessionMgr.LogonWithToken(Session["LogonToken"].ToString());
                    EnterpriseService reportService = enterpriseSession.GetService("RASReportFactory");
                    InfoStore infoStore = new InfoStore(enterpriseSession.GetService("InfoStore"));
                    if (reportService != null)
                        string queryString = String.Format("Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS "
                           + "Where SI_PROGID='CrystalEnterprise.Report' "
                           + "And SI_ID = {0} "
                           + "And SI_INSTANCE = 0", Request.QueryString["rId"]);
                        InfoObjects infoObjects = infoStore.Query(queryString);
                        ReportAppFactory reportFactory = (ReportAppFactory)reportService.Interface;
                        if (infoObjects != null && infoObjects.Count > 0)
                            ISCDReportClientDocument reportSource = reportFactory.OpenDocument(infoObjects[1].ID, 0);
                            Session["ReportClDocument"] = AssignReportParameters(reportSource) ? reportSource : null;
                            CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                            CrystalReportViewer1.DataBind();
                //Viewer options
                // Don't enable prompting for Live and Custom
                CrystalReportViewer1.EnableParameterPrompt = !(Request.QueryString["t"] == "1" || Request.QueryString["t"] == "4");
                CrystalReportViewer1.HasToggleParameterPanelButton = CrystalReportViewer1.EnableParameterPrompt;
                CrystalReportViewer1.AllowedExportFormats = (int)(ViewerExportFormats.PdfFormat | ViewerExportFormats.ExcelFormat | ViewerExportFormats.XLSXFormat | ViewerExportFormats.CsvFormat);
            protected void Page_Load(object sender, EventArgs e)
                if (IsPostBack && CrystalReportViewer1.ReportSource == null)
                    CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                    CrystalReportViewer1.DataBind();
            private bool AssignReportParameters(ISCDReportClientDocument reportSource)
                bool success = true;
                if (Request.QueryString["t"] == "1" || Request.QueryString["t"] == "2" || Request.QueryString["t"] == "4" )
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "STORE", Session["storeParam"]);
                    if (Request.QueryString["t"] == "2")
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "FromDate", Request.QueryString["fromdate"]);
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "ToDate", Request.QueryString["todate"]);
                else if (Request.QueryString["t"] == "3")
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "SKU", Request.QueryString["sku"]);
                else
                    //Unknown report type alert
                    success = false;
                return success;

    Thanks Don for your response,
    I'm new to the SCN spaces and my content has been moved a couple of times already.
    In response to your questions
    The runtime is installed on the web application server, if by that you mean the machine hosting the created .NET SDK application.
    My question was whether it was also required on the Crystal Server 2011 (I.E. the main enterprise server with CMS and Report management and I guess RAS and all that). I figured this would remain untouched and queries would simply be made against it to retrieve/view reports e.t.c
    If install of the SDK on Crystal Server 2011 is indeed required should I expect any interruption to any of the core services after a restart. I.E. I'm hoping that none of the SDK objects would interfere with the existing server objects (in SAP Business Objects)Reason I ask is I note that much of the SDK install directories are similar to the existing Crystal Enterprise Server 2011 (Product 14.0.0)
    Is this temp folder to be manually created/configured or is it created by the application automatically to perform tasks. Or are you referring to the default C:\Windows\Temp directory and so saying that the application would try to use this for print and export tasks?Once I'm sure which I'd give the app pool user permission
    Printing is to be client side but I figured by default (with the Crystal Report Viewer) it would simply pool and print from the user's printer. This is how it works with the previously used URL reporting approach (viewrpt.cwr). Therefore a user can print the document from wherever they are with their own printer.We don't intend on printing from the server machine, but are you suggesting that a printer must be installed on server (which one web or enterprise server) for any client side printing to work.
    App pool is running in 32 bit mode
    Initially didn't get anything useful from fiddler but I'd try and look closer on your suggestion.
    It's also possible that some of my questions are a misunderstanding of APP vs RAS vs WEB, so please feel free to clarify. Currently I see the Web server as simply the created .NET SDK Application and RAS (Crystal Server 2011 e.t.c) as the existing fully established Application server which I simply pool for information.
    Thank you for your patience and advice,

  • Error with clustering example

              I am trying to get the ejb clustering example working for weblogic 5.1 sp10. The
              examples all deploy ok, but when I try to get the client to connect I get the
              following errors occuring.
              I get no errors come up on the weblogic server.
              Can anyone help??
              cheers
              Piers
              ---------- Java output ------------------
              D:\java\jdk1.2.2\bin\javaw -classpath "D:\Downloads\Java\weblogic\cluster\classes;D:\weblogic\lib\weblogicaux.jar;D:\weblogic\classes;D:\java\jdk1.2.2\demo\jfc\Java2D\Java2Demo.jar;D:\java\jdk1.2.2\jre\lib\ext\iiimp.jar;D:\java\jdk1.2.2\jre\lib\i18n.jar;D:\java\jdk1.2.2\jre\lib\jaws.jar;D:\java\jdk1.2.2\jre\lib\plugprov.jar;D:\java\jdk1.2.2\jre\lib\rt.jar;D:\java\jdk1.2.2\lib\dt.jar;D:\java\jdk1.2.2\lib\tools.jar"
              examples.cluster.ejb.Client t3://mycluster:81
              Beginning cluster.ejb.Client...
              Start of transaction set 1
              Transaction 1 of set 1 (997703208590)
              Attempt 1
              Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              remapped from:weblogic.rmi.ServerError: A RemoteException occurred in the server
              method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]; nested exception is:
                   weblogic.rmi.ServerError: A RemoteException occurred in the server method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]
              Attempt 2
              Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              remapped from:weblogic.rmi.ServerError: A RemoteException occurred in the server
              method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]; nested exception is:
                   weblogic.rmi.ServerError: A RemoteException occurred in the server method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]
              Attempt 3
              Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              remapped from:weblogic.rmi.ServerError: A RemoteException occurred in the server
              method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]; nested exception is:
                   weblogic.rmi.ServerError: A RemoteException occurred in the server method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]
              Attempt 4
              Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              remapped from:weblogic.rmi.ServerError: A RemoteException occurred in the server
              method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]; nested exception is:
                   weblogic.rmi.ServerError: A RemoteException occurred in the server method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]
              Attempt 5
              Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              remapped from:weblogic.rmi.ServerError: A RemoteException occurred in the server
              method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]; nested exception is:
                   weblogic.rmi.ServerError: A RemoteException occurred in the server method
              - with nested exception:
              [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              not found]
              :::::::::::::: Error :::::::::::::::::
              java.lang.Exception: Transaction 1 of set 1 ended unsuccessfully
                   at examples.cluster.ejb.Client$Transaction.transaction(Client.java, Compiled
              Code)
                   at java.lang.Exception.<init>(Exception.java, Compiled Code)
                   at examples.cluster.ejb.Client$Transaction.transaction(Client.java, Compiled
              Code)
                   at examples.cluster.ejb.Client.main(Client.java, Compiled Code)
              Statistics for different servers:
              No statistics are available.
              End cluster.ejb.Client...
              

              Thanks, that worked! I didn't have the weblogic service pack jar
              on the classpath with compiling with ejbc.
              Sabha <[email protected]> wrote:
              >Make sure you have built the ejbs with the latest service pack and then
              >run the client. Seems either some older methods are still being called.
              >
              >-Sabha
              >
              >Piers wrote:
              >
              >> I am trying to get the ejb clustering example working for weblogic
              >5.1 sp10. The
              >> examples all deploy ok, but when I try to get the client to connect
              >I get the
              >> following errors occuring.
              >> I get no errors come up on the weblogic server.
              >>
              >> Can anyone help??
              >>
              >> cheers
              >>
              >> Piers
              >>
              >> ---------- Java output ------------------
              >>
              >> D:\java\jdk1.2.2\bin\javaw -classpath "D:\Downloads\Java\weblogic\cluster\classes;D:\weblogic\lib\weblogicaux.jar;D:\weblogic\classes;D:\java\jdk1.2.2\demo\jfc\Java2D\Java2Demo.jar;D:\java\jdk1.2.2\jre\lib\ext\iiimp.jar;D:\java\jdk1.2.2\jre\lib\i18n.jar;D:\java\jdk1.2.2\jre\lib\jaws.jar;D:\java\jdk1.2.2\jre\lib\plugprov.jar;D:\java\jdk1.2.2\jre\lib\rt.jar;D:\java\jdk1.2.2\lib\dt.jar;D:\java\jdk1.2.2\lib\tools.jar"
              >> examples.cluster.ejb.Client t3://mycluster:81
              >>
              >> Beginning cluster.ejb.Client...
              >>
              >> Start of transaction set 1
              >>
              >> Transaction 1 of set 1 (997703208590)
              >>
              >> Attempt 1
              >>
              >> Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              >> remapped from:weblogic.rmi.ServerError: A RemoteException occurred
              >in the server
              >> method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]; nested exception is:
              >> weblogic.rmi.ServerError: A RemoteException occurred in the
              >server method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]
              >>
              >> Attempt 2
              >>
              >> Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              >> remapped from:weblogic.rmi.ServerError: A RemoteException occurred
              >in the server
              >> method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]; nested exception is:
              >> weblogic.rmi.ServerError: A RemoteException occurred in the
              >server method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]
              >>
              >> Attempt 3
              >>
              >> Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              >> remapped from:weblogic.rmi.ServerError: A RemoteException occurred
              >in the server
              >> method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]; nested exception is:
              >> weblogic.rmi.ServerError: A RemoteException occurred in the
              >server method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]
              >>
              >> Attempt 4
              >>
              >> Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              >> remapped from:weblogic.rmi.ServerError: A RemoteException occurred
              >in the server
              >> method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]; nested exception is:
              >> weblogic.rmi.ServerError: A RemoteException occurred in the
              >server method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]
              >>
              >> Attempt 5
              >>
              >> Error: java.rmi.RemoteException: Weblogic RemoteException(weblogic.rmi.ServerError)
              >> remapped from:weblogic.rmi.ServerError: A RemoteException occurred
              >in the server
              >> method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]; nested exception is:
              >> weblogic.rmi.ServerError: A RemoteException occurred in the
              >server method
              >> - with nested exception:
              >> [java.lang.NoSuchMethodError: weblogic.ejb.internal.EJBHomeImpl: method
              >findMethodInfo(Ljava/lang/String;)Lweblogic/ejb/internal/MethodInfo;
              >> not found]
              >>
              >> :::::::::::::: Error :::::::::::::::::
              >>
              >> java.lang.Exception: Transaction 1 of set 1 ended unsuccessfully
              >>
              >> at examples.cluster.ejb.Client$Transaction.transaction(Client.java,
              >Compiled
              >> Code)
              >>
              >> at java.lang.Exception.<init>(Exception.java, Compiled Code)
              >>
              >> at examples.cluster.ejb.Client$Transaction.transaction(Client.java,
              >Compiled
              >> Code)
              >>
              >> at examples.cluster.ejb.Client.main(Client.java, Compiled Code)
              >> Statistics for different servers:
              >>
              >> No statistics are available.
              >>
              >> End cluster.ejb.Client...
              >
              

  • Errors in ZIP files from OTN

    Hello,
    I try to download the client software for Oracle 8.1.7 on NT, but the downloaded ZIP file contains errors. When I try to fix the errors my original ZIP file is truncated from over 500Mb to 20Kb! And it does not work of course.
    All the other ZIP files contains errors too.
    I use the PKWARE PKunzip utility.
    Where can I find the correct ZIP files for download?
    Kind regards, Richard Klavers.

    Can you please try with this direct url: http://otn.oracle.com/software/htdocs/devlic.html?http://download.oracle.com/otn/nt/oracle8i/win817client.zip
    Regards,
    OTN

  • Error running code examples from Training Video

    I am currently learning Java and I am using a Java Training series from Sun. There are several code examples that I am having problems running. I am 99.9% sure that my code is correct. That is the code that I have followed along and written.
    Here is an example of code that I am trying to run. ( I am on OS X 10.5 BTW )
    public class Person
         public int ageYears = 32;
         public void calculateAge()
              int ageDays = ageYears * 365;
              long ageSeconds = ageYears * 365 * 24L * 60 *60;
              long ageMinutes = ageSeconds / 60;
              long ageMilliseconds = ageSeconds * 1000;
              System.out.println("You are " + ageDays +  " days old.");
              System.out.println("You are " + ageSeconds + " seconds old.");
              System.out.println("You are " + ageMinutes + " minutes old.");
              System.out.println("You are " + ageMilliseconds + " milliseconds old.");
    }After I create the file (which is named Person.java) I open the terminal and cd to the directory the file is in. In my terminal I first say
    javac Person.java
    I don't get any errors at all. Then I try to run the program like this.
    java Person
    When I try this I get the following error
    Exception in thread "main" java.lang.NoSuchMethodError: main
    I am not sure why I get this error. On the instruction video the instructors code seams to run just fine with out have a main function. The instructor is on Windows and I am not sure if that has anything to do with it or not?
    Any thoughts or suggestions would be really helpful.

    mswallace wrote:
    I am currently learning Java and I am using a Java Training series from Sun. There are several code examples that I am having problems running. I am 99.9% sure that my code is correct. That is the code that I have followed along and written. Trust what the compiler and the JVM say to you.
    I am not sure why I get this error. On the instruction video the instructors code seams to run just fine with out have a main function. The instructor is on Windows and I am not sure if that has anything to do with it or not?
    Any thoughts or suggestions would be really helpful.So, as the error is asking you, where is the main method that every runnable program must have? This has nothing to do with windows and everything to do with all programs needing a main method to run (even applets where the main method is I believe within the Applet class code).

  • Problem with JTableSorter demo from OTN sample

    I've downloaded TableSorter from JDeveloper Sample and try to execute it now.
    I've done all the step ( following the guide: How to Sort a JTable Using the TableSorter Model from JDeveloper).
    When I connect to database with hr8/hr8@mymachine with SQL+, I can select, insert, update... all of the tables for example: employees, departments...It seems that they do correct.
    My problem:
    By Run FrameDepartmentsViewEmployeesView2.java with JDeveloper, I can only see the DepartmentView but not any row of employeesview2-table and so I can't sort the table. When I try to insert new record ( both departmentsview and employeesview ), it fails. The errors are:
    oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation.
    Statement: SELECT Employees.EMPLOYEE_ID,
    Employees.FIRST_NAME, Employees.LAST_NAME,
    Employees.EMAIL, Employees.PHONE_NUMBER,
    Employees.HIRE_DATE, Employees.JOB_ID,
    Employees.SALARY, Employees.COMMISSION_PCT,
    Employees.MANAGER_ID, Employees.DEPARTMENT_ID,
    Employees.DN FROM EMPLOYEES Employees WHERE Employees.DEPARTMENT_ID = :1
    Details:
    (----- LEVEL 1: DETAIL 0 -----
    (java.sql.SQLException) ORA-00904: Ung|ltiger Spaltenname (== illegal column name )
    I've still have this prolem until now. Can somebody help me to correct it?
    Thanks in advance.

    I have to go to meet my Professor for my exam now, so I have no time more to test BC4J tester today. I'll do it in monday and answer you later.
    Yes, I'm much intersted in client side sorting. Many thanks for your offer. Could you please tell me where I can find it, or send me under <[email protected]>.
    Regards,
    VKW

  • PowerPivot refresh error with data feed from sharepoint list with empty exception information

    Hi,
    My Powpivot refreshing error seems to be different from what others already experienced.
    Scenario:
    Constructed an external data source in the format of Http://<server_IP>/sites/<mysitecollection>/_vti_bin/listdata.svc
    selected one table with some of the needed columns in the next step
    Create calculate colums etc.
    Create pivot tables etc.
    All worked well offline
    Upload the workbook into PowerPivot Gallery
    Reference it from a page through Excel Web Service webpart allowing manual refresh
    The refresh always reports failure with the named external data source
    I opend the log file in C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS and located the following error messages:
    ASPPHOST::ShowEngineError: Out of line object 'DataSource', referring to ID(s) 'f8939b694cae', has been specified but has not been used。The following exception occurred while the managed IDbCommand interface was being used: .
    Please note in the above message, NO detailed exception message was given. In other words,
    the exception information is empty.
    I checked as many things as I possibly could includin the security accounts etc. All seem to be right. But this empty exception got me stuck here.
    What could possibly go wrong? Any help will be appreciated.
    Thanks.

    Hello,
    Here is a good article regarding Where to get information about data refresh failures for your reference, please see:
    http://social.technet.microsoft.com/wiki/contents/articles/3870.troubleshooting-powerpivot-data-refresh.aspx
    In addition, which credential option you're configured for the PowerPivot data refresh in SharePoint farm? You can go through the following articles regarding configure the PowerPivot data refresh:
    Configure the PowerPivot Unattended Data Refresh Account (PowerPivot for SharePoint):
    http://technet.microsoft.com/en-us/library/ff773327.aspx
    Configure Stored Credentials for PowerPivot Data Refresh (PowerPivot for SharePoint):
    http://technet.microsoft.com/en-us/library/ee210671.aspx
    Hope this helps.
    Regards,
    Elvis Long
    TechNet Community Support

  • Error with JDEV upgrading from 11.1.1.3 to 11.1.1.7

    Hi
    We have portal application built on Jdev version 11.1.1.3 (Weblogic 10.3.3 and jdk 1.6.0_18).
    Recently we started upgrading to Jdev version 11.1.1.7 (weblogic 10.3.5 and jdk 1.6.0_24). we built the application with 11.1.1.7 middleware, during the run time application failing with below stack trace.
    2013-10-02 16:31:20,948 exception.PortalViewErrorHandler 48
    ERROR - ASURAJ - handleException : beginThe class 'oracle.adfinternal.controller.state.ViewScope' does not have the property 'npsnfibean'.
    2013-10-02 16:31:20,951 exception.PortalViewErrorHandler 49
    ERROR - ASURAJ - handleException : begin {}
    javax.el.PropertyNotFoundException: The class 'oracle.adfinternal.controller.state.ViewScope' does not have the property 'npsnfibean'.
        at javax.el.BeanELResolver.getBeanProperty(BeanELResolver.java:547)
        at javax.el.BeanELResolver.getValue(BeanELResolver.java:249)
        at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:173)
        at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:200)
        at oracle.adf.share.el.VariableResolverELContext$1.getValue(VariableResolverELContext.java:53)
        at com.sun.el.parser.AstValue.getValue(Unknown Source)
        at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)
        at oracle.adf.share.el.OracleExpressionEvaluatorImpl.evaluate(OracleExpressionEvaluatorImpl.java:114)
        at oracle.adf.share.el.OracleExpressionEvaluatorImpl.evaluate(OracleExpressionEvaluatorImpl.java:69)
        at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:753)
        at oracle.adf.controller.internal.binding.RegionUtils.getTaskFlowId(RegionUtils.java:570)
        at oracle.adf.controller.internal.binding.TaskFlowRegionModelLocal.getTaskFlowId(TaskFlowRegionModelLocal.java:28)
        at oracle.adf.controller.internal.binding.DCTaskFlowBinding.getTaskFlowId(DCTaskFlowBinding.java:629)
        at oracle.adf.controller.internal.binding.DCTaskFlowBinding.shouldRefreshRegion(DCTaskFlowBinding.java:661)
        at oracle.adf.controller.internal.binding.TaskFlowRegionController.doRegionRefresh(TaskFlowRegionController.java:198)
        at oracle.adf.controller.internal.binding.TaskFlowRegionController.refreshRegion(TaskFlowRegionController.java:119)
        at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3211)
        at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2883)
        at oracle.adf.controller.internal.binding.TaskFlowRegionController.doRegionRefresh(TaskFlowRegionController.java:253)
        at oracle.adf.controller.internal.binding.TaskFlowRegionController.refreshRegion(TaskFlowRegionController.java:119)
        at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3211)
        at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2883)
        at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareRender(PageLifecycleImpl.java:565)
        at oracle.adf.controller.faces.lifecycle.FacesPageLifecycle.prepareRender(FacesPageLifecycle.java:82)
        at oracle.adf.controller.v2.lifecycle.Lifecycle$9.execute(Lifecycle.java:224)
        at oracle.adfinternal.controller.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:197)
        at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.access$400(ADFPhaseListener.java:34)
        at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$5.before(ADFPhaseListener.java:516)
        at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.beforePhase(ADFPhaseListener.java:76)
        at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.beforePhase(ADFLifecyclePhaseListener.java:44)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:378)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:237)
        at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
        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:205)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:128)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
        at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
        at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at com.netapp.everest.security.EverestSSOFilter.doFilter(EverestSSOFilter.java:230)
        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.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:71)
        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:324)
        at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
        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.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:324)
        at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
        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:163)
        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)
    Please note,
    Application is working on 11.1.1.3 middleware.
    And if we build the application with 11.1.1.3 middleware (and jdk 1.6.0.18) and run it on 11.1.1.7 middleware, it works perfectly fine.

    Hi
    Thanks for your reply.
    In my case, I have the bounded task-flow. I have the bean ('npsnfibean') configured in the task-flow as view scope. And I have the view (jsff) used in the same task-flow. This view has some other jsff included in that and these included jsff also uses the npsnfibean.
    I am seeing this error just after the control moved from router to page. There are no other log messages displayed. I don't think this is the issue of configuring the bean in out of scope.
    Can you please help me to debug this.It would be great if you can provide the defect number which is fixed in 11.1.1.7
    Thanks in advance
    Umashankara

  • Error With Insert Into From Select

    Hello,
    I have a problem with this query in pl sql developer with oracle 10G:
    insert into ca_nrj_rem(imsi,id_gamme_vente,domaine,date_topage,id_produit)
    (select a1.* from (select d.imsi, 1, 4, trunc(sysdate - 1), 'NRJ003'
    from ca_evenement_vsim a, ca_forfait b, ca_forfait c, ca_vsim_associe d
    where a.id_action = 'CP1'
    and bao.Lecture_Parametre_XML_V2(a.valeur_parametres, 'ancienCode') = b.code_forfait
    and b.code_gamme = 2
    and bao.Lecture_Parametre_XML_V2(a.valeur_parametres, 'nouveauCode') = c.code_forfait
    and c.code_gamme = 6
    and date_trace > sysdate - 6
    and a.vsimid = d.vsimid
    and d.date_fin is null
    group by d.imsi, trunc(sysdate - 1)) a1, ca_nrj_rem n
    where a1.imsi=n.imsi(+) and n.imsi is null);
    The select statement return X (163) values but the insert statement inserts Y (540) values
    Can you help me please ?
    Thanks You

    user511447 wrote:
    The select statement return X (163) values but the insert statement inserts Y (540) valuesNot possible if the select statements are identical.
    You'll have to provide more evidence and example output (format it on the forum by putting {noformat}{noformat} before and after it), so we can see exactly what you are doing.
    Are you sure that the table you are inserting into has no rows initially or that you are counting the rows correctly?
    Show us exactly what you are doing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • ICF-IE-http error with PO change from former SC in SRM

    Hello Gentlemen,
    Le Radis will be delighted to reward you points if you can explain why we get the following error message each time we try to modify a PO (already sent to the vendor) that is created from a shopping cart that is a copy from a former shopping cart.
    Context : SRM 4 (EBP 5) SP08 connected to a NON-R3 backend through XI. In the shopping cart there is a product number (not only material group with free text).
    The error message (in spanish but easy to understand):
    Nota
    &#61607; El texto error siguiente se ha procesado %=SYSYSID%> en el sistema: An exception that could not be caught occurred.
    &#61607; El error se produjo en el servidor de aplicación XXX y en el proceso de trabajo 0 .
    &#61607; La clase de cancelación ha sido: RABAX_STATE
    &#61607; La jerarquía de llamada ABAP ha sido:
    Function: BBP_PD_ABORT of program SAPLBBP_PDH
    Form: ABORT of program SAPLBBP_PDCV
    Form: CHANGE_VERSION_MAP_ORG of program SAPLBBP_PDCV
    Form: CHANGE_VERSION_UPDATES_ACTIVE of program SAPLBBP_PDCV
    Function: BBP_PDCV_UPDATE_ACTIVE of program SAPLBBP_PDCV
    Form: PROCDOC_CHECK of program SAPLBBP_PD
    Function: BBP_PROCDOC_CHECK of program SAPLBBP_PD
    Function: BBP_PD_PO_CHECK of program SAPLBBP_PD_PO
    Form: CHECK_PO of program SAPLBBP_PO_APP
    Form: PROCESS_EVENT of program SAPLBBP_PO_APP
    Código de error: ICF-IE-http -c: XXX -u: XXX -l: -s: SRD -i: XXX -w: 0 -d: 20060809 -t: 132018 -v: -e: UNCAUGHT_EXCEPTION
    Any clue, any bright idea, any experience, please feel free to answer
    Best regards,
    Le Radis

    Hi,
      See if the foll notes are helpful.
    833205
    661912
    769709
    HTH.
    BR,
    Disha.
    Pls reward points for helpful answers.

  • 7009: Test Execution Error with tutorial examples

    Hi,
    I tried to run the tutorial files found on EclipseCon 2014 site (the "classic" dvd app test).
    Following first steps, after running AUT when I run test cases I always get this error:
    7009: Test Execution Error.
    Referenced Testcase could not be found.
    What does it mean? Is it a configuration problem?
    I am on windows 7 64bit and Jubula 8.1 (the latest version).
    The same happens when I try to run other pre-installed example projects.
    Thanks for reply
    Regards
    Matteo

    Hi,
    okay, from a first quick look at your Test Case I can tell that the unbound modules concrete 8.0 library is missing in your database used by Jubula. This library is reused in the JubulaTutorial Project but since is does not exist in the database the JubulaTutorial Project is displayed "broken". But don´t worry, this is very easy to fix
    1. Open the Properties for the JubulaTutorial Project
    2. Select node "Used Projects"
    3. On the left hand side you can see which libraries exist in you DB, on the right hand side you can which projects are reused in the currently opened Project
    4. Select the unbound modules concrete 8.1 from the left side and select the unbound modules concrete 8.0 from the right side
    5. Then click the single arrow which points to the right side
    6. Confirm
    7. Fixed

  • Error with replicating materials from ERP to CRM 7.0

    Hi experts!
    After dump (No PXA storage space available at the moment) materials are not replicated from ERP to CRM.
    In transaction R3AC1 there are no filters for object MATERIAL.
    Replication is managed by transactions R3AR2-R3AR4 with parameters MARA-MATNR.
    In transaction SMW01 the status of incoming for material BDOC is green.
    But in the bottom of status bar there are some messages appears when clicking the buttons u201CShow BDOC message classic datau201D and  u201CShow BDOC message extended datau201D correspondingly:
    u2022     No classic data for BDoc message ХХХХХХХ found.
    u2022     No extended data for BDoc message ХХХХХХХ found.
    The table COMM_PRODUCT is empty.
    Can anyone help me ?
    Kostya Khveshchenik.

    HI Julian,
    I have exactly the same issue please would you let me know the solution to fix this issue.
    Will really appreciate if you can respond to this asap.
    Regards
    Shashidhar

  • Combined Billing Frustration and Errors with no help from AT&T

    I recently had combined billing for my home phone, dsl, and wireless. I upgraded to U-verse and did not know that my old account would be cancelled and everything would be seperated out to individual bills once again.  So here I am with three bills, my old combined billing, U-verse and wireless account.  I paid my all three of the bills the first time.  The second time the combined billing was just for a few days but I noticed that the previous payment that I had made for my wireless account had not been posted which I paid through my combined billing account.  A few days after that, they shut my mobile phones off.  I had to pay the bill twice to get my bill turned on.  I stayed on the phone with AT&T for about two or three days.  I am so frustrated with them and when I call all they do is transfer me back and forth from department to department when all I want them to do is transfer my payment to the right account so that I won't be out of an addiitional $300.00.  I wish that I could cancel service with them but they are the local phone company in my area.  Has anyone else had any problems like this with AT&T if so please advice me on what I need to do?

    Hi there! @desireaw83 thanks for posting your concerns. I’m so sorry to hear you’re having issues with your billing. We’ll be happy to get you in touch with the group that can handle this. please private message me by clicking here and provide your name and a good contact number.
    We will follow up with you within two business days.
    Thanks!
    Charise

  • Error with vb example

    This is from the VB Scripting reference:
    Set appRef = CreateObject("Illustrator.Application.3")
    If (appRef.Documents.Count = 0) Then
        Set docRef = appRef.Documents.Add
    Else
        Set docRef = appRef.ActiveDocument
    End If
    If appRef.Documents.Count > 0 Then
        If Not IsEmpty(appRef.ActiveDocument.selection) Then
            endIndex = UBound(appRef.ActiveDocument.selection)
            Set newGroup = appRef.ActiveDocument.GroupItems.Add
            For i = 0 To endIndex
                Set artItem = appRef.ActiveDocument.selection(i)
                Set dupItem = artItem.Duplicate(newGroup, aiPlaceAtEnd)
                appRef.ActiveDocument.GraphicStyles(2).ApplyTo dupItem
            Next
        End If
    End If
    I get an error "Object required"
    Any ideas?

    Version of illustrator?
    In Top of your coding declare the object for illustrator.
    Dim docRef As Illustrator.Document
    Dim appRef As New Illustrator.Application
    Also add the reference for your illustrator version.(In Vb goto Project->References->"Adobe Illustrator CS(Version) Type Library")

  • Error with XSLTransform example ....

    Hi,
    I try to use the XSLTransform exmaple and I've got the following error. Please help !!
    oracle.xml.parser.v2.XSLException: XSL-1009: Attribute 'xsl:version' not found in 'xsl:stylesheet'.
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Exception.java:42)
    at oracle.xml.parser.v2.XSLException.<init>(XSLException.java:38)
    at oracle.xml.parser.v2.XSLStylesheet.error(XSLStylesheet.java:1382)
    at oracle.xml.parser.v2.XSLStylesheet.processResult(XSLStylesheet.java:603)
    at oracle.xml.parser.v2.XSLStylesheet.initStylesheet(XSLStylesheet.java:409)
    at oracle.xml.parser.v2.XSLStylesheet.<init>(XSLStylesheet.java:147)
    at XSLTransform.main(XSLTransform.java:44)
    the xml file is:
    <?xml version="1.0"?>
    <portfolio>
    <stock>
    <name>zacx corp</name>
    <symbol>ZCXM</symbol>
    <price>28.875</price>
    </stock>
    <stock>
    <name>zaffymat inc</name>
    <symbol>ZFFX</symbol>
    <price>92.250</price>
    </stock>
    <stock>
    <name>zysmergy inc</name>
    <symbol>ZYSZ</symbol>
    <price>20.313</price>
    </stock>
    </portfolio>
    and the XSL file:
    <?xml version='1.0'?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
    <xsl:template match="/">
    <HTML>
    <BODY>
    <TABLE BORDER="2">
    <TR>
    <TD>Symbol</TD>
    <TD>Name</TD>
    <TD>Price</TD>
    </TR>
    <xsl:for-each select="portfolio/stock">
    <TR>
    <TD><xsl:value-of select="symbol"/></TD>
    <TD><xsl:value-of select="name"/></TD>
    <TD><xsl:value-of select="price"/></TD>
    </TR>
    </xsl:for-each>
    </TABLE>
    </BODY>
    </HTML>
    </xsl:template>
    </xsl:stylesheet>
    null

    Hi,
    I found the answer to my question ... I just have to change one ligne in my XSL stylesheet
    The old version:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
    and the correct one:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    Regards.
    null

Maybe you are looking for