What is the App server for fatwire? - content-management-system

Do fatwire has its own app server?
Or it use any standard app servers like Apache tomcat
(I dont mean jump start kit)

In theory, it can run on any Java EE compliant application server, but I always found it easiest to run on Tomcat since it's easier to setup and administer; and it's FoC.
From memory, the JSK used to use JBoss but was switched to use Tomcat in a later incarnation

WebLogic, WebSphere, Tomcat, JBoss are all supported.
For a list of officially supported software for Oracle Web Center Sites(formerly FatWire Content Server), refer to this certification matrix : http://www.oracle.com/technetwork/middleware/webcenter/sites/owcs-11gr1certmatrix-1609746.xls
Prior to acquisition by Oracle, the JSK was bundled with JBoss and Tomcat server instances and it was possible to select one or the other as the deployment platform.
Now it only ships with Tomcat 6.

Fatwire hasn't its own app server but it can be deployed on Apache Tomcat, JBoss, IBM WAS, WebLogic, Sun Java Enterprise System or Oracle Application Server.

Related

What's the differences between JBoss Web Server and JBoss EAP for running Redhat Decision Manager?

I'm researching how to deploy RedHat Decision Manger right now, there are two options for running enviroment, JBoss Web Server and JBoss EAP. But I'm new for JBoss and don't know what's the differences between them and which one is more suitable with Decision Manager for production enviroment?
JBoss web server is a server used to deploy web applications, whereas EAP is an application server which can be used also to deploy Java EE compatible applications. EAP gives many more features like messaging, RMI, EJB etc. apart from features provided by Web server.
Which one is better will depend on your use case.
To get more details about the difference between web server and application server refer below post
Difference between a Web server and application server

application migrating from weblogic 9.2 to weblogic 12c

I want to migrate an application from webLogic 9.2 server to webLogic 12 c. I'm newer for this process. Can someone help me for making this, please?
I don't know very much weblogic server.
Thks,
Awa
First of install the binaries and create a new weblogic domain or upgrade the older domain.
if you are using third party jars with your application, you need to tell weblogic to use your application jars instead of its own jars.
This is done in weblogic.xml file. In older versions of weblogic. this tag is used
<prefer-web-inf-classes> true </prefer-web-inf-classes>
in weblogic 12c this is not the recommended way. You need to user
<prefer-application-packages> tag and specify the list of application packages that you want to be loaded from your application as opposed to weblogic12c own jars
more on this http://docs.oracle.com/cd/E13222_01/wls/docs103/programming/classloading.html
its not a very straight-forward thing to do, so good luck!

Deploy JBOSS FUSE 6 as service on application server

I want to deploy JBoss FUSE as war or in any other way on application server (Tomcat for example). In documentation for the old version (3.5) of FUSE there was described a simple way for doing that by running special maven project from examples folder.
But for later releases I just can't find any information about possibility of doing that. I thought that deploying ESB as a service on application server is standard way of working with it, but I only found tutorials for installing FUSE as standalone instance or system service.
I would like to know how can I deploy it or why I can't do this if thats the case.
This is no longer supported. JBoss Fuse 6.x is a standalone application that has its own container (based on Apache Karaf).
The current 6.x release requires running on top of Apache Karaf.
Though we have plans to make Fuse (that would be Fuse Fabric) container agnostic so you in the
future would be able to run Fuse on JBoss AS, Tomcat, Karaf, Standalone, in the cloud, etc. Though we focus on JBoss AS, Tomcat, and Karaf as the main containers at first we aim to support.

New to EJB:Missing Deploy Tool

I am new to EJB.I am reading EJB HeadFirst to understand various EJB concepts.Throughout the book the author is using the deploy tool that comes with the J2ee server (as specified in the book).So i also downloaded j2ee server from this urlSun Java System Application Server Platform Edition Multi-language 8.2 FCS
I installed it but i cannot find the deploy tool present in server bin directory.So could anyone please help me out on how to deploy an EJB application on a server.

eclipse for sun one server for debugging and running application

Is there a way to add sun one application server 7 to eclipse IDE. Its for maintaining an enterprise application project. The jdk is also 1.4 used for the application.
Looks like the Sun One Application server is now the Oracle GlassFish Server. Eclipse has support for the GlassFish server runtime. If it is not already installed, you can get it here: https://glassfishplugins.dev.java.net/
Sun also has a product that is the Sun One Java System Web Server. MyEclipse 8.5 M2 looks like it supports that product based on this forum post. MyEclipseIDE application server connectors
We use Sun One Java System Web Server 7 and develop using the Apache Tomcat server runtime and have not had any issues when deploying our war files to the Sun Web Server 7.