Unicast configuration in weblogic 10.3

Hi Friends,
For unicast conguration, do we have to enable Outbound Enabled and Tunneling Enabled in network channels.

To isolate unicast-based cluster heartbeats and JNDI replication traffic to its own network channel,
you can create a network channel on each server (in the cluster) and use the cluster-broadcast protocol.
Parameters:
Name: ClusterChannel
Protocol: cluster-broadcast
Listen Address: IP-address of a server in the cluster
Listen Port: a listen port, for example 8888
External Listen Address: None
External Listen Port: None
HTTP Enabled for This Protocol: uncheck, you can also leave the outbound and tunneling enables unchecked
Use the name of the channel (ClusterChannel) to set the Unicast Broadcast Channel property in the cluster Messaging Configuration tab.
To isolate replication traffic to its own network channel, you can create a network channel that uses
the t3 protocol.
Parameters:
Name: ReplicationChannel
Protocol: t3
Listen Address IP-address of a server in the cluster
Listen Por: a listen port, for example 8889
External Listen Address: None
External Listen Port: None
HTTP Enabled for This Protocol: uncheck, you can also leave the outbound and tunneling enables unchecked
Use the name of the channel (ReplicationChannel) to set the Replication Channel property in the cluster Replication Configuration tab.
More information can be found here: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13701/network.htm#CIHGCAEI

Similar Messages

  • How can I list all the domains configured for Weblogic Servers?

    How can I list all the domains configured for Weblogic Servers?
    I saw a note, which says the following:
    "WebLogic Server does not support multi-domain interaction using either the Administration Console, the weblogic.Admin utility, or WebLogic Ant tasks. This restriction does not, however, explicitly preclude a user written Java application from accessing multiple domains simultaneously."
    In my case, I just want to list all the domains, is that possible by using any scripts?
    Thanks
    AJ

    If you use WLS Node Manager and the Config Wizard was used to create the domains, then the list of domains should be in a location like this:
    <MIDDLEWARE_HOME>\wlserver_10.3\common\nodemanager\nodemanager.domains
    Enterprise Manager Grid Control also has support for multi-domain management of WLS in a console.

  • Snmp configuration on weblogic 10 has no effect

    SNMP in MMC(Mobile Management Center, A HP Product), use joesnmp.jar internal to send snmp trap generated by mmc app. This part works well in weblogic 10;
    snmp in weblogic , configured by weblogic console. In weblogic 8, we configure such items:
    Weblogic Subsystem
    Purpose
    Level
    Deployer
    Monitor all war/ear deploy/undeploy/redeploy
    INFO
    JDBC
    Monitor all warnings/errors in jdbc operation
    WARN
    Current tests shows that the snmp configuration on weblogic 10 has no effect.
    Due to MMC4.6 gets the Weblogic updated from 8.16 to 10.3, we didn’t find the configuration about “Enable JDBC Logging”. Below is the former config page about Weblogic 8.16.
    But in Weblogic 10.3 we cannot find this configuration. We have followed the guide http://e-docs.bea.com/wls/docs100/jdbc_admin/monitor.html#wp1048793
    And tried to set the appropriate properties on the command line like this,
    -Dweblogic.debug.DebugJDBCSQL=true -Dweblogic.log.StdoutSeverity="Info"
    Actually we can get the DM, Core, SMTP, Bulk, Adaptor Class, and connection fail error messages in weblogic backend log, but seems Weblogic cannot send SNMP trap messages to SNMP monitoring tool like Openview.
    PS. Weblogic can send out the SNMP trap messages when the server starts and stops.
    So till now the SNMP cannot monitor the DM, Core, SMTP, Bulk, Adaptor Class, and connection fail for MMC4.6.

    Hi, I am on 12.1 weblogic, and I am stuck on where you set the SNMP Servername and port number.
    We are on windows 2008, I see there is a services, SNMP .
    Is there something I need to do on the weblogic side before i get into the SNMP agenets and traps, this part I understand, I am just unsure where to add the SNMP Servername and the user I wish the emails to go to.
    I see in the security realms the user i can add to the group monitors.
    -->, I am running WL 10.3 and SNMP works fine. The cluster generates traps based on particular mbeans, such as when a server's health state is not "OK", or when there are JDBC connection issues. You have to create a new SNMP agent within the admin server then build the individual traps ( String, Gauge, Counter, etc. ) and make sure you have a Trap Destination.

  • Do i have to do something configuration in weblogic 6.1 to put a javabean?

    Hi,
    I'm trying to do a simple example about a simple javabean....but it...is giving to my some errors....my question is:
    Do i have to do something configuration in weblogic 6.1 to put a simple javabean?...
    i have created a web application called mywebapp, I have created \WEB-INF\classes directory�there I have put my simpleBean.class��my jsp is in the root of \mywebapp directory�.
    I am using weblogic 6.1�..jdk 1.3��.Somebody could help me or give me some suggestions or ideas?�..
    Thanks in advance�
    Mary
    <!-- JSP Directives -->
    <html>
    <head>
         <title>Hello</title>
    </head>
    <body>
    <basefont face="Arial">
    <jsp:useBean id="simpleBean" scope="page" class="simpleBean" />
    <!-- Set bean properties -->
    <jsp:setProperty name="simpleBean" property="fname" value="Andrew"/>
    <jsp:setProperty name="simpleBean" property="lname" value="Patzer"/>
    <!-- Display welcome message -->
    <center>
         <b><%= simpleBean.welcomeMsg() %></b>
    </center>
    </body>
    </html>
    public class simpleBean implements java.io.Serializable {
    /* Member Variables */
    private String lname;
    private String fname;
    public simpleBean() {
    /* Initialize bean properties */
    setLname("");
    setFname("");
    /* Accessor Methods */
    public String getLname() {
    return lname;
    public void setLname(String _lname) {
    lname = _lname;
    public String getFname() {
    return fname;
    public void setFname(String _fname) {
    fname = _fname;
    /* Display personalized message */
    public String welcomeMsg() {
    return "Hello " + fname + " " + lname +
    ", welcome to the wonderful world of JavaBeans!";
    ////////////////errors
    Full compiler error(s):
    /apps/wclust1/bea/wlserver6.1/config/domadmin/applications/mywebapp/WEB-INF/_tmp_war_srvadmin_srvadmin_mywebapp/jsp_servlet/__hello.java:87: cannot resolve symbol
    symbol : class simpleBean
    location: class jsp_servlet.__hello
    simpleBean simpleBean = null; //[ /hello.jsp; Line: 12]
    ^
    /apps/wclust1/bea/wlserver6.1/config/domadmin/applications/mywebapp/WEB-INF/_tmp_war_srvadmin_srvadmin_mywebapp/jsp_servlet/__hello.java:88: cannot resolve symbol
    symbol : class simpleBean
    location: class jsp_servlet.__hello
    simpleBean = (simpleBean)pageContext.getAttribute("simpleBean"); //[ /hello.jsp; Line: 12]
    ^
    /apps/wclust1/bea/wlserver6.1/config/domadmin/applications/mywebapp/WEB-INF/_tmp_war_srvadmin_srvadmin_mywebapp/jsp_servlet/__hello.java:91: cannot resolve symbol
    symbol : class simpleBean
    location: class jsp_servlet.__hello
    simpleBean = (simpleBean)pageContext.getAttribute("simpleBean"); //[ /hello.jsp; Line: 12]
    ^
    /apps/wclust1/bea/wlserver6.1/config/domadmin/applications/mywebapp/WEB-INF/_tmp_war_srvadmin_srvadmin_mywebapp/jsp_servlet/__hello.java:93: cannot resolve symbol
    symbol : class simpleBean
    location: class jsp_servlet.__hello
    simpleBean = new simpleBean(); //[ /hello.jsp; Line: 12]
    ^
    4 errors

    Well...i already could resolve my problem.....
    I only put my javabean into a package...and with it....all is working very fine....
    Best regards,
    Mary

  • Error to run Configuration Wizard weblogic 12.1.2 # error is  java virtual machine launcher error could not create the java virtual machine

    hi
    Error to run Configuration Wizard weblogic 12.1.2
    my system is windows xp by 2 gig ram
    and jvm version
    C:\Program Files\Java\jdk1.7.0_25\bin>java -version
    java version "1.7.0_25"
    Java(TM) SE Runtime Environment (build 1.7.0_25-b17)
    Java HotSpot(TM) Client VM (build 23.25-b01, mixed mode, sharing)
    how resolve this problem and how find log file weblogic to this error?

    In user environments where the path to java is not already established as an system-level environment variable, the service is unable to determine where to find java and this error will occur.
    This could occur, for example, in environments where there is more than one JDK installed, or where the default JDK is different from the JDK which needs to be used by WLS.
    Try to set the environment variable  in windows  i.e JAVA_HOME=C:\Sun\Java\jdk1.7.xx.x.  to point to jdk 1.7 and run the configuration wizard.
    Hope it helps!!
    Thanks,
    Vijaya

  • How to configure Oracle WebLogic NodeManager as a MS service

    Hi Experts,
    I installed OBIEE 11.1.1.5, and i want to configure OBIEE start/stop as windows services.
    for that and after a successful configuration, Oracle configure by default two windows services: Weblogic Node Manager and FMW 11g Process Manager (OPMN).
    The problem is that Weblogic Node Manager is missing as a widows service.
    How can i do to create and configure it manually, please.
    Thank in advance.
    Best regards,
    Hassan C
    Edited by: 972869 on 23 nov. 2012 03:27
    Edited by: 972869 on 23 nov. 2012 03:28
    Edited by: 972869 on 23 nov. 2012 05:09

    Hi,
    i see it, but that is for install Admin and manage server, what i'm asking for is Oracle weblogic NodeManager.
    the windows service i need is named "oracle WebLogic NodeManager (e_obiee11_wlserver_10.3)" or somethiing like that, is the first in the page of your link:
    Weblogic Node Manager
    *(configured as a MS Windows Service if Custom Install route is chosen when installing Weblogic)*
    I'm asking how to create it.
    Thank you.
    Edited by: 972869 on 23 nov. 2012 05:14

  • Configuration wizard Weblogic deployment error [Admin Center]

    I'm getting an error during the "Executing WLST Script" phase of the configuration wizard.
    My environment:
    BEA Weblogic Server 10.0 (installed with Workspace Studio 1.1)
    Oracle BPM 10g3 (10.3.0.0)
    Oracle Database 10g Express
    This is what the AdmCenterConsole.log file has:
    Deploying application from C:\OraBPMwlHome\j2ee\weblogic\deployer\wlj2eedeployer.ear to targets BPMServer (upload=true) ...
    &lt;Jan 28, 2009 11:15:59 AM PST&gt; &lt;Info&gt; &lt;J2EE Deployment SPI&gt; &lt;BEA-260121&gt; &lt;Initiating deploy operation for application, wlj2eedeployer archive: C:\OraBPMwlHome\j2ee\weblogic\deployer\wlj2eedeployer.ear, to BPMServer .&gt;
    .Completed the deployment of Application with status completed
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State : completed
    Deployment Message : no message
    Deploying application from C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear to targets BPMServer (upload=true) ...
    &lt;Info&gt; &lt;J2EE Deployment SPI&gt; &lt;BEA-260121&gt; &lt;Initiating deploy operation for application, 01-eng-bpmengine -archive: C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear-, to BPMServer .&gt;
    WLST-WLS-1233170095995: &lt;Warning&gt; &lt;DeploymentService&gt; &lt;BEA-290003&gt; &lt;Deployment service servlet encountered an exception while handling request of type "app_upload". Exception is: "*Connection reset*".&gt;
    Failed to deploy the application with status failed
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State : failed
    Deployment Message : weblogic.deploy.api.spi.exceptions.ServerConnectionException: [J2EE Deployment SPI:260041 Unable to upload 'C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear' to 't3://dmcad00064252:7001'
    No stack trace available.
    weblogic.management.scripting.ScriptException: Error occured while performing deploy : Deployment Failed.
        at weblogic.management.scripting.ExceptionHandler.handleException(ExceptionHandler.java:49)
        at weblogic.management.scripting.WLSTUtils.throwWLSTException(WLSTUtils.java:185)
        at weblogic.management.scripting.JSR88DeployHandler.deploy(JSR88DeployHandler.java:535)
        at weblogic.management.scripting.WLScriptContext.deploy(WLScriptContext.java:427)
        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:585)
        at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:160)
        at org.python.core.PyMethod.__call__(PyMethod.java:96)
        at org.python.core.PyObject.__call__(PyObject.java:248)
        at org.python.core.PyObject.invoke(PyObject.java:2016)
        at org.python.pycode._pyx19.deploy$8(&lt;iostream&gt;:223)
        at org.python.pycode._pyx19.call_function(&lt;iostream&gt;)
        at org.python.core.PyTableCode.call(PyTableCode.java:208)
        at org.python.core.PyTableCode.call(PyTableCode.java:404)
        at org.python.core.PyFunction.__call__(PyFunction.java:184)
        at org.python.pycode._pyx18.deploy_Applications$61(C:\Documents and Settings\c742323\.configWizard\tmp\config.py:623)
        at org.python.pycode._pyx18.call_function(C:\Documents and Settings\c742323\.configWizard\tmp\config.py)
        at org.python.core.PyTableCode.call(PyTableCode.java:208)
        at org.python.core.PyTableCode.call(PyTableCode.java:256)
        at org.python.core.PyFunction.__call__(PyFunction.java:169)
        at org.python.pycode._pyx18.f$0(C:\Documents and Settings\c742323\.configWizard\tmp\config.py:738)
        at org.python.pycode._pyx18.call_function(C:\Documents and Settings\c742323\.configWizard\tmp\config.py)
        at org.python.core.PyTableCode.call(PyTableCode.java:208)
        at org.python.core.PyCode.call(PyCode.java:14)
        at org.python.core.Py.runCode(Py.java:1135)
        at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:167)
        at weblogic.management.scripting.WLST.main(WLST.java:106)
        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:585)
        at weblogic.WLST.main(WLST.java:29)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi. I'm having this same exact issue. My AdmCenterConsole.log contains the same error. Additionally, the log file for my BPMDomain log contains this information:
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State : failed
    Deployment Message : weblogic.management.ManagementException: [Deployer:149003]Unable to access application source information in '[DeploymentService:290003]Deployment service servlet encountered an exception while handling request of type "app_upload". Exception is: "Read timed out".\app\01-eng-albpmengine.ear' for application '01-eng-albpmengine'. The specific error is: No application files exist.
    No stack trace available.
    This Exception occurred at Sun Apr 19 14:29:13 CDT 2009.
    weblogic.management.scripting.ScriptException: Error occured while performing deploy : Deployment Failed.
         at weblogic.management.scripting.ExceptionHandler.handleException(ExceptionHandler.java:48)
         at weblogic.management.scripting.WLSTUtils.throwWLSTException(WLSTUtils.java:185)
         at weblogic.management.scripting.JSR88DeployHandler.deploy(JSR88DeployHandler.java:536)
         at weblogic.management.scripting.WLScriptContext.deploy(WLScriptContext.java:429)
    mick3y -- Did you happen to ever get this issue resolved?
    Thanks, Alan

  • OSR 2way SSL client configuration in Weblogic

    We've implemented 2way SSL in our Weblogic domains that host endpoints for use by OSB and OSR, using signed ( not self-signed! ) certificates. OSB works great and invokes the endpoints successfully over 2way SSL.
    The problem is that OSR doesn't use the same security keystore / truststore as WebLogic. The Weblogic server hosting OSR is configured with the same keystore / truststore that the OSB server uses, and the OSR mgd server also has "Use Server Certs" enabled.
    The OSR 10g server and the endpoint domain both use the same versions: Weblogic 10.3, using jrockit_160_05, both running on Linux 2.6.18-92.1.17.0.2.el5xen #1 SMP Tue Nov 18 04:11:19 EST 2008 i686 i686 i386 GNU/Linux on different hosts.
    For one-way SSL, I imported ( with PStoreTool.sh ) the server certificate from the endpoints' domain into the registry's conf/pstore.xml & redeployed, and then OSR was able to trust the incoming server cert. That's been working great.
    I'd like to have OSR submit the same certificate that OSB does so that OSR can act as a client in 2-way SSL. So I've used this:
    # Get the server cert from the OSR WL server
    sslTool.sh serverInfo url https://"OSR_HOST" certFile "OSR_HOST_FILE"
    # Add it into extracted pstore
    PStoreTool.sh new -alias "CN value" -keypassword ****t -config conf/pstore.xml -certFile "OSR_HOST_FILE"
    # encrypt keypass
    sslTool.sh encrypt --password *****
    and added an entry in the registry.war's app/uddi/conf/security.xml of:
    sslConnectionAlias>OSR_HOST</sslConnectionAlias>
    sslConnectionPassword_coded>"output from sslTool encrypt"</sslConnectionPassword_coded>
    But when trying to publish an https:// endpoint into OSR, I get an error in the OSR console of:
    Invalid WSDL location! WSDLException: faultCode=INVALID_WSDL: Cannot get WSDL at 'https://...."'. Exception occured: javax.net.ssl.SSLHandshakeException: Received fatal alert: decrypt_error.
    The OSR server logs shows this
    ERROR: com.idoox.wsdl.xml.WSDLReaderImpl - javax.net.ssl.SSLHandshakeException: Received fatal alert: decrypt_error
    ERROR: com.systinet.uddi.webui.WebUIRawService - Web Framework exception
    EXCEPTION: com.systinet.uddi.webui.WebUIException: (18003) UDDI error occurred.
    javax.servlet.ServletException: com.systinet.uddi.webui.WebUIException: (18003) UDDI error occurred.
    In the weblogic endpoint domain, I get this error at the same time - after the OSR certificate has been presented:
    <Sep 17, 2009 4:12:40 PM EDT> <Debug> <SecuritySSL> <BEA-000000> <HANDSHAKEMESSAGE: CertificateVerify>
    <Sep 17, 2009 4:12:40 PM EDT> <Debug> <SecuritySSL> <BEA-000000> <Using JCE Cipher: SunJCE version 1.6 for algorithm RSA/ECB/NoPadding>
    <Sep 17, 2009 4:12:40 PM EDT> <Debug> <SecuritySSL> <BEA-000000> <NEW ALERT with Severity: FATAL, Type: 51
    java.lang.Exception: New alert stack
    at com.certicom.tls.record.alert.Alert.<init>(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.ServerStateReceivedClientKeyExchange.handle(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages(Unknown Source)
    For two-way SSL, what steps are needed? The documentation on PStoreTool only lists available commands, but not how they would be used to perform 2way ssl config.

    After many, many, many iterations, I finally have an OSR that can import over 2way SSL.
    So here are the steps I used ( variables in caps )
    * Extract the conf/pstore.xml and app/uddi/conf/security/xml from registry.war
    jar -xf conf/pstore.xml
    jar -xf app/uddi/conf/security.xml
    * Encrypt the password for later use:
    PStoreTool.sh encrypt --password=OSR_PASS
    ( gives you an encrypted string )
    * Edit the security.xml, add these lines:
    <sslConnectionAlias>OSR_ALIAS</sslConnectionAlias>
    <sslConnectionPassword_coded>encrypted_password</sslConnectionPassword_coded>
    </security>
    <destinationConfig>
    <alias>OSR_ALIAS</alias> <!-- same alias -->
    <password_coded>encrypted_password</password_coded>
    <destination url="https://SERVICE_ENDPOINT/*"/> <!-- server hosting the endpoints that you're importing -->
    </destinationConfig>
    * put security.xml back
    jar -tf registry.war app/uddi/conf/security.xml
    * import the OSR server's identity cert ( to use as a client cert in outbound 2way SSL
    sslTool.sh serverInfo url https://OSR_HOST  certFile ./OSR_HOST.cer
    PStoreTool.sh add -config conf/pstore.xml -certFile ./OSR_HOST.cer
    * If your OSR cert is signed, also import signer certs with PStoreTool as previous
    * create a new user
    PStoreTool.sh new -alias OSR_ALIAS -keypassword unencrypted_password -config conf/pstore.xml
    * overwrite the user with the cert
    sslTool.sh pstoreEI -i keystore /etc/java/OSR_IDENTITY_KEYSTORE.jks storepass *** alias *** keypass *** --pstore [REGISTRY_HOME]/conf/clientconf.xml pstoreAlias OSR_ALIAS pstoreKeypass OSR_PASS
    sslTool.sh pstoreEI -i keystore /etc/java/OSR_IDENTITY_KEYSTORE.jks storepass *** alias *** keypass *** pstore conf/pstore.xml pstoreAlias OSR_ALIAS --pstoreKeypass OSR_PASS
    * Put the pstore.xml back
    jar -uf registry.war conf/pstore.xml
    Stop your OSR server, undeploy the registry.war, remove the OSR managed server's tmp directory, redeploy and restart.
    If you get "BAD_CERT" - you have a self-signed cert in pstore.xml that needs to be overwritten with your real cert from your OSR's identity jks
    If you get "login failed" - you need to run the "PStoreTool new"

  • LDAP Server Configuration in Weblogic

    Hi,
    While configuring LDAP provider in the existing weblogic server, I am facing issue while importing the certificate [.cer files] into the weblogic server for installation.
    Could someone provide the sequential steps that need to be followed to setup LDAP?
    Thanks,
    Pratik.

    I'm not sure what you want to achieve, but I guess that you want to use the Oracle Internet Directory for authentication?
    Usually there would be some place in the Weblogic setup where you can configure this. Needed for the connectivity to the OID are usually the DN of the user that can connect (cn=orcladmin,dc=users,dc=acme,dc=com) and the hostname and port where the OID is running.
    cu
    Andreas

  • Unicast Clustering in Weblogic 10.3

    We are using Multicast with Weblogic 9.2 for clustering now but are now migrating to Weblogic 10.3 and want to switch to unicast. The documentation seems kind of hazy for Unicast clustering. I have a few questions.
    1)The Unicast Broadcast Channel. What exactly is it and what is the format of one.
    2) do I need to create a custom channel some where? I don't want to use the default channel because we have many domains in the same server.
    3) Generally has does Unicast work and how is it different from multicast.
    Thanks,
    Tom.

    Hi Tom
    This really helped me
    Ash

  • LDAP Configuration in weblogic server

    Hi,
    This is chirumalla,
    I am working on the task for configuring the LDAP on weblogic 9.2 MP2.
    Could anybody help me on how to start on this task.
    Thanks in advance.

    I'm not sure what you want to achieve, but I guess that you want to use the Oracle Internet Directory for authentication?
    Usually there would be some place in the Weblogic setup where you can configure this. Needed for the connectivity to the OID are usually the DN of the user that can connect (cn=orcladmin,dc=users,dc=acme,dc=com) and the hostname and port where the OID is running.
    cu
    Andreas

  • How has access.log file configured in WebLogic server 10.0?

    1.) I am using BEA Weblogic 10.0 and my access.log is not getting updated.
    2.) I also need any information as to how this Webblogic server forms chunks (ex....access00011.log,access00012.log) because i have a software called AWStats which merges all these chunks into 1 single access.log file under its subdirectory.
    3.) I also need information as to how and where the user can specify/ form his own fields which gets displayed in the access.log
    FYI i have 2 servers and i checked under Logging->HTTP->advanced, in both the servers options and configurations are same but in 1 it works fine and access.log is updating but not in the other one.
    Kindly let me know i you have any leads into this issue!
    Thanks,
    Varun

    Hi Ravish,
    Firstly thanks for the reply.
    1.) -----
    What you can do is to set the buffer-size-kb parameter value to "0" in config.xml so that it can start logging once the server starts coming up rather then waiting for the default size which is 8kb to pass.
    Something like below:
    <web-server-log>
    <buffer-size-kb>0</buffer-size-kb>
    <web-server-log>
    For more details check the below link:
    Search for: CR302493
    http://download.oracle.com/docs/cd/E11035_01/wls100/issues/known_resolved.html
    --- for this issue i had browsed throught the forum before posting but in my conf file i have something like this instead of <buffer-size-kb>0</buffer-size-kb>
    <web-server>
    <web-server-log>
    <number-of-files-limited>false</number-of-files-limited>
    <log-file-format>extended</log-file-format>
    </web-server-log>
    </web-server>
    So how do i go about the path of debugging now??
    2.) -------
    If you do not want rotation of access.log then you can just disable it from the below console path just by putting Rotation type as None
    Server -> <YOUR_SERVER_NAME> -> Logging (tab) -> HTTP (sub-tab) -> Rotation type: None
    ---- for this in both my servers i have the settings like this,
    Rotation type--> By Size
    Rotation File size 5000
    Begin rotation time 00:00
    rotation interval 24
    files to retain 7
    and Log file rotation directory is left blank (to get created in same directory)
    and also Rotate log file on startup is unchecked.
    so??? what do you suggest!?
    3.) ------
    I also need information as to how and where the user can specify/ form his own fields which gets displayed in the access.log
    ---- regarding this, in my main server the access.log is getting updated and after 4.8Mb its creating 5Mb chunks. So, for example if the entire log is of 15 Mb then access.log stops updating at 4.98Mb and accesslog.out0001 and accesslog.out0002 is created with 5Mb each but the latest entry will be stored in accesslog.out0002 file. I hope i didn't complicate this :)
    Regards,
    Varun

  • How to Configure the Weblogic Server 6.0 Beta version with Solaris 8

    Hello,
    I have problem in starting the weblogic server 6.0 beta version.
    It is occupying hell of space and running very slow. When I try
    to deploy the bean it is throwing exception like timeout.
    Plese do suggest me what to do. and how to configure properly.
    Thank you,

    That typically happens when you have your database connections configured
    incorrectly. WebLogic is timing out on accessing the database.
    Michael Girdley
    BEA Systems Inc
    "Laxmikanth" <[email protected]> wrote in message
    news:3a35523c$[email protected]..
    >
    Hello,
    I have problem in starting the weblogic server 6.0 beta version.
    It is occupying hell of space and running very slow. When I try
    to deploy the bean it is throwing exception like timeout.
    Plese do suggest me what to do. and how to configure properly.
    Thank you,

  • How coherence 3.5 can be configured with weblogic

    Hi Guys,
    Can anyone help me, how to setup the coherence and configure with the weblogic server.
    Thank you.

    Basic setup is very simple. Include coherence.jar(coherence/lib/ ) in WebLogic system class path in startup script.
    You can also refer here.
    http://coherence.oracle.com/display/COH35UG/Installing+Oracle+Coherence
    jayesh@yagna

  • JMS Configuration in weblogic 10.0

    Hi All.
    I am unable to cofigure jms in weblogic 10.0
    in first i have created JMS server
    after this i am unable configure the queue (i mean where to configure)
    there is one module is JMS Modules
    in this i have created queue
    but while executing i got connection factory lookup
    but i did not get the queue llookup why?
    pleasse help me as soon as possible
    thanks in advance
    krishna

    Hi,
    I think this would be helpful for you.
    http://edocs.bea.com/wls/docs81/ConsoleHelp/jms_config.html#1105204
    thanks,

Maybe you are looking for

  • HT204088 how to remove a purchASE

    how to remove a purchASE

  • Lightroom 3 crash after upgrading Lightroom 1 Catalog

    I installed Lightroom 3 and upgraded my Lightroom 1 catalog (21,000 photos). It runs through the upgrade process without any problems and opens Lightroom 3, where I can browse through a few screens of images. However, if I scroll past a certain point

  • SXMB_MONI icon's meaning

    Hi Could you plz tell me the meaning of these legends in SXMB_MON ?? 1.Flag (green).......Message scheduled (commit follows) 2. Flag(white).......Message  scheduled (commit missing) 3.........................Message with errors cancelled. thanks kuma

  • Dynamic Partner links in BPEL (or ESB

    Can we dynamically define Partner links at runtime and at runtime decide to call these services? If yes, can we also dynamically map the schemas? BPEL cook book provides an example to for creating Dynamic Partner but this requires redeploying the WSD

  • Error message after install-now iPhoto will not open

    After installing iPhoto, a message asks to upgrade the library. Soon, a message says There is a problem in your iPhoto library folder. In the finder, select the iPhoto Library Folder. Then choose file > Get Info. Make sure you have Read & Write permi