Jboss v Application Server

Hi,
Our company is currently looking at creating a large java web based system that will have users in the 100's-1000's. I have experience with Tomcat (about 2 years ago), but since then I have been involved in Oracle EBusiness suite and Oracle AS and Database.
I have recently noticed the JBoss software Application server and would like to know if anybody out there has had experience with both systems and what the benifits of Oracle Application Server over Jboss?
I am experience with 10gAS and would prefer to develop on this system, but have to present an appropriate business case in order to justify not using JBoss (which is hard given the initial outlay is $0 regardless of size of deployment.
Thanks in advance.
Ben

Be careful about how you assess "free." If you can afford to run JBoss without support from them, then it is mostly free. But if you purchase support and you want the core app server with Hibernate, for example, it will be difficult for you to price in under $30K per year.
I heard from a colleague last week that they purchased a "small" OAS license that includes OAS and Toplink (roughly equal to the above JBoss config) and it was only $6K-$7K or so. As my colleague correctly stated, "it will take a long time for those two lines to cross." :)
Vaughn

Similar Messages

  • Where can I find AccessPort for JBoss J2EE application server?

    OIM version 10.1.4
    Till now I only see integration with OC4J and weblogic.
    Thanks in advance.

    I think what you are referring to as OIM is actually OAM (Oracle Access Manager) formerly called Core id.
    OIM is Oracle identity manager formerly known as Xellerate.

  • How to check the jms Queue is persistance or not in jboss application serve

    hi,
    i am using jboss as application server for jms and database is postgres.For an message store i am using the "*database store*".while starting the jms adding queue it is adding the messages to the jms queue after starting the jms receiver the datas are received sucessfully....afte some 10 to 13 hours i am getting java.lang.OutOfMemoryError in jms..so i checked the postgres table space.Table space is increased gradually...I think that the after receiver received that message the messages are not deleted in the database.how to debugg the the secnario in jboss as wel as in database.....how to chaeck the queue is in persistance or not persistance...
    regards.
    naresh govindaswamy.

    Send a request to the server somehow, so that the server is aware of this. AJAX may be very useful in this if you want to do this asynchronously.
    its very urgently This is irrelevant information. That's your problem. We don't care less or more. Some users here will even refuse to help you if you're putting pressure.

  • JBoss 4 to Sun Application Server...where to start

    Hi there...
    I'm charged with making sure my company's product, which has mostly been running on JBoss, works w/ Sun Application Server.
    I've been trying to use the Migration Tool with poor results...I know some of it is because it's for JBoss 3 and not 4....
    giving it the entire .EAR for our product tells me that it doesn't handle webservices...diving into the EAR's JAR containing our services and removing webservices.xml gives the same result of various permutations of putting in source code / xml leads , namely it runs and then freezes with
    DefaultValidationEventHandler: [FATAL_ERROR]: Premature end of file.
    Location:
    DefaultValidationEventHandler: [ERROR]: Unexpected element {}:ejb-local-ref
    Location:
    back on the console I launched the UI from
    To possibly oversimplify, I copied out some of the most relevant .xml we have,
    ejb-jar.xml
    jboss.xml
    jbosscmp-jdbc.xml
    jboss-web.xml
    web.xml
    and put them in a single directory...now the Migration tool runs, leaves most of the files unchanged, and for our ejb-jar.xml it fails, and says
    Unknown error.
    EjbJar is Null
    Admittedly our ejb-jar.xml is handcrafted and maybe suspect, but still.
    So I guess right now I'm not too optimistic about this tool.
    Some of the problem is my understanding of what all goes in an EAR in terms of DD is weak. I'm trying to smarten up, but haven't found a good description of "these are the typical DD files for Sun Application Server", with examples or precise descriptions of the contents...and the migration tool doesn't get to the point where it's making some of the files i expected based on
    http://java.sun.com/j2ee/tools/migration/doc/JBOSS3.0_S1AS7.html
    (for example sun-cmp-mappings.xml doesn't appear anywhere in the AppServer\docs directory... )
    Any pointers or advice appreciated...

    There is an article, while it is for Application Server 7, it still could be useful:
    http://developers.sun.com/prodtech/javatools/jsenterprise/reference/docs/jse7/jse7_jboss_plugin.html

  • BPEL Server installation on JBOSS application Server on SUN SOLARIS

    I have a question about Oracle BPEL installation. For our project exists the requirement, to install BPEL Server on SUN SOLARIS, whereby the appropriate Version of Application server JBOSS already exists and it should be used.
    The version of the Oracle BPEL server for JBOSS, which we found on the Download side, is made available only with JBOSS (version 3.2.6) in a Package.
    During the BPEL server installation this bound JBOSS server version is installed automatically, without giving selection. Is there a BPEL installation for JBOSS on SUN-SOLARIS, which can be installed at the already existing JBOSS server?

    Hi There,
    Dis you get any good responces to your question ?
    Thanks
    [email protected]

  • Oracle datasource lookup in JBOSS application server

    Hi friends
    i have the below problem while configuring the datasource in JBOSS for oracle pls any body can help me out..........
    i just want to create a data source for oracle in JBOSS 3.2.5 application server and i want to access that datasource from my session bean while accessing it cant finding the JNDI name of the datasource my oracle-ds.xml code is like as below
    <local-tx-datasources>
    <jndi-name>java:OracleDS</jndi-name>
    <use-java-context>false</use-java-context>
    <connection-url>jdbc:oracle:thin:@localhost:1521:EPS</connection-url>
    <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
    <user-name>system</user-name>
    manager
    </local-tx-datasources> my session bean method is like as below
    public void businessMethod1(){
    try{
    javax.naming.Context ctx = new javax.naming.InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("OracleDS");
    java.sql.Connection con = ds.getConnection();
    java.sql.PreparedStatement ps = con.prepareStatement("select * from employee");
    java.sql.ResultSet rs = ps.executeQuery();
    while(rs.next()){
    System.out.println("Employee ID "+rs.getInt("empid")+"Employee Name "+rs.getString("ename")+"Employee Designation "+rs.getString("designation"));
    }catch(Exception e){
    e.printStackTrace();
    } but the error i am getting wasl like as below
    14:14:14,039 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
    14:14:14,164 INFO [ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
    14:14:14,164 INFO [JkMain] Jk running ID=0 time=0/47 config=null
    14:15:00,883 INFO [STDOUT] javax.naming.NameNotFoundException: OracleDS not bound
    14:15:00,883 INFO [STDOUT] at org.jnp.server.NamingServer.getBinding(NamingServer.java:495)
    14:15:00,883 INFO [STDOUT] at org.jnp.server.NamingServer.getBinding(NamingServer.java:503)
    14:15:00,883 INFO [STDOUT] at org.jnp.server.NamingServer.getObject(NamingServer.java:509)
    14:15:00,883 INFO [STDOUT] at org.jnp.server.NamingServer.lookup(NamingServer.java:282)
    14:15:00,883 INFO [STDOUT] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:530)
    14:15:00,883 INFO [STDOUT] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:509)
    14:15:00,883 INFO [STDOUT] at javax.naming.InitialContext.lookup(InitialContext.java:347)
    14:15:00,883 INFO [STDOUT] at com.ness.training.ejb.FirstSessionBean.businessMethod1(FirstSessionBean.java:13)
    14:15:00,883 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    14:15:00,883 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    14:15:00,883 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    14:15:00,883 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:324)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.j
    ava:683)
    14:15:00,883 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterce
    ptor.java:185)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterc
    eptor.java:72)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:1
    22)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:331)
    14:15:00,883 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:723)
    14:15:00,883 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    14:15:00,883 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    14:15:00,883 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    14:15:00,883 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:324)
    14:15:00,883 INFO [STDOUT] at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
    14:15:00,883 INFO [STDOUT] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
    14:15:00,883 INFO [STDOUT] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
    14:15:00,883 INFO [STDOUT] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    14:15:00,883 INFO [STDOUT] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
    14:15:00,883 INFO [STDOUT] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
    14:15:00,883 INFO [STDOUT] at org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:360)
    14:15:00,883 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    14:15:00,883 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    14:15:00,883 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    14:15:00,883 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:324)
    14:15:00,883 INFO [STDOUT] at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    14:15:00,883 INFO [STDOUT] at sun.rmi.transport.Transport$1.run(Transport.java:148)
    14:15:00,883 INFO [STDOUT] at java.security.AccessController.doPrivileged(Native Method)
    14:15:00,883 INFO [STDOUT] at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    14:15:00,883 INFO [STDOUT] at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    14:15:00,883 INFO [STDOUT] at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    14:15:00,883 INFO [STDOUT] at java.lang.Thread.run(Thread.java:536)

    make the changes like this.
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("java:/OracleDS");
    Regards
    vanan

  • Use of JCo in JBoss Application Server

    Hi All
    does anyone know if the SAP JCo drivers are supported in other Application Servers (e.g. JBoss 6) ?
    Thanks a lot in advance

    The short answer is yes.
    The longer answer:
    As I am aware of, SAP does not guarantee that they work in application servers other than SAP WebAS per se, but I know that they work at least in Tomcat and Websphere. JCo does not include dependencies on the application server architecture and can also run locally with a Java application on your machine.
    As JCo involves native code, there is a limitation on what Java/OS platform it is supported. For the current JCo 3.0, you may refer to SAP Note 1077727 for compatibility with your Java version and Operating System platform you run with JBoss.
    Edited by: Christian Wunderlich on Jul 14, 2011 6:42 PM [minor spelling fixes]

  • Sieble Self Service on Other J2EE Application Server like JBoss

    Hi All,
    I am new to Siebel and Self Service. I just want to know If I can deploy Sieble Self Service Application on JBoss or on any other OpenSource Application Server. My client do want not to buy Oracle Application Server. Any help on this would be higly appriciated.
    I have another question: How can I develop my own portlet and integrate into Siebel Self Service. Do we have any APIs or specification or any information so that I can start wrting my portlets for Siebel Self Service.
    Thanks in advance
    Ram Sharma
    Edited by: user9353619 on 18-Mar-2010 02:18

    As far as supported platform is asked, you shoud refer to the latest version of the Siebel System Requirements and Supported Platforms for Self-Service Applications aka SRSP .Here is the section http://download.oracle.com/docs/cd/E11886_01/V8/CORE/SRSP_811_SSA/SRSP_81_Supported_Plats7.html#wp1018023 and the only supported platform seems Oracle Application Server 10.1.3.3.
    Not sure if the server is not part of the overall licence package, worth checking with your Sales Rep.
    Best Regards
    EvtLoglvl

  • Deploy XI java Proxy inside JBoss application server

    Hello,
    Can I deploy XI java Proxy inside JBoss application server
    Appreciate you response.
    Thanks

    Hi,
    <b>Yes</b>
    You can deploy your Java Proxy inside JBoss Server (in any Application server). But this will be possible only for Client Java Proxy and not for Server Java Proxy.
    I have succesfully completed those scenarios.
    After generating Client Java proxy, create EJB application with generated Java classes for proxies and deploy it in JBoss.
    Then you can access that EJB to pass inputs either in standalone application or some JSP.
    Regards,
    Uma

  • How to deploy OHW Demo ear file in Jboss application Server.

    Hi All,
    I am quite new to the Oracle Help. I need to integrate Oracle Help in my j2ee application . I am using Jboss/tomcat aplication server for my development environment .
    Can any body guide me How I can go ahead ??
    and also pls tell me what is the difference between Java Help and Oracle Help

    I do not have any experience with Help or JBoss, but see if the links here can help - http://www.oracle.com/technetwork/topics/index-083946.html
    HTH
    Srini

  • Availability of Application Server Control Console in JBoss AS Mode?

    Hello
    After doing an JBoss AS Mode installation the Application Server Control Console does not seem to be available (no connection on port 8888). Is this "works as designed" and are we forced to use the JBoss JMX console for configuration purposes (not as nice as the OCMS console :-)) or is there a way to activate/access the Oracle console in this setting, too? We didn't find much details about the behaviour of OCMS in the JBoss mode in the documentation :-/
    Bye...Tim

    Hi,
    Application Server Control is only available when the Oracle Application Server is installed. For JBoss, you will need to use the built in JMX Console to manage OCMS. Unfortunatly, there's no way to enable AS Control in JBoss.
    Adam

  • Adding JBoss Application Server for Monitoring

    How do you add a JBoss Application Server for monitoring? Is there a way to add it silently like silent install of the host target?

    It is a manual process, you need to launch Jboss discover UI using Targets > Middlware page.
    Also, please use JVMD for more detailed analysis.
    You need to specify JARs based on the version of the JBoss -
    Note - Please check the support site for exact certified versions of JBoss.
    JBoss 4:
    dom4j.jar jboss-management.jar jnp-client.jar
    jbossall-client.jar jboss-client.jar
    JBoss 5:
    concurrent.jar jboss-javaee.jar jboss-serialization.jar
    dom4j.jar jboss-jsr77-client.jar jbosssx-as-client.jar
    jbossall-client.jar jboss-logging-spi.jar jbosssx-client.jar
    jboss-client.jar jboss-management.jar jnp-client.jar
    jboss-common-core.jar jboss-remoting.jar jboss-integration.jar jboss-security-spi.jar
    JBoss 6:
    concurrent.jar jboss-management.jar
    dom4j.jar jboss-remoting.jar
    jbossall-client.jar jboss-security-spi.jar
    jboss-client.jar jboss-serialization.jar
    jboss-common-core.jar jbosssx-as-client.jar
    jboss-ejb-api_3.1_spec.jar jbosssx-client.jar
    jboss-integration.jar jboss-transaction-api_1.1_spec.jar
    jboss-jsr77-client.jar jnp-client.jar
    jboss-logging.jar
    If you plan to use JVMD then you should select Remote Agent for discovery/monitoring.
    JNDI service should be configured and Naming Service port should be open.
    Agent should be able to communicate with the host and JNDI port.
    Above list of JARs to be copied on the agent machine (location provided as library path during discovery)
    Could you please share customer details and usecases.

  • Application server suddenly stops (JBoss)

    I'm running JBoss and stateful session beans.
    In my application I have to do about 4000 calculations.
    After about 10-11 minutes (a few more than 400 calculations) the
    application Server (JBoss2.4.3-Tomcat3.2.3) suddenly stops
    and this messages appear on the client side:
    [CalculatorThread] CalculationResult cannot be retrieved from CalculatorService.
    [CalculatorThread] CalculationInput cannot be updated in CalculatorService.
    [CalculatorThread] CalculationInput cannot be updated in CalculatorService.
    After this problem appeared I tried to enlarge the number of
    beans allowed for the server, the lifetime of the beans, but
    nothing helped.
    The calculation is similar for all the 4000 calculations, it
    is just strange it stops after that time/calculation period.
    I tried to start with calculation 2000, then it also stopped
    after approx 400 steps.
    Any ideas? (Btw... there are no error logs from the server, it just
    hangs up)

    Hi,
    Got your bean but not the ejb implemetation.Why have you synchronized the methods?
    Can you remove the synchronized block and see the result?
    Regards
    Vicky

  • Install both Sun Application server and Jboss application server- Can I?

    Dear all,
    I am programmer and want to test for something.
    Is it possible to install sun application server and jboss application server in the same computer (Windows XP Professional)?
    Is there any special attention I need to take?

    I am programmer and want to test for something.Allowed.
    Is it possible to install sun application server and jboss application server in the same computer (Windows XP Professional)?Why do you think it may not be possible ?
    Is there any special attention I need to take?just the way the URL is populated.

  • Jboss application server upgrade

    Hi All,
    As per our requirement we are planning to migrate web application from jboss application server 4.0.1.GA to Jboss 7.0.1 GA.
    I am new to the Jboss application server . Can you please tell me the advantages of using jboss AS.
    and what is the difference between 4 and 7.
    If we are going to upgrade the server, what are things we need concentrate it ? ( like logging ,jndi etc).
    Please share your valuable points .

    Hi All,
    As per our requirement we are planning to migrate web application from jboss application server 4.0.1.GA to Jboss 7.0.1 GA.
    I am new to the Jboss application server . Can you please tell me the advantages of using jboss AS.
    and what is the difference between 4 and 7.
    If we are going to upgrade the server, what are things we need concentrate it ? ( like logging ,jndi etc).
    Please share your valuable points .

Maybe you are looking for

  • Erro Transferência em duas etapas MM T.Mov 833/835

    Pessoal, Estou enfrentando um problema estranho aqui, cujo qual já pesquisei por notas, aqui no fórum e demais recursos. Utilizo o cenário de transf. em duas etapas, com solução standard de NFe. Na geração da NF do centro de origem (via mov.merc) oco

  • Open hub destination with datasource as the source

    Hi, I am trying to use the new features of BI for open hub destination where you can use datasource as the source for extraction. I have created an infopackage, loaded data to PSA and from there to open hub destination via the DTP. When I try to exec

  • Applet works in appletviewer but not in IE - Applet notinited

    Hi, i have written a simple applet which uses swing components, ie swing labels and buttons. The buttons and labels also have icons with the text. The icons are in a folder called "icons" inside the same folder that the class is in. Everything works

  • Oracle Service Bus  - WS Policy

    Hello everybody I have the following problem: I have a Proxy Service of OSB and I call from JDeveloper withouth problem. Also I can execute the proxy When I add the policie Auth.xml I can't execute proxy service and I get the following problem: BEA-3

  • Adobe content viewer UI

    Hi everyone, I hope someone can help with a little problem I have. I have been creating a multi page folio and on some of teh pages I created and animation using edge animate. The animation is trigered by a button created in edge animate. I have expo