How to integrate weblogic 10 server in IBM rational software architect 7.0?

Hi All,
Please help me to resolve this issue!!!!!!!!
I am trying to find it out how to integrate weblogic 10 server in IBM rational software architect 7.0?
Thanks
Harshad

You're right: Weblogic supports Apache web server 2.0 and 2.2 to be a proxy server but you are using Oracle Application Server 10.1.3.1.0 which is based on Apache *1.3* as you can read in "Oracle® HTTP Server Administrator's Guide"
10g (10.1.3.1.0) - Part Number B28948-01 - 1.1 Oracle HTTP Server Features, right under "Based on Apache - HTTP v1.1 Support" at
http://download.oracle.com/docs/cd/B31017_01/web.1013/b28948/overview.htm#i1008837.
As far as I know, the only OHS based on Apache *2.0* is available as a standalone release: "Oracle HTTP Server (Apache 2.0) (10.1.3.3.0) for Linux x86" - 32bit. You can download it from http://www.oracle.com/technology/software/products/database/oracle11g/111060_linuxsoft.html (as_101330_apache2_lnx.zip).
I've tested it successfully.
Edited by: Virgil on Jan 15, 2009 3:08 AM

Similar Messages

  • Installing Dali plugin in IBM Rational Software Architect

    Hi,
    We use IBM Rational Software Architect as development environment, and we want to use the Dali Eclipse plugin to generate Entities using TopLink. We cannot get Dali installed in IBM RSA though. Since IBM RSA is based on Eclipse, it shouln't be a problem to install Eclipse plugins. We tried installing Help > Software Updates > Find & Install and via copying the files into the Eclipse tree, but neither of the to methods succeeded. The plugin simply doesn't show up.
    Does anyone have a suggestion on what to do to get it installed? We use a separate installation of Eclipse Europa now as a workaround. But I think you understand we prefer to use a single development environment.
    Here's some detailed information about the version of IBM RSA we're using:
    * IBM Rational Software Architect: Version: 7.0.0
    * Eclipse Platform: Version: 3.2.1.r321_v20060921-b_XVA-INSQSyMtx; Build id: M20060921-0945
    Best regards,
    Bart Kummel

    Flex Builder 3 plugin is not intended to be installed on Eclipse Galileo (3.5).
    Zend Studio 7 is based on Eclipse 3.5, and when I tried to install the FB3 plugin, the installation wizard gave me this error:
    "Please choose an existing Eclipse 3.2, 3.3, or 3.4 folder to be extended with the Flex Builder Plugin-ins."
    However Flash Builder 4 it seems that it's working with Eclipse 3.5. I've just installed Flash Builder 4 plug-in into Zend Studio 7.
    Here is a post about this: http://margelatu.org/

  • How to tell weblogic server which configuration I want to use

    Hi Everyone,
    I write the logmodule class, configuration class, Action class, client class
    and my policy file my.policy.
    I add the VM parameter when I start weblogic server
    "-Djava.security.auth.policy=D:\bea\wlserver6.1/lib/my.policy"
    But I don't know how to let weblogic server know my configuration class, so
    that the server will create it when my client code create LoginContext
    object.
    Some artical told me that add the configuration class name in java.security
    file, like the following
    login.configuration.provider=mypackage.myConfig
    unfortunately, it don't work :(
    I always got the exception message
    No Configuration Class Name Supplied
    Does anyone kindly tell me how to let the system know my configuration class
    name?
    Regards,
    xlzhou

    Hi,
    we are facing the same problem, if you get the solution would you please help
    us out?
    Regards
    Sudipto
    [email protected] (Joe Zhou) wrote:
    I almost got same problem.
    I wrote a deme which is using jaas.
    The client part:
    Properties property = new Properties(System.getProperties());
    property.put("weblogic.security.jaas.ServerURL",
    "http://localhost:7001");
    System.setProperties(property);
    // Set configuration class name to load SampleConfiguration, the
    //Configuration for the JAAS code example
    property = new Properties(System.getProperties());
    property.put("weblogic.security.jaas.Configuration",
    "test.servlets.TestConfig");
    System.setProperties(property);
    // Set Configuration file name to load sample configuration policy
    file.
    property = new Properties(System.getProperties());
    property.put("weblogic.security.jaas.Policy",
    "C:/bea/wlserver6.1/config/mydomain/Test.policy");
    System.setProperties(property);
    loginContext = new LoginContext("TestPolicy", new
    MyCallbackHandler());
    The Test.policy:
    TestPolicy
    test.servlets.TestLoginModule required debug=true;
    And I add "-Djava.security.auth.policy=%WL_HOME%\config\mydomain\Test.policy"
    when I start weblogic server.
    But when I run the code, I got the exception:
    Invalid Configuration Class Name: test.servlets.TestConfig
    java.lang.NullPointerException
    at javax.security.auth.login.LoginContext.loadLoginModule(LoginContext.j
    ava:101)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:54)
    at test.servlets.TestSecure.doPost(TestSecure.java:69)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:2456)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Seems the problem is in my TestConfig.
    I just copy the SampleConfig.java as my TestConfig.java (modified a
    little) and copy the ConfigParser.java (those are in the
    samples\examples\security\jaas\examples\security\jaas)
    Any suggestion???
    BTW, all the necessary classes is in the .war file.
    Thanks in advance.
    Joe
    "Xiao Ling Zhou" <[email protected]> wrote in message news:<[email protected]>...
    Hi Everyone,
    I write the logmodule class, configuration class, Action class, clientclass
    and my policy file my.policy.
    I add the VM parameter when I start weblogic server
    "-Djava.security.auth.policy=D:\bea\wlserver6.1/lib/my.policy"
    But I don't know how to let weblogic server know my configuration class,so
    that the server will create it when my client code create LoginContext
    object.
    Some artical told me that add the configuration class name in java.security
    file, like the following
    login.configuration.provider=mypackage.myConfig
    unfortunately, it don't work :(
    I always got the exception message
    No Configuration Class Name Supplied
    Does anyone kindly tell me how to let the system know my configurationclass
    name?
    Regards,
    xlzhou

  • How to install  weblogic server in linux fedora 7  ...?

    hi.. Experts
    i am new to linux os .i am using fedora 7 version of linux. please tell me,,how to install weblogic server on fedora 7 os. i have to run my servlets , jsp pages. on weblogic server.
    plzz i m not able to do practice ...so please suggest me..
    please Reply...
    thanks a lot to all...

    Yes, they can. They installed in different directories and you have to use different ports.
    AFAIK for HTTP for APEX is either part of the installation (eg. in the Oracle Express Edition) or part of the Oracle Installation CDs. For more information see the Oracle Installation Documentation.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to Install WebLogic Server 9.2 MP3 ?

    Hi,
    How to Install WebLogic Server 9.2 MP3 on Linux?
    and as which user we have to install WebLogic server. Whether we have to install as root user or we have to create different user to install weblogic server?
    Please provide me the document to do the installation.
    Thanks

    Just read through the installation guide: [http://e-docs.bea.com/common/docs92/install/index.html] . Look upward in that tree for all relevant WebLogic documentation.

  • How to integrate C++ server in weblogic

    I have developed a C++ class implementing a kind of server. It
    receives requests from clients, processes the requests (by
    accessing ODBC databases), and returns the results back to the
    client. Then it remains waiting for the next request, never
    finishes.
    Now I am trying to integrate this server into a Weblogic
    environment to take benefit of scalability, availability,
    performance, ...
    I would like to know what are my choices:
    a) I think that servlets are not suitable as I do not want my
    server to finish execution after serving a request. But what
    about servlets + EJBs. Could my server be implemented with a
    combination of both?
    In that case I suppose that I cannot take advantage of the JDBC
    conection pool from my C++ class, can I? ...
    b) I could make a java wrapper for my C++ functions in order to construct an RMI object. I wonder if this is possible.
    c) I could implement my server as a CORBA object. Then the
    weblogic server would have an active IIOP connection pool for
    say 5 or 10 instances of my CORBA object. Do I really need to
    purchase Weblogic Enterprise? Can I do something else with the
    Weblogic Server?
    In that case the ODBC connections would be established at the
    CORBA startup time.
    c) Other?
    Thanks in advance.

    Comments inline...
    David Ruana wrote:
    Eduardo, does your solution require the Weblogic Enterprise product or just the Weblogic Server?No, WLS will not work with WLE until the next point release of WLE.
    Is a C++ ORB the same as a CORBA object?Yes.
    >
    >
    On the other hand, I have wrapped the C++ class by means of JNI so that I have the corresponding java class available. Then the implementation of a RMI server is quite straightforward. I am just beginning with RMI but it seems far more easy that CORBA, isn't it?Yes, the only trouble is that iff your C++ object is colocated with the WLS server, you could take the whole server down iff the C++ code faults. What would also work, without this side effect, is if you wrapped the C++ code in a WLS client and bound the client side RMI server into the WLS server.
    As I see it, the main advantage of this choice would be that the Weblogic Enterprise product would not be required (since Weblogic Server itself supports calling RMI from servlets, for example).
    Please some further advise on this issue would be appreciated.
    Thanks. David
    Eduardo Ceballos <[email protected]> wrote:
    Host your C++ server on a C++ ORB. BInd a reference to it into the COS Naming/WLS JNDI tree. Delegate calls from (into) the C++ object using WLS support for IIOP. This makes it so that the native code does not take down your server when (if) it goes south.
    David Ruana wrote:
    I have developed a C++ class implementing a kind of server. It
    receives requests from clients, processes the requests (by
    accessing ODBC databases), and returns the results back to the
    client. Then it remains waiting for the next request, never
    finishes.
    Now I am trying to integrate this server into a Weblogic
    environment to take benefit of scalability, availability,
    performance, ...
    I would like to know what are my choices:
    a) I think that servlets are not suitable as I do not want my
    server to finish execution after serving a request. But what
    about servlets + EJBs. Could my server be implemented with a
    combination of both?
    In that case I suppose that I cannot take advantage of the JDBC
    conection pool from my C++ class, can I? ...
    b) I could make a java wrapper for my C++ functions in order to construct an RMI object. I wonder if this is possible.
    c) I could implement my server as a CORBA object. Then the
    weblogic server would have an active IIOP connection pool for
    say 5 or 10 instances of my CORBA object. Do I really need to
    purchase Weblogic Enterprise? Can I do something else with the
    Weblogic Server?
    In that case the ODBC connections would be established at the
    CORBA startup time.
    c) Other?
    Thanks in advance.

  • How to change WebLogic Server username and password ?

    Hi,
    As per this url Modify users . It says In the left pane, select Security Realms. But I did not find the SECURITY REALMS, I mean where is it located ?. Besides The following page http://192.168.100.11:7001/index.jsp also get open. Also the WEBLOGIC server login page opens as well here is the url  http://192.168.100.11:7001/console/login/LoginForm.jsp
    but when I type the given password it does not login.   It gives the following messages
    Authentication Denied
    The username or password has been refused by WebLogic Server. Please try again.
    Please help

    It says following even after giving the correct one. In the left pane, select Security Realms. Where is Security Realms is located ? How to get there ? so that i can change the password again as mention in this url Modify users
    Authentication Denied
    The username or password has been refused by WebLogic Server. Please try again.

  • How to find weblogic Server memory for particular user

    In a weblogic server how can i get the information for each user approximately
    it occupying "x" size of memory...is there any command..so that based on number
    of users i can increse my memory and harddisk space.

    Hi,
    Following sql will help you find the responsibilities associated with the users in oracle applications.
    SELECT frt.RESPONSIBILITY_NAME, furg.end_date
    FROM
    fnd_user_resp_groups furg,
    FND_RESPONSIBILITY fr,
    fnd_responsibility_tl frt,
    fnd_user fu
    WHERE fu.user_name = ‘&&username’
    AND fu.user_id = furg.user_id
    AND furg.responsibility_id = fr.RESPONSIBILITY_ID
    AND frt.responsibility_id = fr.RESPONSIBILITY_ID
    ORDER BY 1
    Cheers...

  • How to use Weblogic Server 6.1 build.xml with ant

    Hi Java's
    I have downloaded the latest version of BEA Weblogic server 6.1,they have changed the build.cmd to build.xml for compiling and building the ejb applications.they are telling that we have use $ant to run the build.xml but i couldn't able to do that.i'm getting "command not found error"..i'm using winnt.please help me how to use $ ant.Is it a seperate exe or batch file that i have to download ?if so where to download it.how to use it.please help.
    Regards
    Balaji

    To use it after installation, set your path to your
    <ant_installation_dir>\bin, then navigate to the diectory containing the build.xml. then follow the instructions in the weblogic documentation for running ant.

  • How to run weblogic server in backgroud?

    I just installed weblogic60sp1 on Aix.
    how can i start weblogic server in backgroud?
    Ron

    Hi Kartheek,
    If you're new to running WebLogic as a Windows service, you'll probably find it a bit tricky at first. I found troubleshooting problems, especially start-up and process-crashes, awkward at first. If you have time, you may want to check these out:
    [ http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html|http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html]
    [http://e-docs.bea.com/wls/docs81/adminguide/winservice.html|http://e-docs.bea.com/wls/docs81/adminguide/winservice.html]
    -Jones

  • How to monitor WebLogic Server when enable the Administration Port

    It works fine when use Listenport 7001, but when enable the Administration Port(9002), it does not work.
    Maybe I should do something to set the system environment property, but how?
    help~
    Sorry for my poor English~
    Thanks~

    HI,
    If the admin port is enabled then you have to use these parameters to run any scripts
    -Dweblogic.security.SSL.ignoreHostnameVerification=true
    -Dweblogic.security.TrustKeyStore=DemoTrust
    -The you can use Admin URL: t3s://localhost:9002 with Admin Port and Secure Protocol.
    Example:
    java -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dweblogic.security.TrustKeyStore=DemoTrust  weblogic.WLST application_status.py
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Connecting to t3s://localhost:9002 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'Domain_7001'.
    .Regards,
    Ravish Mody
    http://middlewaremagic.com/weblogic
    Come, Join Us and Experience The Magic…

  • Want to integrate weblogic server with eclipse

    Hi,
    I am trying to integrate weblogic with eclipse. so that i can start the weblogic server from my eclipse. can you please give me a point to a location from where i can download the plugin.
    And also i want my eclipse to support the j2ee development. what can i do for this. I want my jsps and servelets should work like eclipse default behavior, that is listing the api methods and highlighting the java code.
    Please help me by providing a point. I searched with google for considerable time, as i couldn't find out, requesting your help
    Thanks

    Seems Eclipse Galileo doesn't have support for WebLogic 10.3 rather it supports only up to 10.0 of WebLogic Server. Thanks.

  • How to bounce Weblogic Server

    I am running a WebAPP on WL 10.3.2. I want to Applciation changes to be get effected without restarting the server. I know bouncing the server helps. how do I bounce server on Linux platform.
    Version: WL 10.3.2

    Bouncing means restarting.
    Though Weblogic supports hot deployment it is not recommended. If changes are on just jsp's then it is fine. Class level changes will not be guarenteed without a bounce.
    Venkat

  • How to add "Weblogic Server Adapter" from "download additional server adapter" list.

    "Weblogic Server Adapter" is not shown in "download additional server adapter" list in STS 3.6. How to add It.

    George, What deployment do you have this associated with?
    - D.J.

  • How to set Weblogic Server to NetBeans IDE

    Hi iam trying to add the weblogic server to the Netbeans IDE.
    but there is no option i found to add weblogic
    It is allowing to add
    SunJavaApplicationServer and Tomcat Servers which are bundled with the NetBeans IDE when i downloaded.
    Is it possible to add the Weblogic to NetBeans???
    if so how??

    i do not find any down loads regarding this plug-ins..
    can u pls give the correct url to down load the plug in .

Maybe you are looking for