Can not deploy after upgrading application from workshop 8.1 to 9.2

Hi,
We have an application developed on workshop 8.1 worked fine. when we upgrade the application to 9.2, the application can not be deployed on weblogic server. The error is
weblogic.application.ModuleException: [HTTP:101064][WebAppModule(SynDesk:SynDesk
Web)] Error parsing descriptor in Web appplication "C:\build\weboutput"
"weblogic.application.ModuleException: Unmarshaller failed'
Caused by: weblogic.descriptor.BeanAlreadyExistsException: Bean already exists:
"weblogic.j2ee.descriptor.ParamValueBeanImpl@dccea29(/[NTLM HTTP Authentication
Filter]/InitParams[jcifs.netbios.wins])"
When I remove the NTLM filter part in the web.xml, the application is able to be deployed. But of course application does not work propertly due to no authentication.
How can I fix the web.xml file with everything works as before? Thanks for your help
Here is my web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 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">
<display-name>SyndeskWeb Application</display-name>
<description/>
<filter>
<filter-name>NTLM HTTP Authentication Filter</filter-name>
<filter-class>com.mycompany.BofaNtlmFilter</filter-class>
<init-param>
<description/>
<param-name>jcifs.netbios.wins</param-name>
<param-value>crpsecwin00.mycompany.com</param-value>
</init-param>
<init-param>
<description/>
<param-name>jcifs.netbios.wins</param-name>
<param-value>crpchiwin00.mycompany.com</param-value>
</init-param>
<init-param>
<description/>
<param-name>debug</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<description/>
<param-name>jcifs.util.log</param-name>
<param-value>ALL</param-value>
</init-param>
<init-param>
<description/>
<param-name>bofa.retryCount</param-name>
<param-value>1</param-value>
</init-param>
<init-param>
<description/>
<param-name>bofa.retrySleepTime</param-name>
<param-value>60</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>NTLM HTTP Authentication Filter</filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>NTLM HTTP Authentication Filter</filter-name>
<url-pattern>*.jpf</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>NTLM HTTP Authentication Filter</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
<servlet>
<description/>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.beehive.netui.pageflow.PageFlowActionServlet</servlet-class>
<init-param>
<description/>
<param-name>config</param-name>
<param-value>/_pageflow/struts-config.xml</param-value>
</init-param>
<init-param>
<description/>
<param-name>config/-global</param-name>
<param-value>/_pageflow/struts-config--global.xml</param-value>
</init-param>
<init-param>
<description/>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<description/>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<welcome-file-list>
<welcome-file>Controller.jpf</welcome-file>
</welcome-file-list>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>505</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/Controller.jpf</location>
</error-page>
<jsp-config>
<taglib>
<taglib-uri>netui-tags-html.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/netui-tags-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>netui-tags-databinding.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/netui-tags-databinding.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>netui-tags-template.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/netui-tags-template.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>c.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/c.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>fmt.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/fmt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>sql.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/sql.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>x.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/x.tld</taglib-location>
</taglib>
</jsp-config>
<filter>
<filter-name>PageFlowJspFilter</filter-name>
<filter-class>org.apache.beehive.netui.pageflow.PageFlowJspFilter</filter-class>
</filter>
<filter>
<filter-name>PageFlowForbiddenFilter</filter-name>
<filter-class>org.apache.beehive.netui.pageflow.PageFlowForbiddenFilter</filter-class>
<init-param>
<param-name>response-code</param-name>
<param-value>404</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>PageFlowJspFilter</filter-name>
<url-pattern>*.jsp</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowJspFilter</filter-name>
<url-pattern>*.jspx</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>*.java</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>*.jsfb</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>*.jpfs</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>/_pageflow/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<listener>
<listener-class>org.apache.beehive.netui.pageflow.PageFlowContextListener</listener-class>
</listener>
<listener>
<listener-class>org.apache.beehive.netui.pageflow.HttpSessionMutexListener</listener-class>
</listener>
<servlet>
<servlet-name>XmlHttpRequestServlet</servlet-name>
<servlet-class>org.apache.beehive.netui.pageflow.xmlhttprequest.XmlHttpRequestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.jpf</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>XmlHttpRequestServlet</servlet-name>
<url-pattern>*.xhr</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>XmlHttpRequestServlet</servlet-name>
<url-pattern>*.render</url-pattern>
</servlet-mapping>
</web-app>
Edited by cynthialiu at 05/28/2008 12:16 PM

Hi. The issue is a level or two above JDBC. I suggest
opening an official support case. It's probably a
WLW issue.
Joe

Similar Messages

  • JDBC control not work after upgrade application from workshop 8.1 to 9.2.3

    Hi,
    We upgraded application from workshop 8.1 to 9.2.3. After that, the JDBC control not work any more. We got the following exception:
    java.sql.SQLException: The transaction is no longer active - status: 'Committed'. No further JDBC access is allowed within this transaction.
    at weblogic.jdbc.wrapper.JTSConnection.checkIfRolledBack(JTSConnection.java:192)
    at weblogic.jdbc.wrapper.JTSConnection.checkConnection(JTSConnection.java:202)
    at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:87)
    at weblogic.jdbc.wrapper.Connection.getMetaData(Connection.java:435)
    at org.apache.beehive.controls.system.jdbc.parser.SqlStatement.createPreparedStatement(SqlStatement.java:128)
    at org.apache.beehive.controls.system.jdbc.JdbcControlImpl.execPreparedStatement(JdbcControlImpl.java:272)
    at com.bea.wlw.runtime.core.control.internal.JdbcControlImpl.invoke(JdbcControlImpl.java:136)
    at controls.SecurityBean.getUpdateDocPermission(SecurityBean.java:598)
    at security.SecurityManagerImpl.getUpdateDocPermission(SecurityManagerImpl.java:110)
    at security.SecurityManagerBean.getUpdateDocPermission(SecurityManagerBean.java:509)
    The control that throw the exception has "transactionattribute" annotation added automatically by upgrade wizard during upgrading. Related classed are as follows:
    @ControlInterface()
    public interface SecurityManager
    @TransactionAttribute(TransactionAttributeType.REQUIRED)
    boolean getUpdateDocPermission(java.lang.String userId);
    @ControlImplementation()
    public class SecurityManagerImpl implements SecurityManager, Serializable
    * @common:control
    @org.apache.beehive.controls.api.bean.Control()
    private controls.Security security;
    static final long serialVersionUID = 1L;
    * @common:operation
    public boolean getUpdateDocPermission(String userId)
    if ( security.getUpdateDocPermission(userId) > 0) {
    return true;
    else
    return false;
    @ControlExtension()
    @JdbcControl.ConnectionDataSource(jndiName = "EventDesk")
    public interface Security extends JdbcControl
    static final long serialVersionUID = 1L;
    * @jc:sql statement="select r.updateDoc from document_user u ,document_role r where u.login={userId} and u.roleId=r.roleId;"
    @JdbcControl.SQL(statement = "select r.updateDoc from document_user u ,document_role r where u.login={userId} and u.roleId=r.roleId;")
    int getUpdateDocPermission(String userId);
    Thanks for your help

    Hi. The issue is a level or two above JDBC. I suggest
    opening an official support case. It's probably a
    WLW issue.
    Joe

  • My iPhone 4 can not reboot after upgrading to iOS 6; keeps trying and cannot shut off either.

    My iPhone 4 can not reboot after upgrading to iOS 6; keeps trying and cannot shut off either.

    I FINALLY got it to work on BOTH iPhone 4 and iPpad 3.  Here is what I had to do:
    Had to DELETE all e-mail accounts including icloud.
    Did a hard reset (hold down button on top right corner and round button on bottom center)
    Then once it came back on, the iPhone had ALL of the accounts still on it and it was receivng e-mail.
    The iPad receive e-mail until I did the steps above 5 times.  Plus, I had to add back all of the e-mail accounts vs. on the iPhone 4 they were there when my phone came on.
    Now I am receiving e-mail on both devices normally.
    No clue why this happened, but Apple needs to find a fix ASAP.

  • WebLogic Server can not start after upgrade from 10.3.3 to 10.3.5

    Hi all,
    I get follwoing errors after upgrade fmw-share libraries (WLS 11.1.1.3 to 11.1.1.5), if I want to start AdminServer. It seems CLASSPATH is not updated correct. How can I solve this issue?
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "JRF Startup Class", java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "AWT Application Context Startup Class", java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
    java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "JMX Framework Startup Class", java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
    java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "JOC-Startup", java.lang.ClassNotFoundException: oracle.ias.cache.Startup
    java.lang.ClassNotFoundException: oracle.ias.cache.Startup
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    <Jan 19, 2012 8:31:34 AM EST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "DMS-Startup", java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
    java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Truncated. see log file for complete stacktrace
    >
    Thanks,
    Mohammad

    Hi Mohammad,
    You are right, this error seems to indicate that the script environment cannot find the required java classes.
    Please try the following:
    1. Open a shell (command prompt) on the computer on which you created the domain.
    2. Change to the directory in which you located the domain.
    By default, this directory is BEA_HOME\user_projects\domains\domain_name, where BEA_HOME is the top-level installation directory of Oracle WebLogic products.
    3. Set up your environment by running one of the following scripts:
    bin\setDomainEnv.cmd (Windows)
    bin/setDomainEnv.sh (UNIX)
    On Windows, you can use a shortcut on the Start menu to set your environment variables and invoke WLST (ToolsWebLogic Scripting Tool).
    4. Invoke WLST by entering: java weblogic.WLST
    The WLST prompt appears.
    wls:/(offline)>
    5. Then you can start the AdminServer with WLST
    startServer('AdminServer','ClassicDomain','t3://localhost:7001','weblogic','password','/home/oracle/Oracle/Middleware/user_projects/domains/ClassicDomain')
    This link may also help: http://download.oracle.com/docs/cd/E12840_01/wls/docs103/config_scripting/manage_servers.html#wp1009240
    Hope your issue gets resolved.
    Thanks,
    Cris

  • PI7.11(PI7.1 EHP1) sapcpe.exe can not start after upgrade to kenerl patch65

    Hi,
      When I upgrade PI7.11 kernel (On Operator system WIN2003 server x64 64BIT) from patch level 62 to patch level 65
      or higher level 67 or71   with JSPM,
      after deploy SAP can't be started with error that sapcpe.exe can not start and in 'RED' status.
      It's worked before patch level 62.
      Did anybody occur the same problem?
      Can you give me some advice?
      In my WIN2003 server x64, I have the follow DLL libraries:
      Microsoft redistributable runtime DLLs VS2005 SP1(X86)
      Microsoft redistributable runtime DLLs VS2005 SP1(X86_X64)
      Microsoft redistributable runtime DLLs VS2005(X86)
      Microsoft Visual C++ 2005 redistributable
      Microsoft Visual C++ 2005 redistributable(X64)
      Microsoft Visual C++ 2008 redistributable SP1(X64)
    Edited by: IBM China on Feb 4, 2010 12:55 PM

    Hello
    Please do not cross post the same issue on different SDN forums.
    Rules of Engagement
    https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement
    -> - Please do not Cross post.
    Regards
    Mark Smyth
    XI/PI Moderator

  • PI7.11(PI7.1 EHP1) sapcpe.exe can not start after upgrade tokenerl  patch65

    Hi,
      When I upgrade PI7.11 kernel (On Operator system WIN2003 server x64 64BIT) from patch level 62 to patch level 65
      or higher level 67 or71   with JSPM,
      after deploy SAP can't be started with error that sapcpe.exe can not start and in 'RED' status.
      It's worked before patch level 62.
      Did anybody occur the same problem?
      Can you give me some advice?
      In my WIN2003 server x64, I have the follow DLL libraries:
      Microsoft redistributable runtime DLLs VS2005 SP1(X86)
      Microsoft redistributable runtime DLLs VS2005 SP1(X86_X64)
      Microsoft redistributable runtime DLLs VS2005(X86)
      Microsoft Visual C++ 2005 redistributable
      Microsoft Visual C++ 2005 redistributable(X64)
      Microsoft Visual C++ 2008 redistributable SP1(X64)
    Edited by: IBM China on Feb 4, 2010 12:56 PM

    >   after deploy SAP can't be started with error that sapcpe.exe can not start and in 'RED' status.
    Please check your event log and see if you use the current runtime. A new runtime library is necessary to fix an ATL security issue, see
    Note 1375494 - SAP system does not start after applying SAP kernel patch
    Markus

  • Can not import after upgrade

    I just installed 10.5.1 and now my Iphoto 08 will not import my photos from my sony cam. It worked fine on Iphoto 08 before on 10.4, it says it unread able files even when they are just JPG files. I can move them to my desktop and drag them in Iphoto and they are fine , but not from the cam?

    Does your sony cam appear in iphoto as an icon when connected?
    After upgrading my canon cam would not appear in iphoto. I had to quit iphoto several times, restart the computer, try several different cables, and then as mysteriously the cam finally appeared and I was able to download pics. I even trashed the iphoto plist and started afresh.
    hope this helps

  • How can i deploy a web application from JDeveloper 10.1.3 to tomcat 5.5.x ?

    hello i need easy way to deploy my jsf applications to tomcat .
    i create an application server configuration in my JDeveloper now what ? how can i say to deploy the app to tomcat not to oracle application server.
    another question :
    the "deploy operation" must copy jsf , adf implementations jstl standartd common* and other jars to my tomcat project automaticly and it MUST make classes dir to be in WEB-INF\classes instead of project main.

    Hi,
    These steps worked for me:
    (I assume you successfully created the server configuration)
    1) Select your project and then go to Run --> Deploy --> New Deployment Profile
    Select WAR file, OK,
    Give a name and select a directory,
    in the WAR Deployment Profile Properties page, choose the Target Connection in the "Profile" section.
    2) Now the deployment profile must be ready.
    Select your project and then go to Run --> Deploy --> your new profile.
    This should deploy the project to Tomcat.
    I saw all needed jars deployed as well. Maybe you should check if all the jars are selected in the "Export" column, in the Project Properties --> Libraries section.
    For the last question, in Project Properties --> Project Content, change your output directory to WEB-INF\classes.
    HTH,
    Turgay Zengin

  • Can not programmatically undeploy the application from a Weblogic Server

    Hi experts,
    I have a weblogic client application that is used to deploy/undeploy the application to weblogic server. The following code call undeploy() method to undeploy the application. But I still can see the application shown in the admin console after undeploying the app. Click the link of the app and the status is shown as "remove Successful".
    // source codes
    String protocol=”t3″;
    String hostName=”localhost”;
    String portString=”7001″;
    String adminUser=”weblogic”;
    String adminPassword=”weblogic”;
    WebLogicDeploymentManager deployManager=SessionHelper.getRemoteDeploymentManager( protocol,hostName,portString,adminUser,adminPassword);
    ProgressObject processStatus=deployManager.undeploy(new TargetModuleID[]{target}); //assume target is created already
    However I can successfully undeploy the application in oc4j server by calling the undeploy() API. Is there anything wrong with my code?

    Hi,
    Sometimes back i developed a JMX code to Deploy and Undeploy the Applications may be that's going to be helpful for you :
    http://weblogic-wonders.com/weblogic/2010/01/15/undeploying-application-using-java-method-jmx/ (For Undeployment)
    And
    http://weblogic-wonders.com/weblogic/2010/01/21/deploying-applications-using-java-jmx/ (For Deployment)
    Thanks
    Jay SenSharma

  • Please Help, My Finder not Responding and can not open after upgrade OS X Maverick!!!

    Hello guy,
    I ask this for help, yesterday i upgrade the OS X Maverick, after finish all the the installation,
    now my finder not responding even i try to relaunch many times, or can say that can't open Finder right now.
    So what can i do? can anyone tell me here?

    If that doesn't fix it try starting in Safe Mode and see if the problem still occurs?
    Restart holding the "shift" key.
    (Expect it to take longer to start this way because it runs a directory check first.)
    If this works look in System Preferences > Users & Groups > Login items and delete any third party login items (-), you can always add them back with the (+). Don’t just “hide” them by checkmark.

  • After upgrading application from WLS9.1 to WLS9.2.4 there are issues

    Hi,
    We are facing issue with application after upgrdation from WLS 9.1 to WLS9.2 MP4.
    We are sending requests from Webserver to Weblogic and authentication is happening over Siteminder.
    The application URL is getting appended by /cws due to which we are getting 404 error.
    /csw/cswaction.do?action=main&node=cswusergroupnode&operation=showUsers ---------- This is returning 404.
    correct URL is:
    /cswaction.do?action=main&node=cswusergroupnode&operation=showUsers
    Any Idea.. wht can be the issue.

    Hi,
    We are facing issue with application after upgrdation from WLS 9.1 to WLS9.2 MP4.
    We are sending requests from Webserver to Weblogic and authentication is happening over Siteminder.
    The application URL is getting appended by /cws due to which we are getting 404 error.
    /csw/cswaction.do?action=main&node=cswusergroupnode&operation=showUsers ---------- This is returning 404.
    correct URL is:
    /cswaction.do?action=main&node=cswusergroupnode&operation=showUsers
    Any Idea.. wht can be the issue.

  • Evolution-3.8.1-1 not starting after upgrading gnome from 3.6.2 to 3.8

    Hello community,
    after updating Gnome to 3.8.1 yesterday, Evolution is not starting. In Terminal i get this output:
    (evolution:969): GLib-GObject-CRITICAL **: g_param_spec_internal: assertion `!(flags & G_PARAM_STATIC_NAME) || is_canonical (name)' failed
    Naruszenie ochrony pamięci (core dumped)
    any ideas, if it has to do with gnome 3.8?

    I've got this bug too.
    Probably it's related to Polish (or foreign) language.
    If I run
    LC_ALL=C evolution
    from Terminal everything works fine (but the program is in English of course).

  • I want to upgrade my plan, but I can not find any upgrade link from single to full, please help. urgent.

    How can I upgrade adobe cc plan, I try to search in google, but I found nothing, or sometimes I found a link but I don't have the same screen as they capture.
    really need help, kind of urgent, don't want to buy the full and pay for both plan.
    Thank you

    Hi saovadee,
    In order to change the plan, please contact our support team via: Contact Customer Care
    Thanks,
    Atul Saini

  • Redundancy not active after upgrade version from 7.4 to 7.5

    I've upgraded both Cisco CSS11506 Load Balancer to ver 7.5. However, the Box-to-Box LoadBalancer is not running when " show redundancy".
    Box A configure
    circuit VLAN1
    description "Management VLAN for SW2950"
    ip address 192.168.xx.253 255.255.255.224
    ip virtual-router 1 preempt
    ip redundant-interface 1 192.168.xx.254
    ip critical-service 1 upstream_downstream
    circuit VLAN2
    description "E-Bill Circuit"
    ip address 192.168.xx.29 255.255.255.224
    ip virtual-router 2 preempt
    ip redundant-interface 2 192.168.xx.30
    ip redundant-vip 2 192.168.xx.17
    ip redundant-vip 2 192.168.xx.23
    ip critical-service 2 upstream_downstream
    Box B configure
    circuit VLAN1
    description "Management VLAN for SW2950"
    ip address 192.168.xx.252 255.255.255.224
    ip virtual-router 1 priority 105 preempt
    ip redundant-interface 1 192.168.xx.254
    ip critical-service 1 upstream_downstream
    circuit VLAN2
    description "E-Bill Circuit"
    ip address 192.168.xx.28 255.255.255.224
    ip virtual-router 2 priority 105 preempt
    ip redundant-interface 2 192.168.xx.30
    ip redundant-vip 2 192.168.xx.17
    ip redundant-vip 2 192.168.xx.23
    ip critical-service 2 upstream_downstream
    CSS506INT3# show redundancy
    Redundancy: Disabled Redundancy Protocol: Not Running
    Redundancy is running before upgrade. Is anything wrong??

    show redundancy would never show you anything with this config.
    'show redundancy' is used for Box-to-Box redundancy.
    What you have configured is VIP/Interface redundancy.
    You need to use the command :
    show redundant-?
    redundant-interfa.. Show redundant-interface information
    redundant-vips Show redundant-vip information
    regards,
    Gilles.
    Thanks for rating this answer.

  • Hi, my iphone could not be activated after upgrade it from IOS4 to IOS6, it shows that is due to activation server is unavailable and no sim card in the iphone. Anyone can help me please?

    Hi, my iphone could not be activated after upgrade it from IOS4 to IOS6, it shows that is due to activation server is unavailable and no sim card in the iphone. Anyone can help me please?

    It is 99% hacked/jailbroken iPhone to use a different carrier than intended. You have to put the sim from the original carrier or ask them to unlock the iPhone. We as well as Apple cannot help you with this.

Maybe you are looking for

  • How to pass the values to stored proc using presentation variable in OBIEE

    Need your help regarding in resolving an issue in OBIEE 10.1.3.4.1 There are 6 reports say 'A','B','C','D','E','F' in the same subject area. The reports are being configured with prompts using either the repository/presentation variables. One of the

  • In a pickle with Quickyme

    Hi The hard drive died on my mac book recently (a new one too!) and I paid hundreds of pounds for the data to be recovered to an external hard drive. The data recovery people have saved my imovies as Quicktime movies and of course I cant just drag th

  • Double drive failure on G4 bi1,25Ghrz

    I got a superdrive and a combo on my G4, with mac OSX 10.3.9. and two Hard drives on the internal SCSI port. The two DVD drives don't respond. the computer see and open them, but when i put a disk on both of them nothing happend. That facts remind me

  • When someone calls me the called id picture isn't showing

    when i call somebody in my contact the caller id picture is shown it's small yes but when the same person call me back the caller id picture is missing can any one help me with that and is there away to make the id picture in full screen instead of s

  • Enterprise? Standard?

    What's the difference between Enterprise Edition and Standard Editon? I've thought Enterprise Ed. would be bigger than Standard, but it wasn't. I wanna know what's the difference between Enterprise Edition and Standard Edition null