RAD and websphere 6.0

Hi,
I tried to configure websphere from the prospective of IBM RAD 6.0 .
then I started the server. My server status is showing starting.........
I check in console but there is nothing in the console.After all server status is not showing like 'started'.
Could you please give me the solution with full step.
Thanks
Kind regards,
Raj
Message was edited by:
rajnishsunjava

Yaar, we have no idea what the h�ll you have done to configure a web server in RAD.
Are you using the built-in WAS 6 test server?
Are you using the built-in Tomcat test server?
Did you install the appropriate test server, if not?
Is there a web or enterprise app. associated with the server?
Are there multiple console views and are you looking at the right one?

Similar Messages

  • FileNotFoundException in RAD using WebSphere

    Hi,
    I am trying to parse a XML file using DOM parser using RAD as IDE using WebSphere server.
    But when i give the relative path of the file, it tries to search it in the installation directory of RAD and throws file not found exception.
    Please provide a solution for this.
    Thx

    RTFM or STFW

  • Crystal Report 9.0 and Websphere

    hi can any body give me some steps regarding
    integration of crystal report and websphere
    i have already search this forum and i got lot many topics
    regarding this but all were using cyrstal report version 8 and 8.5
    which requires mandatory using IIS server which i dont wont to use
    i want a pure websphere and 9.0 version communication
    i had read the docs whihc states that 9.0 supports but i dont know how?
    can any bosy help regarding this

    here's the report code
    <%@ page contentType="text/html; charset=utf-8" %>
    <%@ page session="true"%>
    <%@ page import="javax.servlet.jsp.*"%>
    <%@ page import="java.util.Locale"%>
    <%@ page import="java.net.*" %>
    <%@ page import="java.text.DateFormat" %>
    <%@ page import="javax.servlet.jsp.JspWriter"%>
    <%@ page import="javax.servlet.http.HttpServletRequest" %>
    <%@ page import="javax.servlet.http.HttpSession" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.*" %>
    <%@ page import="com.crystaldecisions.report.web.viewer.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.exportoptions.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.definition.*" %>
    <!--Code Starts here ........... -->
    <%
    System.out.println("$$$$$$$$$$$$$$$$$$$$$$$$");
    String reportName=(String)request.getAttribute("ReportName");
    String requestNumber=(String)request.getAttribute("RequestNumber");
    String requestNumber="RPT_112";
    System.out.println("********************");
    ParameterField newParameter = new ParameterField();
    ParameterField newField = null;
    System.out.println("@@@@@@@@@@@@@@@@@@@@@@@@@");
    ParameterFieldDiscreteValue newValue = null;
    System.out.println("^^^^^^^^^^^^^^^^^^^^^^^^^^");
    try{
    ReportClientDocument rptClientDoc = new ReportClientDocument();
    //System.out.println("11111111111111111111111111");
    /* Change DCWKS0241AB to the name of Machine where RAS is installed for ex like DCWKS0237 */
    rptClientDoc.setReportAppServer("DCWKS0241AB");
    System.out.println("22222222222222222222222222");
    /* Change this E:\\Crystal\\Reports\\ to the path where your reports are kept */
    String reportPath="E:\\RAS\\Reports\\Percentages.rpt";
    rptClientDoc.open (reportPath, 0);
    rptClientDoc.getDatabaseController().logon("bbva","bbva");
    System.out.println("After Creating the Client Document on the Report");
    /* folowing Code remove any default value to the report and append the request number in the input parameter*/
    newField = (ParameterField)rptClientDoc.getDataDefinition().getParameterFields().getField(0);
    newField.copyTo(newParameter,true);
    newParameter.getCurrentValues().removeAllElements();
    newValue=new ParameterFieldDiscreteValue();
    newValue.setValue(requestNumber);
    newParameter.getCurrentValues().add(newValue);
    /* Just for Testing Purpose
    Values v=newParameter.getCurrentValues();
    IValue iv=v.getValue(0);
    System.out.println("---> "+iv.computeText());
    rptClientDoc.getDataDefController().getParameterFieldController().modify(newField, newParameter);
    /* Specifying the Format */
    PDFExportFormatOptions PDFExpOpts = new PDFExportFormatOptions();
    //Create the ExportOptions object, set the PDF export options, and set the format type to PDF.
    ExportOptions exOpts = new ExportOptions();
    exOpts.setFormatOptions(PDFExpOpts);
    exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._PDF));
    System.out.println("After Setting the format");
    System.out.println("Before getting source");
    //Create the ReportExportControl object and set the report source to the report that will be exported to PDF.
    ReportExportControl expViewer = new ReportExportControl();
    System.out.println("Before getting source");
    expViewer.setReportSource (rptClientDoc.getReportSource());
    System.out.println("3");
    //Set the export options to the ReportExportControl object.
    expViewer.setExportOptions(exOpts);
    System.out.println("After Setting the Export Options to the ReportExportControl object.");
    //Set the exported report to display in the browser.
    //The setExportAsAttachment method is set to false by default. If it is set to true the user will be presented with the File Download dialog box to save the exported report to disk.
    expViewer.setExportAsAttachment(false);
    //Export and view the report.
    expViewer.processHttpRequest(request, response, (getServletConfig()).getServletContext(),null);
    System.out.println("After Exporting and viewing the report back in the Browser.");
    //Destroy the control.
    expViewer.dispose();
    catch (Exception e)
    out.write("Error: Open" + e.toString() + "\n");
    %>

  • EJB communication between weblogic and websphere

    Hello:
    I have weblogic 7.1 instance running in machine A and websphere running in machine B. I want to make a call to the ejb deployed from weblogic to websphere. Any experience in this would be very helpful. Or pl. post the procedure.
    Thx in advance.

    I don't think that there is any magic here, although I've never tried it.
    All you need is the compiled EJBHome and EJBObject interfaces in the
    classpath of the calling EJB, get an InitialContext in the JNDI namespace of
    the target EJB container using the name of the JNDI InitialContext Factory,
    do a lookup on the bean making sure to do a PortableRemoteObject.narrow when
    you are casting the Home stub with the vendor specific version of
    PortableRemoteObject(and that may be the real trick), call the appropriate
    create method, and you are rolling.
    I guess the question becomes how to make sure that when you are calling
    PortableRemoteObject.narrow on the Home stub, that you get the vendor
    specific version for the EJB container and JNDI namespace from which you are
    doing the lookup.
    I guess the answer is, I'm guessing. Have you tried it?
    bill
    "nebs om" <[email protected]> wrote in message
    news:30035468.1103738722864.JavaMail.root@jserv5...
    Hello:
    I have weblogic 7.1 instance running in machine A and websphere runningin machine B. I want to make a call to the ejb deployed from weblogic to
    websphere. Any experience in this would be very helpful. Or pl. post the
    procedure.
    >
    Thx in advance.

  • Help me for Configuration on Oracle AS 10g and WebSphere MQ

    If there someone can share there experience on configuration on Oracle AS 10g and WebSphere MQ. Is there some quite easy ways or tools to do this?
    Welcome any advise!

    Hi,
    The only thing I know of is the documentation to configure the resource provider and I think there is an example on Technet:
    "Declaring an IBM WebSphere MQ Resource Provider Reference"
    [http://download.oracle.com/docs/cd/B32110_01/web.1013/b28958/jms.htm#i1086751|http://download.oracle.com/docs/cd/B32110_01/web.1013/b28958/jms.htm#i1086751]
    and
    [http://www.oracle.com/technology/tech/java/oc4j/1013/how_to/index.html|http://www.oracle.com/technology/tech/java/oc4j/1013/how_to/index.html]
    I think the important thing is to note step 3 of the documentation,
    Add to J2EE_HOME/applib any JAR files required by a Websphere MQ JMS client
    as described in the IBM documentation.
    I assume this comes from an MQ library that should be installed in OC4J.
    If you use applib you must restart OC4J before it will be seen also.
    I hope this can guide you in the right path.
    Sincerely,
    Steff

  • SAP XI and WebSphere Application Server v6

    Hello,
    has anyone made integration projects between SAP XI and WebSphere App Server v6 using JMS?
    Thanks for any feedback
    Jens

    WebSphere is not a Sun Microsystems product.
    It does not make sense to ask questions here, about a third party product,
    particularly when that third party is such a large organization.
    Can you describe what guidance you have received from IBM ?
    They would be the best source of all nuances on their own product.
    They created it.
    They've undoubedly installed it once or twice.
    They are expected to be prepared to answer questions about it.

  • [svn] 2773: Update excludes list for JBoss and WebSphere.

    Revision: 2773
    Author: [email protected]
    Date: 2008-08-07 04:35:10 -0700 (Thu, 07 Aug 2008)
    Log Message:
    Update excludes list for JBoss and WebSphere.
    Modified Paths:
    blazeds/trunk/qa/features/excludes.properties

    JGroups is an open source project that allows processes to send messages to one another. LiveCycle data services uses it for its messaging implementation (basically it configures the server to multicast messages to all the listening clients...even in a clustered environment across different LAN/WAN).
    In most cases the default configuration will work fine, the problem is that if you are running a firewall on the server (or your local machine...i.e. windows firewall) the ports that JGroups uses for its communications can be blocked. In a local environment its easy enough to disable windows firewall and bounce your server to get things working.
    In a production environment you need to open the ports that JGroups is using. These settings are in the Global Administration settings (as mentioned by WorkspaceUser above). If you export it and look at the JChannelConnectionProperties you'll see the ports its using and you can set your firewall to allow communication to those ports.
    Bryan

  • Weblogic and Websphere intergration

    Hi,
    I would like to make a call from EJB bean deploeyd on WLS8.1 to another
    bean deployed on Websphere 6.0 but I have no idea how to do that.
    When I do sth like that in EJB in WLS:
    InitialContext tx = new InitialContext();
    Object obj =
    (Object)tx.lookup("corbaname:iiop:localhost:2809#comarch/test/ejb/BasicCalculator");
    I get the following exception:
    javax.naming.NameNotFoundException: Exception in lookup.:
    `comarch/test/ejb/Basi
    cCalculator' could not be found. Root exception is
    org.omg.CosNaming.Nami
    ngContextPackage.NotFound:
    IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
    at
    org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHe
    lper.java:72)
    at
    org.omg.CosNaming._NamingContextStub.resolve(_NamingContextStub.java:
    251)
    at
    weblogic.corba.j2ee.naming.ContextImpl.lookup(ContextImpl.java:187)
    at
    weblogic.corba.j2ee.naming.ContextImpl.lookup(ContextImpl.java:174)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at examples.HelloBean.hello(HelloBean.java:71)
    BasicCalculator bean is deployed on websphere and websphere runs on
    localhost.
    What should i do to get it running?
    Any help appreciated.

    looser0 <[email protected]> writes:
    BasicCalculator bean is deployed on websphere and websphere runs on
    localhost.
    What should i do to get it running?
    Any help appreciated.This definitely works but there have been several patches to both
    products to support things well. First of all check what name you
    should actually use for websphere - I have a feeling that it has some
    bizarre prefix on all of its names. Next make sure you are running
    with WLS 8.1sp4. I don't know what version of WebSphere 6.0 you need -
    I know there were fixes in WAS 5.1.3.
    andy
    --

  • Recent Kodo versions and WebSphere 4.0

    Hi,
    we may have to use WebSphere 4.0 with Kodo until the IT infrastructure
    department supports the latest version WebSphere 5.0.
    Is anyone still developing with Kodo and WebSphere 4.0? Can I use Kodo
    2.5 / 3.0 with the 'old' version of WebSphere?
    Thanks a lot!
    Yours,
    Carsten

    Carsten-
    Our only feedback is that Kodo has not been tested with Websphere
    versions before 5.0.
    Note that you can always just Kodo directly: the only hiccup might be in
    the automatic global transaction synchronization. As long as Websphere
    4.0 provides a JTA-compliant TransactionManager, though, you might be
    able to solve any problems you see by writing a custom ManagedRuntime
    implementation.
    I'm sure the rest of the community will be interested in hearing the
    results of your tests.
    In article <bn38qa$d1i$[email protected]>, Carsten Jahn wrote:
    Hi,
    we may have to use WebSphere 4.0 with Kodo until the IT infrastructure
    department supports the latest version WebSphere 5.0.
    Is anyone still developing with Kodo and WebSphere 4.0? Can I use Kodo
    2.5 / 3.0 with the 'old' version of WebSphere?
    Thanks a lot!
    Yours,
    Carsten
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Weblogic and websphere colocated?

    Has anyone ever had any experience running weblogic and websphere on the same machine? If so, what were your issues?
    Thanks in advance.

    Web sphere has a wide robust features which weblogic lacks some. Like the load balancing and admin console, clustering .
    In Weblogic In many cases, code for applications deployed on WebLogic Server is arbitrarily structured and depends on the build process to make sense of it all. The implication of this is that existing code organization will very likely have to be changed as part of the migration effort. This may be very difficult (or even impossible) to accomplish while maintaining links to your code's history. Some organizations choose simply to archive their history and start fresh.
    In WebSphere, Packaged with each module is an XML deployment descriptor that describes the organization of the components in the module and how they are configured at run time. hence applications can be migrated easily.

  • Weblogic and Websphere IIS plugin coexistence

    Hi Folks,
    I have a customer who is planning to migrate part of their webapps from websphere to weblogic, however they would like to share the same IIS webfarm for the existing appservers farms ... I wonder if anyone know how the appservers plugins will behave if I have both BEA ISSProxy and IBM WebSphere IIS plugin on the same server ... anyone can share experience on this? Is it even supported?
    BTW ... Weblogic is 8.1SP4 and WebSphere is 5.1 ...
    Thanks,
    Juan Pablo Chen

    Sure.. why wouldn't it be?
    If you are using 1 IIS instance, which I am assuming you are, just make sure
    you load the iisproxy.dll in high isolation.
    Regards,
    Eric
    "Alan Bub" <[email protected]> wrote in message
    news:[email protected]..
    >
    I have a requirement that I run two weblogic servers on the same box. Theserver
    run the same applications except that they have different port numbers. Iwould
    like to run these both through a single IIS server. Is this possible?
    Thanks
    Alan

  • Weblogic and Websphere communication!!

    Hi Friends,
    I have an EJB HelloWorld deployed on both servers(Weblogic and Websphere) and these beens are accessible easily from their respective client servlets, which is the easy part.
    Now what I want to try is access the bean's methods on Weblogic server from a bean on Websphere server and vice versa. This is where I want some ideas from the gurus please.
    e.g. hello() method of the EJB (HelloWeblogic) in Weblogic server prints the message "Hello from Weblogic" and the hello() method of the EJB (HelloWebsphere) in Websphere server prints the message "Hello from Websphere". Now I want to know what do I need to do so that I am able to execute hello() of the HelloWeblogic EJB, from HelloWebsphere EJB and vice versa.
    I am also new to EJB, but I think I am making my way slowly.
    Any help/ideas/code samples would be really appreciated.
    Please feel free to ask any questions.
    Regards
    Rajeev

    As far as I can see the standard way would be to lookup
    the ejbs-home in the others JNDI context. After that proceed
    as you are used to.
    Troubles (or some unlikely behaviours) could occur if your beans are
    served by the same interfaces.
    But Dynamic Stub loading via RMI should prevent you from any problems with non existing stub/skels, etc.
    You could only run into problems when stub/skel-implementation-classes where named equally (by full qualifier) in both app-servers. This should never happen. (weblogic.SomeWLStubClass != ...websphere...SomeStubClass)
    Read RMI-Specification for further details on dynamic class-loading in
    the RMI process:
    http://java.sun.com/products/jdk/1.1/docs/guide/rmi/spec/rmi-arch.doc.html
    or j2ee-tutorial on how to resolve JNDI-Contexts.
    Hope it helps!
    Alexander Sack

  • Weblogic and websphere

    hi
    could anybody tell what is the basic difference between weblogic and websphere.
    thanks
    suru

    Web sphere has a wide robust features which weblogic lacks some. Like the load balancing and admin console, clustering .
    In Weblogic In many cases, code for applications deployed on WebLogic Server is arbitrarily structured and depends on the build process to make sense of it all. The implication of this is that existing code organization will very likely have to be changed as part of the migration effort. This may be very difficult (or even impossible) to accomplish while maintaining links to your code's history. Some organizations choose simply to archive their history and start fresh.
    In WebSphere, Packaged with each module is an XML deployment descriptor that describes the organization of the components in the module and how they are configured at run time. hence applications can be migrated easily.

  • For oracle database and websphere on LINUX

    Hi
    All,
    I have installled Oracle database 10.2.0.3 on AIX server and Application will be hosted on websphere on LINUX.
    Now I don't know what are the things require to connect with oracle database from websphere application on LINUX.. for example .. connection string , driver etc..
    any help will be appreciated.
    Thanks,
    Vishal

    Already answered at the dup post --> Re: For Oracle Database and WEbsphere
    ~ Madrid
    http://hrivera99.blogspot.com

  • Best application servers: weblogiv and websphere?

    Hi I have heard that if I want to do JSP on NT with IIS the most widely adopted middleware is weblogic and websphere is this true? Which is the most expensive and which is the easiest for a beginner to get to grips with?

    If you are a beginner with JSPs and Servlets, but want to work with the J2EE component model strictly for developer purpose, have a look at Reisen, JBoss, JRun (dev edition), and Tomcat. My preferred container is Tomcat but running with Apache rather than IIS. I've spent one too many times reimaging drives after virus fiascos. If you want to get grips with the two mentioned, check their web sites... the documentation is quite vast.

Maybe you are looking for

  • ADF Faces useWindow attribute

    I am trying to open a Dialog window using an af:CommandLink. It is not opening a new window, only navigating to the page as normal. Is there anything obvious I am doing wrong? I have also seen this syntax useDialog="true" The IDE is rejecting this as

  • How do I get my credit card info off my account

    I can't download any apps from App Store because it tells me there was a problem with the last purchase I mad.the credit card I have on fill is no longer active.How do I get the credit card off so I can download apps and update my app.PLEASE HELP

  • DVD-R burn error "medium write error"

    Just received a refurbished iMac today. Doing a basic Disc Copy from Disk Utility and burn one disc OK. The second disc ejects half way through burn and "medium write error" pops up. All the disc I pull out are blazing hot as well. I don't know if th

  • HT3302 I dropped my iPhone 4S in the bath will I get an exchange

    I dropped my iPhone in the bath will I be able to exchange

  • How can I make a backup of all my Emails?

    I have to make a backup of my Emails and files etc. (DDS) in Mozilla Thunderbird in connection with moving my Email from an old account to a new account. Can anyone please advise how to do this?