Difference between webserver and Application server

Is there any way to stop the webserver but not the application server.
Do they run on the same port? How is that possible?

Is there any way to stop the webserver but not the
application server.It depends on server.
Do they run on the same port? no

Similar Messages

  • What is the difference between apps and applications?

    I have an application that I've been running on my older Mac. Now that I have a new MacBook Pro, I have to reinstall new software that is compatible. When I go to the vendor website I see an application I can download or a link to the Mac App Store. Is an application different than an app? When should you download them from a vendor website and when should you go to the app store? Do apps end up in the Launchpad and an application in your Applications folder? I can't seem to find information on what is the distinction. Are they actually two different things? Any help would be appreciated.

    No difference between apps and applications. If you download the app from the Apple AppsStore you have better security and a conveninet place to have all your downloads. Nothing wrong with downloading from a trusted developer though.
    EDIT: Yes they will either wind up in your Download folder as  a .dmg you will have to double-click on to install, or most app store apps will install to your Applications folder.

  • What's the difference between Sun ONE Application Server 6 and IAS6.X

    Hi, can anyone tell me what's the difference between Sun ONE Application Server6 and IAS 6.x?
    Thanks a lot!

    This is only the change in name from iPlanet Application Server to SunONE Application Server. Rest all is same as far as the product is concerned.

  • Difference between ITS and WAS server

    difference between ITS and WAS server

    Hello Pradeep,
    The ITS is the Internet Transaction Server.  WAS is Web Application Server.  I'm not sure how to compare the two because the WAS from Basis 6.40 and higher includes the ITS.  I think the question you wanted to ask is the difference between the Standalone ITS and the Integrated ITS???
    The Standalone ITS is installed on a web server (IIS or Apache usually).  It could also include another server that we call the AGate. 
    The Integrated ITS comes with the WAS Basis 6.40 and higher.  Therefore not needing a separate web server.
    There is also a note that lists some differences of the two.
    Edgar

  • BACK button difference between Weblogic and J2EE server

              Hi Everyone,
              I have a J2EE application implemented mainly with JSP and EJB, which can run on
              both J2EE and Weblogic Servers seperately. When running on either of them, the
              server acts as both a web and application server.
              It is my understanding that it first goes to the cache in the browser when you
              try to revisit the previous page (JSP files) by clicking the BACK button in the
              browser. If the page is there, it just displays that page from the cache. If not,
              it will go to the server to retrive (execute) that page.
              When I run my application over J2EE server and try to visit the previous page
              by using the BACK button in the browser, it does this way correctly. But when
              I run my
              application over Weblogic server, it always goes to the server and execute the
              JSP file again in the server, rather than simply retriving that page from the
              cache. If your JSP file is simply doing data retriving, that is fine. But if it
              is doing data inserting, it will insert your data again. This is not good.
              I know that the Weblogic server is mainly an application server. But I am not
              sure when it acts as a web server,
              why it works differently from J2EE which also can acts as both an pplication and
              a web server. Does anyone have any ideas or suggestions about this?
              Thanks a lot.
              -John
              

    I believe that the correct behaviour is to rerun the .jsp page unless the
              user specifically sets the header to allow the browser to cache it. That
              being said... You should never make a web application that can be broken by
              the user hitting "reload" or the browser automatically retrying. An
              application like this is very fragile and will probably break in practice.
              I suggest that you either make all your pages idempotent or you keep track
              through a hidden form field a transaction id and only allow the execution of
              any particular transaction once. As far as WebLogic not being a good web
              server, I would say that with 6.1 you get most of the management advantages
              of using a separate web server and also most of the static file performance
              you will find with apache or IIS.
              Sam
              "John Wang" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi Bruno,
              >
              > Thank you for your prompt reply.
              >
              > I think I might not explain my problem clearly. My application
              > is in developing stage now. So we are just working on a single
              > serevr which can acts as both a web and an application server.
              > Later we are going to distribute our application into a web and an
              application
              > seperately.
              >
              > As you said, it seems that my problem is because the weblogic server is
              mainly
              > an application server and does not act as a web server very well. So if I
              distribute
              > my application into both a web and an application servers, it should be
              fine,
              > since it is ok when I run it over the J2EE server. Is this correct?
              >
              > In other words, I can say that the J2EE server is configured better in its
              role
              > as a web server than the weblogic server, isn't it?
              >
              > In addition, all my JSP files are only dealing with catching
              > data from user input and displaying data. Data inserting is done
              > by EJB and JavaBeans through the JSP files. Because those JavaBeans in the
              JSP
              > files, each time when I use the BACK button, it will invoke those
              JavaBeans and
              > EJBs through the JSP files and do things like inserting in the background.
              That
              > is what I mean in my previous message.
              >
              > Thanks.
              >
              > -John
              >
              > "Bruno" <[email protected]> wrote:
              > >
              > >Hi John,
              > >
              > >You should use a real Web Server on the front side of your application.
              > >Weblogic
              > >is mainly an application server that has to be used in middle tier. But
              > >it's not
              > >a good Web Server. Like almost all J2EE application. You should use a
              > >separate
              > >web server like apache, optimised to serve static file. Furthemore, this
              > >approach
              > >will enable you to physically separate the two servers for a better
              security.
              > >Anyway, usually jsp files are dynamic files and are not intended to be
              > >totally
              > >cached (except in special cases). I think you should just use JSP to
              > >display data.
              > >If you want to do data inserting, you should use EJB or JavaBeans for
              > >that rather
              > >than JSP.
              > >
              > >Hope it helps
              > >
              > >Regards
              > >
              > >"John Wang" <[email protected]> wrote:
              > >>
              > >>Hi Everyone,
              > >>
              > >>I have a J2EE application implemented mainly with JSP and EJB, which
              > >>can run on
              > >>both J2EE and Weblogic Servers seperately. When running on either of
              > >>them, the
              > >>server acts as both a web and application server.
              > >>
              > >>It is my understanding that it first goes to the cache in the browser
              > >>when you
              > >>try to revisit the previous page (JSP files) by clicking the BACK button
              > >>in the
              > >>browser. If the page is there, it just displays that page from the
              cache.
              > >>If not,
              > >>it will go to the server to retrive (execute) that page.
              > >>
              > >>When I run my application over J2EE server and try to visit the previous
              > >>page
              > >>by using the BACK button in the browser, it does this way correctly.
              > >>But when
              > >>I run my
              > >>application over Weblogic server, it always goes to the server and
              execute
              > >>the
              > >>JSP file again in the server, rather than simply retriving that page
              > >>from the
              > >>cache. If your JSP file is simply doing data retriving, that is fine.
              > >>But if it
              > >>is doing data inserting, it will insert your data again. This is not
              > >>good.
              > >>
              > >>I know that the Weblogic server is mainly an application server. But
              > >>I am not
              > >>sure when it acts as a web server,
              > >>why it works differently from J2EE which also can acts as both an
              pplication
              > >>and
              > >>a web server. Does anyone have any ideas or suggestions about this?
              > >>
              > >>Thanks a lot.
              > >>
              > >>-John
              > >>
              > >
              >
              

  • Diffrence b/w webserver and application server

    hi all
    i am very confused about actual difference between application server and web server.also tell in witch category tomcat lie. please don't confuse me give more accurate answer

    I think we'll have to leave it at that, because "Application Server",
    despite a bevy of definitions is still not well-defined. When someone
    says they need a "Java App Server", I ask if a "Web App Server" is enough
    or if they need all the EJB stuff as well.
    In the end, I'd let the Tomcat website speak for itself: http://tomcat.apache.org/
    <quote>
    Apache Tomcat is the servlet container that is used in the official Reference Implementation for the Java Servlet and JavaServer Pages technologies.
    Apache Tomcat powers numerous large-scale, mission-critical web applications across a diverse range of industries and organizations.
    </quote>
    Nowhere on that page is the phrase "Application Server" used (versus
    the weaker web applications).

  • Difference between database and application

    can any one tell me difference between oracle database and oracle application?
    plz

    BUT THE REAL PROBLEM is :-i want to connect that database..
    i can't see my imported application or database..
    Tell,, should i create any database or what should i
    do..tell me detail step by step processFirst and foremost, you have a terminology problem. I will provide a working set of definitions. (But I fully expect to be corrected by some of the symantic specialists.)
    - A database, in Oracle's terms, is a set of files.
    - Inside of that database are a number of schemas, or collections of object definitions,
    - Some of those objects are tables, which may contain data.
    - The database is manipulated by an instance, or collection of processes and/or threads
    - An application connects to the instance and requests specific manipulation.
    In your case, you used the imp application, connecting to the XE database using the userid 'system' to import the schema objects from the schema 'jadi' to the schema 'yogesh'.
    You could now use the application called SQLPlus to connect to the XE database - possibly using user "system" - to inspect the objects and object data imported in schema yogesh.
    You might also be able to use the Application Express browser-based application to access the data in the various schemas. To do that we would need to explore other terminology such as "workspace"
    I would encourage you to use the documentation at http://www.oracle.com/pls/xe102/homepage and perhaps search for the tutorial on the Products page (see the products link on the documentation page.)

  • Differences between Robohelp and Robohelp Server

    I am in the process of evaluatinf Robohelp. I have found out
    there are 2 versions: Robohelp and Rohohelp Server. can someone
    list the differences in these products or direct me to a
    link/document where I can find this information?
    Thanks in Advance
    Rodman Veney

    Hi, Rodman
    You may find this article in the Adobe Developer Center
    helpful as well. It refers to RoboHelp Server 6, but virtually all
    information remains relevant for v7. As Rick says, "Pro" is simply
    the same as WebHelp or FlashHelp, but the content is published to
    the RoboHelp Server so that you can get the benefit of user
    feedback reports and the other features described here:
    http://www.adobe.com/devnet/robohelp/articles/rhserver.html
    Thanx
    John

  • Sorting differences between Oracle and SQL Server

    Hello All,
    This question is related to both Oracle and SQL Server
    I have a requirement where I want to compare 2 tables line by line. One table is in Oracle and other table is in SQL Server
    And suppose that both of the tables don't have a primary key. Now when I sort the records using order by clause for a column then -
    Rows having null values in that column of Oracle are placed at the bottom.
    Where as Rows having null values in the same column of SQL Server are placed right at the top.
    How can I make either of them to behave like other.
    My sole aim is to have same order of occurrence of rows in both Oracle and SQL Server tables so that I can compare them line by line.

    For example :
    select * from emp order by comm;
    So all null value in comm column are at the end.
    Now if you wish to get them on the top of select output then :
    SELECT EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,NVL(COMM,0) COMM,DEPTNO FROM EMP ORDER BY COMM;
    Means i am using NVL (oracle function) function. If comm column is having null value it will converted to zero value at the time of exectuion of select query.
    So, now comm column is having zero value in select output and SQL Server is having nulls at the top. I do'nt know who to make nulls to zero in SQL Server. So issue solved.
    HTH
    Girish Sharma

  • What is the difference between mysql and mysql server

    Hi,
    I notice that mysql and mysql server has been used interchangeably, but are they the same thing? could somebody give a brief explanation about this?
    Many thanks.

    Yes. they are the same.

  • Bottleneck Between Oracle and Application Server

    I am connecting Tomcat to Oracle thru thin JDBC driver. The link between tomcat & oracle is now found to be the bottleneck - too many JDBC calls that could be handled by the network. What are the possible solutions I can use now?
    Some suggest to use Oracle Real Application Cluster (RAC) to scale the db tier. I am new to this. Would setting up RAC causes any change to my programs? Is it difficult to setup? Also, are there any other alternatives?

    Web servers just handle static content, like HTML pages.
    App servers have a few flavors.
    A servlet/JSP engine has a Web server built into it, too. It can handle static content, like HTML pages, and also act as a container for servlets and JSPs. You can use JDBC with servlets and JSPs, of course.
    A J2EE app server has a servlet/JSP engine and a Web server built into it. It can handle static content, like HTML pages and act as a container for servlets and JSPs. But it can also act as a container for EJBs - session, entity, and message EJBs. It has other services built in, like Java Messaging Service (queues), Java IDL (Corba), RMI, JNDI (naming services), XML parsers, JDBC (database access), and Java Transaction Service.
    Enterprise Application Integration servers (EAI), like WebMethods, using XML messaging to tie multiple J2EE app servers together.
    It's like those Russian dolls, where smaller ones fit inside larger ones. It's a hierarchy. - MOD

  • What is the difference between BW and content server?

    I remember some years ago, they were the same .
    Now are they different?
    Please help. Points!

    Yes. they are the same.

  • Could any one tell me what is the difference between swfloader and module loader?

    Hi  All,
                          Could any one tell me what is the difference between SWFLoader and Module Loader in Flex3 in detail?

    Hi,
    ModuleLoader is a kind of strange API that is really just intended to look like SwfLoader for modules that contain a single visual component, and hides most of the module loading infrastructure, which is all about class factories.
    What I mean by "only loaded once" is that if you have several places in the code that call the ModuleManager.getModule("url").load() call, it will only ever get loaded over the wire and interpreted once, subsequent "loads" will just re-dispatch pseudo-load events to the new client.  In other words, the class factory is a singleton for a given url. Unloading is a totally different story.  As you note, not everything is truly unloadable, because there may be lots of references to stuff in
    the module that will keep it alive and un-GC'ed.
    I suggest playing with the low-level API so that you understand the backing implementation, and this should help you understand the limits of ModuleLoader.
    The main difference between modules and applications is that modules have lower overhead, and they only ever get loaded once, no matter how many times you load them. If you're using the ModuleLoader API, keep in mind that you're losing about half the functionality of the module system.  I will assume that you are, because otherwise it would be obvious where to expose methods.  You might want to play around with the lower level ModuleManager API just to get a hang of what's going on - ModuleLoader is a pretty thin veneer over the lower API.                
                    Basically, what you want to do is to have your module implement an interface, say IModuleWhatever.
    Also try and refer to this link which was previously discussed in this forum..
    http://forums.adobe.com/message/74404
    Thanks,
    Bhasker

  • Difference between web server and application server

    Hi Everybody
    Could anybody expain difference between web server and application server?
    Sharad

    Hi there
    The difference I know is the application servers provides the containers for the applications to run which is not provided by the web servers.
    For example the containers can be an EJB container or JSP container etc

  • Difference between ITS and Web Application Server

    Hi All,
       What is ITS server. Can anyone explain me the difference between ITS and WAS(Web Application Server)
    Thanks
    Harpreet

    Hi Harpreet:
    ITS is basically the tool that allow you to use SAP via http. Theres lots of info about <a href="http://help.sap.com/saphelp_nw04/helpdata/en/0d/654d356560054ce10000009b38f889/frameset.htm">ITS</a> or <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/5f/0ef441ad7bc417e10000000a155106/frameset.htm">WebAS with Integrated ITS</a>
    The ITS is a standalone application connected to R3 via RFC connection, In the SAP WebAS the ITS is integrated to the system.
    Hope this help!
    Juan
    PS: Please reward with points if helpful

Maybe you are looking for

  • PhotoShop CS2 MultiMonitor Problems

    Hi, I recently built my dad a new machine for his work.  The machine is set for multiple monitors (3) and to dual boot to Windows 7 Home Premium 64bit and XP Pro 32bit.  I installed PhotoShop CS2 on the Win7 partition, and everything seemed to go wel

  • MP3 encoder VBR Options doesn't work anymore

    Hi everyone ! I always used iTunes mp3 encoder to rip my CD's with the VBR option ON and it worked fine until now. Indeed since 10.3 the VBR option doesn't seem to be working no more : the output is a CBR mp3 file either I tick or not the VBR option

  • How to create an input enabled query with Integrated Planning

    Hello experts. I have created an aggregation level in IP and I am trying to create an input enabled query based on this aggregation level.  My problem is in the properties.  On the query properties planning tab the Start query in change mode is graye

  • SELECT query very slow, need suggestion.

    Dear all, Below stmt was coded in my report program. It was taking around 14 seconds in development system. The days in s_datum was just 1 or 2 days max. But when the same was transferred to test system, it is taking almost 10 minutes, though it we g

  • I have a epson wifi printer and I can't print only my photos and

    I have a epson wifi printer styliusnx330 and I can only print my documents or photos otherwise I can't print anything else