Need Sample Request for Proposal(RFP) for Weblogic Server

Hi,
I need Request for Proposal (RFP) document of Weblogic server 11g preferably. please guide.
Regards,
Noman

I encourage you to contact your local account team. Depending on your location, you should be able to find out that is by using the support sales number.
http://www.oracle.com/us/corporate/contact/index.htm

Similar Messages

  • Need Customizing request instead of Workbench for Table Mainetnance

    Hello All,
    I created a ztable with Table Maintenance.
    Whenever I am creating entries using SM30 it is asking workbench request instead of customizing request.
    I need customizing request to be created for table entries.
    Can anybody help me in this regard.

    Hi Eric,
    Thanks a lot!.
    The problem is solved....
    Thank you very much for your help.
    Regards,
    Sunil

  • Inqmy resource adapter for SAP with Bea Weblogic Server

              Hi everybody,
              Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic server
              It works well with INQMY server, but with BEA I'm getting a lot of problems creating
              the connections.
              Thanks in advance.
              Xavi.
              

    All,
              Here are the steps we (used for internal testing) had to perform to get
              IN-Q-MY adapter for SAP to work with WebLogic:
              The wli.adapter.inqmy.sapr3.spi package contains extensions to the
              In-Q-My J2EE Connector Architecture classes to overcome some limitations
              in the base implementation classes. To get around these issues, we had
              to extend their R3ManagedConnectionFactory, R3ConnectionManager, and
              R3ConnectionFactory classes.
              * The javax.resource.spi.ManagedConnectionFactory implementation
              does not over-ride the equals and hashCode methods correctly. This
              causes problems with WLS 6.1.
              * There is a bug in their javax.resource.spi.ConnectionManager
              implementation for non-managed uses of the adapter. Consequently, their
              adapter cannot be used in a non-managed scenario.
              * The javax.resource.cci.ConnectionFactory class does not support
              the getConnection() method that does not take any arguments (it throws a
              null pointer exception).
              I am attaching the classes discussed above.
              Cheers,
              Chris
              Torsten Friebe wrote:
              > Hi,
              >
              > does anybody know where to get a trail version - if one exists - of IN-Q-MY
              > application server or the resource adapter?
              >
              > Thanks, regards
              > Torsten
              >
              > "Xavi" <[email protected]> schrieb im Newsbeitrag
              > news:[email protected]...
              >
              >>Hi everybody,
              >>
              >>Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic
              >>
              > server
              >
              >>?
              >>
              >>It works well with INQMY server, but with BEA I'm getting a lot of
              >>
              > problems creating
              >
              >>the connections.
              >>
              >>Thanks in advance.
              >>Xavi.
              >>
              >>
              >
              >
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.cci.Connection;
              import javax.resource.cci.ConnectionSpec;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              import com.inqmy.r3adapter.R3ConnectionSpec;
              import com.inqmy.r3adapter.R3ManagedConnectionFactory;
              * Extends the In-Q-My implementation to allow for getConnection() with no
              * connection spec, i.e. use the default configured connection parameters.
              public class R3ConnectionFactory
              extends com.inqmy.r3adapter.R3ConnectionFactory
              implements com.bea.connector.IProxyMarker {
              private R3ConnectionSpec m_cspec;
              public R3ConnectionFactory(ConnectionManager cm, R3ManagedConnectionFactory mcf)
              throws ResourceException {
              super(cm, mcf);
              String strClientNumber = mcf.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+mcf);
              String strLanguage = mcf.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+mcf);
              String strUserName = mcf.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+mcf);
              String strPassword = mcf.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+mcf);
              m_cspec = new R3ConnectionSpec(strClientNumber, strLanguage, strUserName, strPassword);
              public Connection getConnection(ConnectionSpec connectionSpec)
              throws ResourceException {
              if (connectionSpec == null) connectionSpec = m_cspec;
              return super.getConnection(connectionSpec);
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              * Extends the In-Q-My implementation to over-ride the
              * allocateConnection method to return a CCI connection vs. a ManagedConnection
              public class R3DefaultConnectionManager
              implements ConnectionManager, Serializable {
              public R3DefaultConnectionManager() {}
              public Object
              allocateConnection(ManagedConnectionFactory mcf, ConnectionRequestInfo cri)
              throws ResourceException {
              ManagedConnection mc = mcf.createManagedConnection(null, cri);
              return mc.getConnection(null, cri);
              package wli.adapter.inqmy.sapr3.spi;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.security.auth.Subject;
              * Extends the In-Q-My implementation to get around some problems encountered
              * while running on WebLogic:
              * <ul>
              * <li>Must over-ride default implementation of equals and hashCode method</li>
              * <li>Needed to provide my version of the CCI ConnectionFactory</li>
              * <li>Needed to provide my version of the default ConnectionManager for the
              * non-managed scenario use case</li>
              * </ul>
              public class R3ManagedConnectionFactory
              extends com.inqmy.r3adapter.R3ManagedConnectionFactory {
              private int m_iHashCode;
              transient private com.inqmy.r3adapter.R3ConnectionRequestInfo t_cri = null;
              public R3ManagedConnectionFactory() {
              super();
              java.rmi.server.UID uid = new java.rmi.server.UID();
              m_iHashCode = uid.hashCode();
              public Object createConnectionFactory() {
              // need to install our own default connection manager because In-Q-My
              // version causes a ClassCastException in CCI ConnectionFactory
              // getConnection
              return createConnectionFactory(new R3DefaultConnectionManager());
              public ManagedConnection createManagedConnection(Subject subject, ConnectionRequestInfo cri)
              throws javax.resource.ResourceException {
              // need to check for null on the ConnectionRequestInfo object because the
              // In-Q-My R3ManagedConnection ctor does not check for null
              if (cri == null) cri = getDefaultConnectionRequestInfo();
              return new com.inqmy.r3adapter.R3ManagedConnection(this, subject, cri);
              public Object createConnectionFactory(ConnectionManager connectionManager) {
              // need to supply a connection factory that can deal with getConnection
              // that does not take a ConnectionSpec
              try {
              return new R3ConnectionFactory(connectionManager, this);      
              } catch (javax.resource.ResourceException re) {
              re.printStackTrace();
              throw new java.lang.IllegalStateException(re.getMessage());
              com.inqmy.r3adapter.R3ConnectionRequestInfo getDefaultConnectionRequestInfo()
              throws javax.resource.spi.IllegalStateException {
              if (t_cri == null) {
              String strClientNumber = this.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+this);
              String strLanguage = this.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+this);
              String strUserName = this.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+this);
              String strPassword = this.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+this);
              t_cri = new com.inqmy.r3adapter.R3ConnectionRequestInfo(strClientNumber, strLanguage, strUserName, strPassword);
              return t_cri;
              public boolean equals(Object obj) {
              if (obj == null) return false;
              if (obj == this) return true;
              if (!this.getClass().isInstance(obj)) return false;
              R3ManagedConnectionFactory mcf = (R3ManagedConnectionFactory)obj;
              return compare(getClientNumber(), mcf.getClientNumber()) &&
              compare(getLanguage(), mcf.getLanguage()) &&
              compare(getUserName(), mcf.getUserName()) &&
              compare(getPassword(), mcf.getPassword()) &&
              compare(getServerName(), mcf.getServerName()) &&
              compare(getSystemNumber(), mcf.getSystemNumber());
              protected final boolean compare(final Object obj1, final Object obj2) {
              if (obj1 == obj2) return true;
              if (obj1 != null) {
              return obj1.equals(obj2);
              } else {
              if (obj2 == null) {
              return true;
              } else {
              return false;
              public int hashCode() { return m_iHashCode; }
              

  • Request for proposal - template for ERP - healthcare

    Hi colleagues,
    Does any of you have a tamplate for RFP (Request for proposal) for ERP - Healthcare industry solution?
    Thanks in advance.
    Best Regards,
    Slavisa

    Hi Slavisa,
    if you're looking for examples how SAP colleagues have answered RFPs I guess you better ask internally.
    However, if you are wondering whether somebody in the community has used RFP templates and is willing to share these, BPX is the right way to go - but then you should address the community and not only colleagues.
    Regards
    Claudius

  • Need help in getting proposed approvers for a work item

    Hi All,
        We are trying to get the proposed approvers and the actual approver details for a particular work item.
    Before the work item is actioned we are able to see all the proposed agents for that particular work item.
    But once that work item is actioned then only the agen who has actioned on the work item is appearing in the list. All other agents are not appearing.
    For this we are using the FM BBP_WFL_DIN_APPR_WORKFLOW_GET.
    We have also tried some other FM's and tables, but none of them were helpfull.
    Please let us know if you know any table or FM or class which we can use to get these details.
    Scenario:
    Work Item: 12345    
    Before action on the work item
    Possible(Proposed) agents: Agent 1, Agent 2, Agent 3.
    Actual Agent: blank
    What we want, after action on the work item if "Agent 2" acts on that item.
    Possible(Proposed) agents: Agent 1, Agent 2, Agent 3.
    Actual Agent: Agent 2
    But what we are get is:
    Possible(Proposed) agents: Agent 2.
    Actual Agent: Agent 2
    Thanks a lot.
    Regards,
    Kranthi.

    Hi,
    What did you draw those lines with ???? Just a drawLine() command ????
    If so, it is very difficult to track the exact mouse coordinates that correspond to a click at a particular place and then place an 'X' or an 'O' there !!!!
    Try implementing it with 9 Buttons placed at those specific positions. In this case, it will be very simple to track the user's input when he clicks on any of those buttons...the implementation will become really simpler.
    Check it out !

  • Location for dll files in weblogic server 6.1 sp2

    "where to keep *.dll files in weblogic server 6.1 sp2". Application is deployed on weblogic server 6.1 sp2. Application is being integrated with webmethod to publish data. For that we need to put awssl40jn.dll in weblogic server. Could not able to locate where to put this dll file.

    You can have the dll's anywhere. You just need to mention the location
    in java.library.path.
    For example if you have your Dll's in C:\bea\lib
    You need to mention the following in your command line args:
    java -Djava.library.path=C:\bea\lib ****Other Command Line Args****
    weblogic.Server
    Hope this helps.
    -Kiran
    "Dave Martin" <[email protected]> wrote in message news:<[email protected]>...
    I don't see a DLL like yours in a fresh install of WLS 6.1 SP2
    This is the complete list of DLLs I find in my fresh install of WLS 6.1 SP2 (starting
    from the BEA home) on Windows:
    /jdk131/bin/dt_shmem.dll
    /jdk131/bin/dt_socket.dll
    /jdk131/bin/jdwp.dll
    /jdk131/jre/bin/ActPanel.dll
    /jdk131/jre/bin/agent.dll
    /jdk131/jre/bin/awt.dll
    /jdk131/jre/bin/classic/jvm.dll
    /jdk131/jre/bin/cmm.dll
    /jdk131/jre/bin/dcpr.dll
    /jdk131/jre/bin/dt_socket.dll
    /jdk131/jre/bin/fontmanager.dll
    /jdk131/jre/bin/hotspot/jvm.dll
    /jdk131/jre/bin/hpi.dll
    /jdk131/jre/bin/hprof.dll
    /jdk131/jre/bin/ioser12.dll
    /jdk131/jre/bin/java.dll
    /jdk131/jre/bin/jawt.dll
    /jdk131/jre/bin/jcov.dll
    /jdk131/jre/bin/JdbcOdbc.dll
    /jdk131/jre/bin/jdwp.dll
    /jdk131/jre/bin/jpeg.dll
    /jdk131/jre/bin/jpins32.dll
    /jdk131/jre/bin/jpishare.dll
    /jdk131/jre/bin/jsound.dll
    /jdk131/jre/bin/msvcrt.dll
    /jdk131/jre/bin/net.dll
    /jdk131/jre/bin/NPJava11.dll
    /jdk131/jre/bin/NPJava12.dll
    /jdk131/jre/bin/NPJava131.dll
    /jdk131/jre/bin/NPJava32.dll
    /jdk131/jre/bin/NPOJI600.dll
    /jdk131/jre/bin/packager.dll
    /jdk131/jre/bin/server/jvm.dll
    /jdk131/jre/bin/server/jvm_g.dll
    /jdk131/jre/bin/verify.dll
    /jdk131/jre/bin/zip.dll
    /wlserver6.1/bin/fastfile.dll
    /wlserver6.1/bin/iisforward.dll
    /wlserver6.1/bin/iisproxy.dll
    /wlserver6.1/bin/jsafe.dll
    /wlserver6.1/bin/md5.dll
    /wlserver6.1/bin/md5_g.dll
    /wlserver6.1/bin/nodemanager.dll
    /wlserver6.1/bin/oci816_7/weblogicoci37.dll
    /wlserver6.1/bin/oci816_7/weblogicoxa37.dll
    /wlserver6.1/bin/oci816_8/weblogicoci37.dll
    /wlserver6.1/bin/oci816_8/weblogicoxa37.dll
    /wlserver6.1/bin/oci817_8/weblogicoci37.dll
    /wlserver6.1/bin/oci817_8/weblogicoxa37.dll
    /wlserver6.1/bin/oci901_8/weblogicoci37.dll
    /wlserver6.1/bin/oci901_8/weblogicoxa37.dll
    /wlserver6.1/bin/proxy30.dll
    /wlserver6.1/bin/proxy35.dll
    /wlserver6.1/bin/proxy36.dll
    /wlserver6.1/bin/stackdump.dll
    /wlserver6.1/bin/stackdump_g.dll
    /wlserver6.1/bin/terminalio.dll
    /wlserver6.1/bin/wlenv.dll
    /wlserver6.1/bin/wlntio.dll
    /wlserver6.1/bin/wlntio_g.dll
    /wlserver6.1/bin/wlntrealm.dll
    /wlserver6.1/bin/wlntrealm_ms.dll
    /wlserver6.1/uninstaller/resource/iawin32.dll
    /wlserver6.1/uninstaller_servicepack/resource/iawin32.dll
    manoj <[email protected]> wrote:
    "where to keep *.dll files in weblogic server 6.1 sp2". Application is
    deployed on weblogic server 6.1 sp2. Application is being integrated
    with webmethod to publish data. For that we need to put awssl40jn.dll
    in weblogic server. Could not able to locate where to put this dll file.

  • Using JDriver for Oracle 8i from Weblogic server 6.1

    Hi
    We have solaris machine running Weblogic server 6.1 SP1 and another solaris running Oracle 8i. I have installed client libraries in machine running WLS 6.1. I have set the LD_SERVER_PATH in setEnv.sh file of weblogic. when i create coinnection pool from WLS CONSOLE and i restart it it is throwing an error
    Jan 3, 2002 4:48:21 PM GMT-05:00> <Error> <JDBC> <Cannot startup
    connection pool "OraclePool" weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: System.loadLibrary(weblogicoci37) threw
    java.lang.UnsatisfiedLinkError:
    /oracle8i/CAPS/bea/wlserver6.1/lib/solaris/oci816_8/libweblogicoci37.so:
    ld.so.1:
    /oracle8i/CAPS/bea/jdk131/jre/bin/../bin/sparc/native_threads/java:
    fatal: /oracle8i/product/8.1.6/lib64/libclntsh.so.8.0: wrong ELF class:
    ELFCLASS64
    at weblogic.jdbc.oci.Driver.loadLibraryIfNeeded(Driver.java:226)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:76)
    at
    weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Connec
    tionEnvFactory.java:192)
    at
    weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connec
    tionEnvFactory.java:134)
    at
    weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocat
    or.java:698)
    at
    weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java
    :282)
    at
    weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java
    :629)
    at
    weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Deploym
    entTarget.java:329)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Deploy
    mentTarget.java:279)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploymen
    ts(DeploymentTarget.java:233)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(Dep
    loymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBean
    Impl.java:608)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.ja
    va:592)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configuration
    MBeanImpl.java:352)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:449)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:190)
    at $Proxy33.updateDeployments(Unknown Source)
    at
    weblogic.management.configuration.ServerMBean_CachingStub.updateDeployme
    nts(ServerMBean_CachingStub.java:2734)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(
    ApplicationManager.java:362)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationMa
    nager.java:154)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBean
    Impl.java:608)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.ja
    va:592)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configuration
    MBeanImpl.java:352)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:449)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:190)
    at $Proxy46.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.st
    art(ApplicationManagerMBean_CachingStub.java:480)
    at
    weblogic.management.Admin.startApplicationManager(Admin.java:1151)
    at weblogic.management.Admin.finish(Admin.java:570)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:506)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    at
    weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Connec
    tionEnvFactory.java:208)
    at
    weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Connec
    tionEnvFactory.java:134)
    at
    weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllocat
    or.java:698)
    at
    weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.java
    :282)
    at
    weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.java
    :629)
    at
    weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Deploym
    entTarget.java:329)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Deploy
    mentTarget.java:279)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploymen
    ts(DeploymentTarget.java:233)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(Dep
    loymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBean
    Impl.java:608)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.ja
    va:592)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configuration
    MBeanImpl.java:352)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:449)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:190)
    at $Proxy33.updateDeployments(Unknown Source)
    at
    weblogic.management.configuration.ServerMBean_CachingStub.updateDeployme
    nts(ServerMBean_CachingStub.java:2734)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(
    ApplicationManager.java:362)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationMa
    nager.java:154)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBean
    Impl.java:608)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.ja
    va:592)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configuration
    MBeanImpl.java:352)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:449)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:190)
    at $Proxy46.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.st
    art(ApplicationManagerMBean_CachingStub.java:480)
    at
    weblogic.management.Admin.startApplicationManager(Admin.java:1151)
    at weblogic.management.Admin.finish(Admin.java:570)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:506)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    I would appreciate if you can offer some help.
    Thanks,
    S Gopikrishna

    IT WORKS FINE FOR ME.
    Script that starts the bwls...
    CTP=t3://wls_ip:port
    JAVA_HOME=/usr/j2se
    WL_HOME=/weblogic61
    ORACLE_HOME=/oracle/oracle_client
    NLS_LANG=american_america.WE8ISO8859P1
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    PATH=$PATH:$JAVA_HOME/bin:/usr/ccs/bin:/usr/ucb:$ORACLE_HOME/bin
    LD_LIBRARY_PATH=$WL_HOME/lib/solaris/oci815_8:$ORACLE_HOME/lib
    export LD_LIBRARY_PATH PATH ORA_NLS33 NLS_LANG ORACLE_HOME
    SET CLASSPATH
    START WLS
    weblogic.properties
    weblogic.jdbc.connectionPool.MyOraPool=\
    url=jdbc:weblogic:oracle,\
    driver=weblogic.jdbc.oci.Driver,\
    loginDelaySecs=1,\
    initialCapacity=3,\
    maxCapacity=9,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=12,\
    refreshMinutes=10,\
    props=user=orausr;password=orafoousr;server=ORASERVER;weblogic.oci.min_bind_size=1000

  • Encryption for properties file in Weblogic server 6.1

    My application needs to connect to a file server. I need to encrypt the password in properties file. Is there a built in encryption tool in weblogic server 6.1 to achieve that?
    Thanks

    My application needs to connect to a file server. I need to encrypt the password in properties file. Is there a built in encryption tool in weblogic server 6.1 to achieve that?
    Thanks

  • Need Sample Unit Test Plan templates for SD

    Hi Experts,
    I am in need of some SD unit test plan templates used in any of your implementations.
    Pls Help.

    Dear Preethi
    As already expressed, you are asking the confidential document which nobody would like to share.
    However, AS-IS will be prepared by Core team people and your duty is to go through the process in depth.
    May be the AS-IS from SD purview, I can list as an example as how it should be
    The excel sheet of AS-IS header tabs will have to contain the following header tabs
    -  Scenario like Exports, Domestic etc,
    -  Under this scenario, Groups like OE, Aftermarket, Stock Transfer etc.,
    -  Under this Groups, Process like Business Plan, Scheduling, Preshipment activities, Post shipment activities etc.,
    -  Finally this process has to be break down into a detailed list of activities.
    So you have to go through these process in detail.
    As for as testing is concerned, there is no need to check the customer master.
    All you have to do is to carry out all standard T.Codes like order creation, create delivery, PGI, Billing and Excise Invoice.  Again try to cancel all documents from billing to sale order and ensure that you are able to cancel those documents.  Check for the FI implication on the COGS and material cost.
    Also while testing, you can also check whether you are able to create one delivery against multiple sale orders and one invoice against multiple deliveries.  If not successful, analyse the reason for split, maintain the required datas in masters and retry the process.
    thanks
    G. Lakshmipathi

  • Disk replication for Shared Storage in Weblogic server

    Hi,
    Why we need a disk replication in web-logic server for shared storage systems? What is the advantage of it and how this disk replication can be achieved in web-logic for the shared storage which contains the common configurations and software's which will be used by a pool of client machines? Please clarify.
    Thanks.

    Hi,
    I am not the middleware expert. However ACFS (Oracle Cloud File System) is a clustering filesystem, which also has the functionality for replication:
    http://www.oracle.com/technetwork/database/index-100339.html
    Maybe you also finde information on what you need on the MAA website: www.oracle.com/goto/maa
    Regards
    Sebastian

  • Looking for proposal templates for Oracle 11i Financial upgrade

    Hello everyone,
    I have been asked to prepare a proposal for Oracle Financial Application UPGRADE from 11.0.3 to 11.5.6.
    Though I have a fair knowledge about Oracle Financials, but I do not have any standard proposal templates
    related to 11i upgrade.
    Specifically, I am looking for some standard proposal templates highlighting the best practices, preferred approach, methodologies, work flow, obstacles etc. OR whatever is available.
    Can anyone help me by providing some standard proposal templates on this issue?
    I can be reached by email at:
    [email protected]
    Thanks a lot in advance for any possible help.
    BM

    The following links should be helpful:
    [Oracle Certification Program - Oracle Applications|http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=142]
    [Oracle Certifications – All|http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=141]

  • RFP for Human Resource Management System

    Hi,
    I am doing Request for Proposal (RFP) for Human Resource Management System(ESS/MSS) for a bank. This is the first time I am involved in RFP.
    Could you kindly guide me with documents and how to proceed?
    Thanks
    Prabhu.M...

    <added>
    In SAP EP perspective

  • Mock RFP for SUN network management tool, desperate 4 help, just need specs

    OK, I have a project that in essence is a mock Request for Proposal (RFP), I play as an intern, & our instructor roleplays the manager we need to convince. The different network management tools that were available were for example; HP Openview, Cisco Works, Sniffer....& I of course chose SunNet. We need to gather information on the tool, then turn around & design a relatively simple network from the specs that were given, & finally discuss how the management tool's abilities could benefit the (mock) company...power point presentation & all.
    Here it is from the homework sheet given to us...."These products will need to be useful in a 5000 node network that has four main locations that are primarily Ethernet. There is a legacy 100 nodes of Token Ring attached to a mainframe. Cisco or Foundry routers connect the Four main locations, with swiches employed. Other connections to these sites are done via DSL or ISDN. Additional considerations are wireless communications, VOIP & Content delivery systems.
    I know this is a lot & I'm not asking for someone to do all this for me, just simply provide any information you know about Enterprise management tools 2.0 or 3.0,or anything you may feel better suits my needs, as the links I have surfed about them give little to nothing about specifics that I need to make any argument. If you have any links send them...if you have anyting in hard copy I will pay for postage... I need to get this done & have little time as I go to school & work full time at Motorola (but only as a contractor), so I'm starting to choke & need help....any u can give is so very appreciated....& sorry to make this request a publishable novel here on the board, but thats what it is. Thanks again......Mark

    A good solution. Liked it very much. Can you please make it a technet blog for others.
    [email protected]

  • SRM Request for Proposal

    Dear All,
    Towards preparing SRM - Request for Proposal (RFP) please let me know if anyone already prepared. Please give few ideas in areas of coverage and points to be included.
    Regards,
    Syed Hussian.

    Dear Masayuki,
    Thank you very much for your reply.
    For the points you mentioned, 3rd one I am looking for.
    I need to submit RFP Response to get SRM implementation project with a client which already running ECC6.
    Regards,
    Syed Hussain.

  • Weblogic server crashes with optimizeit request analyzer

    Hi,
    I am using weblogic 9.2 version and optimizeitsuite2006.
    I changed the audit system selector to request analyzer. then restarted my weblogic server. It shows the below error. Please let me know how to solve this problem.
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (c0000005) at 0x74FD49EA - memory at 0x00024A19 could not be read.
    Minidump : Wrote mdmp. Size is 317MB
    Version : BEA JRockit(R) R26.0.0-189_CR269406-59389-1.5.0_04-20060322-1120-win-ia32
    GC : System optimized over throughput (initial strategy singleparpar)
    : mmHeap->data = 0x00B00000, mmHeap->top = 0x10B00000
    CPU : Intel Pentium 4 (HT) SSE SSE2 NetBurst EM64T
    Number CPUs : 2
    Tot Phys Mem : 1071714304 (1022 MB)
    OS version : Microsoft Windows XP version 5.1 Service Pack 2 (Build 2600)
    Thread System: Windows Threads
    State : JVM is running
    Command Line : -Djrockit.launcher.type=jrockit.shipment -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms256m -Xmx512m -Xrunoii:C:\Borland\Optimizeit\OptimizeitEntSuite2006\config\optimizeit.xml -Xbootclasspath/a:C:\Borland\Optimizeit\OptimizeitEntSuite2006\lib\oibcp.jar -Xverify:none -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole... -Dplatform.home=C:\bea\WEBLOG~2 -Dwls.home=C:\bea\WEBLOG~2\server -Dwli.home=C:\bea\WEBLOG~2\integration -Dweblogic.management.discover=true -Dwlw.iterativeDev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -Dweblogic.ext.dirs=C:\bea\patch_weblogic920\profiles\default\sysext_manifest_classpath -Dweblogic.Name=cgServer -Djava.security.policy=C:\bea\WEBLOG~2\server\lib\weblogic.policy weblogic.Server
    JAVA_HOME : C:\bea\JROCKI~2
    java.home : C:\bea\JROCKI~2\jre
    j.class.path : C:\Borland\Optimizeit\OptimizeitEntSuite2006\lib\optit.jar;;C:\bea\patch_weblogic920\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\JROCKI~2\lib\tools.jar;C:\bea\WEBLOG~2\server\lib\weblogic_sp.jar;C:\bea\WEBLOG~2\server\lib\weblogic.jar;C:\bea\WEBLOG~2\server\lib\webservices.jar;;C:\bea\WEBLOG~2\common\eval\pointbase\lib\pbembedded51.jar;C:\bea\WEBLOG~2\common\eval\pointbase\lib\pbupgrade51.jar;C:\bea\WEBLOG~2\common\eval\pointbase\lib\pbclient51.jar;C:\bea\WEBLOG~2\server\lib\xqrl.jar;;
    j.lib.path : C:\bea\JROCKI~2\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea\JROCKI~2\jre\bin;C:\Borland\Optimizeit\OptimizeitEntSuite2006\lib;C:\bea\patch_weblogic920\profiles\default\native;C:\bea\WEBLOG~2\server\native\win\32;C:\bea\WEBLOG~2\server\bin;C:\bea\JROCKI~2\jre\bin;C:\bea\JROCKI~2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\IBM\Personal Communications\;C:\Program Files\IBM\Trace Facility\;C:\PROGRA~1\CA\Common\SCANEN~1;C:\PROGRA~1\CA\ETRUST~1;C:\Program Files\Vantive Client v8.5.5.13;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Borland\StarTeam SDK 2005 R2\Lib;C:\Program Files\Borland\StarTeam SDK 2005 R2\Bin;C:\Program Files\Borland\CaliberRM SDK 2005 R2\lib;C:\bea\WEBLOG~2\server\native\win\32\oci920_8
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    Registers (from ThreadContext: 0x0007D5CC / OS context: 0x0007DE04):
    eax = 00024a19 ecx = 00000002 edx = 0007e19c ebx = 778dd1e1
    esp = 0007e0d0 ebp = 00000000 esi = 00024a19 edi = 021f3840
    "Main Thread" id=1 idx=0x2 tid=2828 lastJavaFrame=0x00000000
    Stack 0: start=0x00040000, end=0x00080000, guards=0x00043000 (ok), forbidden=0x00041000
    Thread Stack Trace:
    -- Java stack --
    Additional information is available in:
    C:\bea\weblogic92\samples\domains\workshop\jrockit.288.dump
    C:\bea\weblogic92\samples\domains\workshop\jrockit.288.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.

    The first step should be to upgrade to a more recent JRockit version. You are on R26.0, the current release is R27.2. JRockit R27.3 will be out in a month or so.
    -- Henrik

Maybe you are looking for

  • Currency translation routine - pls correct ABAP code

    Hi, I am trying to implement a scenario for currency conversion at the transformation level.(i am using BI 7.0) My source data is flat file. My scenario here is like I have 2 masters - country & supplier. I added 0loc_currcy as an attribute to the co

  • Formatting an Export to Excel

    Can anyone tell me how to force a column being exported to Excel to be interpreted by Excel as a text field? The column contains only digits, but has values such as '0000' where all four zeroes are to be considered significant.

  • Word/PDF Forms on BB 9810

    I require a checklist on my BB on which I can tick off items. I can create forms in Word or in Acrobat, but these do not seem to work (I cannot tick the checlist). Does anyone have a solution for this? Alternatively, are there any other tools/methods

  • How to access to data of BUPA_MAIN from R/3 to CRM

    Hello, I have got two systems, a R/3 system and a CRM system connected. When creating an account, it is transported correctly between both systems. We have got a new requirement so I need to read the account group inserted in the creation of an accou

  • Inventory sometimes coming to our place in high sea sales scenario?

    Dear Experts, Here we have mapped the high sea sales scenario through third party sales process. here in this process since the documents are endorsed on the name of customers when the shipment is sailing only, so here we have to do only statistical