Sharepoint 2010 question : Error while deploying wsp file in using managment shell (power script)

When I tried to deploy the wsp's using managment shell (power shell scripts) everything looks good.
When I go and take a look the "manage farm solutions" thru sharepoint central admin, I see the deployment failed in two servers.
Error is
Could not load file or assembly 'c:\windows\Temp\solution-cxxxxxxxxxxxxxx\xxx.xxx.dll" or one of its dependencies. Access is denied.
Can you please let me know what could be the reason.
Note : I have two app servers and two web servers setup. The deployment is sucessful in 2 apps servers . but 2 web servers are giving error.
Thanks
Pichaimani

Hi,
According to your post, my understanding is that you wanted to failed to deploy the wsp's using managment shell.
You need to make sure that the dll is registered in the GAC.
Go to %Windows%\assembly. If the dll isn't there , you need to install it to the GAC on the server. Simply drag it into that folder in Windows Explorer, and it should install itself.
Here is a similar thread for your reference:
http://stackoverflow.com/questions/1265505/sharepoint-could-not-load-file-or-assembly-the-system-cannot-find-the-file-sp
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • Getting error while deploying (.WSP) file

    HI ,
        I developed timer through VS 2010.When i try to
    deploy that WSP file in production server through Stsadm/Powershell commands ,I am getting below
    error.
    The solution cannot be deployed.  Directory "NewsofTheweekMemoTimerJob_Feature1"
     associated with feature '675521dc-7b7c-4825-a49c-611d0dce007f' in the solution
    is used by feature 'bdc09bc2-f629-41dc-8749-e9fe8f02c613' installed in the farm.
     All features must have unique directories to avoid overwriting files.
       I saw in Central administration,under system settings i did not find any solution.
    Thanks in advance.
    help me.
    Thanks:

    It seems that you already have installed a feature with the same name in the farm. Look in the 14-hive (C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14) under TEMPLATE\FEATURES. There you have a folder with the mentioned name. As
    long as this folder exists, you can't deploy a feature with the name of the folder.
    A simple solution for your problem would be to give the feature another name. So you avoid the naming collision.

  • Error While Deploying the BPEL Process using obant script

    Hi All,
    I am getting the following error while deploying the BPEL Process using obant script. we are using the BPEL Version 10.1.2.0.2.Any information in this regard will be really helpful.
    Buildfile: build.xml
    main:
    [bpelc] file:/home5102/dibyap/saravana/Test/CreditRatingService.wsdl
    [bpelc] validating "/home5102/dibyap/saravana/Test/CreditRatingService.bpel" ...
    BUILD FAILED
    /home5102/dibyap/saravana/Test/build.xml:15: ORABPEL-01002
    Domain directory not found.
    The process cannot be deployed to domain "default" because the domain directory "/opt02/app/ESIT/oracle/esit10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/default/deploy" cannot be found or cannot b
    e written to.
    Please check your -deploy option value; "default" must refer to a domain that has been installed locally on your machine.
    Total time: 23 seconds
    dibyap@ios5102_ESIBT:/home5102/dibyap/saravana/Test>
    Thanks,
    Saravana

    In 10.1.2.0.2 you need to create your own build.xml
    I have found an example, it may be of some help. This does call a property file
    cheers
    James
    <?xml version="1.0" ?>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Run cxant on this file to build, package and deploy the
    ASB_EFT BPEL process
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <project name="ASB_EFT" default="main" basedir=".">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Name of the domain the generated BPEL suitcase will be deployed to
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <property name="deploy" value="default" />
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    What version number should be used to tag the generated BPEL archive?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <property name="rev" value="1.0" />
    <!-- BPEL Best Practices Properties -->
    <!-- Defaults Properties for TARGET environments
    # CHANGE THIS FILE TO REFLECT THE TARGET ENVIRONEMNT
    # either dev, test, or prod.properties
    -->
    <property file="ebusd.properties"/>
    <property name="env" value="${env.name}"/>
    <property name="current.project.name" value="${project.name}"/>
    <property name="target.project.name" value="${project.name}_${env}"/>
    <property name="deployment.profile" value ="${env}.properties"/>
    <property name="source.development.directory" location="${basedir}"/>
    <property name="target.env.directory" location="${basedir}/deploy/${project.name}_${env}"/>
    <property file="${deployment.profile}"/>
    <property name="build.fileencoding" value="UTF-8"/>
    <!-- Prints Environment
    -->
    <target name="print.env" description="Display environment settings">
    <echo message="Base Directory: ${basedir}"/>
    <echo message="Deployment Profile: ${deployment.profile}"/>
    <echo message="target.env.directory: ${target.env.directory}"/>
    <echo message="Deploy to Domain: ${deployToDomain}"/>
    <echo/>
    <echo message="os.name: ${os.name}"/>
    <echo message="os.version: ${os.version}"/>
    <echo message="os.arch: ${os.arch}"/>
    <echo/>
    <echo message="java.home: ${java.home}"/>
    <echo message="java.vm.name: ${java.vm.name}"/>
    <echo message="java.vm.vendor: ${java.vm.vendor}"/>
    <echo message="java.vm.version: ${java.vm.version}"/>
    <echo message="java.class.path: ${java.class.path}"/>
    <echo/>
    <echo message="env: ${env}"/>
    <echo message="current.project.name: ${current.project.name}"/>
    <echo message="target.project.name: ${target.project.name}"/>
    <echo message="server.name: ${server.name}"/>
    </target>
    <!--
    Copies the current directory structure along with
    all the file into the target.env.directory and
    change the name of the project
    -->
    <target name="create.environment">
    <copy todir="${target.env.directory}">
    <fileset dir="${basedir}"/>
    <filterset begintoken="@" endtoken="@">
    <filtersfile file="${deployment.profile}"/>
    </filterset>
    </copy>
    <move file="${target.env.directory}/${current.project.name}.jpr" tofile="${target.env.directory}/${target.project.name}.jpr"/>
    </target>
    <target name="main">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    the bpelc task compiles and package BPEL processes into versioned BPEL
    archives (bpel_...jar). See the "Programming BPEL" guide for more
    information on the options of this task.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    </project>
    here is a property file
    project.name=ASB_EFT
    env.name=ebusd
    deployToDomain=default
    server.name=[server]
    server.port=7788
    ebusd\:7788=http://[server]:7788/
    IntegrationMailAccount=OracleBPELTest
    IntegrationMailAddress=[email]
    IntegrationMailPassword=[password]
    archivedir=[directory]
    inbounddir=/[directory]
    errordir=[directory]
    outbounddir=[directory]
    bpelpw=bpel
    dbhost1=[dbserver]
    dbhost2=[dbserver]
    dbport=1523
    dbservice=bpel
    dbconnstr=jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=[server])(PORT=1523))(ADDRESS=(PROTOCOL=tcp)(HOST=[server])(PORT=1523)))(CONNECT_DATA=(SERVICE_NAME=ebusd)))

  • Error while deploying war file inOC4J through o9ias

    Dear friends
    I receive an error while deploying a war file to oracle 9i application server stating that one or more process is running, shutdown by 9iAS or by enterprise manager or use dcmctl resynInstance to free the resource.
    This error happens when one deploy is either interrupted or not deployed properly. But even after stopping the process by "dcmctl stop" or by the command "dcmctl resynInstance" i am not able to deploy any more applications. Kindly guide me

    You probably want to post this question over in the OC4J forum or in one of the 9iAS forums. ODBC is a Windows C++ & VB client API, so it doesn't have a lot to do with the Oracle application server or OC4J.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Error while Deploying .EAR file

    Hi All,
    Iam getting the following Error while deploying a .ear file (generated by jdeveloper 11g) into OC4J 10.1.3.3
    [Apr 16, 2008 3:49:00 PM]application : ModelEJB is in failed state
    [Apr 16, 2008 3:49:00 PM] Operation failed with error: Missing class: oracle.jbo.server.ejb.StatefulSessionBeanImpl Dependent class: model.server.ejb.beanmanaged.AppModuleServer Loader: ModelEJB.root:0.0.1 Code-Source: /D:/OC4J/j2ee/home/applications/ModelEJB/ModelEJB.jar Configuration: in D:\OC4J\j2ee\home\applications\ModelEJB (Failure analysis caught java.lang.IllegalStateException: ClassLoader "ModelEJB.root:0.0.1" (from in /D:/OC4J/j2ee/home/applications/ModelEJB/): This loader has been closed and should not be in use.)
    Can some one help me in this...
    Thanks & Regards,
    Kaushik

    Hi,
    The name of the data-source should match with the value of 'Location' in data-sources.xml
    ex: "jdbc/OracleDS"
    Can you give more details of your problem like how you are deploying?
    Kavitha

  • Error While Deploying .sda File in SDM

    Hi,
    We have developed some GP Applications. To transport the GP Application to production system we have builded .sda file from the development portal and deployed it in SDM. But its throwing an error while deploying.
    Production system details:
    OS : AIX (ppc64) 5.3
    EP : NW2004s SP 9
    Oracle : 10.2
    <b>We tried giving R/W permission to the .sda files after copying it in production. But still it throws the same error.</b>
    The error we got while deploying in SDM is :
    Deployment started Wed Mar 21 20:44:49 GMT+05:30 2007
    ===========================================================================
    Starting Deployment of
    com/sap/caf/eu/gp/fnd/tsp/contentD86B5900D79E11DBB0E4000D60ECF782
    Aborted: development
    component 'com/sap/caf/eu/gp/fnd/tsp/contentD86B5900D79E11DBB0E4000D60ECF782'/'sap.com'/'LOCAL'/'20070321165517'/'1':Caught exception during
    application deployment from SAP J2EE Engine's deploy
    service:java.rmi.RemoteException: Cannot deploy application
    sap.com/comsapcafeugpfndtsp~contentD86B5900D79E11DBB0E4000D60ECF782.. Reason: <--Localization failed:
    ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle',
    ID='/usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.)', Arguments: []--> : Can't find resource for
    bundle java.util.PropertyResourceBundle,
    key /usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.); nested exception is:
    com.sap.engine.services.deploy.container.DeploymentException: <-
    -Localization failed:
    ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle',
    ID='/usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.)', Arguments: []--> : Can't find resource for
    bundle java.util.PropertyResourceBundle,
    key /usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.) (message ID:
    com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of
    com/sap/caf/eu/gp/fnd/tsp/contentD86B5900D79E11DBB0E4000D60ECF782
    finished with Error (Duration 8944 ms)
    <b>Please guide me on how to solve this error.</b>
    Kind Regards,
    Nirmal

    Hi Dipankar,
    I can't tell you the cause why you are facing this problem.
    But I can suggest you a way that you can once again check the availability of plugins in your NWDS.
    Contents of  "gp_TopLevelDCs.zip" are
    <b>1) sap.com caf eu gp api wd.dcref
    2) sap.com caf eu gp api.dcref</b>
    And
    Location to Extract gp_TopLevelDcs.zip=>
    <b>C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\SCs\sap.com\CAF\_comp\TopLevelDCs</b>
    Contents of "gp_api_nw04s.zip" are-->
    <b>1) api(folder)</b>
    Location to Extract gp_api_nw04s.zip=>
    <b>C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\eu\gp</b>
    <b>I'm using NWDS 7.0.06</b>
    Just check if  this info can help you out.
    Do make a reply if you stiil face the problem.
    Regards,
    Piyush

  • Error while deploying war file

    I am getting this error while deploying a war file.
    (Also I am attaching error.txt containing the full exception stacktrace)
    ####<Apr 17, 2002 4:04:28 PM EDT> <Debug> <HTTP> <urkel> <myserver> <ExecuteThread:
    '1' for queue: '__weblogic
    adminhtml_queue'> <system> <> <101158> <Exception thrown while loading buying4p:
    java.lang.StringIndexOutOfB
    oundsException: String index out of range: -1>
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1525)
    at weblogic.servlet.internal.WebAppHelper.resolveManifestName(WebAppHelper.java:469)
    at weblogic.servlet.internal.WebAppHelper.extractClassFiles(WebAppHelper.java:177)
    at weblogic.servlet.internal.WebAppServletContext.extractClassFiles(WebAppServletContext.java:3405)
    at weblogic.servlet.internal.WebAppServletContext.setDocroot(WebAppServletContext.java:3376)
    at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:862)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:815)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:428)
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java:74)
    at weblogic.j2ee.Application.addComponent(Application.java:163)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:329)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:144)
    at weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:76)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy34.addWebDeployment(Unknown Source)
    at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_Cachin
    gStub.java:1121)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:315)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:144)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.ConfigurationMBeanImpl.updateConfigMBeans(ConfigurationMBeanImpl.java:
    491)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:361)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy12.addDeployment(Unknown Source)
    at weblogic.management.internal.DynamicMBeanImpl.updateDeployments(DynamicMBeanImpl.java:1516)
    at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:895)
    at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:847)
    at weblogic.management.internal.ConfigurationMBeanImpl.setAttribute(ConfigurationMBeanImpl.java:295)
    at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1356)
    at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1331)
    at weblogic.management.internal.MBeanProxy.setAttribute(MBeanProxy.java:322)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:204)
    at $Proxy9.setTargets(Unknown Source)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.console.info.FilteredMBeanAttribute.doSet(FilteredMBeanAttribute.java:92)
    at weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMBeanAction.java:135)
    at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
    at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    [error.txt]

    Hi,
    Please post this to the servlet newsgroup.
    - Matt
    saM wrote:
    I am getting this error while deploying a war file.
    (Also I am attaching error.txt containing the full exception stacktrace)
    ####<Apr 17, 2002 4:04:28 PM EDT> <Debug> <HTTP> <urkel> <myserver> <ExecuteThread:
    '1' for queue: '__weblogic
    adminhtml_queue'> <system> <> <101158> <Exception thrown while loading buying4p:
    java.lang.StringIndexOutOfB
    oundsException: String index out of range: -1>
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1525)
    at weblogic.servlet.internal.WebAppHelper.resolveManifestName(WebAppHelper.java:469)
    at weblogic.servlet.internal.WebAppHelper.extractClassFiles(WebAppHelper.java:177)
    at weblogic.servlet.internal.WebAppServletContext.extractClassFiles(WebAppServletContext.java:3405)
    at weblogic.servlet.internal.WebAppServletContext.setDocroot(WebAppServletContext.java:3376)
    at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:862)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:815)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:428)
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java:74)
    at weblogic.j2ee.Application.addComponent(Application.java:163)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:329)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:144)
    at weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:76)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy34.addWebDeployment(Unknown Source)
    at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_Cachin
    gStub.java:1121)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:315)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:144)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.ConfigurationMBeanImpl.updateConfigMBeans(ConfigurationMBeanImpl.java:
    491)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:361)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy12.addDeployment(Unknown Source)
    at weblogic.management.internal.DynamicMBeanImpl.updateDeployments(DynamicMBeanImpl.java:1516)
    at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:895)
    at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:847)
    at weblogic.management.internal.ConfigurationMBeanImpl.setAttribute(ConfigurationMBeanImpl.java:295)
    at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1356)
    at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1331)
    at weblogic.management.internal.MBeanProxy.setAttribute(MBeanProxy.java:322)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:204)
    at $Proxy9.setTargets(Unknown Source)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.console.info.FilteredMBeanAttribute.doSet(FilteredMBeanAttribute.java:92)
    at weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMBeanAction.java:135)
    at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
    at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Name: error.txt
    error.txt Type: Plain Text (text/plain)
    Encoding: base64

  • Error while Deploying war file in SunOneWebServer

    Hi,
    I am getting the following error while deploying my war file in sunonewebserver 6.1
    Server Start Up
    <dl><dt>Status:
    </dt><dd>[https-ctsintcoora5]: start failed. (2: No such file or
    directory)
    [https-ctsintcoora5]: Sun ONE Web Server 6.1 B08/22/2003 12:37 [https-ctsintcoora5]: info: CORE5076: Using [Java HotSpot(TM)
    Server VM, Version 1.4.1_03] from [Sun Microsystems Inc.]
    [https-ctsintcoora5]: info: WEB0100: Loading web module in virtual
    server [https-ctsintcoora5] at [TestTomcatProject]
    [https-ctsintcoora5]: info: WEB0100: Loading web module in virtual
    server [https-ctsintcoora5] at [search]
    [https-ctsintcoora5]: info: CORE3282: stdout: PARSE error at line
    4 column -1
    [https-ctsintcoora5]: info: CORE3282: stdout:
    org.xml.sax.SAXParseException: Attribute "xmlns" is not declared for element
    "web-app".
    [https-ctsintcoora5]: failure: ContextConfig[TestTomcatProject]
    WEB3524: Parse error in application web.xml
    [https-ctsintcoora5]: org.xml.sax.SAXParseException: Attribute
    "xmlns" is not declared for element "web-app".
    [https-ctsintcoora5]: at
    org.apache.crimson.parser.Parser2.error(Parser2.java:3210)
    [https-ctsintcoora5]: at
    org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1456)
    [https-ctsintcoora5]: at
    org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:534)
    [https-ctsintcoora5]: at
    org.apache.crimson.parser.Parser2.parse(Parser2.java:318)
    [https-ctsintcoora5]: at
    org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
    [https-ctsintcoora5]: at
    org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    [https-ctsintcoora5]: at
    javax.xml.parsers.SAXParser.parse(SAXParser.java:314)
    [https-ctsintcoora5]: at
    javax.xml.parsers.SAXParser.parse(SAXParser.java:89)
    [https-ctsintcoora5]: at
    org.apache.catalina.util.xml.XmlMapper.readXml(XmlMapper.java:275)
    [https-ctsintcoora5]: at
    org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:311) [https-ctsintcoora5]: at
    org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:990) [https-ctsintcoora5]: at
    org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:256) [https-ctsintcoora5]: at
    org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:155) [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardContext.start(StandardContext.java:3679) [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebModule.start(WebModule.java:238)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    [https-ctsintcoora5]: at
    org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebContainer.start(WebContainer.java:411)
    [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:506)
    [https-ctsintcoora5]: at
    com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    [https-ctsintcoora5]:
    [https-ctsintcoora5]: failure: ContextConfig[TestTomcatProject]:
    WEB3525: Occurred at line 4 column -1
    [https-ctsintcoora5]: failure: ContextConfig[TestTomcatProject]:
    WEB3541: Marking this application unavailable due to previous error(s)
    [https-ctsintcoora5]: failure: WebModule[TestTomcatProject]:
    WEB2705: Context startup failed due to previous errors
    [https-ctsintcoora5]: failure: WebModule[TestTomcatProject]:
    WEB2720: Error initializing naming context for context /TestTomcatProject [https-ctsintcoora5]: javax.naming.NamingException: WEB3880:
    Unknown context name :
    StandardEngine[null].StandardHost[https-ctsintcoora5].StandardContext[TestTomcatProject] [https-ctsintcoora5]: at
    org.apache.naming.ContextBindings.bindThread(ContextBindings.java:207)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardContext.bindThread(StandardContext.java:4068) [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardContext.stop(StandardContext.java:3788) [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebModule.stop(WebModule.java:302)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardContext.start(StandardContext.java:3759) [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebModule.start(WebModule.java:238)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-ctsintcoora5]: at
    org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    [https-ctsintcoora5]: at
    org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebContainer.start(WebContainer.java:411)
    [https-ctsintcoora5]: at
    com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:506)
    [https-ctsintcoora5]: at
    com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    [https-ctsintcoora5]:
    [https-ctsintcoora5]: startup failure: could not bind to port 80
    (Permission denied)
    [https-ctsintcoora5]: failure: HTTP3127: [LS ls1]
    http://ctsintcoora5:80: Error creating socket (Permission denied)
    [https-ctsintcoora5]: failure: HTTP3094: 1 listen sockets could
    not be created
    [https-ctsintcoora5]: failure: CORE3186: Failed to set
    configuration
    [https-ctsintcoora5]: failure: server initialization failed
    alert("Warning: https-ctsintcoora5\nThis server failed to start correctly.");</dd></dl>
    <dl><dt>Error
    </dt><dd>An error occurred during startup.
    </dd><dd>The server https-ctsintcoora5 was not started.</dd></dl>I have changed the dtd format of my web.xml also:
    my web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
    <servlet>
    <servlet-name>validateuser</servlet-name>
    <servlet-class>validateuser</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>validateuser</servlet-name>
    <url-pattern>/validateuser</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>updateprofile</servlet-name>
    <servlet-class>updateprofile</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>updateprofile</servlet-name>
    <url-pattern>/updateprofile</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>registeruser</servlet-name>
    <servlet-class>registeruser</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>registeruser</servlet-name>
    <url-pattern>/registeruser</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>jspfiles/Home.jsp</welcome-file>
    </welcome-file-list>
    <error-page>
    <error-code>404</error-code>
    <location>/error.jsp</location>
    </error-page>
    </web-app>
    is there anything that needs to be changed?
    thanks in advance
    Dharini

    Wow, that's a really unhelpful error message.
    It sounds like your web app is attempting to use a malformed tag library. Did you create your own TLD file? In either case, check your web app for *.tld files. One of them apparently contains a <displayname> element instead of a display-name attribute.

  • Error while deploying rar file "No such property"

    I am getting the following error while deploying the resouce adapter (.rar file).
    Appreciate any input of this problem.
    Thanks
    --mohammed
    =======================================================
    java.lang.IllegalArgumentException: No such property: Client, existing writable properties are: [gat
    ewayService, password, rfcServerName, capacityIncrement, maxConnections, client, url, serverName, gr
    oup, gatewayHost, maxCapacity, logWriter, userName, r3name, systemNumber, jndiName, shrinkPeriod, EI
    SParams, repositoryConnectionRequestInfo, language, rfcServerHost, initialCapacity, transaction, con
    nectionRequestInfo, shrinkEnabled, messageServer, messageHost, EISType]
    at com.evermind.util.ObjectUtils.setProperty(ObjectUtils.java:460)
    at com.evermind.server.connector.ApplicationConnectionManager.init(ApplicationConnectionMana
    ger.java:265)
    at com.evermind.server.Application.initConnectors(Application.java:284)
    at com.evermind.server.Application.postInit(Application.java:426)
    at com.evermind.server.Application.setConfig(Application.java:136)
    at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1635)
    at com.evermind.server.ApplicationServer.initializeApplications(ApplicationServer.java:1585)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1240)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:93)
    at java.lang.Thread.run(Unknown Source)

    Hi,
    The name of the data-source should match with the value of 'Location' in data-sources.xml
    ex: "jdbc/OracleDS"
    Can you give more details of your problem like how you are deploying?
    Kavitha

  • Error while deploying EAR file on OC4J 10.1.3.3

    Hi all,
    I am facing following error on OC4J while deploying EAR file
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    07/12/31 17:47:21 oracle.oc4j.admin.internal.DeployerException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServ
    ices SMS API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\
    CustomerServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    07/12/31 17:47:21 at com.evermind.server.http.WrapperClassGenerator.generateWebServiceArts(WrapperClassGenerator.java:104)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.generateWebServiceArtifacts(HttpApplication.java:8469)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.populateLoaderWithWebServicesDeploymentCache(HttpApplication.java:5701)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.populateLoader(HttpApplication.java:5629)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.initClassLoader(HttpApplication.java:5568)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:731)
    07/12/31 17:47:21 at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    07/12/31 17:47:21 at com.evermind.server.Application.getHttpApplication(Application.java:570)
    07/12/31 17:47:21 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.jav
    a:1987)
    07/12/31 17:47:21 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1906)
    07/12/31 17:47:21 at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1603)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    07/12/31 17:47:21 at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    07/12/31 17:47:21 at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    07/12/31 17:47:21 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    07/12/31 17:47:21 at java.lang.Thread.run(Thread.java:534)
    2007-12-31 17:47:21.625 NOTIFICATION Application Deployer for CustomerServices SMS API FAILED.
    2007-12-31 17:47:21.625 NOTIFICATION Application UnDeployer for CustomerServices SMS API STARTS.
    2007-12-31 17:47:21.640 NOTIFICATION Removing all web binding(s) for application CustomerServices SMS API from all web site(s)
    07/12/31 17:47:21 SEVERE: ProgressObjectImpl.reportError Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SM
    S API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\Custome
    rServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    oracle.oc4j.admin.jmx.shared.exceptions.InternalException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices
    SMS API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\Custo
    merServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    at oracle.oc4j.admin.jmx.shared.deploy.NotificationUserData.<init>(NotificationUserData.java:107)
    at oracle.oc4j.admin.internal.Notifier.reportError(Notifier.java:429)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:123)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.oc4j.admin.internal.DeployerException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SM
    S API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\Custome
    rServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    at com.evermind.server.http.WrapperClassGenerator.generateWebServiceArts(WrapperClassGenerator.java:104)
    at com.evermind.server.http.HttpApplication.generateWebServiceArtifacts(HttpApplication.java:8469)
    at com.evermind.server.http.HttpApplication.populateLoaderWithWebServicesDeploymentCache(HttpApplication.java:5701)
    at com.evermind.server.http.HttpApplication.populateLoader(HttpApplication.java:5629)
    at com.evermind.server.http.HttpApplication.initClassLoader(HttpApplication.java:5568)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:731)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    at com.evermind.server.Application.getHttpApplication(Application.java:570)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1987)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1906)
    at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1603)
    at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
    at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    ... 4 more
    2007-12-31 17:47:28.109 NOTIFICATION Application UnDeployer for CustomerServices SMS API COMPLETES.
    07/12/31 17:47:28 WARNING: DeployerRunnable.run Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SMS API\cus
    tomerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\CustomerServices
    SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    oracle.oc4j.admin.internal.DeployerException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SMS API\custo
    merservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\CustomerServices S
    MS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:534)
    2007-12-31 18:21:46.234 WARNING Caught exception: java.lang.reflect.InvocationTargetException.
    Regards,
    Imran Raza Khan

    Looks strange, but do you have blanks in your path names? Don't do that. Cause pain only.
    --olaf                                                                                                                                                                                                   

  • Getting an Error while deploying ear file to WAS 6.40 server

    Hi All,
    I am getting following error while deploying the application
    Result
    => deployment aborted : file:/C:/DOCUME1/bv45127/LOCALS1/Temp/temp31955boc.com~cedapp.ear
    Aborted: development component 'cedapp'/'boc.com'/'QUA_00000127_D'/'20070328162705':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application boc.com/cedapp.. Reason: Exception during generation of components of application boc.com/cedapp in container EJBContainer.; nested exception is:      com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application boc.com/cedapp in container EJBContainer.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    I have added reference to JCO  in application-j2ee-engine.xml.
    Please guide me
    Thanks
    Bidhudas

    Hi Again,
    Now with a different problem.
    I have removed configuration and imported the configuration again. But now it is not recognizing API ( created by me with all common classes as java project).
    Structre of the application is as follows
    Cedapp -  ear file
    Cedejb   - ejb module
    Cedweb – web module
    Cedapi  - java project with common classes used in both ejb module and  web module and published as library. This refered in both the ejbmodule and web module.
    The problem now I am facing is that cedapi is not getting recognized by ejb module or web module. But it is available in used dcs of each.

  • Error while deploying SOA domain template using OVAB

    This error occurred while deploying SOA domain template using OVAB.
    Can anyone tell me what is the cause of this error and how can I correct it???
    [as] [TRACE] [] [oracle.as.assemblybuilder.fcp] [tid: 62] [SRC_CLASS: oracle.as.assemblybuilder.fcp.utils.OvabLogger] [SRC_METHOD: trace] [stderr] Exception in thread "AWT-EventQueue-0" java.lang.RuntimeException: Unable to find target node for /soa-wls-assem/soa-wls/AdminServer/AdminServer-0[[
    at oracle.as.assemblybuilder.fcp.deployer.overview.deployment.DeployedApplianceTableModel.processStateChanged(DeployedApplianceTableModel.java:254)
    at oracle.as.assemblybuilder.fcp.deployer.overview.deployment.DeployedApplianceTableModel$1.run(DeployedApplianceTableModel.java:165)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:641)
    at java.awt.EventQueue.access$000(EventQueue.java:84)
    at java.awt.EventQueue$1.run(EventQueue.java:602)
    at java.awt.EventQueue$1.run(EventQueue.java:600)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:611)
    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)
    2011-09-13T01:44:50.984-07:00] [as] [WARNING] [] [oracle.as.assemblybuilder.resourcepool.service.ovm.internal] [tid: 35] Error obtaining pool metrics for resource pool new_default_connection:osb-ovab-pool. Error is javax.xml.ws.soap.SOAPFaultException: Internal Server Error (Caught exception while handling request: oracle.ovs.biz.agent.AgentException: OVM-1011 OVM Manager communication with 10.244.20.148 for operation Query server metrics info failed:[[
    time out occurred)
    at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:189)
    at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:122)
    at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119)
    at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89)
    at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:140)

    884872 wrote:
    2011-09-13T01:44:50.984-07:00] [as] [WARNING] [] [oracle.as.assemblybuilder.resourcepool.service.ovm.internal] [tid: 35] Error obtaining pool metrics for resource pool new_default_connection:osb-ovab-pool. Error is javax.xml.ws.soap.SOAPFaultException: Internal Server Error (Caught exception while handling request: oracle.ovs.biz.agent.AgentException: OVM-1011 OVM Manager communication with 10.244.20.148 for operation Query server metrics info failed:[[
    time out occurred)Looks like OVAB can't connect to your Oracle VM Manager SOAP service.

  • Error while deploying .par file through system admin

    I have tried to modify logon.par file but when I was try deploy that file again through system admin then I got this error...................
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    com.sapportals.portal.ume.component.logon.SAPMLogonComponent.
    Exception id: 10:19_11/05/07_0006_13454550
    See the details for the exception ID in the log file
    Please help me out I am using sneak preview 7.0
    Detailed Error Log & Trace
    =========================================================
    Exception ID:08:55_11/05/07_0002_13454550
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in init method
    Component : com.sap.portal.support.browse.default
         at com.sapportals.portal.prt.component.PortalComponentContext.init(PortalComponentContext.java:251)
         at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refresh(PortalComponentContextItem.java:267)
         at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getContext(PortalComponentContextItem.java:312)
         at com.sapportals.portal.prt.component.PortalComponentRequest.getComponentContext(PortalComponentRequest.java:385)
         at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(PortalRequest.java:435)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:607)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sapportals.portal.prt.core.broker.PortalComponentInstantiationException: Could not instantiate implementation class com.sapportals.portal.ume.component.logon.SAPMLogonComponent of Portal Component com.sap.portal.support.browse.default because: Could not find implementation class
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.getInstanceInternal(PortalComponentItemFacade.java:242)
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.getComponentInstance(PortalComponentItemFacade.java:160)
         at com.sapportals.portal.prt.core.broker.PortalComponentItem.getComponentInstance(PortalComponentItem.java:732)
         at com.sapportals.portal.prt.component.PortalComponentContext.getComponent(PortalComponentContext.java:103)
         at com.sapportals.portal.prt.component.PortalComponentContext.init(PortalComponentContext.java:242)
         ... 26 more
    Caused by: java.lang.ClassNotFoundException: com.sapportals.portal.ume.component.logon.SAPMLogonComponent
    Found in negative cache
    Loader Info -
    ClassLoader name: [com.sapportals.portal.prt.util.ApplicationClassLoader@3389d1]
    Parent loader name: [com.sapportals.portal.prt.util.ApplicationClassLoader@1b7a6fa]
    References:
       not registered!
    No resources !
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:360)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:219)
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.getInstanceInternal(PortalComponentItemFacade.java:228)
         ... 30 more

    Hi,
          Open ur PAR file then double click on PORTAL-INF -> lib->Select 2 jar files
             1.com.sap.portal.runtime.logon_api.jar
             2.umelogonbase.jar
    Copy those jar file & paste in to lib in ur application.
    Regards,
    Senthil kumar K.

  • Error while deploying EAR file through SDM

    Hi All,
    I am deploying EAR file through SDM. Its taking too much time to deploy in the 3rd stage (its just a simple hello file for testing purpose and its still in that stage for 2 hours).
    When I see the log, I can see some fata error. Please suggest me what should I do. 
    ==
    Oct 15, 2008 4:31:44 PM  Info: SDM started successfully.
    Oct 15, 2008 4:33:21 PM  Info: Opened client connection to sapretail (IP address
    sapretail/172.20.177.203, remote port 58645)
    Oct 15, 2008 4:33:23 PM  Info: Request for Logon as admin accepted
    Oct 15, 2008 4:39:07 PM  Info: Loading archive '/usr/sap/trans/EPS/sap.comwdtu
    torial~ex1.ear'
    Oct 15, 2008 4:40:50 PM  Info: Actions per selected component:
    Oct 15, 2008 4:40:50 PM  Info: Initial deployment: Selected development componen
    t 'wd/tutorial/ex1'/'sap.com'/'LOKAL'/'0.2008.10.14.12.51.57' will be deployed.
    Oct 15, 2008 4:44:41 PM  Info: Saved current Engine state.
    Oct 15, 2008 4:44:48 PM  Fatal: State BeforeNextDeployment can't process event I
    nitiateDeployment
    The reason I am doing through SDM because while deploying through NWDS its throwing an error
    Oct 13, 2008 12:44:41 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : sapretail
    SDM port : 50118
    URL to deploy : file:/C:/DOCUME1/231477/LOCALS1/Temp/temp41002sap.comwdtutorial~ex1.ear
    Deployment exception : Server sapretail did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server sapretail at port 50118: sapretail
    Inner exception was :
    Server sapretail did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server sapretail at port 50118: sapretail
    Please suggest a solution.
    Regards,
    Jitender

    Now, when I deploy through NWDS, I get the following error.
    Result
    => deployment aborted : file:/C:/DOCUME1/231477/LOCALS1/Temp/temp51346sap.comwdtutorial~ex1.ear
    Aborted: development component 'wd/tutorial/ex1'/'sap.com'/'LOKAL'/'0.2008.10.15.21.04.16':Caught exception while checking the login credentials for SAP J2EE Engine. Check whether the SAP J2EE Engine is up and running.com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [sapretail] with user name: [J2EE_ADMIN]                     Check your login information.                     Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.] (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
    Deployment exception : The deployment of at least one item aborted

  • Error while deploying wsdl file to OER...

    I have installed OER(11.1.1.2) and trying to integrate with jdeveloper(11.1.1.5)...
    i have followed oracle suggested document while integration ...
    the problem while trying to deploy the file wsdl file to OER i am getting the following error
    Buildfile: D:\Oracle\Middleware1\jdeveloper\harvester\harvester-ant.xml
    introspect-file:
    [repository.submit] Unable to initialize harvester plugin: D:\Oracle\Middleware1\jdeveloper\harvester\plugins\osb10.productReader
    [repository.submit] Oracle Enterprise_Repository_Harvester version: v11.1.1.5.0-110414_0001-1399976
    [repository.submit] Unable to initialize harvester plugin: D:\Oracle\Middleware1\jdeveloper\harvester\plugins\osb10.productReader
    [repository.submit] Aug 11, 2011 12:53:17 PM org.apache.axis.attachments.MimeUtils getContentLength
    [repository.submit] SEVERE: Exception:
    [repository.submit] javax.activation.UnsupportedDataTypeException: no object DCH for MIME type text/plain
    [repository.submit]      at javax.activation.DataHandler.getInputStream(DataHandler.java:233)
    [repository.submit]      at javax.activation.DataHandlerDataSource.getInputStream(DataHandler.java:688)
    [repository.submit]      at org.apache.axis.attachments.MimeUtils.getContentLength(MimeUtils.java:115)
    [repository.submit]      at org.apache.axis.attachments.MimeUtils.getContentLength(MimeUtils.java:60)
    [repository.submit]      at org.apache.axis.attachments.AttachmentsImpl.getContentLength(AttachmentsImpl.java:406)
    [repository.submit]      at org.apache.axis.Message.getContentLength(Message.java:501)
    [repository.submit]      at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:371)
    [repository.submit]      at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:138)
    [repository.submit]      at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    [repository.submit]      at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    [repository.submit]      at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    [repository.submit]      at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    [repository.submit]      at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:2748)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:2424)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:2347)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:1804)
    [repository.submit]      at com.flashline.registry.openapi.service.v300.FlashlineRegistryTrSoapBindingStub.assetMetadataCreateDIME(FlashlineRegistryTrSoapBindingStub.java:16008)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.ALERFacade.assetMetadataCreate(ALERFacade.java:757)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetMetadataCreate(OERWriter.java:961)
    [repository.submit]      at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.createMetadataEntry(AttributeSaverImpl.java:237)
    [repository.submit]      at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.saveAttributes(AttributeSaverImpl.java:69)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.saveAttributes(OERWriter.java:1247)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetCreate(OERWriter.java:434)
    [repository.submit]      at com.oracle.oer.sync.oer.client.component.artifact.ArtifactSaverImpl.findOrCreateArtifact(ArtifactSaverImpl.java:179)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.findOrCreateArtifactAssets(OERWriter.java:574)
    [repository.submit]      at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.createArtifactEntity(MetadataEntityWriterImpl.java:74)
    [repository.submit]      at com.oracle.oer.sync.plugin.artifact.wsdl.WSDLArtifactWriter.createArtifactEntity(WSDLArtifactWriter.java:33)
    [repository.submit]      at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.write(MetadataEntityWriterImpl.java:49)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.createEntities(OERWriter.java:333)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:279)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:221)
    [repository.submit]      at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:666)
    [repository.submit]      at com.oracle.oer.sync.framework.ant.IntrospectTask.performRepositoryWork(IntrospectTask.java:314)
    [repository.submit]      at com.oracle.oer.sync.framework.ant.RepositoryTaskBase.execute(RepositoryTaskBase.java:182)
    [repository.submit]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [repository.submit]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [repository.submit]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [repository.submit]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [repository.submit]      at java.lang.reflect.Method.invoke(Method.java:597)
    [repository.submit]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    [repository.submit]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [repository.submit]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [repository.submit]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [repository.submit]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    [repository.submit]      at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    [repository.submit]      at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    [repository.submit]      at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
    [repository.submit]      at org.apache.tools.ant.Main.runBuild(Main.java:758)
    [repository.submit]      at org.apache.tools.ant.Main.startAnt(Main.java:217)
    [repository.submit]      at org.apache.tools.ant.Main.start(Main.java:179)
    [repository.submit]      at org.apache.tools.ant.Main.main(Main.java:268)
    [repository.submit] Aug 11, 2011 12:53:17 PM org.apache.axis.attachments.MimeUtils writeToMultiPartStream
    [repository.submit] SEVERE: java.io.IOException:
    [repository.submit] javax.activation.UnsupportedDataTypeException: no object DCH for MIME type multipart/related; type="text/xml"; start="<7C0BB8BEF8426D99CB1155AAA88AE37E>";
    [repository.submit]      boundary="----=_Part_0_32955489.1313047397642"
    [repository.submit]      at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:877)
    [repository.submit]      at javax.activation.DataHandler.writeTo(DataHandler.java:302)
    [repository.submit]      at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1350)
    [repository.submit]      at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1683)
    [repository.submit]      at org.apache.axis.attachments.MimeUtils.writeToMultiPartStream(MimeUtils.java:202)
    [repository.submit]      at org.apache.axis.attachments.AttachmentsImpl.writeContentToStream(AttachmentsImpl.java:461)
    [repository.submit]      at org.apache.axis.Message.writeTo(Message.java:534)
    [repository.submit]      at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:511)
    [repository.submit]      at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:138)
    [repository.submit]      at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    [repository.submit]      at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    [repository.submit]      at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    [repository.submit]      at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    [repository.submit]      at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:2748)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:2424)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:2347)
    [repository.submit]      at org.apache.axis.client.Call.invoke(Call.java:1804)
    [repository.submit]      at com.flashline.registry.openapi.service.v300.FlashlineRegistryTrSoapBindingStub.assetMetadataCreateDIME(FlashlineRegistryTrSoapBindingStub.java:16008)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.ALERFacade.assetMetadataCreate(ALERFacade.java:757)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetMetadataCreate(OERWriter.java:961)
    [repository.submit]      at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.createMetadataEntry(AttributeSaverImpl.java:237)
    [repository.submit]      at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.saveAttributes(AttributeSaverImpl.java:69)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.saveAttributes(OERWriter.java:1247)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetCreate(OERWriter.java:434)
    [repository.submit]      at com.oracle.oer.sync.oer.client.component.artifact.ArtifactSaverImpl.findOrCreateArtifact(ArtifactSaverImpl.java:179)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.findOrCreateArtifactAssets(OERWriter.java:574)
    [repository.submit]      at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.createArtifactEntity(MetadataEntityWriterImpl.java:74)
    [repository.submit]      at com.oracle.oer.sync.plugin.artifact.wsdl.WSDLArtifactWriter.createArtifactEntity(WSDLArtifactWriter.java:33)
    [repository.submit]      at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.write(MetadataEntityWriterImpl.java:49)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.createEntities(OERWriter.java:333)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:279)
    [repository.submit]      at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:221)
    [repository.submit]      at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:666)
    [repository.submit]      at com.oracle.oer.sync.framework.ant.IntrospectTask.performRepositoryWork(IntrospectTask.java:314)
    [repository.submit]      at com.oracle.oer.sync.framework.ant.RepositoryTaskBase.execute(RepositoryTaskBase.java:182)
    [repository.submit]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [repository.submit]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [repository.submit]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [repository.submit]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [repository.submit]      at java.lang.reflect.Method.invoke(Method.java:597)
    [repository.submit]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    [repository.submit]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [repository.submit]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [repository.submit]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [repository.submit]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    [repository.submit]      at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    [repository.submit]      at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    [repository.submit]      at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
    [repository.submit]      at org.apache.tools.ant.Main.runBuild(Main.java:758)
    [repository.submit]      at org.apache.tools.ant.Main.startAnt(Main.java:217)
    [repository.submit]      at org.apache.tools.ant.Main.start(Main.java:179)
    [repository.submit]      at org.apache.tools.ant.Main.main(Main.java:268)
    [repository.submit] Entity write failed due to: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
    com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.findOrCreateArtifactAssets(OERWriter.java:586)
         at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.createArtifactEntity(MetadataEntityWriterImpl.java:74)
         at com.oracle.oer.sync.plugin.artifact.wsdl.WSDLArtifactWriter.createArtifactEntity(WSDLArtifactWriter.java:33)
         at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.write(MetadataEntityWriterImpl.java:49)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.createEntities(OERWriter.java:333)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:279)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:221)
         at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:666)
         at com.oracle.oer.sync.framework.ant.IntrospectTask.performRepositoryWork(IntrospectTask.java:314)
         at com.oracle.oer.sync.framework.ant.RepositoryTaskBase.execute(RepositoryTaskBase.java:182)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
         at org.apache.tools.ant.Task.perform(Task.java:348)
         at org.apache.tools.ant.Target.execute(Target.java:357)
         at org.apache.tools.ant.Target.performTasks(Target.java:385)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
         at org.apache.tools.ant.Main.runBuild(Main.java:758)
         at org.apache.tools.ant.Main.startAnt(Main.java:217)
         at org.apache.tools.ant.Main.start(Main.java:179)
         at org.apache.tools.ant.Main.main(Main.java:268)
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.oer.client.component.artifact.ArtifactSaverImpl.findOrCreateArtifact(ArtifactSaverImpl.java:200)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.findOrCreateArtifactAssets(OERWriter.java:574)
         ... 26 more
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetCreate(OERWriter.java:438)
         at com.oracle.oer.sync.oer.client.component.artifact.ArtifactSaverImpl.findOrCreateArtifact(ArtifactSaverImpl.java:179)
         ... 27 more
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetMetadataCreate(OERWriter.java:963)
         at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.createMetadataEntry(AttributeSaverImpl.java:237)
         at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.saveAttributes(AttributeSaverImpl.java:69)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.saveAttributes(OERWriter.java:1247)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetCreate(OERWriter.java:434)
         ... 28 more
    Caused by: (500)Internal Server Error
         at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
         at org.apache.axis.client.Call.invoke(Call.java:2748)
         at org.apache.axis.client.Call.invoke(Call.java:2424)
         at org.apache.axis.client.Call.invoke(Call.java:2347)
         at org.apache.axis.client.Call.invoke(Call.java:1804)
         at com.flashline.registry.openapi.service.v300.FlashlineRegistryTrSoapBindingStub.assetMetadataCreateDIME(FlashlineRegistryTrSoapBindingStub.java:16008)
         at com.oracle.oer.sync.plugin.writer.oer.ALERFacade.assetMetadataCreate(ALERFacade.java:757)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetMetadataCreate(OERWriter.java:961)
         ... 32 more
    [repository.submit] Starting OERWriter Shutdown and Clean up...
    [repository.submit] Rolling Back
    [repository.submit] An error occurred performing the Repository operation:
    [repository.submit] com.oracle.oer.sync.framework.MetadataIntrospectionException: Entity write failed due to: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
    BUILD FAILED
    com.oracle.oer.sync.framework.MetadataIntrospectionException: Entity write failed due to: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:677)
         at com.oracle.oer.sync.framework.ant.IntrospectTask.performRepositoryWork(IntrospectTask.java:314)
         at com.oracle.oer.sync.framework.ant.RepositoryTaskBase.execute(RepositoryTaskBase.java:182)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
         at org.apache.tools.ant.Task.perform(Task.java:348)
         at org.apache.tools.ant.Target.execute(Target.java:357)
         at org.apache.tools.ant.Target.performTasks(Target.java:385)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
         at org.apache.tools.ant.Main.runBuild(Main.java:758)
         at org.apache.tools.ant.Main.startAnt(Main.java:217)
         at org.apache.tools.ant.Main.start(Main.java:179)
         at org.apache.tools.ant.Main.main(Main.java:268)
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.findOrCreateArtifactAssets(OERWriter.java:586)
         at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.createArtifactEntity(MetadataEntityWriterImpl.java:74)
         at com.oracle.oer.sync.plugin.artifact.wsdl.WSDLArtifactWriter.createArtifactEntity(WSDLArtifactWriter.java:33)
         at com.oracle.oer.sync.framework.impl.MetadataEntityWriterImpl.write(MetadataEntityWriterImpl.java:49)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.createEntities(OERWriter.java:333)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:279)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.write(OERWriter.java:221)
         at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:666)
         ... 19 more
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.oer.client.component.artifact.ArtifactSaverImpl.findOrCreateArtifact(ArtifactSaverImpl.java:200)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.findOrCreateArtifactAssets(OERWriter.java:574)
         ... 26 more
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetCreate(OERWriter.java:438)
         at com.oracle.oer.sync.oer.client.component.artifact.ArtifactSaverImpl.findOrCreateArtifact(ArtifactSaverImpl.java:179)
         ... 27 more
    Caused by: com.oracle.oer.sync.framework.MetadataIntrospectionException: (500)Internal Server Error
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetMetadataCreate(OERWriter.java:963)
         at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.createMetadataEntry(AttributeSaverImpl.java:237)
         at com.oracle.oer.sync.oer.client.component.attributes.AttributeSaverImpl.saveAttributes(AttributeSaverImpl.java:69)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.saveAttributes(OERWriter.java:1247)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetCreate(OERWriter.java:434)
         ... 28 more
    Caused by: (500)Internal Server Error
         at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
         at org.apache.axis.client.Call.invoke(Call.java:2748)
         at org.apache.axis.client.Call.invoke(Call.java:2424)
         at org.apache.axis.client.Call.invoke(Call.java:2347)
         at org.apache.axis.client.Call.invoke(Call.java:1804)
         at com.flashline.registry.openapi.service.v300.FlashlineRegistryTrSoapBindingStub.assetMetadataCreateDIME(FlashlineRegistryTrSoapBindingStub.java:16008)
         at com.oracle.oer.sync.plugin.writer.oer.ALERFacade.assetMetadataCreate(ALERFacade.java:757)
         at com.oracle.oer.sync.plugin.writer.oer.OERWriter.assetMetadataCreate(OERWriter.java:961)
         ... 32 more
    Total time: 1 minute 6 seconds
    Please help me out from this issue...
    Thanks in advance...
    Edited by: ngsankar on Aug 11, 2011 2:09 PM
    Edited by: ngsankar on Aug 11, 2011 2:10 PM

    Hi,
    Were you able to resolve this error? I am facing the same issue
    --CH                                                                                                                                                                                   

Maybe you are looking for

  • Profit Center on Vendor Line Item - When other line item is Bank

    Dear Experts, We have a peculiar problem here.  Recently we went live with SAP ECC6.0.  On the date of migration one cheque was issued to a Vendor who did not presented the same into Bank.  The Cheque is now expired and we need to pass an entry into

  • Business area financail statement

    hi experts i want financial statement as per business area.Could any one tell me what are the necessary steps for that Please help me out its very urgent requirement thanks Nilesh

  • Windows 7 Photoshop CC - empty right click menu

    Windows 7 machine with newly installed Photoshop CC and the right click/drop down menus are empty (they still work, just can't read the text). I have only seen it resolved with Macs and no mention of windows - any advice?

  • Random Record Display

    Can someone tell me how to display a random record from a database? I want to use it on my site to show a "review"... am able to do it in ASP but not sure how to in JSP. Any advice is gratefully received. M

  • Very slow performance in Jdeveloper

    I've posted in the Jdeveloper forum and raised a Service Request in Metalink, but one suggestion is that my problems may be JHeadstart related, so please let me know if this is a known issue: We're getting increasingly poor performance in Jdeveloper.