List deployed webservices / webapps in one WLS domain

Is there a way to list all of the deployed webservices through JMX in one WLS domain,
or list all of the deployed web applications which contains a web service. Thanks,
M.

Yes, look for WebServiceComponentMBeans.
-- Rob
Mat wrote:
Is there a way to list all of the deployed webservices through JMX in one WLS domain,
or list all of the deployed web applications which contains a web service. Thanks,
M.

Similar Messages

  • Deployment of same EAR fails on one WLS and succeeds on another!

    Hello,
    We are migrating from 10g to 11G for our SOA/ADF application.
    Step1: We installed Jdev 11G and also weblogic server that is free on OTN, on our machines. We wanted to first test the deployment on this server on our local machines before we did the deployment on our company's WL server. We were able to successfully create an EAR file (after many road blocks) and deploy the application to the free weblogic server (please note I am NOT saying the embedded WLS or the Integrated WLS).
    Step2: We used the EAR file created in the step above and used the same Jdev 11g to do the deployment but instead of connecting to the WLS on our machines, we created a server connection pointing to the company's server. We were confident that this will go smoothly but noooooooo!!!!!! We are getting the following error while deployment. The deployment is failing.
    Caused By: java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.bi.renderkit.graph.GraphServlet
    Why should this happen? We are using the same EAR and the same JDev to do the deployment. ADF domain has been extended on both the servers. After the deployment failed on our company's WLS, we used the same ear and using JDev to do the deployment again but the one on our machine. It went smoothly. What is going on here?
    Any help is appreciated.

    Can being low on system tablespace effect creating indexes in anyway? Yes it can; even if your index (or table, or package) is created in a non-system tablespace, the description of the index is stored in Oracle's dictionary tables, owned by SYS:
    OBJ$ (the list of objects)
    IND$ (the list of indexes) - or TAB$, etc
    ICOL$ (index columns) - or COL$ for tables...
    SEG$ (the list of segments)
    UET$ (the list of used extents)
    etc. These are the tables on which the dictionary views (eg USER_INDEXES) that we all know and love are based.
    These tables grow over time; eventually they too need to be extended. And if there isn't enough free space in the SYSTEM tablespace, your DDL operation fails.
    With packages/procedures/functions you require space in a plethora of tables that store the code and the compiled forms of your PL/SQL.
    HTH
    Regards Nigel

  • Exception while deploying webservice to weblogic 10.3.6

    Hi
    i am facing following exception while deploying ear file to weblogic.
    the same ear files was working in weblogic 9.2
    bundle of thanks for your help
    <Error> <Deployer> <BEA-149265> <Failure occ
    urred in the execution of deployment request with ID '1370278887285' for task '1
    '. Error is: 'weblogic.management.DeploymentException: Error encountered during
    prepare phase of deploying WebService module 'SubscriptionService.war'. Error en
    countered while deploying WebService module 'SubscriptionService.war'. port com
    ponent 'SubscriptionServicePortImpl' - wsdl port:{http://com.irondata.subscriptio
    n/service}SubscriptionServicePortImplPort is not found in wsdl.'
    weblogic.management.DeploymentException: Error encountered during prepare phase
    of deploying WebService module 'SubscriptionService.war'. Error encountered whil
    e deploying WebService module 'SubscriptionService.war'. port component 'Subscr
    iptionServicePortImpl' - wsdl port:{http://com.irondata.subscription/service}Subs
    criptionServicePortImplPort is not found in wsdl.
    at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:149)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.prepare(AppDeploym
    entExtensionFactory.java:79)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.access$100(AppDepl
    oymentExtensionFactory.java:15)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory$1.prepare(AppDeplo
    ymentExtensionFactory.java:219)
    at weblogic.application.internal.flow.AppDeploymentExtensionFlow.prepare
    (AppDeploymentExtensionFlow.java:23)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.wsee.ws.WsException: Error encountered while deploying WebSe
    rvice module 'SubscriptionService.war'. port component 'SubscriptionServicePort
    Impl' - wsdl port:{http://com.irondata.subscription/service}SubscriptionServicePo
    rtImplPort is not found in wsdl.
    at weblogic.wsee.deploy.WSEEModule.verifyWsdd(WSEEModule.java:256)
    at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:121)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.prepare(AppDeploym
    entExtensionFactory.java:79)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.access$100(AppDepl
    oymentExtensionFactory.java:15)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory$1.prepare(AppDeplo
    ymentExtensionFactory.java:219)
    Truncated. see log file for complete stacktrace

    The following exception occurs when there is a mismatch with the portName in the impl class with the port name in WSDL.
    weblogic.wsee.ws.WsException: Error encountered while deploying WebService module 'SubscriptionService.war'. port component 'SubscriptionServicePort
    Impl' - wsdl port:{http://com.irondata.subscription/service}SubscriptionServicePortImplPort is not found in wsdl.
    I found the Defect in the Oracle knowledge base logged for the issue. Patch id is 8182891 and fix is available for WLS 9.2.2.0 version.
    Please download and apply the patch and let us know if it helps you.
    Thanks,
    Vijaya

  • Deploying a WebApp using JMX

              IHAC who has the following problem while deploying a webapp in 6.1. I am including
              her description of the problem.
              Thanks in advance.
              i'm still playing around with deploying to the 6.1 beta wl server using the api
              calls. Although the
              following code executes, it makes the server crash when attempting to add the
              target MBean to the WebAppComponent...
              TargetMBean targetMBean = (TargetMBean)home.getMBean(managedSrv,
              "Server", domain);
              ApplicationMBean appMBean = (ApplicationMBean) home.findOrCreateAdminMBean(
              appNm, "Application", domain);
              appMBean.setPath(path);
              WebAppComponentMBean webappBean =
              (WebAppComponentMBean)home.createAdminMBean
              ( webAppNm,"WebAppComponent", domain, ppMBean);
              webappBean.setURI(warFile);
              if (targetMBean.isRegistered()){
              System.out.println("target is registered. Type is: " + targetMBean.getType());
              webappBean.addTarget(targetMBean);
              .. when the call to webappBean.addTarget(targetMBean) is made, the server console
              shows this error...
              java.lang.NullPointerException
              at java.io.File.<init>(File.java:180)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1708)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy9.findInputStream(Unknown Source)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1701)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy42.findInputStream(Unknown Source)
              at weblogic.management.configuration.ApplicationMBean_CachingStub.findInputStream(ApplicationMBean_CachingStub.java:694)
              at weblogic.j2ee.Application.retrieveEar(Application.java:425)
              at weblogic.j2ee.Application.<init>(Application.java:119)
              at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:110)
              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:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy40.addWebDeployment(Unknown Source)
              at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1066)
              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:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:443)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:321)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              javax.management.MBeanException
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:323)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              This code attempts to deploy a war from a remote directory.
              The code in the war file is mostly the security web app sample in the wl examples
              directory roled into a war archive. this war deploys and runs ok using the console
              ("manually").
              If all the code is allowed run - crashing the server - then, after restarting
              the server
              (if the console was running), the deployment entries are in the config.xml and
              the
              'mirrored' copy of the war file shows up in the .wlnotdelete directory - from
              which it runs successfully.
              i'd appreciate any insight on what might be going on or whether the code is correct
              useage
              for deployment.
              

              IHAC who has the following problem while deploying a webapp in 6.1. I am including
              her description of the problem.
              Thanks in advance.
              i'm still playing around with deploying to the 6.1 beta wl server using the api
              calls. Although the
              following code executes, it makes the server crash when attempting to add the
              target MBean to the WebAppComponent...
              TargetMBean targetMBean = (TargetMBean)home.getMBean(managedSrv,
              "Server", domain);
              ApplicationMBean appMBean = (ApplicationMBean) home.findOrCreateAdminMBean(
              appNm, "Application", domain);
              appMBean.setPath(path);
              WebAppComponentMBean webappBean =
              (WebAppComponentMBean)home.createAdminMBean
              ( webAppNm,"WebAppComponent", domain, ppMBean);
              webappBean.setURI(warFile);
              if (targetMBean.isRegistered()){
              System.out.println("target is registered. Type is: " + targetMBean.getType());
              webappBean.addTarget(targetMBean);
              .. when the call to webappBean.addTarget(targetMBean) is made, the server console
              shows this error...
              java.lang.NullPointerException
              at java.io.File.<init>(File.java:180)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1708)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy9.findInputStream(Unknown Source)
              at weblogic.management.mbeans.custom.Application.findInputStream(Application.java:1701)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy42.findInputStream(Unknown Source)
              at weblogic.management.configuration.ApplicationMBean_CachingStub.findInputStream(ApplicationMBean_CachingStub.java:694)
              at weblogic.j2ee.Application.retrieveEar(Application.java:425)
              at weblogic.j2ee.Application.<init>(Application.java:119)
              at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:110)
              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:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:437)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:178)
              at $Proxy40.addWebDeployment(Unknown Source)
              at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1066)
              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:587)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              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:443)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:321)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              javax.management.MBeanException
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:323)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:944)
              at weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl.java:931)
              at weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:916)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:591)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:573)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:319)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown
              Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:266)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:233)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              This code attempts to deploy a war from a remote directory.
              The code in the war file is mostly the security web app sample in the wl examples
              directory roled into a war archive. this war deploys and runs ok using the console
              ("manually").
              If all the code is allowed run - crashing the server - then, after restarting
              the server
              (if the console was running), the deployment entries are in the config.xml and
              the
              'mirrored' copy of the war file shows up in the .wlnotdelete directory - from
              which it runs successfully.
              i'd appreciate any insight on what might be going on or whether the code is correct
              useage
              for deployment.
              

  • Setting up WLS domain

    Hi guys:
    I am setting up WLS domain on the sun box but running into following errors when starting up the weblogic admin server.
    <Feb 16, 2006 9:20:11 AM SAST> <Error> <WLW> <000000> <Error in startup class com.bea.wli.init.WLIDBCreate Method: init:
    com.bea.wli.init.WLIDBCreateException: At least one WLI data base object (TABLE WLI_USER) was missing
    at com.bea.wli.init.WLIDBCreate$WLIDataSource.checkDBObjects(WLIDBCreate.java:880)
    at com.bea.wli.init.WLIDBCreate.init(WLIDBCreate.java:999)
    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:324)
    at com.bea.wli.init.BPMStartupShutdown.invoke(BPMStartupShutdown.java:421)
    at com.bea.wli.init.BPMStartupShutdown.startup(BPMStartupShutdown.java:284)
    at com.bea.wli.init.BPMStartup.main(BPMStartup.java:23)
    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:324)
    at weblogic.t3.srvr.StartupClassService.invokeMain(StartupClassService.java:229)
    at weblogic.t3.srvr.StartupClassService.invokeClass(StartupClassService.java:160)
    at weblogic.t3.srvr.StartupClassService.access$000(StartupClassService.java:36)
    at weblogic.t3.srvr.StartupClassService$1.run(StartupClassService.java:121)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.t3.srvr.StartupClassService.invokeStartupClass(StartupClassService.java:116)
    at weblogic.t3.srvr.StartupClassService.addDeployment(StartupClassService.java:88)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:337)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:597)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:575)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:241)
    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:324)
    :

    Did you see the directions on page 3-11 of the WLS 6.0 Administration Guide? I
    followed these steps, and was able to create a new domain. I found them to be
    clear.
    Laurel
    "Jesper de Jong" <[email protected]> wrote:
    >
    Hello all,
    Instead of working with "mydomain" and "myserver" I want to create my
    own domain.
    IMHO, the documentation on e-docs is not very clear on the steps that
    are necessary
    to do this.
    What are the steps, or where can I find better documentation on creating
    a domain?
    regards,
    Jesper

  • Multiple EAR files in one single domain ?

    can i deploy multiple EAR files in single domain
    thanks,
    KM

    I'm not sure what a "domain" is in this context. I suppose it depends on the J2EE server you're using. Weblogic has something called a "domain", and sure in that server you can deploy multiple EARs in one domain, and there can be multiple domains.

  • Packaging/deploying a webapp client to already deployed EJBs

    I have a webapp/ejb deployed on WLS 6.1. If it matters, the EJBs are
    deployed in jar files but the webapp component is deployed in exploded
    directory format.
    Now I want to deploy another webapp that uses the same EJBs. At this
    point in development, I am attempting to deploy this in exploded
    directory format as well. I have run ejbc manually against the original
    jars to create the EJB deployable units containing generated WL classes.
    This also created a ejb-client.jar, but it does not contain any impl
    classes for the home or remoted interfaces.
    I tried placing the ejb-client.jar in my WEB-INF/lib but it doesn't seem
    to be able to find the interface classes. Perhaps the exception I'm
    getting does not mean what I think it does. It is included below.
    I also tried adding the generated impl classes to the ejb-client.jar
    manually, but this didn't work either. I have read the
    packaging/deploying docs but don't seem to find this issue addressed
    directly. From all I know, I have done this correctly, but obviously I
    am missing something somewhere.
    Thanks in advance for your consideration.
    <May 10, 2002 1:53:57 PM CDT> <Error> <HTTP>
    <[WebAppServletContext(9605583,adminApp,/adminApp)] Servlet failed with
    Exception
    java.lang.ExceptionInInitializerError
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at
    sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:42)
    at
    sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:30)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:277)
    at java.lang.Class.newInstance0(Class.java:301)
    at java.lang.Class.newInstance(Class.java:254)
    at javax.rmi.CORBA.Util.createDelegateIfSpecified(Util.java:342)
    at javax.rmi.CORBA.Util.<clinit>(Util.java:54)
    at
    javax.rmi.PortableRemoteObject.createDelegateIfSpecified(PortableRemoteObject.java:182)
    at
    javax.rmi.PortableRemoteObject.<clinit>(PortableRemoteObject.java:61)
    at
    net.verizon.storm.util.DataBroker.initialize(DataBroker.java:102)
    at
    net.verizon.storm.util.DataBroker.getInstance(DataBroker.java:158)
    at
    net.verizon.storm.util.OrderDispatcher.<init>(OrderDispatcher.java:70)
    at
    net.verizon.storm.admin.OrderService.startOD(OrderService.java:159)
    at
    net.verizon.storm.admin.OrderService.processRequest(OrderService.java:104)
    at
    net.verizon.storm.admin.OrderService.doPost(OrderService.java:266)
    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:2456)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Caused by: java.lang.RuntimeException: could not find or instantiate any
    UtilDelegate class
    at
    weblogic.iiop.UtilDelegateImpl.<clinit>(UtilDelegateImpl.java:72)
    ... 24 more

    Hi.
    I tried placing the ejb-client.jar in my WEB-INF/lib but it >>doesn't seem to beable to
    find the interface classes. Perhaps
    the exception I'm getting does not mean what I think it does. >>It is includedbelow.
    It seems fine since it is the way your webapp always to use its EJB client jar.
    I also tried adding the generated impl classes to the ejb-
    client.jar manually, but this didn't work either.Nope, you should never do this since Impl classes are used on Server Side ( webapp
    treated as client of EJB in this case ) only.
    It is so hard for us to analyze the problems without a test case, I would suggest
    you to create a support case via http://support.bea.com/welcome.jsp to BEA support
    for detailed work.
    Thanks.
    Ji Zhang
    Developer Relations Engineer
    BEA Support

  • ADF mobile application - Unable to deploy webservices on Integrated weblogi

    hi,
    I have followed video given in.
    https://blogs.oracle.com/shay/entry/developing_with_oracle_adf_mobile
    Following steps are being followed by me:
    File -> New -> General -> Application -> Fusion Web Application (ADF) Created one application 2. Right clicked on model New-> Business Tier -> Business Component from table and created Entity object and view object for department table.
    Then followed the steps as per the video. But not able to deploy webservice as given in video.
    It is not generating that link after running AppModuleServiceTest.java.
    , 2013 7:23:25 PM IST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,071 during the configured idle timeout of 5 secs>
    This is the last line I am getting in the logs generated.
    Can you please tell whether the steps followed are correct or not?
    Or what else needs to be done?
    Please help.

    Try searching following file
    BB_ADFNMC_Bindings
    and all files with BB_ADFNMC_*
    these are approx 10 files , copy all of them into simulator folder inside RESERCH IN MOTION folder
    or load these through simultor->File->Load Blackberry Application .
    I hope it should help :)

  • Edge Transport Server Fails DNS Query When Emailing to one Specific Domain

    This issue occurs for the same domain across three different edge transport servers.
    All servers are Windows 2008 STD SP2, Exchange 2007 SP1 U9.  Emails are delivered using DNS connector from edge.  Emails to this one specific domain would sit in the retry queue with DNS query error until NDR was generated.  Connectivity Logging generated the following:
    2009-09-01T19:52:23.539Z,08CBEDE9198E2DC3,SMTP,subdomain.domain.com,>,DNS server returned ErrorRetry reported by 208.241.124.200
    2009-09-01T19:52:23.539Z,08CBEDE9198E2DC3,SMTP,subdomain.domain.com,-,The DNS query for 'DnsConnectorDelivery':'subdomain.domain.com':'cd771f71-77a3-4aca-b002-86f477816910' failed with error: ErrorRetry
    I changed the servers DNS settings to different servers with the same response.  Validated that manual MX lookups worked, and that I could telnet to any of the three MX records and deliver mail via telnet.
    I did a packet capture and received the following:
    12    32.280037    172.28.16.55    208.241.124.200    DNS    Standard query AAAA SMTPSERVER.subdomain.domain.com
    So what is happening is the Edge servers are only performing IP6 lookups, and throughout the log, only for subdomain.domain.com do they NOT perform a regular IP4 A record lookup.  I then went about disabling TCP/IP6 as per this article:
    http://technet.microsoft.com/en-us/network/cc987595.aspx
    this stated to do the following:
    Alternately, from the Windows XP or Windows Server 2003 desktop, click Start , point to Programs , point to Accessories , and then click Command Prompt . At the command prompt, type netsh interface ipv6 uninstall .
    To remove the IPv6 protocol for Windows XP with no service packs installed, do the following:
    Log on to the computer with a user account that has local administrator privileges.
    From the Windows XP desktop, click Start , point to Programs , point to Accessories , and then click Command Prompt .
    At the command prompt, type ipv6 uninstall .
    Unlike Windows XP and Windows Server 2003, IPv6 in Windows Vista and Windows Server 2008 cannot be uninstalled. However, you can disable IPv6 in Windows Vista and Windows Server 2008 by doing one of the following:
    In the Network Connections folder, obtain properties on all of your connections and adapters and clear the check box next to the Internet Protocol version 6 (TCP/IPv6) component in the list under This connection uses the following items .
    This method disables IPv6 on your LAN interfaces and connections, but does not disable IPv6 on tunnel interfaces or the IPv6 loopback interface.
    Add the following registry value (DWORD type) set to 0xFF:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\DisabledComponents
    This method disables IPv6 on all your LAN interfaces, connections, and tunnel interfaces but does not disable the IPv6 loopback interface. You must restart the computer for this registry value to take effect.
    I did the above, and still, the Edge Transport servers would only perform AAAA lookups, and messages would sit in the queue.
    As temporary workaround, created new send connector with the three available MX hosts as possible smarthosts for subdomain.domain.com, and this allowed email flow.
    I've tried disabling the TCPIP6, and still doesnt work.  Any suggestions?

    Hi Allen and Paul,
    we experience problems in receiving mails from senders with this Exchage server problem. When we are aware of the problem, we send them the above mentioned link and ask them to make adjustments. Then afterwards usually mail arrives without any problems.
    The problem for us is that it seems as if the problem grows. More and more mail does not arrive on our mailadresses (mine for example is [email protected]) And not all of the senders recieve notifications that mail cannot be delivered. As you can imagine
    this situation is unacceptable and damaging our customer relations.
    Is there anything WE can do? (apart from sending them the information to make adjustements in their Exchange servers...)
    I hope you can help us...
    Thanks in advance
    Leonard
    Hi Leonard,
    as stated below we where experiencing the same problem with one of our customers. Seeing that it's a DNS related problem we suggested to the customer to change or add an additional DNS service through i.e. dyndns.com. After adding the current DNS records
    to the new DNS service mail started coming in from every customer that had problems.
    So for your clients i would suggest a similar solution, it helped over here at least.
    Kind regards,
    Philipp

  • Automatic ejb redeploy when deploying a webapp

    Hi all,
    I' got a problem with bea 6.1 webapp deploy/redeploy.
    When, from console, I upload the war the server undeploy and redeploy an EJB,
    then try to deploy the war.
    The ejb is used by the webapp and in the war (in WEB-INF/classes) there are the
    EJB interfaces.
    Is this correct ?
    The real problem is that I have to deploy on a 2 node cluster. Deploying from
    console automatically target the admin server, the EJB fail the redeploy and the
    webapp is not deployed on the nodes.
    I tryed to undeploy the EJB before deploying the webapp and another EJB (not related
    to the webapp, developed here, not from bea) id redeployed ! :|
    Any idea ?
    Thanks
    Lorenzo

    Lorenzo,
    Have you considered using an Enterprise Application (EAR) which includes both your web
    app and your ejbs? This way you can undeploy and redeploy at the application level and
    let the server worry about the deployment order. See:
    http://edocs.bea.com/wls/docs61/programming/packaging.html#1029830
    You can turn off the automatic deployment to the admin server. Please read:
    http://edocs.bea.com/wls/docs61/adminguide/appman.html#1029683
    I hope this helps.
    Regards,
    Velvet
    Developer Relations Engineer
    BEA Systems
    "\"lorenzo bolzani\" lorenzo.bolzani-at-ethink.it" wrote:
    Hi all,
    I' got a problem with bea 6.1 webapp deploy/redeploy.
    When, from console, I upload the war the server undeploy and redeploy an EJB,
    then try to deploy the war.
    The ejb is used by the webapp and in the war (in WEB-INF/classes) there are the
    EJB interfaces.
    Is this correct ?
    The real problem is that I have to deploy on a 2 node cluster. Deploying from
    console automatically target the admin server, the EJB fail the redeploy and the
    webapp is not deployed on the nodes.
    I tryed to undeploy the EJB before deploying the webapp and another EJB (not related
    to the webapp, developed here, not from bea) id redeployed ! :|
    Any idea ?
    Thanks
    Lorenzo

  • Can't able to deploy webservice to IAS 10.1.2.0(window) by using Jdevloper

    Hi,
    I have got the successful msg in time of connect iAS 10.1.2.0 from Jdev 10.1.3 .
    But when I tried to deploy a simple webservice to ias then I got following deployment message :
    ---- Deployment started. ---- Aug 18, 2009 10:38:47 AM
    Target platform is Oracle Application Server 10g 10.1.2 (Windows) (OracleApplicationServer_Abir).
    Wrote WAR file to C:\Webservice\Project1\deploy\WebServices.war
    Wrote EAR file to C:\Webservice\Project1\deploy\Webservice-Project1-WS.ear
    Invoking DCM servlet client...
    C:\jdeveloper1032\jdevstudio10132\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\jdeveloper1032\jdevstudio10132\jdev\lib\oc4j_remote_deploy.jar http://157.227.124.85:18100/Oc4jDcmServletAPI/ ias_admin **** redeploy C:\OraHome_2 C:\Webservice\Project1\deploy\Webservice-Project1-WS.ear Webservice-Project1-WS OAS
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy C:\OraHome_2 C:\Webservice\Project1\deploy\Webservice-Project1-WS.ear Webservice-Project1-WS OAS
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = 9de37c5546b4f6f0200f5eb44dc8a2c0b7a90d89b533
    Please, wait for command to finish...
    Checking command status...
    Angshuman
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=9de37c5546b4f6f0200f5eb44dc8a2c0b7a90d89b533
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-8)
    #### HTTP return code was -8
    Exit status of DCM servlet client: -8
    Elapsed time for deployment: 16 seconds
    #### Deployment incomplete. #### Aug 18, 2009 10:39:03 AM
    Please help in this regards..

    Run the following in your terminal where you have a sh shell.
    export ORACLE_HOME= <give here the location of Oracle Infrastructure Home>
    cd $ORACLE_HOME
    sqlplus / as sysdba
    ## if you continue to get problems, then see the following file;
    cat $ORACLE_HOME/network/ADMIN/sqlnet.ora
    Check if you have a line with the following attribute:
    SQLNET.AUTHENTICATION_SERVICES
    make sure it is not missing, nor reporting a none value. If it does, change it to the following:
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    Save the file. Now restart infrastructure:
    cd $ORACLE_HOME
    opmn/bin/opmnctl stopall
    opmn/bin/opmnctl startall
    ## now try getting into the database again.
    sqlplus / as sysdba
    hope that helps!

  • IPhone Calendar List View Extends Back Only One Year

    My iPhone calendar List view extends back approximately one year despite the fact that I have calendar entries extending back to 1999 and that older data is visible under the Day and Month views. This is a problem because the only search mechanism in iPhone calendar is through the List view. Therefore, any search I conduct extends back only to the data in the List view ... which means back only one year.
    Does anyone have any thoughts or suggestions on how I could change this such that the List view extends to include ALL of my calendar entries and is in conformity with the Day and Month views? (I wanted to ask if anyone knows how to "correct" this, but perhaps Apple has designed it this way to speed-up the searching in List view ... I'm not certain.)
    I am currently running the most recent iOS update, am syncing my iPhone calendar via MobileMe, have upgraded to the new version of the MobileMe calendar, and have ALREADY reset my sync. history, deleted my iPhone calendar and re-synced it, etc. These don't resolve the problem.

    I've noticed that the date to which the List View will "look back" will change depending on software updates or syncs.
    For instance, a few weeks ago my List View went back to December 2009 ... now it goes back to Jan. 2010 (i.e. I lost a month of "look back"). I do not specifically recall what triggered this change, but I reset my sync. log during this period.
    If you make no changes to the sync. log or update the software, the List View start date will stay constant I believe. For instance, if the List View goes back to Jan. 1, 2010 right now it should stay that way until you reset the sync. log or update the iPhone software. Theoretically then the List View can "look back" much longer than 12 months assuming you make no changes to the sync. log or update the software. Of course, this doesn't address our issue here, but I thought I would point out that there seems to be a consistent pattern here and not some random bug screwing things up.
    I'm still thinking that this is the way Apple intended it to work. In other words, that Apple felt it necessary to limit the calendar search feature to approximately 12 months worth of calendars. I hope I'm wrong.

  • Long List of Problems and no one will help!!!

    I have had NOTHING but problems with this phone since the sales clerk talked me into buying it.  I've had it for a little over a year and a half.  It's had "Software" issues out the rear and it's been replaced and still has the very same issues.  YET I can't swap it out with another phone without paying through the nose for a new one.  Verizon sold me a phone that does not work completely.  Verizon keeps replacing it with the same phone and numerous Verizon employees keep telling me that this phone has MANY known issues, LOTS of complaints.  Yet I am still stuck with a phone that is barely useable.  I am so disgusted right now.
    Here is just a SMALL sampling of issues with my phone and I am still being denied a new phone unless I want to pay $600. I have 4 weeks until I can "Upgrade"  and I still can't even get an early upgrade.  I have been VERY patient waiting for my "TWO YEARS" to be "UP" so I can upgrade without being robbed.  This in addition to suffering through the Black Berry Storm that SUCKED and was replaced 7 times in a year and a half period due to "Software issues"  I will admit, two of those replacements were my fault - one got wet and the other was stolen, but still, 5 replacements is not acceptable.  Then I went to buy my new phone (Glory day for me) then I get talked into this Fascinate and it's just as bad as the Storm was, if not worse.  I can't seem to win.  I have decided to go for an iPhone.
    Here is my list of problems and NO one can fix them, no one can help, I get told that this is a known problem yet Verizon won't take care of their customers that got screwed by this phone.  I've been a loyal customer for 7 years. I love the actual cellular service, I rarely get dropped calls, which is why I stick with verizon, but I am seriously considering jumping ship, because even though I'm loyal, I buy my phones through them, I can't get support.
    The SHORT LIST of problems that makes this phone 100% unacceptable:
    1)  Can't text 3/4 of the time because a little grey box pops up in the text box and it won't accept anything I type into it.
    2)  Have not been able to send picture emails for several months now - Verizon can't figure out why.  My husband misses out on a lot of pics of our kids, I like to text him fun pics of them doing things or when we are on vacation without him.
    3) phone freezes up on a regular basis.  Several times a day.  I have to pull the battery out and reboot.
    4)  Sometimes I can't answer the phone when it rings - the phone rings and when I slide the puzzle piece to answer the phone, it freezes and continues to ring long after the person has hung up and the only way to get it to stop ringing is to pull the battery out and reboot the whole thing.
    5)  a LOT of times, people will call my phone and it won't ring - it goes straight to voicemail.  I have had people call me when they are sitting right next to me and it doesn't ring (and yes, I've checked the volume, it's on, the phone is on) sometimes though, it rings and I actually can answer it, but lately, it's becoming more and more of a problem being able to receive and actually be able to answer them
    6)  I can't use Facebook.  It takes forever to actually get into FB and when I do, it only shows about 5 posts before it freezes.  A few weeks ago, I could post to FB but only here and there, now I can't post from FB from my phone at all.  I know that's likely due to the APP - but FB on this phone has always sucked. 
    7)  At home, even when I standing next to my wireless router, it says I have "Lost Signal", yet all of my other wireless devices work from 5400 square feet away, on the other side of the house, upstairs.  Even when I'm standing in the Verizon store, it says "Internet Connection Lost"  It is so frustrating.  I am a busy mom and I have 5 minuts to myself and I can't even check FB or browse on the internet and yes, I have checked, all of my connections are set up correctly.  My wireless is enabled on my phone.  But it still doesn't work.
    8)  Email - it's constantly refreshing, even though I have it set to only refresh once and hour.  I think I even changed it to once a day.  Instead, that little "refresh wheel" spins constantly on my phone and while this little refresh wheel spins, I can't read email, I can't write email and I can't send email.  When it finally stops and I open an email and the try to respond and write back, that little refresh wheel starts spinning again and then I have to wait until i can get home to a real computer to actually read & Respond to email. 
    9)  Calendar inputs the wrong time.  I had a dentist appt at 9:30am.  I set it as 9:30am.  When I saved it, it changed it to 10:40am.  I went back into the calendar function to change it thinking I had input the wrong time, but no, when I went to edit it, my 9:30 time was set, I hit save again and saving it changed it to 10:40.  WTH?  I can't even rely on the calendar function.
    10)  Two weeks ago, I woke up, looked at my clock, which I also rely on as an alarm clock.  The room was dark.  The clock said 5:30am.  But for some reason, it felt later.  Sure enough, I get up, check my husbands alarm clock, it's 7:30am.  I am so thankful I had a gut feeling and looked at another clock.  I did not change my time zone on my phone (in fact, I went looking for Time change stuff and I couldn't even find it.  Then two hours later, the phone went back to normal time all on it's own.
    11)  Text messages occasionally pop up and it tells me it's from Jay Smith (Not real name) and when I open the actual text, it's from Sarah Jenkins (not real name)  WTH?  How am I supposed to rely on text if its confused itself?
    12)  Phone shuts itself off all the time, several times a day.  All of a sudden I will hear the musical tone of my phone shutting down and then at some point, it will turn itself back on.  When I turn it back on, it resends out old text messages (See below)
    13)  Text message randomly sends out old text messages to people that I sent text messages out to months ago.  So the people will text me back saying "WTHeck is this about?" and I look and it's an old text message I sent them a month or two ago.  It usually does this when the phone freezes, shuts itself down and restarts.  I have found out that IF I delete my text messages timely, then it won't resend out any old text messages, but I am not very good about deleting stuff and often times, text message contains some important information that I haven't yet had the time to copy down and save.  I shouldn't HAVE to delete my text messages so it doesn't randomly send out text messages to people.
    14)  Often times, I will send out a text message and it will fail to send the message and I get a text message saying my text message has failed. 
    I could go on, but I think that will give sufficient evidence that this phone stinks and that Verizon should give people owning this phone a chance to get a new phone without raping their wallets.
    Maybe someone here will listen?  Because no one at the store does...  I pay for Verizon service that I barely even get to use because my phone doesn't perform like the guy who sold it to me told me it would.
    CAN YOU HEAR ME NOW????

      About the only thing I can say is to keep going to Verizon, or calling customer service to get them to look at the issues. I talked to 1 rep that told me to dial either 4# symbols, or 4* symbols (Can't remember which it was) after I got the VM message but did not have the phone ring, so it would mark my account record and they could search and troubleshoot the issue.
      As far as your upgrade, I think you have done the right thing so far, and that is signing up on this forum, that way you can look at the different phone forums and see what issues that people are having. Talking to people that have the phone is a great way to find out what the issues are. Verizon Sales reps will only sell you the latest and greatest, or if there is something that they are being told to push to get out of stock.
      Going with an iPhone is ok, just make sure it is correct for you, because like you said earlier, once it is done, it is done and you are stuck with it for 2 years. I had a friend who made a knee-jerk reaction to a bad phone, and did the same thing. They regretted it after 6 months. I am not saying the iPhone will be bad for you, just make sure you do your homework.

  • Problem while deploying ADF application to standalone WLS server

    Hi,
    I am facing a problem while deploying ADF application to standalone WLS Server.
    Following is the error message that I am getting.
    [07:24:03 PM] ----  Deployment started.  ----
    [07:24:03 PM] Target platform is  (Weblogic 10.3).
    [07:24:07 PM] Retrieving existing application information
    [07:24:08 PM] Running dependency analysis...
    [07:24:08 PM] Building...
    [07:24:13 PM] Deploying 2 profiles...
    [07:24:14 PM] Wrote Web Application Module to D:\WorkSpace3\DashboardUi\deploy\Dashboard.war
    [07:24:14 PM] Wrote Enterprise Application Module to D:\WorkSpace3\deploy\Dashboard.ear
    [07:24:14 PM] Deploying Application...
    [07:24:22 PM] [Deployer:149191]Operation 'deploy' on application 'Dashboard' is initializing on 'msDevServer1'
    [07:24:27 PM] [Deployer:149193]Operation 'deploy' on application 'Dashboard' has failed on 'msDevServer1'
    [07:24:27 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application Dashboard on msDevServer1.: .
    [07:24:27 PM] Weblogic Server Exception: weblogic.application.ModuleException:
    [07:24:27 PM] Caused by: weblogic.common.ResourceException: DataSource DashboardDb already exists
    [07:24:27 PM]   See server logs or server console for more details.
    [07:24:27 PM] weblogic.application.ModuleException:
    [07:24:27 PM] ####  Deployment incomplete.  ####
    [07:24:27 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)Any suggestion how to fix this.
    Thanks
    Ajay

    I logged into console and browsed to 'Home >Summary of JDBC Data Sources' but not able to locate DashboardDb. Please let me know where to find DashboardDB on wls console.
    Also, please let me know how to configure the app to not to auto-deploy JDBC data sources

  • Display list of sales orders for one particular customer using BAPI in WD

    Friends,
    i want to display list of sales orders for one particular customer, the materials ordered, quantity ordered, goods issue date of that particular order and contact information about that particular customer, using Webdynpro.
    Please somebody send me related info,blogs,help links , to complete this task, this is very urgent.
    Please help
    Peter

    Find the WD tutorials here...
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/web%20dynpro%20sample%20applications%20and%20tutorials.htm">Tutorials</a>

Maybe you are looking for

  • How to append ALV grid output to LIST output

    Hi, I am working with Basis AUDIT MANUAL report for which i have to integrate around 50 standard transactions (SM37,SM35...etc) output and make it into one single report. On execution of my report i have to get all the 50 transaction outputs sequenti

  • How to find the corrupted files using javascript?

    Hi all, I need to run batch of files some of which were corrupted?? instead of using the method "the files which were not opened are corrupted" is there any way to find the corrupted files?? I need to find this using javascript or apple script?? Plea

  • Access denied while loading jar files from client

    I am creating a platform that can be started by JWS and then load plug-ins from client drive. I've signed my platform (packaged as a jar file), and set up the security tag in my jnlp, so that it can access client files. The plug-ins are packaged as j

  • Back-ups on Time Machine - How Do They Work?

    Time Machine backs up every hour, then at the end of the day it exchanges the hourly backups for a daily backup. That works fine. BUT, according to the directions, at the end of the week, it is supposed to replace the daily stashes with one weekly st

  • R&R suddenly useless - too many files "in use" or "corrupted​"

    I have a new T410s.  Partway through setting it up, I ran R&R without incident and created a backup on a USB external drive. Some crappy software I installed wasn't uninstalling properly.  I had changed out the HD and not realized that I then needed