Error in my webapp

Hello everyone. I'm running a webstore on Tomcat 3.2.3 and though everything looks right, I'm getting the following error in the console window:
2002-03-20 22:27:01 - Ctx( /RobertDouglass ): IOException in: R( /RobertDouglass
+ /img/Beetle6.jpg + null) Software caused connection abort: socket write error
What is curious to me is the + null. I don't have any idea how it is getting there, or if that is the cause of the error. I also don't understand what R(............) is. There is no method in my code named R().
The other bug in my application could be related to this. I have a catalog of items, represented by item beans, that are listed for sale. These are loaded from a database. When the application starts, everything is fine. After some time, or after some certain event, the first item can no longer be added to the cart. There is a large amount of code behind all of this, so I'll post that in seperated responses. Thanks for any ideas that you may have.
-Robert Douglass

and a sample bean:
import java.sql.*;
import java.util.*;
* <p>This is the Java bean used to get and display information about
* items for sale in our web based store.
* @see DBBeanBase
public class ItemBean extends DBBeanBase
* <p>Default constructor, creates an empty {@link ItemBean}.
public ItemBean()
{ super(); }
* <p>Copy constructor. This constructor creates a {@link ItemBean} object
* that is initially populated with a copy of the {@link Map} specified
* as a parameter to this constructor. All {@link java.util.Map Maps} should
* implement a copy constructor.
* @param copyThisMap the {@link Map} used to initialize this {@link ItemBean} object.
public ItemBean(Map copyThisMap)
{ super(copyThisMap); }
* <p>This constructor creates an {@link ItemBean} object and
* populates it with the fields in a {@link java.sql.ResultSet}.
* @param rs The {@link java.sql.ResultSet} object used to populate
* this class with information about an item.
* @throws java.sql.SQLException if there is an error iterating the
* {@link java.sql.ResultSet}.
protected ItemBean(ResultSet rs) throws SQLException
{ super(rs); }
* <p>This constructor creates an {@link ItemBean} object associated with the
* specified item id. If there is no record in the data source with the
* specified item id, an exception is thrown.
* @param connection The {@link java.sql.Connection} object used to execute
* the select statement that will retrieve the item information.
* @param iItemId specifies the item id used to populate this object.
* @throws java.sql.SQLException if there is an error selecting the item
* information.
* @throws java.lang.Exception if the item id is invalid.
public ItemBean(Connection connection, String strItemId) throws SQLException, Exception
super();
String strSQL = "SELECT * FROM Item WHERE ItemId = " + strItemId;
Statement statement = connection.createStatement();
ResultSet rs = statement.executeQuery(strSQL);
if (rs.next())
populateFromResultSet(rs);
else
throw new Exception("Invalid item Id: " + strItemId);
* <p>This method returns the item's Id.
* @return the item's id.
public String getItemId()
{return get("ITEMID").toString();}
* <p>This method returns the name of the item's image.
* @return the name of the item's image.
public String getImage()
{return get("IMAGE").toString();}
* <p>This method returns the item's description.
* @return the item's description.
public String getDescription()
{return get("DESCRIPTION").toString();}
* <p>This method returns the price of the item as a {@link java.lang.Double}.
* @return the price of the item as a {@link java.lang.Double}.
public Double getPrice()
{return (Double)get("Price");}
* <p>This method returns a quantity for this item as an {@link java.lang.Integer}.
* An item may or may not have a quantity. If they do not, default the quantity to
* zero.
* @return the item's quantity if it exists, otherwise return zero.
public Integer getQuantity()
Integer qty = new Integer(0);
if (get("QTY") != null)
qty = (Integer)get("QTY");
return qty;
* <p>This method returns a textual representation of this {@link ItemBean}.
* @return a textual representation of this {@link ItemBean}.
public String toString()
StringBuffer sb = new StringBuffer();
sb.append("ItemId: " + getItemId() + "\n");
sb.append("Image: " + getImage() + "\n");
sb.append("Description: " + getDescription() + "\n");
sb.append("Price: $" + getPrice().toString() + "\n");
sb.append("Qty: " + getQuantity().toString() + "\n");
return sb.toString();
* <p>This method returns a {@link java.util.Collection} of all of the items
* in the data source. This is really the store's catalog.
* @param connection The {@link java.sql.Connection} object used to execute
* the select statement that will retrieve the items.
* @return a {@link java.util.Collection} of all of the items in the data source.
* @throws java.sql.SQLException if there is an error selecting the items.
public static Collection getAllItems(Connection connection) throws SQLException
Collection col = new ArrayList();
String strSQL = "SELECT * FROM Item";
Statement statement = connection.createStatement();
ResultSet rs = statement.executeQuery(strSQL);
while (rs.next())
col.add(new ItemBean(rs));
return col;
* <p>Test method used to test this class. This method creates an ItemBean
* object using the specified DBURL and item id. The contents of the ItemBean are
* printed to the console. In addition, this method gets a
* {@link java.util.Collection} of all of the items in the data source and prints
* them on the console.
* <p>This test method assumes that the database is a HypersonicSQL database that
* contains an 'sa' account with no password.
* <pre>
* usage: java DBBean [DBURL] [itemId]
* </pre>
* @param args an array of command line arguments. This test method
* takes two parameters, one that specifies the DBURL and the other specifies
* the item id.
public static void main(String[] args)
     Connection connection = null;
     try
if (args.length != 2)
System.out.println("usage: java ItemBean [DBURL] [itemId]");
System.exit(0);
          String strDBDriver = "org.hsql.jdbcDriver";
          String strDBURL = args[0];
          String strDBUSER = "sa";
          String strDBPWD = "";
          Class.forName(strDBDriver);
          connection = DriverManager.getConnection(strDBURL,
                                                            strDBUSER,
                                                            strDBPWD);
DBBeanBase itemBean = new ItemBean(connection, args[1]);
System.out.println("An Order:\n" + itemBean);
System.out.println("All Items:\n" + ItemBean.getAllItems(connection));
     catch (Exception e)
          e.printStackTrace();
     finally
          try
               connection.close();
          catch (Exception e)
}

Similar Messages

  • Error while Deploying WebApp in exploded form on 6.1

    Hi,
    I am trying to deploy a webapp named "test" in the exploded form on 6.1 and the following is what I have put in the config.xml file. I am using SP2.
    <Application Deployed="true" Name="test" Path=".\config\coolDomain\applications">
    <WebAppComponent Name="test" Targets="myserver" URI="test>
    </Application>
    I receive the following error while bringing up the server :
    <Feb 28, 2002 2:00:48 PM PST> <Error> <HTTP> <[test] Error reading Web applicatio
    n ".\config\coolDomain\applications\test"
    java.net.UnknownHostException: java.sun.com
    Any help would be appreciated.
    Thanks !

    Ok, I got it , My webapp now gets registered. Thanks !!!!
    Lata Rao <[email protected]> wrote:
    Hi,
    I am using 6.1 with Service pack 2.But this did not as yet solve the
    problem.
    Also weblogic_sp.jar included in the classpath which I suppose is the
    service pack jar is not available in the lib directory. Has the service
    pack been incorporated in some other jar ?
    Any insight into this will be appreciated.
    Thanks much.
    - Lata Rao.

  • Portlet deploy error (javax.faces.webapp.FacesServlet)

    Hi all,
    I am trying to deploy a portlet created in Jdev 11.1.1.2 to WLS 10.3 .
    I have included and checked all the necessary libraries in both the app and on the WLServer.
    When I try to deploy I get the error of:
    java.lang.ClassNotFoundException: javax.faces.webapp.FacesServlet
    Even though I wasn't able to deploy to the remote WLServer, I was able to deploy the portlet to the IntegratedWebLogicServer without any problem.
    The libraries I have on the WLS 10.3 are:
    DMS Application (11.1.1.1.0)
    adf.oracle.domain(1.0,11.1.2.0.0)
    adf.oracle.domain.webapp(1.0,11.1.1.2.0)
    jsf(1.2,1.2.9.0)
    jstl(1.2,1.2.0.1)
    ohw-rcf(5,5.0)
    ohw-uix(5,5.0)
    UIX(11,11.1.1.1.0)
    oracle.adf.dconfigbeans(1.0,11.1.2.0.0)
    oracle.dconfig-infra
    oracle.jrf.system.filter
    oracle.jsp.next(11.1.1,11.1.1)
    oracle.webcenter.skin(11.1.1,11.1.1)
    oracle.wsm.seedpolicies(11.1.1,11.1.1)
    Please give me any ideas or suggestions on what I am missing?
    Thank you for your time
    Edited by: user9201929 on Apr 28, 2010 2:31 PM

    I have tried to add all the possible libraries that I could and my remote WLS10.3 deployments directory is now exactly like the IntegratedWebLogicServer deployments directory.
    Yet, it still complains about the javax.faces.webapp.FacesServlet when I tried to deploy.
    Can someone give me some hints on what I am missing?
    Btw, I deployed other ADF applications on the WLS10.3 successfully before.
    Thanks

  • Error when deploy webapp to weblogic

    Hi,
    i am trying to deploy war file from jdeveloper to weblogic and i get this error:
    conn_ucm = the name of the connection that i add to my project.
    11:26:22 AM] Weblogic Server Exception: weblogic.application.ModuleException: [HTTP:101216]Servlet: "wcmInitServlet" failed to preload on startup in Web application: "webapp1.war".
    oracle.stellent.wcm.common.LocalizedRuntimeException: java.lang.reflect.InvocationTargetException
    at oracle.stellent.wcm.javaee.shared.ServletApplicationFactory.createInstance(ServletApplicationFactory.java:49)
    at oracle.stellent.wcm.javaee.utils.ServletHelper.initializeApplication(ServletHelper.java:172)
    at oracle.stellent.wcm.javaee.servlet.filter.WCMInitializeServlet.init(WCMInitializeServlet.java:41)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at oracle.stellent.wcm.javaee.shared.ServletApplicationFactory.createInstance(ServletApplicationFactory.java:46)
    ... 45 more
    Caused by: oracle.stellent.wcm.server.ServerException: !CORE_SERVERAPP_PROJECT_ERROR_INITIALIZING_APPLICATION! : Not Found.
    at oracle.stellent.wcm.server.ServerContext.initialize(ServerContext.java:338)
    at oracle.stellent.wcm.server.ServerContext.<init>(ServerContext.java:139)
    at oracle.stellent.wcm.client.ClientApplication$1.<init>(ClientApplication.java:287)
    at oracle.stellent.wcm.client.ClientApplication.createServerContext(ClientApplication.java:287)
    at oracle.stellent.wcm.client.ClientApplication.initialize(ClientApplication.java:272)
    at oracle.stellent.wcm.javaee.servlet.WCMServletApplication.<init>(WCMServletApplication.java:49)
    ... 50 more
    Caused by: java.lang.RuntimeException: oracle.stellent.wcm.common.LocalizedRuntimeException: javax.naming.NameNotFoundException; remaining name 'conn_ucm'
    at oracle.stellent.wcm.core.idc.IdcClientFactory.<init>(IdcClientFactory.java:62)
    at oracle.stellent.wcm.server.ServerContext.initialize(ServerContext.java:277)
    ... 55 more
    Caused by: oracle.stellent.wcm.common.LocalizedRuntimeException: javax.naming.NameNotFoundException; remaining name 'conn_ucm'
    at oracle.stellent.wcm.core.idc.IdcClientFactory.populateConfigFromADF(IdcClientFactory.java:258)
    at oracle.stellent.wcm.core.idc.IdcClientFactory.initialize(IdcClientFactory.java:158)
    at oracle.stellent.wcm.core.idc.IdcClientFactory.<init>(IdcClientFactory.java:57)
    ... 56 more
    Caused by: javax.naming.NameNotFoundException; remaining name 'conn_ucm'
    at oracle.adf.share.jndi.ContextImpl.findObject(ContextImpl.java:662)
    at oracle.adf.share.jndi.ContextImpl.lookup(ContextImpl.java:152)
    at oracle.adf.share.jndi.ContextImpl.lookup(ContextImpl.java:157)
    at javax.naming.InitialContext.lookup(InitialContext.java:392)
    at oracle.stellent.wcm.core.idc.IdcClientFactory.populateConfigFromADF(IdcClientFactory.java:224)
    ... 58 more
    [11:26:22 AM] Caused by: java.lang.Throwable: Substituted for the exception java.lang.reflect.InvocationTargetException which lacks a String contructor, original message -
    [11:26:22 AM] See server logs or server console for more details.
    [11:26:22 AM] weblogic.application.ModuleException: [HTTP:101216]Servlet: "wcmInitServlet" failed to preload on startup in Web application: "webapp1.war".
    oracle.stellent.wcm.common.LocalizedRuntimeException: java.lang.reflect.InvocationTargetException
    at oracle.stellent.wcm.javaee.shared.ServletApplicationFactory.createInstance(ServletApplicationFactory.java:49)
    at oracle.stellent.wcm.javaee.utils.ServletHelper.initializeApplication(ServletHelper.java:172)
    at oracle.stellent.wcm.javaee.servlet.filter.WCMInitializeServlet.init(WCMInitializeServlet.java:41)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at oracle.stellent.wcm.javaee.shared.ServletApplicationFactory.createInstance(ServletApplicationFactory.java:46)
    ... 45 more
    Caused by: oracle.stellent.wcm.server.ServerException: !CORE_SERVERAPP_PROJECT_ERROR_INITIALIZING_APPLICATION! : Not Found.
    at oracle.stellent.wcm.server.ServerContext.initialize(ServerContext.java:338)
    at oracle.stellent.wcm.server.ServerContext.<init>(ServerContext.java:139)
    at oracle.stellent.wcm.client.ClientApplication$1.<init>(ClientApplication.java:287)
    at oracle.stellent.wcm.client.ClientApplication.createServerContext(ClientApplication.java:287)
    at oracle.stellent.wcm.client.ClientApplication.initialize(ClientApplication.java:272)
    at oracle.stellent.wcm.javaee.servlet.WCMServletApplication.<init>(WCMServletApplication.java:49)
    ... 50 more
    Caused by: java.lang.RuntimeException: oracle.stellent.wcm.common.LocalizedRuntimeException: javax.naming.NameNotFoundException; remaining name 'conn_ucm'
    at oracle.stellent.wcm.core.idc.IdcClientFactory.<init>(IdcClientFactory.java:62)
    at oracle.stellent.wcm.server.ServerContext.initialize(ServerContext.java:277)
    ... 55 more
    Caused by: oracle.stellent.wcm.common.LocalizedRuntimeException: javax.naming.NameNotFoundException; remaining name 'conn_ucm'
    at oracle.stellent.wcm.core.idc.IdcClientFactory.populateConfigFromADF(IdcClientFactory.java:258)
    at oracle.stellent.wcm.core.idc.IdcClientFactory.initialize(IdcClientFactory.java:158)
    at oracle.stellent.wcm.core.idc.IdcClientFactory.<init>(IdcClientFactory.java:57)
    ... 56 more
    Caused by: javax.naming.NameNotFoundException; remaining name 'conn_ucm'
    at oracle.adf.share.jndi.ContextImpl.findObject(ContextImpl.java:662)
    at oracle.adf.share.jndi.ContextImpl.lookup(ContextImpl.java:152)
    at oracle.adf.share.jndi.ContextImpl.lookup(ContextImpl.java:157)
    at javax.naming.InitialContext.lookup(InitialContext.java:392)
    at oracle.stellent.wcm.core.idc.IdcClientFactory.populateConfigFromADF(IdcClientFactory.java:224)
    ... 58 more
    please, any idea to solve this error?
    eranz

    Hi,
    Looking at your Stack Trace it feels that your application is dependent on Some JNDI name (Usually some application components are dependent on some JNDI objects like DataSource/JMS Queues/Connection Factories) So while deploying the applications if those names are not binded in the JNDI tree of a the server where you are trying to deploy your applications.
    The easiest way is to check the JNDI tree of your Server where you are trying to deploy your applications (Just to check whether any Object is binded there with JNDI Name "conn_ucm'" Which your application is asking for .
    Thanks
    Ravish Mody

  • Error while opening any Page in my ADF App

    Dear All
    i have BC + JSF Project, and while opening any page in the first time , i am facing the below error
    oracle.jdevimpl.webapp.faces.config.modelimpl.FacesConfigHandler:Aug 24, 2011 10:27:24 AM oracle.jdevimpl.webapp.faces.config.modelimpl.FacesConfigHandler setIsMetadataComplete
    INFO: jar:file:/F:/JDeveloper/mywork/MEDGO_LIB-31/LIB/deploy/MEDGO_LIB.jar!/META-INF/faces-config.xml metadata-complete undefined (false)
    Aug 24, 2011 10:27:27 AM oracle.bali.xml.grammar.QualifiedName validateNamespaceName
    SEVERE: Attempt to create illegal qualified name! File a bug against the caller of QualifiedName.getQualifiedName (or ImmutableXmlKey.create*). This exception will be thrown instead of loggered soon. namespace=null name=Top Position
    java.lang.IllegalArgumentException: Illegal name character ' ' (index 3) in: Top Position
         at oracle.bali.xml.util.XmlNameUtils.validateName(XmlNameUtils.java:29)
         at oracle.bali.xml.grammar.QualifiedName.validateNamespaceName(QualifiedName.java:213)
         at oracle.bali.xml.grammar.QualifiedName.<init>(QualifiedName.java:170)
         at oracle.bali.xml.grammar.QualifiedName.getQualifiedName(QualifiedName.java:63)
         at oracle.adfdtinternal.view.rich.template.metadata.AbstractComponentProjectMDProvider.getLayerMetadata(AbstractComponentProjectMDProvider.java:244)
         at oracle.adfdtinternal.view.rich.template.metadata.AbstractComponentProjectMDProvider.getLayerMetadataItem(AbstractComponentProjectMDProvider.java:266)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:116)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.jdevimpl.webapp.metadata.DelegatingMetadataProvider.getMetadataItem(DelegatingMetadataProvider.java:35)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.jdevimpl.webapp.metadata.TagLibraryCacheMetadataProvider.getMetadataItem(TagLibraryCacheMetadataProvider.java:115)
         at oracle.jdevimpl.webapp.metadata.DelegatingMetadataProvider.getMetadataItem(DelegatingMetadataProvider.java:35)
         at oracle.jdevimpl.webapp.metadata.ComplexMetadataProvider.getLayerMetadataItem(ComplexMetadataProvider.java:63)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:116)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
         at oracle.bali.xml.metadata.CoreMetadataEvaluator.getLayerMetadataInfo(CoreMetadataEvaluator.java:195)
         at oracle.bali.xml.model.XmlMetadataEvaluator.getLayerMetadataInfo(XmlMetadataEvaluator.java:81)
         at oracle.bali.xml.metadata.LayeredMetadataEvaluator._getLayerMetadataItem(LayeredMetadataEvaluator.java:265)
         at oracle.bali.xml.metadata.LayeredMetadataEvaluator.getMetadataItemImpl(LayeredMetadataEvaluator.java:147)
         at oracle.jdevimpl.webapp.jsp.JspXmlModel$JspMetadataEvaluator.getMetadataItemImpl(JspXmlModel.java:374)
         at oracle.bali.xml.metadata.AbstractMetadataEvaluator.getMetadataItem(AbstractMetadataEvaluator.java:89)
         at oracle.bali.xml.metadata.XmlMetadataMethods.getDeprecated(XmlMetadataMethods.java:74)
         at oracle.bali.xml.model.XmlMetadataResolver.getDeprecatedImpl(XmlMetadataResolver.java:1360)
         at oracle.jdevimpl.webapp.jsp.JspMetadataResolver.getDeprecatedImpl(JspMetadataResolver.java:1133)
         at oracle.bali.xml.model.XmlMetadataResolver.getDeprecated(XmlMetadataResolver.java:572)
         at oracle.bali.xml.model.XmlMetadataResolver.isDeprecated(XmlMetadataResolver.java:2232)
         at oracle.bali.xml.model.XmlMetadataResolver._checkDeprecation(XmlMetadataResolver.java:6266)
         at oracle.bali.xml.model.XmlMetadataResolver.performAdditionalValidation(XmlMetadataResolver.java:291)
         at oracle.bali.xml.model.ModelValidationContext.performAdditionalValidation(ModelValidationContext.java:91)
         at oracle.bali.xml.validator.Validator._validateElement(Validator.java:378)
         at oracle.bali.xml.validator.Validator._validateChildren(Validator.java:621)
         at oracle.bali.xml.validator.Validator._validateElement(Validator.java:538)
         at oracle.bali.xml.validator.Validator._validateChildren(Validator.java:621)
         at oracle.bali.xml.validator.Validator._validateElement(Validator.java:538)
         at oracle.bali.xml.validator.Validator._validateChildren(Validator.java:621)
         at oracle.bali.xml.validator.Validator._validateElement(Validator.java:538)
         at oracle.bali.xml.validator.Validator._validateChildren(Validator.java:621)
         at oracle.bali.xml.validator.Validator._validateElement(Validator.java:538)
         at oracle.bali.xml.validator.Validator._validateElement(Validator.java:349)
         at oracle.bali.xml.validator.Validator.validateDocument(Validator.java:141)
         at oracle.bali.xml.validator.Validator.validateSubtree(Validator.java:85)
         at oracle.bali.xml.model.XmlModel._validateSubtreeHelper(XmlModel.java:3220)
         at oracle.bali.xml.model.XmlModel.access$3000(XmlModel.java:213)
         at oracle.bali.xml.model.XmlModel$DeferredValidationIssueList.getDelegateImpl(XmlModel.java:4484)
         at oracle.bali.xml.model.message.AbstractDelegatingIssueList.getDelegate(AbstractDelegatingIssueList.java:86)
         at oracle.bali.xml.model.message.AbstractDelegatingIssueList.size(AbstractDelegatingIssueList.java:18)
         at oracle.bali.xml.model.message.XmlModelMessageLog._computeCounts(XmlModelMessageLog.java:283)
         at oracle.bali.xml.model.message.XmlModelMessageLog.size(XmlModelMessageLog.java:94)
         at oracle.bali.xml.model.message.AbstractDelegatingIssueList.size(AbstractDelegatingIssueList.java:18)
         at oracle.bali.xml.gui.base.explorer.XmlTreeModel._createErrorNodes(XmlTreeModel.java:938)
         at oracle.bali.xml.gui.base.explorer.XmlTreeModel._fireErrorsFolderEvent(XmlTreeModel.java:793)
         at oracle.bali.xml.gui.base.explorer.XmlTreeModel.__handleModelChangeEvent(XmlTreeModel.java:771)
         at oracle.bali.xml.gui.base.explorer.BaseExplorerGui._updateTreeModel(BaseExplorerGui.java:317)
         at oracle.bali.xml.gui.base.explorer.BaseExplorerGui.handleViewAttached(BaseExplorerGui.java:255)
         at oracle.bali.xml.gui.XmlGui$GuiListener.listenerAttached(XmlGui.java:643)
         at oracle.bali.xml.model.listenerImpl.BaseEventTask.deliverEventHelper(BaseEventTask.java:44)
         at oracle.bali.xml.model.listenerImpl.BaseEventTask.deliverEventHelper(BaseEventTask.java:23)
         at oracle.bali.xml.model.AbstractModel$DeliverHelloGoodbyeEventTask.execute(AbstractModel.java:1570)
         at oracle.bali.xml.model.listenerImpl.XmlModelListenerManager._executeListenerSetChangedTask(XmlModelListenerManager.java:354)
         at oracle.bali.xml.model.listenerImpl.XmlModelListenerManager.addModelListener(XmlModelListenerManager.java:164)
         at oracle.bali.xml.model.AbstractModel.addModelListener(AbstractModel.java:202)
         at oracle.bali.xml.gui.XmlGui.postCreationHook(XmlGui.java:404)
         at oracle.bali.xml.gui.GuiXmlContext.getGui(GuiXmlContext.java:207)
         at oracle.bali.xml.gui.GuiXmlContext.getGui(GuiXmlContext.java:148)
         at oracle.bali.xml.gui.jdev.explorer.AbstractXmlExplorer.setContextImpl(AbstractXmlExplorer.java:152)
         at oracle.bali.xml.gui.jdev.explorer.AbstractAsynchronousXmlExplorer.setContext(AbstractAsynchronousXmlExplorer.java:41)
         at oracle.bali.xml.gui.jdev.explorer.AsynchronousXmlExplorer.updateContextImpl(AsynchronousXmlExplorer.java:286)
         at oracle.bali.xml.gui.jdev.explorer.AsynchronousXmlExplorer.setDelayedContext(AsynchronousXmlExplorer.java:277)
         at oracle.jdevimpl.webapp.common.WebAppXmlExplorer.access$200(WebAppXmlExplorer.java:16)
         at oracle.jdevimpl.webapp.common.WebAppXmlExplorer$1$1.run(WebAppXmlExplorer.java:48)
         at oracle.bali.ewt.util.PaintUtils.invokeAfterRepaint(PaintUtils.java:53)
         at oracle.javatools.util.SwingUtils.invokeAfterRepaint(SwingUtils.java:607)
         at oracle.jdevimpl.webapp.IdeHelper$1.run(IdeHelper.java:52)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
         at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    java.lang.IllegalArgumentException: Illegal name character ' ' (index 3) in: Top Position
    o.bali.xml.util.XmlNameUtils.validateName(XmlNameUtils.java:29)
    o.bali.xml.grammar.QualifiedName.validateNamespaceName(QualifiedName.java:213)
    o.bali.xml.grammar.QualifiedName.<init>(QualifiedName.java:170)
    o.bali.xml.grammar.QualifiedName.getQualifiedName(QualifiedName.java:63)
    o.adfdtinternal.view.rich.template.metadata.AbstractComponentProjectMDProvider.getLayerMetadata(AbstractComponentProjectMDProvider.java:244)
    o.adfdtinternal.view.rich.template.metadata.AbstractComponentProjectMDProvider.getLayerMetadataItem(AbstractComponentProjectMDProvider.java:266)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:116)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.ji.webapp.metadata.DelegatingMetadataProvider.getMetadataItem(DelegatingMetadataProvider.java:35)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.ji.webapp.metadata.TagLibraryCacheMetadataProvider.getMetadataItem(TagLibraryCacheMetadataProvider.java:115)
    o.ji.webapp.metadata.DelegatingMetadataProvider.getMetadataItem(DelegatingMetadataProvider.java:35)
    o.ji.webapp.metadata.ComplexMetadataProvider.getLayerMetadataItem(ComplexMetadataProvider.java:63)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:116)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.LayeredMetadataProvider.getMetadataItem(LayeredMetadataProvider.java:127)
    o.bali.xml.metadata.CoreMetadataEvaluator.getLayerMetadataInfo(CoreMetadataEvaluator.java:195)
    o.bali.xml.model.XmlMetadataEvaluator.getLayerMetadataInfo(XmlMetadataEvaluator.java:81)
    o.bali.xml.metadata.LayeredMetadataEvaluator._getLayerMetadataItem(LayeredMetadataEvaluator.java:265)
    o.bali.xml.metadata.LayeredMetadataEvaluator.getMetadataItemImpl(LayeredMetadataEvaluator.java:147)
    o.ji.webapp.jsp.JspXmlModel$JspMetadataEvaluator.getMetadataItemImpl(JspXmlModel.java:374)
    o.bali.xml.metadata.AbstractMetadataEvaluator.getMetadataItem(AbstractMetadataEvaluator.java:89)
    o.bali.xml.metadata.XmlMetadataMethods.getDeprecated(XmlMetadataMethods.java:74)
    o.bali.xml.model.XmlMetadataResolver.getDeprecatedImpl(XmlMetadataResolver.java:1360)
    o.ji.webapp.jsp.JspMetadataResolver.getDeprecatedImpl(JspMetadataResolver.java:1133)
    o.bali.xml.model.XmlMetadataResolver.getDeprecated(XmlMetadataResolver.java:572)
    o.bali.xml.model.XmlMetadataResolver.isDeprecated(XmlMetadataResolver.java:2232)
    o.bali.xml.model.XmlMetadataResolver._checkDeprecation(XmlMetadataResolver.java:6266)
    o.bali.xml.model.XmlMetadataResolver.performAdditionalValidation(XmlMetadataResolver.java:291)
    o.bali.xml.model.ModelValidationContext.performAdditionalValidation(ModelValidationContext.java:91)
    o.bali.xml.validator.Validator._validateElement(Validator.java:378)
    o.bali.xml.validator.Validator._validateChildren(Validator.java:621)
    o.bali.xml.validator.Validator._validateElement(Validator.java:538)
    o.bali.xml.validator.Validator._validateChildren(Validator.java:621)
    o.bali.xml.validator.Validator._validateElement(Validator.java:538)
    o.bali.xml.validator.Validator._validateChildren(Validator.java:621)
    o.bali.xml.validator.Validator._validateElement(Validator.java:538)
    o.bali.xml.validator.Validator._validateChildren(Validator.java:621)
    o.bali.xml.validator.Validator._validateElement(Validator.java:538)
    o.bali.xml.validator.Validator._validateElement(Validator.java:349)
    o.bali.xml.validator.Validator.validateDocument(Validator.java:141)
    o.bali.xml.validator.Validator.validateSubtree(Validator.java:85)
    o.bali.xml.model.XmlModel._validateSubtreeHelper(XmlModel.java:3220)
    o.bali.xml.model.XmlModel.access$3000(XmlModel.java:213)
    o.bali.xml.model.XmlModel$DeferredValidationIssueList.getDelegateImpl(XmlModel.java:4484)
    o.bali.xml.model.message.AbstractDelegatingIssueList.getDelegate(AbstractDelegatingIssueList.java:86)
    o.bali.xml.model.message.AbstractDelegatingIssueList.size(AbstractDelegatingIssueList.java:18)
    o.bali.xml.model.message.XmlModelMessageLog._computeCounts(XmlModelMessageLog.java:283)
    o.bali.xml.model.message.XmlModelMessageLog.size(XmlModelMessageLog.java:94)
    o.bali.xml.model.message.AbstractDelegatingIssueList.size(AbstractDelegatingIssueList.java:18)
    o.bali.xml.gui.base.explorer.XmlTreeModel._createErrorNodes(XmlTreeModel.java:938)
    o.bali.xml.gui.base.explorer.XmlTreeModel._fireErrorsFolderEvent(XmlTreeModel.java:793)
    o.bali.xml.gui.base.explorer.XmlTreeModel.__handleModelChangeEvent(XmlTreeModel.java:771)
    o.bali.xml.gui.base.explorer.BaseExplorerGui._updateTreeModel(BaseExplorerGui.java:317)
    o.bali.xml.gui.base.explorer.BaseExplorerGui.handleViewAttached(BaseExplorerGui.java:255)
    o.bali.xml.gui.XmlGui$GuiListener.listenerAttached(XmlGui.java:643)
    o.bali.xml.model.listenerImpl.BaseEventTask.deliverEventHelper(BaseEventTask.java:44)
    o.bali.xml.model.listenerImpl.BaseEventTask.deliverEventHelper(BaseEventTask.java:23)
    o.bali.xml.model.AbstractModel$DeliverHelloGoodbyeEventTask.execute(AbstractModel.java:1570)
    o.bali.xml.model.listenerImpl.XmlModelListenerManager._executeListenerSetChangedTask(XmlModelListenerManager.java:354)
    o.bali.xml.model.listenerImpl.XmlModelListenerManager.addModelListener(XmlModelListenerManager.java:164)
    o.bali.xml.model.AbstractModel.addModelListener(AbstractModel.java:202)
    o.bali.xml.gui.XmlGui.postCreationHook(XmlGui.java:404)
    o.bali.xml.gui.GuiXmlContext.getGui(GuiXmlContext.java:207)
    o.bali.xml.gui.GuiXmlContext.getGui(GuiXmlContext.java:148)
    o.bali.xml.gui.jdev.explorer.AbstractXmlExplorer.setContextImpl(AbstractXmlExplorer.java:152)
    o.bali.xml.gui.jdev.explorer.AbstractAsynchronousXmlExplorer.setContext(AbstractAsynchronousXmlExplorer.java:41)
    o.bali.xml.gui.jdev.explorer.AsynchronousXmlExplorer.updateContextImpl(AsynchronousXmlExplorer.java:286)
    o.bali.xml.gui.jdev.explorer.AsynchronousXmlExplorer.setDelayedContext(AsynchronousXmlExplorer.java:277)
    o.ji.webapp.common.WebAppXmlExplorer.access$200(WebAppXmlExplorer.java:16)
    o.ji.webapp.common.WebAppXmlExplorer$1$1.run(WebAppXmlExplorer.java:48)
    o.bali.ewt.util.PaintUtils.invokeAfterRepaint(PaintUtils.java:53)
    o.javatools.util.SwingUtils.invokeAfterRepaint(SwingUtils.java:607)
    o.ji.webapp.IdeHelper$1.run(IdeHelper.java:52)
    j.a.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    j.a.EventQueue.dispatchEventImpl(EventQueue.java:642)
    j.a.EventQueue.access$000(EventQueue.java:85)
    j.a.EventQueue$1.run(EventQueue.java:603)
    j.a.EventQueue$1.run(EventQueue.java:601)
    j.security.AccessController.doPrivileged(Native Method)
    j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    j.a.EventQueue.dispatchEvent(EventQueue.java:612)
    o.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
    o.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
    j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Aug 24, 2011 10:27:27 AM oracle.bali.xml.grammar.QualifiedName validateNamespaceName
    SEVERE: Attempt to create illegal qualified name! File a bug against the caller of QualifiedName.getQualifiedName (or ImmutableXmlKey.create*). This exception will be thrown instead of loggered soon. namespace=null name=Left Position
    please advise

    yes..
    some illegal name is added to the xml or jspx file
    Aug 24, 2011 10:27:27 AM oracle.bali.xml.grammar.QualifiedName validateNamespaceName
    SEVERE: Attempt to create illegal qualified name! File a bug against the caller of QualifiedName.getQualifiedName (or ImmutableXmlKey.create*). This exception will be thrown instead of loggered soon. namespace=null name=Top Position

  • Unknown Error In iWS 4.1sp7

    Hi There,
    Anyone have any idea what this means..
    [From errorlog]
    for host 196.7.34.34 trying to GET /jb2/img/shtrih.gif, send-file
    reports: error opening /ibank3/webapp/jb2/img/shtrih.gif (Connection
    reset by peer)
    [23/Nov/2001:07:46:01] failure (27569): Error receiving connection (Not
    connected)
    [23/Nov/2001:07:46:01] failure (27569): Error receiving connection (Not
    connected)
    [23/Nov/2001:07:46:01] failure (27569): Error receiving connection (Not
    connected)
    [23/Nov/2001:07:46:01] failure (27569): Error receiving connection (Not
    connected)
    [23/Nov/2001:07:46:02] failure (27569): Error receiving connection (Not
    connected)
    [23/Nov/2001:07:46:43] failure (27569): Error receiving connection (Not
    connected)
    The "Error receiving connection (Not connected)" part is the problem..
    Any help will be appreciated..

    looks to me like the SUBNET is incorrect - .5- .254
    a subnet is f.ex. .1 - .254, or /24 (255.255.255.0)
    Try typing in the correct syntax for the subnet.

  • How to slove follwoing error "Unreported exception java.io.IOException;"

    Currently I'm using following:
    XP Professional
    J2sdk1.4.2_01
    Xerces-2_5_0
    Xalan-j_2_5_1
    Jakarta-tomcat-4.1.27
    Jdom-b9
    Current Classpath setting
    User variables
    PATH = c:\bmrt2.5\bin; c:\j2sdk\bin;%PATH%;%JAVA_HOME%\bin;
    CLASSPATH=.;c:\xerces\xmlParserAPIs.jar;c:\xerces\xercesImpl.jar;
    c:\xerces\xercesSamples.jar;c:\xalan\xercesImpl.jar;c:\xalan\xmlapis.jar;c:\xalan\xalan.jar;c:\tomcat\lib\webserver.jar;c:\tomcat\lib\jasper.jar;c:\tomcat\lib\xml.jar;c:\tomcat\common\lib\serlet.jar;c:\tomcat\lib\tools.jar; c:\tomcat\lib\tools.jar;c:\jdom\build\jdom.jar;
    CATALINA_HOME= c:\tomcat
    JAVA_HOME= c:\j2sdk
    System variables
    PATH=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;
    c:\j2sdk\bin;%Path%;%JAVA_HOME%\bin;
    CLASSPATH=.;c:\xerces\xmlParserAPIs.jar;c:\xerces\xercesImpl.jar;
    c:\xerces\xercesSamples.jar;c:\xalan\xercesImpl.jar;c:\xalan\xmlapis.jar;c:\xalan\xalan.jar;c:\tomcat\lib\webserver.jar;c:\tomcat\lib\jasper.jar;c:\tomcat\lib\xml.jar;c:\tomcat\common\lib\serlet.jar;c:\tomcat\lib\tools.jar; c:\tomcat\lib\tools.jar;
    CATALINA_HOME= c:\tomcat
    JAVA_HOME= c:\j2sdk
    Program
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.jdom.*;
    import org.jdom.Element;
    import org.jdom.Document;
    import org.jdom.output.XMLOutputter;
    import org.jdom.input.SAXBuilder;
    import org.jdom.Attribute;
    import java.util.List;
    public class AddToList extends HttpServlet
         public Document getDocument(File sourceFile, PrintWriter errorsOut)
              try
                   SAXBuilder builder = new SAXBuilder();
                   Document document = builder.build(sourceFile);
                   return document;
              catch(JDOMException e)
                   errorsOut.print("there was a problem building the document: " e. getMessage()"<br/>"+ "Returning blank document.");
                   return new Document(new Element("blank"));
         public void saveDocument(Document saveDoc, File saveFile, PrintWriter errorsOut)
              try
                   FileOutputStream outStream= new FileOutputStream(saveFile);
                   XMLOutputter outToFile= new XMLOutputter(" ",true);
                   outToFile.output(saveDoc, outStream);
                   outStream.flush();
                   outStream.close();
              catch (IOException e)
                   errorsOut.print("Can't save order.xml: " + e.getMessage()+"<br />");
         public void addItem(Element orderElement, String product_id, String quant)
              Element newItem =new Element("item");
              newItem.setAttribute("product_id", product_id);
              Element quantity =new Element("quantity");
              quantity.addContent(quant);
              newItem.addContent(quantity);
              orderElement.addContent(newItem);
         public void doGet(HttpServletRequest request, HttpServletResponse response)
              throws IOException, ServletException
              String thisProduct_id=request.getParameter("addProduct_id");
              String thisQuantity=request.getParameter("addQuantity");
              response.setContentType("text/html");
              PrintWriter out= response.getWriter();
              out.print("Adding "+ thisQuantity + "of item to chart "+ thisProduct_id +" ... ");
              File orderFile = new File ("file:///c:/jdk1.3/orders.xml");
              if(!orderFile.exists())
                   out.print("Creating ordersrocks....<br />");
                   Element root= new Element("orders");
                   root.addContent(" ");
                   Document document = new Document(root);
                   saveDocument (document, orderFile, out);
              else
                   out.print("Orders File Exists.");
              Document document =getDocument(orderFile, out);
              HttpSession session =request.getSession(true);
              String session_id= session.getId();
              Element root =document.getRootElement();
              List orders =root.getChildren();
              int num_orders =orders.size();
              boolean orderExists =false;
              int orderIndex =0;
              for(int i=0; i<num_orders; i++)
                   Element iOrder=(Element)orders.get(i);
                   String iOrder_id=iOrder.getAttributeValue("order_id");
                   if (iOrder_id.equals(session_id))
                        orderExists=true;
                        orderIndex=i;
                        break;
              if(!orderExists)
                   Element order =new Element("order");
                   order.setAttribute("order_id", session_id);
                   Element status =new Element("order_status");
                   status.setText("open");
                   order.addContent(status);
                   addItem(order, thisProduct_id, thisQuantity);
                   root.addContent(order);
              else
                   Element thisOrder=(Element)orders.get(orderIndex);
                   boolean itemExists=false;
                   int itemIndex =0;
                   List items =thisOrder.getChildren("item");
                   int num_items =items.size();
                   for(int i=0; i<num_items; i++)
                        Element iItem=(Element)items.get(i);
                        String iProduct_id =iItem.getAttribute("product_id").getValue();
                        if(iProduct_id.equals(thisProduct_id))
                             itemExists =true;
                             itemIndex =i;
                             break;
                   if(itemExists)
                        Element thisItem=(Element)items.get(itemIndex);
                        String currentQuantity= thisItem.getChildText("quantity");
                        int newQuantity = Integer.parseInt(currentQuantity)+ Integer.parseInt(thisQuantity);
                        String strQuantity= new String().valueOf(newQuantity)+1;
                        thisItem.getChild("quantity").setText(strQuantity);
                   else
                        addItem(thisOrder, thisProduct_id, thisQuantity);
              saveDocument (document, orderFile, out);
         public void doPost(HttpServletRequest request, HttpServletResponse response)
              throws IOException, ServletException
              doGet(request, response);
    When I compile above program, it gives me following error.
    Error
    C:\tomcat\webapps\book\WEB-INF\classes>javac AddToList.java
    AddToList.java:19: unreported exception java.io.IOException; must be caught
    or declared to be thrown
    Document document = builder.build(sourceFile);
    ^
    1 error
    Any help regarding this will be appreciated
    Thank you
    Rocks

    Obadare
    Thank for your help, my program compile successfully. But now I�m facing different kind of error on Tomcat; why it gives me following error and how do I solve it
    http://localhost:8080/rock/servlet/AddToList
    Following Error generate by Tomcat:
    Http Status 500-
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Cannot allocate servlet instance for path /rock/servlet/AddToList
         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:435)
         at org.apache.catalina.servlets.InvokerServlet.doGet(InvokerServlet.java:180)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
    (ApplicationFilterChain.java:247)
    root cause
    java.lang.NoClassDefFoundError: org/jdom/JDOMException
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Class.java:237)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:903)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:668)
         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:416)
         at org.apache.catalina.servlets.InvokerServlet.doGet(InvokerServlet.java:180)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
    (ApplicationFilterChain.java:247)
    The following is my configuration
    Classpath= .;c:\xalan\bin\xalan.jar;c:\xalan\bin\xml-apis.jar;c:\xerces\xmlParserAPIs.jar;c:\xerces\xercesImpl.jar;c:\tomcat\common\lib\servlet.jar;c:\jdom\build\jdom.jar;
    Java_Home=c:\jdk1.3
    Catalina_Home=c:\tomcat
    Server.xml
    <Engine name="Standalone" defaultHost="localhost" debug="0">
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Context path="/rock" docBase="rock" debug="0"
    reloadable="true" crossContext="true">
    P.S When I try to build javadoc it give me following error:
    C:\jdom>build javadoc
    JDOM Build System
    Building with classpath c:\jdk1.3\lib\tools.jar;.\lib\ant.jar;.\lib\xml-apis.jar
    ;.\lib\xerces.jar;
    Starting Ant...
    Buildfile: build.xml
    [javadoc] Constructing Javadoc information...
    [javadoc] Building tree for all the packages and classes...
    [javadoc] Building index for all the packages and classes...
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.TransformerFactory#getFeature
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.TransformerFactory#getFeature
    [javadoc] Building index for all classes...
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.TransformerFactory#getFeature
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.TransformerFactory#getFeature
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.Transformer
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.Transformer
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.Transformer JAXP TrAX Transformer
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.TransformerFactory#getFeature
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: javax.xml.
    transform.TransformerFactory#getFeature
    [javadoc] javadoc: warning - Tag @link: Class or Package not found: java.lang.
    Double#NaN
    [javadoc] Generating C:\jdom\build\apidocs\stylesheet.css...
    [javadoc] 10 warnings
    BUILD SUCCESSFUL
    Total time: 12 seconds

  • Webapp not found when creating a new portal

    Hi all,
    I've just started exploring Weblogic Portal 8.1, and am now attempting to set-up a basic portal from scratch. Here's what I did.
    1) Created a Weblogic Portal Domain using the Configuration Wizard. The domain name is "mydomain". The server name is "myserver".
    2) In Weblogic Workshop, created a new application called "testportal".
    3) In "testportal" application, created a new portal web project called "portal".
    4) created "myportal.portal" portal in the "portal" portal web project.
    5) Tried to start the portal (URL: http://localhost:7001/portal/myportal.portal), but received this error message:
    <b>"Webapp portal not found in application testportal."</b>
    6) When I tried to hit http://localhost:7001/portal, I was able to hit index.jsp for the web application, so the portal web app is alright.
    Any ideas what I'm missing here?
    Thanks!

    I'm not sure of what is going on but just wondering.. did you drag and drop portlets on to the portal?
    I recommend you to try the below step-by-step tutorials.
    Check this out. http://e-docs.bea.com/wlp/docs81/startdev/startdev.html
    And try this. http://e-docs.bea.com/workshop/docs81/doc/en/portal/tutorials/tutFirstPortalIntro.html
    Seenu.

  • Error in Org View page,due to Organization lookup change in CreateUser form

    Hi *,
    I have added a user defined field to the Organization creation form. Then, I want to display this in the Organization lookup window. (i.e. when we click on the Organization field lookup image on the Create User form, the lookup we are getting). Then, using the following procedure (Re: Add new column to the Organization Lookup on Create User page I was able to achieve it.
    1. Create a lookup of field type with the field name being your UDF, and the lookup name like Oraganizations.Country.
    2. Change your display columns in the post you made to be Organizations.Country.
    3. Update your xlWebAdmin_en_US.properties for whichever country you are using and in the section "LOOKUPFIELD column headers" add an entry of "lookupfield.header.organizations.country=Country"
    4. Restart your oim and it should display it now.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    But, after doing that, i'm getting a system error when trying to view the Organization details.
    "2009-11-25 06:14:19,873 ERROR http://XELLERATE.WEBAPP Class/Method: tcManageOrganizationAction/viewOrganizationDetails encounter some problems: {1}
    Thor.API.Exceptions.tcColumnNotFoundException
    at Thor.API.tcMetaDataSet.getStringValue(Unknown Source)"
    But, when i delete the newly added lookup (i.e. Organizations.Country ) from the oim lookups, Organization details view page works again.
    Could you please give me a solution for this......
    Appreciate your previous instructions....
    Regards,
    Chaturanga

    Well I found a solution to it. It looks interesting. Do the folllowing to get rid of it:
    - Just Create another lookup with 'Field' and 'Code' equal to the field name of your UDF. eg as follows:
    Code - ACT_UDF_COUNTRY
    Field - ACT_UDF_COUNTRY
    Field type - Selected
    Required - Not Selected
    Group - Organizations (any arbitrary value)
    This may be required because by defining the field (lookup) for this UDf we are actually assigning it a metadata column code.
    Example if you try to Print the ResultSet returned from 'findOrganizations' API, then the column name returned is 'Organizations.Country' irrespective of 'ACT_UDF_COUNTRY' which would be a usual case with any UDF. So we need to create another lookup to redefine this name back to the UDF column name. It will do the required for you.
    Thanks
    Sunny

  • TPINIT error  Unable to establish WSH connection 0x000221150afea683

    Dear All,
    we have applications deployed using tuxedo. All the applications are in working condition, but one new application is deployed with same parameters of working applications but on new client application on Windows 2008 server.
    This application cannot access the tuxedo server and giving following error.
    152035.WEBAPP!?proc.4020.3152.0: 01-30-2013: Tuxedo Version 11.1.1.2.0 with VS2010, 64-bit
    152035.WEBAPP!?proc.4020.3152.0: LIBWSC_CAT:1064: ERROR: Unable to establish WSH connection 0x000221150afea683
    152035.WEBAPP!?proc.4020.3152.0: LIBWSC_CAT:1055: ERROR: Unable to establish WSL connection
    152035.WEBAPP!?proc.4020.3152.0: LIBWSC_CAT:1027: ERROR: Unable to connect to WSH
    152035.WEBAPP!?proc.4020.3152.0: LIBWSC_CAT:1020: ERROR: Unable to obtain authentication level
    The same application is working on 32 bit 2003 server. and only changed this in 64 bit 2008 server.
    My .bat file on the client is as follows. The tuxedo server is already serving all other clients except this one. Server version is tuxedo10gR3. Firewall on this client is also disabled
    cls
    set APPDIR=C:\bea\prs\
    set WSNADDR=//202.25.16.11:7025
    set TUXDIR=C:\\bea\\tuxedo11gR1_VS2010
    set PATH=%TUXDIR%\\bin;%APPDIR%;%PATH%
    set LD_LIBRARY_PATH=%TUXDIR%\\lib
    @echo on
    echo "Processing online recovery file: " %2
    echo %TUXDIR%
    echo %WSNADDR%
    echo %LD_LIBRARY_PATH%
    cd C:\bea\prs
    c:
    C:\bea\prs\prs.exe %1 %2 %3 %4
    Edited by: user6951085 on Jan 30, 2013 2:42 AM

    Dear All,
    I found out why this is happening(with the Help of Oracle support), so updating it for future use.
    Tuxedo uses random ports for clients that have connected to WSL listener. thats why my first error
    152035.WEBAPP!?proc.4020.3152.0: LIBWSC_CAT:1064: ERROR: Unable to establish WSH connection 0x000221150afea683
    was coming. this means (as per the documentations) that the WSL have accepted the connection but the next step of connecting to WSH is not done. which causes the above error.
    The resolution can be 2 things.
    1. Allow allow ports of Server or range of ports starting from port of WSL e.g. port WSNADDR port 7777 to 7777+2000 ports , so that clients can access the WSL port + 2000 ports
    2. add a parameter on the tuxedo server ubb file to define a range of ports which can handle client requests. (most probably in the WSL CLOPT portion)
    if your network has security and it only allows some ports to be accessed , u can get this error.
    Thanks.
    Edited by: user6951085 on Jan 31, 2013 1:18 AM

  • Webapp Ant Bulld Fails

    I am using WebLogic Workshop 8.1.5 and I am unable to generate a working Ant build script for a webapp. After the exported Ant build for the my webapp failed, I tried to export an Ant build for the sample app in WL_HOME\weblogic81\samples\workshop\SamplesApp\WebApp
    which also failed (see log below...). I have tried using version 1.5.3 and 1.6.5 of Ant with the same result. Can someone please tell me what I need to do to get this Ant build working?
    Microsoft Windows 2000 [Version 5.00.2195]
    (C) Copyright 1985-2000 Microsoft Corp.
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>ant
    Buildfile: build.xml
    build:
    [echo] Executing defaultWebAppBuild.xml...
    cleanBeforeBuildTarget:
    clean:
    [webappbuild] Compiling webapp WebApp...
    [webappbuild] WebApp: Compiling webapp resource files...
    [webappbuild] Errors found in controls\database\UsersDBControl.jcx:
    [webappbuild] Error at line 16 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 16 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 24 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 24 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 31 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 31 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 38 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 38 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 45 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 45 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 52 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 52 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in controls\database_iterator\dbcontrol_wrapper\impl\UsersDBControl.jcx:
    [webappbuild] Error at line 20 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 20 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 28 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 28 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 35 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 35 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 42 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 42 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 49 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 49 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 56 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 56 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in controls\webservice\helloworld\syncWebService\HelloWorldControl.jcx:
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 11 column 29:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Errors found in controls\webservice\polling\asyncWebService\HelloWorldAsyncControl.jcx:
    [webappbuild] Error at line 9 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 9 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 37 column 21:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Error at line 45 column 17:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Error at line 51 column 20:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Error at line 57 column 29:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Errors found in handlingData\binaryFlow\docContentDB.jcx:
    [webappbuild] Error at line 56 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 71 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 71 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 80 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 80 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 88 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 88 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 94 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 94 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 108 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 108 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 115 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 115 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 125 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 125 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 134 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 134 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in handlingData\dropdown\ItemsDBControl.jcx:
    [webappbuild] Error at line 44 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 44 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 54 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 54 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 75 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 75 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 82 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 82 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 92 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 92 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 29:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 29:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in handlingData\xmlBeans\ItemsDB.jcx:
    [webappbuild] Error at line 22 column 32:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 22 column 32:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in tagSamples\netui_databinding\callControl\HelloWorldControl.jcx:
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 11 column 29:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Errors found in tagSamples\netui_databinding\choice\ItemsDBControl.jcx:
    [webappbuild] Error at line 43 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 43 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 53 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 53 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 60 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 60 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 67 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 67 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 74 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 74 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 81 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 81 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 91 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 91 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in tagSamples\netui_databinding\declarePageInput\ItemsDBControl.jcx:
    [webappbuild] Error at line 32 column 12:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 32 column 12:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in tagSamples\netui_databinding\grid\itemsrowsetcontrol\ItemsRowSetControl.jcx:
    [webappbuild] Error at line 46 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 51 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 51 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 75 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 75 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 82 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Maximum number of errors reached. No more errors will be displayed.
    [webappbuild] Errors found in tagSamples\netui_databinding\repeater\data\Items.jcx:
    [webappbuild] Errors found in tagSamples\netui_databinding\repeater\data\ItemsRowSetControl.jcx:
    [webappbuild] Found 125 error(s) and 0 warning(s).
    [webappbuild] WebApp: Errors while compiling webapp resources
    BUILD FAILED
    file:C:/bea-sp5/weblogic81/samples/workshop/SamplesApp/WebApp/build.xml:79: Build failed with 125 error(s).
    Total time: 13 seconds
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>

    Thanks for the reply!
    Here is the log when I run CommEnv first:
    Microsoft Windows 2000 [Version 5.00.2195]
    (C) Copyright 1985-2000 Microsoft Corp.
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>C:\bea-sp5\weblogic81\common\bin\CommEnv
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set BEA_HOME=c:\bea-sp5
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>FOR %i IN ("c:\bea-sp5") DO SET BEA_HOME=%~fsi
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>SET BEA_HOME=c:\bea-sp5
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set WL_HOME=c:\bea-sp5\weblogic81
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>FOR %i IN ("c:\bea-sp5\weblogic81") DO SET WL_HOME=%~fsi
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>SET WL_HOME=c:\bea-sp5\WEBLOG~1
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set WL_USE_64BITDLL=false
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>if DEFINED JAVA_HOME if DEFINED JAVA_VENDOR goto noReset
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set JAVA_HOME=c:\bea-sp5\jrockit81sp5_142_08
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>FOR %i IN ("c:\bea-sp5\jrockit81sp5_142_08") DO SET JAVA_HOME=%~fsi
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>SET JAVA_HOME=c:\bea-sp5\JROCKI~1
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set JAVA_VENDOR=BEA
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set PRODUCTION_MODE=
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>if "BEA" == "BEA" goto bea
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>if "" == "true" goto bea_prod_mode
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set JAVA_VM=-jrockit
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set MEM_ARGS=-Xms96m -Xmx256m
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set JAVA_OPTIONS= -Xverify:none
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>goto continue
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set WEBLOGIC_CLASSPATH=c:\bea-sp5\JROCKI~1\lib\tools.jar;c:\bea-sp5\WEBLOG~
    1\server\lib\weblogic_sp.jar;c:\bea-sp5\WEBLOG~1\server\lib\weblogic.jar
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>if not "false" == "true" set PATH=c:\bea-sp5\WEBLOG~1\server\bin;c:\bea-sp5
    \JROCKI~1\jre\bin;c:\bea-sp5\JROCKI~1\bin;C:\bea-sp5\jdk142_08\bin;C:\apache-ant-1.5.4\bin;C:\oracle\ora92\bin;C:\Program Files\Orac
    le\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Common Fil
    es\Adaptec Shared\System;C:\Program Files\SecureCRT\;C:\Program Files\Rational\common;C:\Program Files\Rational\ClearCase\bin;C:\Pro
    gram Files\Microsoft SQL Server\80\Tools\BINN;C:\bea\weblogic81\server\bin;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\P
    rogram Files\JProbe Profiler 5.2.1\bin;;C:\Program Files\JProbe Suite 6.0.2\bin;c:\bea-sp5\WEBLOG~1\server\bin\oci920_8
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>if "false" == "true" set PATH=c:\bea-sp5\WEBLOG~1\server\bin\win64;c:\bea-s
    p5\WEBLOG~1\server\bin;c:\bea-sp5\JROCKI~1\jre\bin;c:\bea-sp5\JROCKI~1\bin;c:\bea-sp5\WEBLOG~1\server\bin;c:\bea-sp5\JROCKI~1\jre\bi
    n;c:\bea-sp5\JROCKI~1\bin;C:\bea-sp5\jdk142_08\bin;C:\apache-ant-1.5.4\bin;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin
    ;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Common Files\Adaptec Share
    d\System;C:\Program Files\SecureCRT\;C:\Program Files\Rational\common;C:\Program Files\Rational\ClearCase\bin;C:\Program Files\Micro
    soft SQL Server\80\Tools\BINN;C:\bea\weblogic81\server\bin;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\JPr
    obe Profiler 5.2.1\bin;;C:\Program Files\JProbe Suite 6.0.2\bin;c:\bea-sp5\WEBLOG~1\server\bin\oci920_8;c:\bea-sp5\WEBLOG~1\server\b
    in\win64\oci920_8
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set POINTBASE_HOME=c:\bea-sp5\WEBLOG~1\common\eval\pointbase
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set POINTBASE_CLASSPATH=c:\bea-sp5\WEBLOG~1\common\eval\pointbase\lib\pbser
    ver44.jar;c:\bea-sp5\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set POINTBASE_CLIENT_CLASSPATH=c:\bea-sp5\WEBLOG~1\common\eval\pointbase\li
    b\pbclient44.jar
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>set POINTBASE_TOOLS=c:\bea-sp5\WEBLOG~1\common\eval\pointbase\lib\pbtools44
    .jar
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>IF NOT "" == "" (set POINTBASE_CLASSPATH=;c:\bea-sp5\WEBLOG~1\common\eval\p
    ointbase\lib\pbserver44.jar;c:\bea-sp5\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar )
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>IF NOT "" == "" (set POINTBASE_CLASSPATH=c:\bea-sp5\WEBLOG~1\common\eval\po
    intbase\lib\pbserver44.jar;c:\bea-sp5\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar; )
    C:\bea-sp5\weblogic81\samples\workshop\SamplesApp\WebApp>ant
    Buildfile: build.xml
    build:
    [echo] Executing defaultWebAppBuild.xml...
    cleanBeforeBuildTarget:
    clean:
    [webappbuild] Compiling webapp WebApp...
    [webappbuild] WebApp: Compiling webapp resource files...
    [webappbuild] Errors found in controls\database\UsersDBControl.jcx:
    [webappbuild] Error at line 16 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 16 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 24 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 24 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 31 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 31 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 38 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 38 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 45 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 45 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 52 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 52 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in controls\database_iterator\dbcontrol_wrapper\impl\UsersDBControl.jcx:
    [webappbuild] Error at line 20 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 20 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 28 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 28 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 35 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 35 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 42 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 42 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 49 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 49 column 21:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 56 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 56 column 16:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in controls\webservice\helloworld\syncWebService\HelloWorldControl.jcx:
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 11 column 29:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Errors found in controls\webservice\polling\asyncWebService\HelloWorldAsyncControl.jcx:
    [webappbuild] Error at line 9 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 9 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 37 column 21:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Error at line 45 column 17:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Error at line 51 column 20:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Error at line 57 column 29:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Errors found in handlingData\binaryFlow\docContentDB.jcx:
    [webappbuild] Error at line 56 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 71 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 71 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 80 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 80 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 88 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 88 column 26:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 94 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 94 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 108 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 108 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 115 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 115 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 125 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 125 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 134 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 134 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in handlingData\dropdown\ItemsDBControl.jcx:
    [webappbuild] Error at line 44 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 44 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 54 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 54 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 75 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 75 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 82 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 82 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 92 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 92 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 29:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 101 column 29:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in handlingData\xmlBeans\ItemsDB.jcx:
    [webappbuild] Error at line 22 column 32:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 22 column 32:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in tagSamples\netui_databinding\callControl\HelloWorldControl.jcx:
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 8 column 18:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateControl does not implement the i
    nterface com.bea.control.ValidateControl.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateControl to the com.bea.wlw.runtime.jws.compiler.Se
    rviceCtrlChecker$JcxValidateControl class.
    [webappbuild] Error at line 11 column 29:
    [webappbuild] Description: The class com.bea.wlw.runtime.jws.compiler.ServiceCtrlChecker$JcxValidateMethod does not implement the in
    terface com.bea.control.ValidateMethod.
    [webappbuild] Prescription: Add support for the interface com.bea.control.ValidateMethod to the com.bea.wlw.runtime.jws.compiler.Ser
    viceCtrlChecker$JcxValidateMethod class.
    [webappbuild] Errors found in tagSamples\netui_databinding\choice\ItemsDBControl.jcx:
    [webappbuild] Error at line 43 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 43 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 53 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 53 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 60 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 60 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 67 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 67 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 74 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 74 column 15:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 81 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 81 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 91 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 91 column 17:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in tagSamples\netui_databinding\declarePageInput\ItemsDBControl.jcx:
    [webappbuild] Error at line 32 column 12:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 32 column 12:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Errors found in tagSamples\netui_databinding\grid\itemsrowsetcontrol\ItemsRowSetControl.jcx:
    [webappbuild] Error at line 46 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 51 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 51 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 61 column 19:
    [webappbuild] Description: Validation class for this value was not provided or was not found.
    [webappbuild] Prescription: Verify that the validation class for this type is available.
    [webappbuild] Error at line 68 column 19:
    [webappb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  

  • RFC_ERROR_SYSTEM_FAILURE: Time limit exceeded. Connection Pool - JCO api

    Hi Everyone
    My Connection  Pool parameters JCO api.
    client=300
    user=SISGERAL_RFC
    passwd=******
    ashost=14.29.3.120
    sysnr=00
    size=10
    I have these parameters on my Connection Pool and sometimes appear these wrongs in my application:
    1.
    2006-01-07 13:20:37,414 ERROR com.tel.webapp.framework.SAPDataSource - ##### Time limit exceeded. LOCALIZED MESSAGE = Time limit exceeded. KEY = RFC_ERROR_SYSTEM_FAILURE GROUP = 104 TOSTRING = com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Time limit exceeded.
    2.
    2006-01-07 14:01:31,007 ERROR com.tel.webapp.framework.SapPoolConnectionManager - Timeout
    I’d like to know if is happening.
    Are there something wrong with my connection pool?
    What can be happening?
    Thanks

    Raghu,
    Thanks for your response.
    Yes, the pool connections are in place according to the sAP note mentioned above.
    Regards,
    Faisal

  • R182 System Update - scheduled to go live December 4th, 2012

    We are announcing a new Business Catalyst release, scheduled to go live on Tuesday, December 4th, between 1AM - 6AM PST.
    Please see the blog post for an overview of all major changes.
    Minor enhancements
    Programmatically creating thumbnails from full size images now accepts a single dimension (width or height) and it always does proportional resize based on the dimension provided. (docs to be updated soon)
    Bounce management updates - with this release, we are going to automatically unsubscribe and opt-out customers whose email addresses have hard bounced. Additionally, we have renamed the Invalid Email Addresses report into Hard Bounces and merged it with the Bounce report.
    Import progress indicator - the import has been updated so that it now shows the import progress
    Partner Portal updates: invoice list and comissions are now ordered descendent by date; additionally, the Billing tab now shows the Site ID next to each customer name
    All charts are now rendered using a different library, leading to slightly different looks. There are no changes in chart data or functionality.
    Issues fixed
    Bug #
    Description
    2873659
    Change customer's Secure Zone Subscriptions    date interval from 1920-2020 to 2000-2100
    3078126
    {module_title} displays the title ID instead of the customer's title e.g.    Mr, Mrs, etc
    Note: this bug fix was reverted, and addressed in a future release
    3156116
    when using the import loyalty campaign template the customer anniversary    dates are pre-filled with 1-1-9999 date instead of empty
    3176084
    Total order amount wrong calculation for Netherlands, Espanol and Deutsch
    3282902
    Wholesaler price with volume discount: The quantity threshold value will    be updated with '.00' decimals after the first save and after a second save,    an error will be triggered
    3323767
    Company name is not displayed when a customer has more than one    relationship to a company, and one of the relationships has been deleted
    3330266
    Using a discount code for free shipping with a minimum total condition    ignores it and recomputes the total based on item prices only
    3338670
    The home address fields  associated    to a customer are lost when clicking Enter in the CRM contact detail panel
    3341625
    If you are using custom templates to render a product the default    "list" template will appear after pressing the Add to cart button
    3348888
    CRM entries are created when comments are set to "Must be logged    in" in order to post, and one comments as Anonymous
    3348939
    When creating a campaign where the list of customers is over 2000, at the    last step "Preview and Send", the number of recipients remains on    "Calculating..."
    3349824
    BR tags are commented from menu items tooltip on Save
    3350859
    Sites with old no longer offered site plans cannot access FTP
    3352094
    Wholesale price always saved as zero
    3355847
    Viewing/editing a campaign, contentHolder or template file through the    File Manager logs the siteID as if it's the userID in the audit log
    3353726
    Large literature items over 10 Mb cannot be uploaded. It should work for    files up to 100mb
    3354064
    Cannot forward a non-WWW domain to a domain using the DNS tool once the    domain is already added in the admin panel
    3354541
    Backup layout is not displayed when the web app items are inserted    through the new toolbox
    3359256
    Disabled sites are not enabled if upgraded via Consolidated Billing    invoice on account
    3359585
    Cannot re-add a non-WWW domain if the DNS zone is created and you have    removed it from your site
    3362275
    Product template restored to default when using product grouping    functionality in site frontend e.g. module_product,CatID,ProdID    template="" - functionality broken
    3362972
    Cannot create subdomains with more than one level after the first domain.
    2599509
    {tag_capacitydescription} rendering "Full" even though there is    1 seat available in the booking
    2638884
    Secure zone 'Frequency of Membership Renewal' option failing when    selecting 'once' with non recurring Payment gateway
    2732950
    Change the Norwegian word “laurdag” into “lørdag”
    2814482
    Sorting literature items doesn't work properly in Admin when filtering by    one letter
    3000564
    Unclassified web app items are imported as classified with previous item    classification
    3090411
    Campaigns are sent even though the site has been marked as deleted
    3110319
    Pressing the Back button to return to the checkout form will load the    default engilsh version of the checkout form
    3189476
    Campaign emails do not respect the standard for the Message-Id field
    2567870
    Moving dynamic menu items using the ‘right click > Move up/down’    seems to intermittently skip a few places
    2758568
    The tax is not recorded against the order if the initial payment fails    and the second payment is successful
    2832245
    Exporting to PDF bounced reports for email campaign throws system error
    2842411
    The webapp import hangs when having a large amount of custom fields
    2841512
    [Reports] If you create a Customer and Order and use both "Product    Purchased with Details" and "Products Purchased" options you    will get the "An error occurred" message
    2952394
    Checkout form on the Cadac template is unusable
    3225813
    Newly created sites from templates, scratch or replicated sites shouldn't    have a sitemap.xml file, even if the original site has it
    3301285
    SEO friendly URL column when importing a catalog is marked in admin panel    as optional, but this information is mandatory
    3311966
    Static file cache invalidation fails occasionally, causing old file    version to be served even though it has been modified

    Thanks for this Jackson.  Looks like my client was hit by [2758568].   Please could you clarify if "Issues fixed" mean the fix is currenly live on the system or if it will be fixed on the 4 December roll out. 

  • Unable to deploy the war file generated from jdeveloper to tomcat

    Hi
    I was able to deploy the war file after modification in the web.xml but unable to run the servlet application
    Please Help
    Dolphy

    After going thru all the steps specified in online help to deploy the web application in Tomcat server.
    I am getting the following error
    first the webapps could not be deployed because of url pattern
    <servlet-mapping>
    <servlet-name>mypackage1.BIController1</servlet-name>
    <url-pattern>mypackage1.BIController1</url-pattern>
    </servlet-mapping>
    which when i change to
    <servlet-mapping>
    <servlet-name>mypackage1.BIController1</servlet-name>
    <url-pattern>\mypackage1\BIController1</url-pattern>
    </servlet-mapping>
    deploys the application
    but i get the following errors in the tomcat log file
    2004-05-03 10:34:12 StandardContext[balancer]org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]]
    2004-05-03 10:34:12 StandardContext[jsp-examples]ContextListener: contextInitialized()
    2004-05-03 10:34:12 StandardContext[jsp-examples]SessionListener: contextInitialized()
    2004-05-03 10:34:13 StandardContext[servlets-examples]ContextListener: contextInitialized()
    2004-05-03 10:34:13 StandardContext[servlets-examples]SessionListener: contextInitialized()
    2004-05-03 10:34:13 StandardContext[webapp1]Marking servlet uix as unavailable
    2004-05-03 10:34:13 StandardContext[webapp1]Error loading WebappClassLoader
    delegate: false
    repositories:
    /WEB-INF/classes/
    ----------> Parent Classloader:
    StandardClassLoader
    delegate: true
    repositories:
    file:C:\tomcat\shared\classes\
    ----------> Parent Classloader:
    StandardClassLoader
    delegate: true
    repositories:
    file:C:\tomcat\common\classes\
    file:C:\tomcat\common\endorsed\xercesImpl.jar
    file:C:\tomcat\common\endorsed\xmlParserAPIs.jar
    file:C:\tomcat\common\lib\ant.jar
    file:C:\tomcat\common\lib\commons-collections.jar
    file:C:\tomcat\common\lib\commons-dbcp-1.1.jar
    file:C:\tomcat\common\lib\commons-el.jar
    file:C:\tomcat\common\lib\commons-pool-1.1.jar
    file:C:\tomcat\common\lib\jasper-compiler.jar
    file:C:\tomcat\common\lib\jasper-runtime.jar
    file:C:\tomcat\common\lib\jmx.jar
    file:C:\tomcat\common\lib\jsp-api.jar
    file:C:\tomcat\common\lib\naming-common.jar
    file:C:\tomcat\common\lib\naming-factory.jar
    file:C:\tomcat\common\lib\naming-java.jar
    file:C:\tomcat\common\lib\naming-resources.jar
    file:C:\tomcat\common\lib\servlet-api.jar
    ----------> Parent Classloader:
    sun.misc.Launcher$AppClassLoader@4afa9e
    oracle.cabo.servlet.UIXServlet
    java.lang.ClassNotFoundException: oracle.cabo.servlet.UIXServlet
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1383)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:979)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3959)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4284)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1134)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1126)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:521)
         at org.apache.catalina.core.StandardService.start(StandardService.java:519)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:594)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
    2004-05-03 10:34:13 StandardContext[webapp1]Servlet /webapp1 threw load() exception
    javax.servlet.ServletException: Wrapper cannot find servlet class oracle.cabo.servlet.UIXServlet or a class it depends on
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:989)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3959)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4284)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1134)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1126)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:521)
         at org.apache.catalina.core.StandardService.start(StandardService.java:519)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:594)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
    ----- Root Cause -----
    java.lang.ClassNotFoundException: oracle.cabo.servlet.UIXServlet
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1383)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:979)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3959)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4284)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1134)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1126)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:521)
         at org.apache.catalina.core.StandardService.start(StandardService.java:519)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:594)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
    Thanks
    Dolphy

  • Not able to run Applet after calling JSP with a Servlet

    Dear Java-Community :)
    At first I want to say, that my English isn't the best.. so I hope you'll understand my problem ;)
    I'm running a J2EE-Application, packed in a EAR-File, on my JBoss with following directory-structur:
    /jaw6c/bin
    /jaw6c/build
    /jaw6c/common
    /jaw6c/ejb
    /jaw6c/sql
    /jaw6c/src
    /jaw6c/webapp
    /jaw6c/webapp/build
    /jaw6c/webapp/build/classes
    /jaw6c/webapp/build/classes/com
    /jaw6c/webapp/build/classes/com/jbossatwork
    /jaw6c/webapp/build/classes/com/jbossatwork/ControllerServlet.class<<<<<<<<
    /jaw6c/webapp/build/distribution
    /jaw6c/webapp/build/distribution/webapp.war
    /jaw6c/webapp/build/gensrc
    /jaw6c/webapp/compile-lib
    /jaw6c/webapp/lib
    /jaw6c/webapp/src
    /jaw6c/webapp/src/com
    /jaw6c/webapp/src/com/jbossatwork
    /jaw6c/webapp/src/com/jbossatwork/ControllerServlet.java
    /jaw6c/webapp/web
    /jaw6c/webapp/web/WEB-INF
    /jaw6c/webapp/web/WEB-INF/classes
    /jaw6c/webapp/web/buyCarForm.jsp
    /jaw6c/webapp/web/carForm.jsp
    /jaw6c/webapp/web/carList.jsp
    /jaw6c/webapp/web/copy_darstellungErgebnisse.jsp
    /jaw6c/webapp/web/darstellungErgebnisse.jsp<<<<<<<<<<<<<<
    /jaw6c/webapp/web/default.css
    /jaw6c/webapp/web/diag.jar
    /jaw6c/webapp/web/diagram.class<<<<<<<<<<<<<<<<<<<<<<<<
    /jaw6c/webapp/web/error.jsp
    /jaw6c/webapp/web/index.jsp
    /jaw6c/webapp/web/selectBewertungslaeufeList.jsp
    /jaw6c/webapp/build.xml
    /jaw6c/build.xmlThe applet should be loaded in my "darstellungErgebnisse.jsp"-File.
    Now the strange situation:
    When I access "darstellungErgebnisse.jsp" DIRECTLY by entering a URL like "localhost:8080/jaw/darstellungErgebnisse.jsp" , the applet is loading perfectly !
    But when my server is forwarding me to the JSP-Site with
    RequestDispatcher dispatcher =  getServletContext().getRequestDispatcher(destinationPage);
    dispatcher.forward(request, response);
    . . . . . . . ..I'll get a ""java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file diagram
    " -Error what means (referenced on the articles I've read here), that the diagram.class Is not found !
    I have tried to put the class file in a JAR, in different locations... using the codebase and archive tag but NOTHING solved my problem.
    So my question:
    Why I'm able to access the JSP-File directly and seeing the applet but after forwarding to the JSP-File via the Servlet, I'm not able to see anything.
    Would appreciate your help
    Thank you and best regards
    Edit:
    1) I'm able to download the diag.jar and diagram.class file from different locations
    2)I recognized, that after using the servlet, my url is changing from
    localhost:8080/jaw
    to
    localhost:8080/jaw/controller
    I tried added the class file to the position, where the controller-class file is, but without sucess.
    3)Opening the class-file with a hex-editor shows me, that
    the first bytes are
    "CAFEBABE0000002E02B9070002010007"
    (http://forum.java.sun.com/thread.jspa?threadID=648990&messageID=3820701)
    Message was edited by:
    Khaled01

    Hello everybody,
    I finaly have found the solution (after 16 hours).
    Like I mentioned before, I recognized (maybe a little to late), that my path is changing when I'm using the servlet :
    localhost:8080/jaw
    to
    localhost:8080/jaw/controller
    (made by url-pattern in my web.xml).
    So when my JSP tries to acces the class file, It's looking at:
    localhost:8080/jaw/controller/applet/diagram.class
    but the file is in:
    localhost:8080/jaw/applet/diagram.class
    So the solution is, to but a codebase-tag in my applet-declaration with following delcaration "basedir="../applet"
    I hope I'll help somebody with the same problems. It took me a day to find out, that the solution was two points and a slash..... lol
    Regards to everybody

Maybe you are looking for

  • Itunes 10.1 will not install and Rollback v8.2 will not recognise my Ipod!

    Hi, I recently updates to itunes 10 (running nano 4th gen) and since then my computer has become a constant error message and my ipod has become a paper weight. Whilst installing I10 I get error messages saying could not open Key unknown\components\D

  • Presenter forces permanentely the file save dialog even for unchanged documents

    Presenter permanentely forces the "Do you want to save the changes ..." file save dialog to appear even for unchanged documents when I try to close it. To confirm the saving all times is not the solution because then I will loose the file's time/date

  • Link with table CAWN and MSEG

    Hi Friend how can i link with clasification fields(CAWN-ATWRT) with meterial document no(MSEG-MBLNR) in MM in the transaction migo. Thanks and Regards D Tarun Kumar Edited by: Devalla Tarun Kr. on Sep 9, 2008 2:29 PM

  • Edit flow at interest rate instrument

    Hi all, Is there anyone familiar with interest rate instrument product in SAP-TRM? Just want to ask if we want to change the line at the cash flow for example the nominal interest, can we do it in a bulk (i mean do it for many lines at one time)?  Is

  • To load a pdf in a Panel

    Hi, How to load a pdf in a panel. I tried the code:- var u:URLRequest = new URLRequest("../pdf/Registration.pdf"); navigateToURL(u,"_blank"); This will open the pdf in a new window. I need to get the pdf file open in a panel .