Caller id propagation from WebLogic Express to WebLogic Server

Hi all,
I'm planning on a WebLogic configuration where Servlets executing in
WebLogic Express invoke EJBs executing in WebLogic Server. The Web container
and the EJB container are thus executing in different processes.
Given that a user is authenticated in WebLogic Express using e.g. the
J2EE-standard form-based authentication, would the user id be propagated to
the EJB container automatically?
Thanks
Patrik Gottfridsson
Valtech

Call flow was :
CUCM---Router-----MPLS----Router---CME
extension 1040 from cucm was calling extension 2800 on CME, and on the display from the phone that is registered on CME had the "UNKNOWN" on it.
But I just figured it out.
Thanks anyways!

Similar Messages

  • Moving from SQL Express to SQL Server

    Our Robosource Control v3.1 database just hit the 4GB limit with SQL Express. Could anyone pass along any advice for changing to from SQL Express to SQL Server 2008?
    Many Thanks!

    I don't have any direct experience with this, as we started off with SQL server. However, there's a promising-looking feature that might help you: the RoboSource Convert wizard (RSO3ConvertWizard.EXE), which you can get to from the Start menu. There's a selection in the Convert wizard for a 3.1 to 3.1 database copy--I'm guessing that would be what you want.
    HTH,
    G

  • Calling Java Applet from application express demo

    Hi,
    i found many topics about calling java applets in/from application express,
    but I need a demo to learn how it works.
    Does anybody know a downloadable demo where I can learn to write a java applet, storing in my application an calling from a button?
    thx
    Gerhard

    .

  • Challenge: call local ejb from remote ejb on weblogic 9.2

    Hi ALL,
    How do I call to local ejb from remote ejb object. The jar file is deployed on weblogic server 9.2, if you want get it http://geocities.yahoo.com.br/lindembe/BEAProject.jar and the source code are http://geocities.yahoo.com.br/lindembe/BEAProject.zip. It is a sample app with two ejb that works so good on JBOSS, JOnAS, but BEA Weblogic.....
    The complete problem you watch http://forum.java.sun.com/thread.jspa?threadID=768718&messageID=4387570#4387570
    or
    http://forums.bea.com/bea/message.jspa?messageID=600043148&tstart=0

    Your code in SigemFacadeBean should just do:
    InitialContext ctx = new InitialContext();
    when you lookup the local EJB. (This will work on all app servers. There's no need to put an app-server specific intial context factory in your code.)
    Also, you can remove the jndi-name setting for the local ejb from your weblogic-ejb-jar.xml. jndi-name is only applied to remote ejbs.
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Call static method from jsp expression

    Hi, I'm using adf/bc 10.1.3.4 I'm wanting to call a static method of a class when an af:commandLink is clicked. This action attribute value for this af:commandLink would be an el expression. As an example, let's say I want to call a new static method, named test(), I've added to ADFUtils.
    My af:commandLink looks like this:
    <af:commandLink action="#{ADFUtils.test}" />
    Obviously, this doesn't work. I can describe my actual use case if it would help. For now I'll just say that I don't want to use a managed/backing bean to house this method. How can I create a class to house this method w/o using a managed bean and adding that managed bean reference to the faces-config.xml?? Thanks, James

    thanks for the interest john. i'll explain what it is i'm trying to do. I have two web applications, appA and appB, both running in the same app server instance. The apps are related in the sense that once the user logs in thru an sso mechanism, they can 'bounce' back and forth between applications. Not sure if that info is relevant, but I wanted to include it anyhow.
    We've created a common banner/header jsp that we include in every page of appA and appB. Included in that header jsp is a logout link (af:commandLink), which will need to execute some code when clicked. Here is where the dilemma starts. We don't really want to have to write the code for the logout in a managed/backing bean because although both applications can use that same bean (we have it set up in the repository so that when a checkout/update is done on either appA or appB, each app, utilizing an svn external rule, would get both the banner jsp and the logout code that goes with it), making good use of the reusability concept, we would also have to add a reference to that backing/managed bean in the faces-config.xml of each application in order for it to be instantiated and used by each app. I was hoping to implement a solution which wouldn't require the developer to have to do any 'setup' on an application by application basis to use the header jsp and the code behind the Logout link. I've described a simple scenario, but in reality we'll have multiple applications, which means multiple places (faces-config.xml) where we'd need to add a reference to the managed bean which contains the logout code. It wouldn't be the end of the world for us if we ended up doing it this way, but I just have a feeling like there may be a better way to implement this so that each application's faces-config doesn't need to be touched. Hope my explanation is clear. thanks for any help you can offer.
    Edited by: kcjim on Feb 25, 2009 8:21 AM
    Edited by: kcjim on Feb 25, 2009 8:22 AM

  • Getting error code 1 when calling SSIS package from a stored procedure (SQL Server 2008 R2)

    Hello,
    I am trying to execute a SSIS package from SQL Server 2008 R2 stored procedure but getting error code 1 (as per my knowledge, error code description is as below:
    0 The package executed successfully.
    1 The package failed.
    3 The package was canceled by the user.
    4 The utility was unable to locate the requested package. The package could not be found.
    5 The utility was unable to load the requested package. The package could not be loaded.
    6 The utility encountered an internal error of syntactic or semantic errors in the command line.
    Details:
    I have a stored procedure named "Execute_SSIS_Package" (see below sp) which executes 'Import_EMS_Response' SSIS package (when I execute this package directly from SQL Server BID it works fine it means package itself is correct) and calling
    it from SQL as:- EXEC Execute_SSIS_Package 'Import_EMS_Response'.
    Here I receives error code 1.
    Can anyone help me to resolve this issue please?
    Thanks in advance!
    CREATE PROCEDURE [dbo].[Execute_SSIS_Package]
     @strPackage nvarchar(100)
    AS
    BEGIN
     -- SET NOCOUNT ON added to prevent extra result sets from
     -- interfering with SELECT statements.
     SET NOCOUNT ON;
     DECLARE @cmd VARCHAR(8000)
     DECLARE @Result int
     DECLARE @Environment VARCHAR(100)
        SELECT @Environment = Waarde
     FROM  Sys_Settings
     WHERE Optie = 'Omgeving'
     --print @Environment
     SET @strPackage = '"\W2250_NGSQLSERVER\BVT\' + @Environment + '\' + @strPackage + '"'
     SET @cmd = 'dtexec /SQL ' + @strPackage +  ' /SERVER "w2250\NGSQLSERVER"  /Decrypt "BVT_SSIS" /CHECKPOINTING OFF /REPORTING E'
     --print @cmd
     EXECUTE @Result = master..xp_cmdshell @cmd, NO_OUTPUT
     --print @Result
    END

    It has something to do with the security.
    E.g. cmdshell is not enabled or the caller has not rights over the package.
    There could be a syntax error, too.
    I suggest you make the package runnable off a SQL Agent job then trigger the job from the stored proc with
    sp_start_job <job name>
    Arthur
    MyBlog
    Twitter

  • Calling java script from  HTMLInputText component of java server faces

    Iam attempting to do some thing like this
    HtmlInputText component = new com.ntrs.wcm.ui.components.inputtext.HtmlInputText();
         component.setId(componentId);
         component.setValueBinding("value",
                   FacesContext.getCurrentInstance().getApplication().createValueBinding(backingBeanEL));
         component.setSize(length);
         component.setMaxlength(length);
    now on the component iam calling the followng jav ascript function
    component .setOnkeydown("DisableCtrlKey(event)");
    The java script
    iam calling is
    function disableCtrlKey(e)
    //list all CTRL + key combinations you want to disable
    var forbiddenKeys = new Array(‘a’, ‘n’, ‘c’, ‘x’, ‘v’, ‘j’);
    var key;
    var isCtrl;
    if(window.event)
    key = window.event.keyCode; //IE
    if(window.event.ctrlKey)
    isCtrl = true;
    else
    isCtrl = false;
    else
    key = e.which; //firefox
    if(e.ctrlKey)
    isCtrl = true;
    else
    isCtrl = false;
    //if ctrl is pressed check if other key is in forbidenKeys array
    if(isCtrl)
    for(i=0; i<forbiddenkeys .length; i++)
    //case-insensitive comparation
    if(forbiddenKeys.toLowerCase() == String.fromCharCode(key).toLowerCase())
    alert(‘Key combination CTRL + ‘
    +String.fromCharCode(key)
    +‘ has been disabled.’);
    return false;
    return true;
    I have this function in the correct js page of my application but the script doesnt get executed and still iam able to do ctrl+v on the text box can anyone suggest waht i might be doing wron

    You can try this..
    Instead of using button
    Edit the Item to which you want to associate a button.
    Go to Element tab
    Under Post Element Text enter
    </ br> <a href="#" -onclick=call_me() class="t20Button">Click me</a>Note : you need to change class="t20Button", i'm using theme 20 and in that the look and feel of button is derive from t20Button.
    remove the hyphen before onclick ..
    Regards,
    Shijesh

  • Does Weblogic Express support JSP ?

    Hi
    I wanted to know if i can deploy JSPs if i use a WeblogicExpress instead
    of a Weblogic Server .Iam not able to understand the deifference between
    Weblogic Express and Weblogic Server inspite of reading the material on the
    web site .Can someone throw more light on this ? Is there anywhere i can
    compare the features of the different weblogic products at one place ?
    thanks
    Srinivas

    For this type of stuff you should talk to your sales-person.
    We just make it, not sell it, so we dont understand the difference
    either. :)
    Cheers
    Mark G.
    In article <[email protected]>, [email protected] says...
    Hi
    I wanted to know if i can deploy JSPs if i use a WeblogicExpress instead
    of a Weblogic Server .Iam not able to understand the deifference between
    Weblogic Express and Weblogic Server inspite of reading the material on the
    web site .Can someone throw more light on this ? Is there anywhere i can
    compare the features of the different weblogic products at one place ?
    thanks
    Srinivas
    ==================================================
    NewsGroup Rant
    ==================================================
    Rant 1.
    The less info you provide about your problem means
    the less we can help you. Try to look at the
    problem from an external perspective and provide
    all the data necessary to put your problem in
    perspective.

  • BIG5 Problem with WebLogic Express 6.1

              Hi,
              I found some problem with Chinese Big5 when using JSP. All big5 code convert in
              a wrong format and can't view by browser.
              My server setting is:
              OS: Solaris 8
              Weblogic: Express 6.1
              JDK 1.3.1
              Anyone know how to solve this problem?
              I have tried different way like creating a new string in different encoding type.
              Actually the BIG5 work fine with Solaris 8, JDK1.2.2_05a and Weblogic 5.1. However
              I WEblogic 6.1 only support JDK1.3 or above. Anyone can help me out. Thanks.
              Pls email me at [email protected]
              

    The download binary is the same for WL Full version and WL Express. It's the
    license that matters. Contact BEA to obtain / buy a WL Express license.
    Ben
    "Rajendra" <[email protected]> wrote in message
    news:[email protected]..
    We have WebLogic 6.1 licensed software. I need to work with WebLogic
    Express.
    I installed on win2K using the installer available with the CD. Now, what
    exactly do I need to do (restricting license..) to work with WebLogic
    Express?
    I need this info urgently. Any help in this regard is greatlyappreciated.
    >
    Thanks
    Rajendra.
    "Michael" <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    WebLogic Express is WebLogic Server with a different license that limits
    some of
    the WebLogic Server features, such as EJB. Downloading WLS effectively
    downloads
    WebLogic Express.
    Regards,
    Michael
    raj wrote:
    Hi,
    does anyone know if it's possible to download weblogic express 6.1 ? icouldn't
    find any link on the bea website.
    thanks
    Raj

  • Calling web service from MBean weblogic cannot find type mapping file

    When calling web service from custom MBean i get java.io.IOException.
    java.io.IOException: unable to find the type mapping resource file for:
    net.msl.sfx.ebooking.client.BookingPartiesServiceService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegis
    try.java:67)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:83)
    at net.msl.sfx.ebooking.client.BookingPartiesServiceService_Impl.<init>(
    BookingPartiesServiceService_Impl.java:22)
    at net.msl.sfx.ebooking.service.EBookingService.getBookingParties(EBooki
    ngService.java:59)
    The types.xml file is placed in same jar file as the classes such as net.msl.sfx.ebooking.client.BookingPartiesServiceService_Impl.
    When calling the same class/method from a EJB, everything works fine and the web service is called.

    i am having the same problem.
    Do you have a solution now?
    Thanks

  • WebLogic Express Upgrade from 9.2 to 10

    I want to upgrade my WebLogic 9.2 Express to WL 10 Express and can not find an upgrade executable. All I can find is a complete install executable. Do I need to do a complete install or should there be just an upgrade exe. What is the process for this upgrade? Has any one done this? Please give any suggestions from your experience.

    That may be the latest version of WebLogic Express, but that's only because it's obsolete, and they didn't continue that with WebLogic 10.3.
    You can find information on upgrading domains by following the path from the root of the documentation tree at [http://edocs.bea.com/] into "BEA WebLogic Platform" and clicking on the "Upgrade Guide" link in the left navigation tree.

  • A Workshop made Web Application can run on WebLogic Express?

    Hi
    We are evaluating the option to develop a web application and deploy it over around 500 sales offices in the country. Since the large number of installations we are considering use WebLogic express to handle the administration issues through managing the web servers at the offices from a set of few WebLogic domains.
    The evaluation also includes the ability to develop the web application with WebLogic Workshop, since there is no WebLogic express evaluation download we are using the full WebLogic Server download.
    When a workshop domain configuration is made from the configuration wizard, a JMS Queue called cgQueue and a MDB called queueTransportEJB are by default deployed. Since we want to use WebLogic express we don’t have the ability to deploy neither EJBs nor JMS Queues.
    We manually remove these elements (the queue and the EJB) from the domain configuration but when we deploy an application that uses Workshop controls (for example a database control) the IDE automatically deploys what I supose are auto-generated EJBs for example MyProyect.GenericStateless.bean.GenericContainer
    The question is: It is possible to develop a Web application in Workshop that does not use EJBs or JMS so we can deploy it on WebLogic Express?
    If this is not possible: what IDE do you recommend to quickly build a Web Application suitable to deploy in WebLogic Express? Suppose the fact that a hand-coding struts application is not acceptable.
    Is there are a solution that can compete with these assumptions with .NET? Each office has a Windows server so we can develop our application on that technology.
    Also consider the required budget to do so.
    Thanks in advance.
    JV

    Allen,
    You are correct. Unfortunately you cannot use the EAR generated from
    Workshop on WebLogic Express. There is also no way to generate an EAR file
    without these Workshop controls/EJBs.
    You need to use the Bea Page Flow Portability Toolkit, available as a free
    download from Bea. This will allow to generate a Tomcat and/or J2EE based
    WAR file from your application.
    Regards
    Dave
    "Allen Pang" <[email protected]> wrote in message
    news:27339440.1102391445737.JavaMail.root@jserv5...
    Currently, we will use Weblogic Express for the web tier in our multi-tierarchitecture. We also like to implement the web tier with Java Page Flow in
    Workshop.
    >
    We notice that Weblogic Express does not support EJB. And there is someEJBs automatically generated by the workshop even we do not use any control
    in the Web Project. By this situation, we guess we cannot deploy the result
    EAR to the server.
    >
    Actually can we use workshop to assist us on developing Web applciationfor Weblogic Express. Is there any setting I need to configure for the
    situation?

  • HttpClusterServlet Proxy Plugin problem - Weblogic Express 10

    Hi,
    I am using Weblogic Express 10 version. I am trying to configure HttpClusterServelet in one of my test machine.
    I have a Admin server and 3 Managed servers which are part of clusters. I have a test war file which is deployed on to the cluster.
    I am able to open the test war file application by hitting Managed servers URL's & Port no's
    for eg: http://hostname:portno/testapp
    Now I have created a war file with httpclusterserver features and deployed it to Admin server. (created web.xml & weblogic.xml inside WEB-INF directory and built it as war file and deployed it to Admin server)
    so practically whenever I hit the Admin server URL my request should be proxied to one of the three Managed server which are part of the cluster
    But when I try to open the application through admin server hostname and port no, I get below 403 exception on browser
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Below is the content of my web.xml & weblogic.xml war file
    web.xml
    -bash-3.00$ more web.xml
    <!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>
    <servlet>
    <servlet-name>HttpClusterServlet</servlet-name>
    <servlet-class>
    weblogic.servlet.proxy.HttpClusterServlet
    </servlet-class>
    <init-param>
    <param-name>WebLogicCluster</param-name>
    <param-value>
    ManagedSrv1_Hostname:PortNo|ManagedSrv2_Hostname:PortNo|ManagedSrv3_Hostname:PortNo
    </param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>HttpClusterServlet</servlet-name>
    <url-pattern>/</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>HttpClusterServlet</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>HttpClusterServlet</servlet-name>
    <url-pattern>*.htm</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>HttpClusterServlet</servlet-name>
    <url-pattern>*.html</url-pattern>
    </servlet-mapping>
    </web-app>
    weblogic.xml
    <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" "http://www.bea.com/servers/wls810/dtd/
    weblogic 810-web-jar.dtd">
    <weblogic-web-app>
    <context-root>/</context-root>
    </weblogic-web-app>
    Kindly advise on this problem.
    - - Weblogic Consultant

    Hi,
              Did you configure the replication correctly in the weblogic.xml?
              Also fill in the correct cluster address in the weblogic configuration.
              http://edocs.bea.com/wls/docs90/cluster/setup.html#726973
              Schelstraete Bart
              [email protected]
              http://www.schelstraete.org
              http://www.linkedin.com/in/bschelst

  • WebLogic as Web Server Installation using WebLogic Express

    Hi all,
    I am in a process of installing WebLogic Web server. I downloaded WebLogic Express from bea site, and it turns out to be the same bin file that I had used for WebLogic Server installation. During the installation, I did not come across an specific steps meant for WebLogic Express (which is a web server + servlet/jsp container)
    Can some one please guide me at the earlier as regards installation steps for WebLogic Web Server,
    Regards,

    Jim,
    I am trying to set up WLS 9.1 and got this error.
    Could you help me with this? Why I am getting it?
    Thanks!
    Marvin
    ####<Jan 16, 2008 10:54:13 PM EST> <Error> <HTTP> <netwave8888> <MedRecServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1200542053359> <BEA-101359> <The servlet weblogic.servlet.AsyncInitServlet init method failed while it was run in the background. The exception was: java.lang.ExceptionInInitializerError.
    java.lang.ExceptionInInitializerError
         at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
         at weblogic.servlet.AsyncInitServlet.createDelegate(AsyncInitServlet.java:43)
         at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:92)
         at weblogic.servlet.internal.WebAppServletContext$AsyncInitRequest.run(WebAppServletContext.java:1641)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    org.apache.commons.logging.LogConfigurationException: java.lang.reflect.InvocationTargetException
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:532)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:272)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:246)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:395)
         at org.apache.struts.action.ActionServlet.<clinit>(ActionServlet.java:375)
         at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
         at weblogic.servlet.AsyncInitServlet.createDelegate(AsyncInitServlet.java:43)
         at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:92)
         at weblogic.servlet.internal.WebAppServletContext$AsyncInitRequest.run(WebAppServletContext.java:1641)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    java.lang.reflect.InvocationTargetException
         at jrockit.reflect.NativeConstructorInvoker.newInstance([Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
         at java.lang.reflect.Constructor.newInstance([Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:525)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:272)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:246)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:395)
         at org.apache.struts.action.ActionServlet.<clinit>(ActionServlet.java:375)
         at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
         at weblogic.servlet.AsyncInitServlet.createDelegate(AsyncInitServlet.java:43)
         at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:92)
         at weblogic.servlet.internal.WebAppServletContext$AsyncInitRequest.run(WebAppServletContext.java:1641)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    java.lang.NoClassDefFoundError: org/apache/log4j/LogManager
         at org.apache.log4j.Category.getInstance(Category.java:514)
         at org.apache.commons.logging.impl.Log4JCategoryLog.<init>(Log4JCategoryLog.java:104)
         at jrockit.reflect.NativeConstructorInvoker.newInstance([Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
         at java.lang.reflect.Constructor.newInstance([Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:525)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:272)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:246)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:395)
         at org.apache.struts.action.ActionServlet.<clinit>(ActionServlet.java:375)
         at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
         at weblogic.servlet.AsyncInitServlet.createDelegate(AsyncInitServlet.java:43)
         at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:92)
         at weblogic.servlet.internal.WebAppServletContext$AsyncInitRequest.run(WebAppServletContext.java:1641)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    >
    ####<Jan 16, 2008 10:54:13 PM EST> <Info> <Management> <netwave8888> <MedRecServer> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1200542053609> <BEA-141052> <The auto deployment poller has started.>

  • ALBPM Enterprise SA 5.7 MP3 and Weblogic Express 9.2

    We are using ALBPM Enterprise SA 5.7 MP3 and Weblogic Express 9.2. We have the following questions:
    1) Why, after assigning a Parametric Role to an user, we have to restart the portal in Weblogic before the user can log back into the system? When we do not do it, the user will see an error on the screen informing of a lack of permisions to visualize the activities of the new assigned role. This happens even when we have already clicked several times on the button labeled "Re-load Information from the Directory" (in ALBPM's WebConsole) and even after a few hours have passed. All our engines have a "Directory Polling Interval" of 1 minute, but it seems not to work.
    2) Do we have to modify any extra value, or set something in particular in Weblogic?
    Thanks in advance. We look forward for suggestions.

    We are using ALBPM Enterprise SA 5.7 MP3 and Weblogic Express 9.2. We have the following questions:
    1) Why, after assigning a Parametric Role to an user, we have to restart the portal in Weblogic before the user can log back into the system? When we do not do it, the user will see an error on the screen informing of a lack of permisions to visualize the activities of the new assigned role. This happens even when we have already clicked several times on the button labeled "Re-load Information from the Directory" (in ALBPM's WebConsole) and even after a few hours have passed. All our engines have a "Directory Polling Interval" of 1 minute, but it seems not to work.
    2) Do we have to modify any extra value, or set something in particular in Weblogic?
    Thanks in advance. We look forward for suggestions.

Maybe you are looking for

  • Upgrade Xcode 3.2.4 to 4.2 on OS X 10.6.8 fails

    I downloaded Xcode 4.2 for Snow Leopard (Disk Image) from Developer Downloads onto my MacBook running 10.6.8 with 2GB ram and 212GB free disk space. I opened Xcode.mpkg directly from inside the .dmg and it seems fine until it gets to the actual "Inst

  • Why should we close a connection

    Hi, Connection conn = DriverManager.getConnection (databaseUrl, userName, userPassword); Why should we close a connection conn.close(); Even when i give no "close command", it works ! Thank You Edited by: ashipj on ?? ????????, ???? ?:?? ???????

  • MSI Gaming app causing issues. GTX 770 GPU.

    I bought my MSI 770 card back in August and over the last few weeks I have noticed a problem. At random times my browser will get some strange pixels and closing the browser does not fix it. I have narrowed he problem down to the MSI Gaming App. I us

  • Using Command to fix null / left outer join issue

    Hi I was told awhile ago that it's possible to fix crystal's issue with left outer join and null records being eliminated. I think i remember most of how this goes, but i can't seem to duplicate it. 1) You can't have any select expert -- record 2) Yo

  • PowerBook PCMCIA 802.11 N Card

    Hi, I finally updated my wireless router to 802.11 n draft router and the Macbook Pro is good, but the old PowerBook is still chugging along at "g" speeds. I was wondering if anyone out there knew of a good PCMCIA draft "n" card? I have seen a few bu