Application server architecture 2

Hello guys,
I have few questions about application server architecture�
I already was asking similar question (http://forum.java.sun.com/thread.jspa?threadID=654898) and got few replies which were looking for me quite ok, but after reading more docs I doubt that suggested approach is right.
So, I have a task to build a server application which will do the following: Clients (special java clients) will connect to it and send some data for further processing on server side. Chunks of data will be relatively small but they will take a lot of time for processing � up to one or two days.
Also server will run some sort of �database� where all clients� working data will be stored. So, in case a client loses its data he/she is always able to download it from the server.
For me it was seeming like server will consist of the following components:
1. �Reception�. This part will be responsible for all client-communication procedures.
2. �Data storage�. This part will simply store all clients� data and provide some API interface for clients through �reception� to manage it (add/get/delete and so on).
3. �Processor�. Some sort of dummy-sophisticated module. It will take some input data from �data storage� when it receives order for this and process it. �Processor� will have two states: �busy� which means �processor� processing some data and �available� which means �processor� ready to process new data.
4. �Manager�. This part will always check �data storage� for new data and �processor� for availability. When �processor� and new data are available �manager� will make an order for �processor� to take new data from �data storage� and process it.
I got few suggestions:
1. Make �Reception� stateless session bean. I agree with it. It is quite reasonable.
2. Make �Data storage� as a session bean that will use entity beans or hibernate to work with persistent data. It is also seems quite reasonable and as it was suggested I would like to implement my own data access mechanisms instead of using those which provided by J2EE server.
3. !!! �Processor�. Suggestion was the following: �Use a message driven bean. Make Reception to enqueue a message when new data is available for processing. Processor will process the data and store the resut in database using Data Storage session bean.� It is quite reasonable, except one little thing: I read that Message Driven Beans are not designed for long time processing. Moreover, for example in my JBoss server, Message Driven Beans have attribute KeepAliveMillis=30000. For me it seems that after 30 second my message driven bean will be killed by server and now I doubt: is message driven bean a good solution for implementation long time running processor?
Now I am thinking that �processor� component should run as an additional application outside of J2EE server and from time to time (when data is finally processed and �processor� available again) send messages to my j2ee server.
So, whole picture will look like this (please have a look on the picture: http://www.flickr.com/photos/77716401@N00/35565234/ ):
1. j2ee server always on and ready to create �reception� session stateless EJB to serve remote clients. At the beginning it thinks that �processor� offline and doesn�t attempt to interact with �processor� in any way.
2. When clients appear to interact with server they simply send or receive package of data without complex interaction. �Reception� simply receives data from clients, pass it to �data mapper� component and tells to �manager� that new data available for �processor� to process. �Data mapper� component stores received data in �database�.
At this point j2ee server does two simple things:
- Collecting information for further processing from remote users
- Returning backups of received information to its owners.
3. �Processor�. �Processor� talks with my j2ee application via �Manager� stateful EJB. When �processor� runs first thing it does it asks �manager� for data to process. If there is new no data to process, �processor� does nothing but �manager� remembers that �processor� is ready to work. If there is data to process �manager� passes data to �processor� and remembers that �processor� is busy.
4. When �processor� finishes processing it does the following:
a. Returns data to �manager�. �Manager� passes processed data to �Data Mapper�. �Data Mapper� stores processed data in database.
b. Asks �manager� for new data to process if there is new data to process, �processor� does nothing but �manager� remembers that �processor� is ready to work. If there is data to process �manager� passes data to �processor� and remembers that �processor� is busy.
5. When client submits new data �reception� tells to �manager� that new data available and it �processor� state is �ready for work� �manager� sends order to process to processor.
And so on. Now for me it seems quite reasonable architecture.
But, since I am very new in j2ee technologies I ask few questions:
1. Is my approach right at total?
2. Is it ok that I would like to make �Reception� stateless EJB, �Data Maper� BMP EJB and �manager� stateful EJB?
3. I know that JMX is a basic concept of J2EE, so I would like to register my database as a resource in my J2EE server. Is it right?
4. I need some sort of component which runs all the time from time server started till it is off. If there is anything like this?
Please, give me some advises and tips!
Thank you in advance!

1. Navigating in SAP systems
--Logon and structure of the user interface
--Accessing functions in the system
--Personalization options
No, this is really nothing more than an introduction for people that have never seen a SAPgui screen before.  Most ABAPers can skip right over this course.  If you understand the NetWeaver architechure, then I would suggest to start withe BC400.
Regards,
Rich Heilman

Similar Messages

  • Task of message server inside application server architecture

    Hi Folks,
          I have just started learning ABAP.
          And i have following queries in mind.
    what is the task of message server inside the application server architecture?
          Regards

    Hi,
    it's always to start with [SAP documentation|http://help.sap.com/SAPhelp_nw70/helpdata/en/fc/eb2e8a358411d1829f0000e829fbfe/content.htm]. You can have multiple application servers for one system. In this scenario application servers need to communicate. They use message server for this purpose. There is always just one message server for each system.
    Cheers

  • Questions about application server architecture

    Hello guys,
    I have few questions about application server architecture�
    I have a task to build a server application which will do the following: Clients (special java clients) will connect to it and send some data for further processing on server side. Chunks of data will be relatively small but they will take a lot of time for processing (it is ok that it will be quite slow).
    Also server will run some sort of �database� where all clients� working data will be stored. So, in case a client loses its data he/she is always able to download it from the server.
    For me it seems, like server will consist of the following components:
    1. �Reception�. This part will be responsible for all client-communication procedures.
    2. �Data storage�. This part will simply store all clients� data and provide some API interface for clients through �reception� to manage it (add/get/delete and so on).
    3. �Processor�. Some sort of dummy-sophisticated module. It will take some input data from �data storage� when it receives order for this and process it. �Processor� will have two states: �busy� which means �processor� processing some data and �available� which means �processor� ready to process new data.
    4. �Manager�. This part will always check �data storage� for new data and �processor� for availability. When �processor� and new data are available �manager� will make an order for �processor� to take new data from �data storage� and process it.
    So, my question is the following: Which technology and approaches I should use to realize my plan?
    I think that I can make �reception� as a Session Bean, but I don�t know yet, what are the best for the rest, for example �manager� and �processor�. I was thinking about writing my own application server (and I can do it), but I would like to learn j2ee technologies, so I think it is a perfect chance for me (I read a lot about j2ee before I wrote this post, but all examples have only �account�-�bill�-�money transfer� I think it is quite far away from reality or I am doing something wrong ;-)!
    p.s. I am thinking about using JBoss as an Application Server. I tested it and wrote some tests. They work and run fast enough, so I like it. Moreover it has module architecture.
    Please, give me some advises and tips!
    Thank you in advance!

    1. �Reception�. This part will be responsible for all
    client-communication procedures.Session bean with remote interface.
    2. �Data storage�. This part will simply store all
    clients� data and provide some API interface for
    clients through �reception� to manage it
    (add/get/delete and so on).Session bean that will use entity beans or hibernate to work with persistant data.
    3. �Processor�. Some sort of dummy-sophisticated
    module.Use a message driven bean. Make Reception to enqueue a message when new data is available for processing. Processor will process the data and store the resut in database using Data Storage session bean.
    4. �Manager�. This part will always check �data
    storage� for new data and �processor� for
    availability. When �processor� and new data are
    available �manager� will make an order for
    �processor� to take new data from �data storage� and
    process it.It's redundand component, because application server will manage messages and processors.

  • 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]

  • ARCHITECTURE OF SAP R/3 AND APPLICATION SERVER AND DATABASE SERVER IN ABAP

    ARCHITECTURE OF SAP R/3 AND APPLICATION SERVER AND DATABASE SERVER IN ABAP?
    PLEASE EXPLAIN

    hi
    <b>Presentation Server</b>
    It is actually a program named sapgui.exe.
    It usually installed in user’s workstation.
    The interface accepts the input from the user in the form of keystrokes, mouse-clicks, and function keys, and sends these requests to the application server.
    It receives and displays the result from the application server.
    <b>Application Server</b>
    An application server is a set of executables that collectively interpret the the ABAP/4 programs.
    Each application server has a profile called application server profile, that specifies its characteristics when it starts up and while it is running. It specifies:     
    1. Number of processes and its types.          
    2.Amount of memory each process may use.
    3. Length of time a user is inactive before being automatically logged off.
    If your ABAP/4 program requests information from the database, the application server will format the request and send it to the database server
    <b>Database Server</b>
    The database server is a set of executables that accepts database requests from the application server.
    These requests are passed on to the RDBMS (Relation Database Management System).
    The RDBMS sends the data back to the application server.
    The RDBMS  may run on database server’s computer or may be installed on its own computer.
    The components of application server are dispatcher, dispatcher queue, work process.
    All requests that come in from presentation servers are directed first to the dispatcher.
    The dispatcher writes them to the dispatcher queue.
    The dispatcher pulls the requests from the queue on a first-in, first-out basis.
    Each request is then allocated to the first available work process.
    A work process handles one request at a time.
    The work process needs two memory areas, the user context and the roll area.
    The user context is a memory area that contains the information about the user.
    The roll area is a memory area that contains about the program execution.
    <b>User Context</b>
    User context is a memory area that contains the characteristics of a user that is logged on the R/3 system.
    1)It holds,     user’s current settings.               
    2. The users authorizations.          
    3. The names of the programs the user is currently running.
    When a user logs on, the user context is allocated for that logon. When logs off, it is freed.
    <b>Roll Area     </b>
    A roll area is a memory that is allocated by a work process for an instance of a program.
    It holds the information needed by R/3 about the program execution, such as:     1. The values of the variables               
    2. The dynamic memory allocations          
    3. The current program pointer.
    Each time a user starts a program, a roll area is created for that instance of the program.
    If two users are using the same program at the same time, two roll areas will exist-one for each user.
    The roll area is freed when the program ends.
    Both roll area and the user context play an important roll in dialog processing
    <b>pls reward points dor useful ans</b>
    <i>regards
    vivek</i>
    Message was edited by:
            Vivek Saxena

  • SharePoint 2013 preinstaller error - The tool was unable to install Application Server Role, Web Server (IIS) Role.

    I have been banging my head over and over searching for the fix and nothing has worked. Google used to be my friend. I am having doubts.
    Windows 2012 Server with IIS installed during the server creation using VMware Vshpere. Here is the log from the SP prep tool.
    2014-06-23 10:13:12 - Processor architecture is (9)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Common Startup
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-06-23 10:13:12 - Trying to remove the startup task if there is any.
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-06-23 10:13:12 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-06-23 10:13:12 - Locating the following command line arguments file:
    2014-06-23 10:13:12 - C:\sp2013\PrerequisiteInstaller.Arguments.txt
    2014-06-23 10:13:12 - Error: This file does not exist
    2014-06-23 10:13:12 - Details of the current operating system:
    2014-06-23 10:13:12 - Major version number of the operating system:  (6)
    2014-06-23 10:13:12 - Minor version number of the operating system:  (2)
    2014-06-23 10:13:12 - Build number of the operating system:  (0X23F0=9200)
    2014-06-23 10:13:12 - Major version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Minor version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Platform ID of the operating system:  (2)
    2014-06-23 10:13:12 - Product suites available on the operating system:  (0X110=272)
    2014-06-23 10:13:12 - Product type of the operating system: VER_NT_SERVER
    2014-06-23 10:13:12 - Product type:  (7)
    2014-06-23 10:13:12 - OS type:  (0)
    2014-06-23 10:13:12 - Configuring the application's property sheet...
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Management Framework 3.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - PowerShellVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - Install
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.5.51641
    2014-06-23 10:13:12 - A post release .NET 4.5 is installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 6.1.7600.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:12 - Reading version of the following file...
    2014-06-23 10:13:12 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:12 - The version is...
    2014-06-23 10:13:12 - 1.0.3010.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 10.51.2500.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Server AppFabric
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCC
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheClient is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCS
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheService is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCA
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheAdmin is Installed.
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 2.0.1230.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.0.959.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 5.0.51212.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - IsInstalled
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:19 - Beginning download/installation
    2014-06-23 10:13:19 - Created thread for installer
    2014-06-23 10:13:20 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\2\PreA98B.tmp.XML"
    2014-06-23 10:13:20 - Error: Unable to install (2)
    2014-06-23 10:13:20 - Error: [In HRESULT format] (-2147024894)
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Flags
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PendingFileRenameOperations
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-06-23 10:13:20 - Reading the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-06-23 10:13:20 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any
    command line options.
    2014-06-23 10:13:20 - Cannot retry
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Management Framework 3.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PowerShellVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Install
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.5.51641
    2014-06-23 10:13:20 - A post release .NET 4.5 is installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 6.1.7600.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:20 - Reading version of the following file...
    2014-06-23 10:13:20 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:20 - The version is...
    2014-06-23 10:13:20 - 1.0.3010.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 10.51.2500.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Server AppFabric
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCC
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheClient is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCS
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheService is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCA
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheAdmin is Installed.
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 2.0.1230.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.0.959.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 5.0.51212.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - IsInstalled
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:16:23 - Opening log file
    2014-06-23 10:16:23 - Opened action for user
    2014-06-23 10:16:23 - C:\Users\ADMINI~1\AppData\Local\Temp\2\prerequisiteinstaller.2014.06.23-10.13.12.log

    It looks like you may have extracted the files to C:\sp2013. Can you try installing from a mounted ISO instead? Can you also validate that this is Server 2012 and not 2012 R2?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Prerequisiteinstaller.exe error - unable to install Application Server Role, Web Server (IIS) Role

    Windows Server 2012 R2 running on Hyper-V VM.  File services, App server & IIS roles installed
    SQL Server 2012 installed
    Tried:
    kb 2765260 method 1 which is kb 2771431 which ends with "not applicable to computer"
    kb 2765260 method 2 with no effect (this was power shell commands for PC's connected to the internet)
    One post suggested "aspnet_regii - enable -i" but my OS doesn't have aspnet_regii on it (not sure what that implies)
    One post suggested ServerManagerCmd.exe needed to be installed which sounds true as shown below (but where do I find this exe?)
    There are some errors in the log file,  I only included the portions where the errors are listed.  The initial lines are at the top of the log file, then I skipped to the section where the other errors were.  I can include the whole log if
    it becomes necessary.
    9:47:11 Processor architecture is (9)
    9:47:11 Reading the following string value/name...
    9:47:11 Common Startup
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    9:47:11 The value is...
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    9:47:11 Trying to remove the startup task if there is any.
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    9:47:11 Error: Startup task doesn't exist. This is not a continuation after a restart.
    9:47:11 Locating the following command line arguments file:
    9:47:11 E:\PrerequisiteInstaller.Arguments.txt
    9:47:11 Error: This file does not exist
    9:47:11 Details of the current operating system:
    9:47:11 Check whether the following prerequisite is installed:
    9:47:11 Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    9:47:11 Reading the following DWORD value/name...
    9:47:11 IsInstalled
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    9:47:17 Beginning download/installation
    9:47:17 Created thread for installer
    9:47:17 "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\PreE0DB.tmp.XML"
    9:47:17 Error: Unable to install (2)
    9:47:17 Error: [In HRESULT format] (-2147024894)
    9:47:17 Last return code (2)
    9:47:17 Reading the following DWORD value/name...
    9:47:17 Flags
    9:47:17 from the following registry location...
    9:47:17 SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    9:47:17 Reading the following string value/name...
    9:47:17 PendingFileRenameOperations
    9:47:17 from the following registry location...
    9:47:17 SYSTEM\CurrentControlSet\Control\Session Manager
    9:47:17 Reading the following registry location...
    9:47:17 SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    9:47:17 Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    9:47:17 Last return code (2)
    9:47:17 Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    9:47:17 Cannot retry
    I'm presuming the first 2 errors are OK and just indicate optional startup modes for prerequisiteinstaller.exe
    The 2nd set of errors seems more serious.  I don't see ServerManagerCmd.exe on my PC that's listed in the error
    I don't understand the last error which I'm supposing triggered the listed error even though there are other errors in the log.
    Many of the existing posts don't match the configuration I'm using, and the ones that do match didn't seem to provide a usable answer.  Any help is appreciated.  Do these problems exist using Sever 2012 Standard?  I will try that, but would
    like to resolve the issue here with R2.
    Thanks.
    Best Regards,
    Alan

    ServerManagerCMD.exe is a deprecated utility and (as far as I know) is only found on Server 2008 versions, so I'm surprised it's needed for the preinstaller.  Are you trying to install SharePoint 2010?
    Running this page through Google Translate should give you an clearer idea on getting this installed.
    http://blog.hand-net.com/sharepoint/2010-06-10-error-lors-de-linstallation-des-office-web-apps-2010-sur-windows-7.htm
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How deploy 6i Forms Fmx trought Application Server 10g

    Hello every one,
    Situation :
    In my company, we have a software developed by a team using Oracle Forms 6i, the application is connected te Oracle 9i Database and every thing works well.
    Problem :
    I was able to upgrade the database from 9i to 10g. But my question : is it possible to deploy all the Forms (fmx 6i version) on Application Server 10g. I want to use the 3-tiers architecture.
    Take note that i have not the fmb source files. Just the FMX (about 40 files)
    If yes, can you explain also how to proceed (tools to install on Application Server) and how to setup the connection between the 3 tiers throught a LOCAL NETWORK.
    Regards
    Kira

    You will at least need to recompile all those *.fmb to *.fmx in the version of the App server you will be using.
    We have a forms6 c/s application we are migrating to forms 11g and it almost that easy (except for changes in how you launch reports).
    The application server is setup alot like the client/server side of forms is, it needs a tnsnames.ora that points to the database and it needs to know where you will be storing the forms and report. Looks for any *.fmx and that will be the default location.

  • Application Server Role, Web Server (IIS) Role: configuration error - There is a pending restart of the computer

    when I run prerequisiteinstaller.exe in sharepoint 2013 on windows server 2008 R2 with sp1, got this error, below is the log information:
    2014-02-28 12:01:02 - Processor architecture is (9)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Common Startup
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-02-28 12:01:02 - The value is... 
    2014-02-28 12:01:02 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-02-28 12:01:02 - Trying to remove the startup task if there is any.
    2014-02-28 12:01:02 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-02-28 12:01:02 - Successfully deleted the startup task
    2014-02-28 12:01:02 - Analyzing the following command line argument:
    2014-02-28 12:01:02 - /continue
    2014-02-28 12:01:02 - Continuing after restart
    2014-02-28 12:01:02 - Details of the current operating system: 
    2014-02-28 12:01:02 - Major version number of the operating system:  (6)
    2014-02-28 12:01:02 - Minor version number of the operating system:  (1)
    2014-02-28 12:01:02 - Build number of the operating system:  (0X1DB1=7601)
    2014-02-28 12:01:02 - Major version number of the latest Service Pack:  (1)
    2014-02-28 12:01:02 - Minor version number of the latest Service Pack:  (0)
    2014-02-28 12:01:02 - Platform ID of the operating system:  (2)
    2014-02-28 12:01:02 - Product suites available on the operating system:  (0X112=274)
    2014-02-28 12:01:02 - Product type of the operating system: VER_NT_SERVER
    2014-02-28 12:01:02 - Product type:  (10)
    2014-02-28 12:01:02 - OS type:  (0)
    2014-02-28 12:01:02 - Configuring the application's property sheet...
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Management Framework 3.0
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - PowerShellVersion
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:01:02 - The value is... 
    2014-02-28 12:01:02 - 3.0
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - CTPVersion
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:01:02 - Could not find or unable to read CTPVersion key
    2014-02-28 12:01:02 - The prerequisite above is already installed
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft .NET Framework 4.5
    2014-02-28 12:01:02 - Reading the following DWORD value/name...
    2014-02-28 12:01:02 - Install
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:01:02 - The value is (1)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Version
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:01:02 - The value is... 
    2014-02-28 12:01:02 - 4.5.50938
    2014-02-28 12:01:02 - A post release .NET 4.5 is installed
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Identity Foundation (KB974405)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - 
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-02-28 12:01:02 - Reading version of the following file...
    2014-02-28 12:01:02 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-02-28 12:01:02 - GetFileVersionInfoSize failed (-2147024894)
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Version
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Server AppFabric
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - ProductVersion
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Windows Identity Foundation (KB974405)
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - 
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft Information Protection and Control Client
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - 
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Microsoft WCF Data Services 5.0
    2014-02-28 12:01:02 - Reading the following string value/name...
    2014-02-28 12:01:02 - Version
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-02-28 12:01:02 - Check whether the following prerequisite is installed:
    2014-02-28 12:01:02 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-02-28 12:01:02 - Reading the following DWORD value/name...
    2014-02-28 12:01:02 - IsInstalled
    2014-02-28 12:01:02 - from the following registry location...
    2014-02-28 12:01:02 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-02-28 12:01:02 - Beginning download/installation
    2014-02-28 12:01:02 - Created thread for installer
    2014-02-28 12:01:02 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\svc_SPFarm_SH\AppData\Local\Temp\2\PreA588.tmp.XML"
    2014-02-28 12:01:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:04 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:05 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:06 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:07 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:08 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:09 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:10 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:11 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:12 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:13 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:14 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:15 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:16 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:17 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:18 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:19 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:20 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:21 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:22 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:23 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:24 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:25 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:26 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:58 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:01:59 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:00 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:01 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:02 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:04 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:05 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:06 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:07 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:08 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:09 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:10 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:11 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:12 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:13 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:14 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:15 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:16 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:17 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:18 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:19 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:20 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:21 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:22 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:23 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:24 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:25 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-02-28 12:02:25 - Install process returned (0X3E9=1001)
    2014-02-28 12:02:25 - [In HRESULT format] (0X800703E9=-2147023895)
    2014-02-28 12:02:25 - Last return code (0X3E9=1001)
    2014-02-28 12:02:25 - Reading the following DWORD value/name...
    2014-02-28 12:02:25 - Flags
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - PendingFileRenameOperations
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-02-28 12:02:25 - Reading the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-02-28 12:02:25 - Error: A pending restart blocks the installation
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Common Startup
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-02-28 12:02:25 - The value is... 
    2014-02-28 12:02:25 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-02-28 12:02:25 - Trying to create the startup task.
    2014-02-28 12:02:25 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Management Framework 3.0
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - PowerShellVersion
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:02:25 - The value is... 
    2014-02-28 12:02:25 - 3.0
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - CTPVersion
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-02-28 12:02:25 - Could not find or unable to read CTPVersion key
    2014-02-28 12:02:25 - The prerequisite above is already installed
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft .NET Framework 4.5
    2014-02-28 12:02:25 - Reading the following DWORD value/name...
    2014-02-28 12:02:25 - Install
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:02:25 - The value is (1)
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Version
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-02-28 12:02:25 - The value is... 
    2014-02-28 12:02:25 - 4.5.50938
    2014-02-28 12:02:25 - A post release .NET 4.5 is installed
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Identity Foundation (KB974405)
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - 
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-02-28 12:02:25 - Reading version of the following file...
    2014-02-28 12:02:25 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-02-28 12:02:25 - GetFileVersionInfoSize failed (-2147024894)
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Version
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Server AppFabric
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - ProductVersion
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Windows Identity Foundation (KB974405)
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - 
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft Information Protection and Control Client
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - 
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Microsoft WCF Data Services 5.0
    2014-02-28 12:02:25 - Reading the following string value/name...
    2014-02-28 12:02:25 - Version
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-02-28 12:02:25 - Check whether the following prerequisite is installed:
    2014-02-28 12:02:25 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-02-28 12:02:25 - Reading the following DWORD value/name...
    2014-02-28 12:02:25 - IsInstalled
    2014-02-28 12:02:25 - from the following registry location...
    2014-02-28 12:02:25 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-02-28 12:14:24 - Opening log file
    2014-02-28 12:14:24 - Opened action for user
    2014-02-28 12:14:24 - C:\Users\svc_SPFarm_SH\AppData\Local\Temp\2\prerequisiteinstaller.2014.02.28-12.01.02.log
    any ideas? thanks.
    Awen

    Hi Awen,
    Please open Server Manager > Roles > see if Web Server (IIS) has been installed.
    If installed, I’d recommend you refer to Abdel’s method in the link below. He encountered the same issue when install SharePoint 2013 on Windows Server 2008 R2 and fixed the problem. For your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9e620ab9-e594-4ff4-92a3-6c0ab311d586/preinstaller-failing-at-install-application-server-role-web-server-iis-role?forum=sharepointadmin 
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Sun Application Server 9.1_02 + Sun RFID Software 3.0 + Postgres8.3?

    Hi all
    I am working on some RFID-related project. I need to capture, fiter and then perform some other tasks on the data sensed by RFID readers, all in Java. So I choose Sun's software. There was no luck when I was trying to configure my system to work with Sun's software. Hope you experienced could do me a favor and help me out. Thanks in advance. Here are details.
    In the installation guide of Sun Java System RFID Software 3.0, it says, to install RFID information server, Sun Java System Application Server Platform Edition 8.1 2005Q2 UR2 and PostgreSQL 8.0.4 are needed.
    For the following 2 reasons:
    1 PostgreSQL 8.0.4 is now not available to download on www.postgresql.org;
    2 I think later version of PostgreSQL or Sun Application Server should be compatible to their earlier versions
    I tried the following combination other than those stated in the installation guide:
    1 PostgreSQL 8.3;
    2 Sun Java System Application Server 9.1_02, bound with Sun Java Application Platform SDK Update 5;
    3 Sun Java System RFID Software 3.0
    Then, the application server successfully communicates with PostgreSQL, demonstrated by "ping success" through the connection pool built in application server's admin console.
    The RFID information server communicates successfully with PostgreSQL, demonstrated by deploying RFID information server database successfully in PostgreSQL.
    But, instructed by the installation guide, when I tried to validate my RFID information server installation by typing "http://localhost:8080/epcis" in the browser, the application server reported "the resource is not available".
    I looked into many other internet resources and instructions about this, but no luck at all. I am now really, really stuck. Hope you could do me this favor. Thanks.
    PS:
    1 PostgreSQL8.3 is available on http://www.postgresql.org/download/
    2 Sun Java System Application Server is available on http://java.sun.com/javaee/downloads/index.jsp
    3 Sun Java System RFID Software and the installation guide are available on https://sun-rfid.dev.java.net/SJS_RFID_Software.html
    4 Operation System is Windows XP

    Would be a great idea to open-source the Sun RFID project, since the project is inactive over the last tree years.
    Seems that this project have a great architecture, but the techonolgy is outdated ...
    We have another open source initiave (google for Aspire RFID), but seems that this project still imature ...
    Comercial options includes ALE Server, and Sendra Solutions (but I didn't evaluated these)
    Mario Prado-Brazil

  • Preinstaller failing at install Application Server Role, Web Server (IIS) Role

    Hi, 
     I am trying to install SharePoint 2013 on Windows 2008 R2. I have database MS SQL Server 2012 on the same machine itself. My SharePoint Preinstaller fails at installing Application server and Web server roles.. Even though the roles get created, they
    don't complete because ASP.Net activation fails. Here is my log:
    2013-04-08 16:12:08 - Processor architecture is (9)
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - Common Startup
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2013-04-08 16:12:08 - Trying to remove the startup task if there is any.
    2013-04-08 16:12:08 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2013-04-08 16:12:08 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2013-04-08 16:12:08 - Locating the following command line arguments file:
    2013-04-08 16:12:08 - E:\PrerequisiteInstaller.Arguments.txt
    2013-04-08 16:12:08 - Error: This file does not exist
    2013-04-08 16:12:08 - Details of the current operating system:
    2013-04-08 16:12:08 - Major version number of the operating system: (6)
    2013-04-08 16:12:08 - Minor version number of the operating system: (1)
    2013-04-08 16:12:08 - Build number of the operating system: (0X1DB1=7601)
    2013-04-08 16:12:08 - Major version number of the latest Service Pack: (1)
    2013-04-08 16:12:08 - Minor version number of the latest Service Pack: (0)
    2013-04-08 16:12:08 - Platform ID of the operating system: (2)
    2013-04-08 16:12:08 - Product suites available on the operating system: (0X112=274)
    2013-04-08 16:12:08 - Product type of the operating system: VER_NT_SERVER
    2013-04-08 16:12:08 - Product type: (10)
    2013-04-08 16:12:08 - OS type: (0)
    2013-04-08 16:12:08 - Configuring the application's property sheet...
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Management Framework 3.0
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - PowerShellVersion
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 3.0
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - CTPVersion
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:12:08 - Could not find or unable to read CTPVersion key
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft .NET Framework 4.5
    2013-04-08 16:12:08 - Reading the following DWORD value/name...
    2013-04-08 16:12:08 - Install
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Identity Foundation (KB974405)
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 -
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 6.1.7600.0
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2013-04-08 16:12:08 - Reading version of the following file...
    2013-04-08 16:12:08 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2013-04-08 16:12:08 - The version is...
    2013-04-08 16:12:08 - 1.0.3010.0
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - Version
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 10.51.2500.0
    2013-04-08 16:12:08 - A higher version of the prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Server AppFabric
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - ProductVersion
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\AppFabric\V1.0
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Windows Identity Foundation (KB974405)
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 -
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft Information Protection and Control Client
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 -
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2013-04-08 16:12:08 - The value is...
    2013-04-08 16:12:08 - 1.0.621.117
    2013-04-08 16:12:08 - A higher version of the prerequisite above is already installed
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Microsoft WCF Data Services 5.0
    2013-04-08 16:12:08 - Reading the following string value/name...
    2013-04-08 16:12:08 - Version
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2013-04-08 16:12:08 - Check whether the following prerequisite is installed:
    2013-04-08 16:12:08 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2013-04-08 16:12:08 - Reading the following DWORD value/name...
    2013-04-08 16:12:08 - IsInstalled
    2013-04-08 16:12:08 - from the following registry location...
    2013-04-08 16:12:08 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2013-04-08 16:12:08 - The value is (1)
    2013-04-08 16:12:08 - The prerequisite above is already installed
    2013-04-08 16:12:14 - Beginning download/installation
    2013-04-08 16:12:14 - Created thread for installer
    2013-04-08 16:12:14 - Beginning download of Microsoft .NET Framework 4.5
    2013-04-08 16:12:14 - http://go.microsoft.com/fwlink/?LinkID=250950
    2013-04-08 16:12:15 - Size of download of "Microsoft .NET Framework 4.5" in bytes is "1005568"
    2013-04-08 16:12:15 - Download of "Microsoft .NET Framework 4.5" completed successfully
    2013-04-08 16:12:15 - Installing Microsoft .NET Framework 4.5
    2013-04-08 16:12:15 - "C:\Users\SPAdmin\AppData\Local\Temp\NETB7E9.tmp.exe" /q /norestart
    2013-04-08 16:15:27 - Install process returned (0)
    2013-04-08 16:15:27 - [In HRESULT format] (0)
    2013-04-08 16:15:27 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\SPAdmin\AppData\Local\Temp\PreAAB0.tmp.XML"
    2013-04-08 16:15:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:58 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:15:59 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:00 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:01 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:02 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:03 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:04 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:05 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:06 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:07 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:08 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:09 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:10 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:11 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:12 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:14 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:15 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:16 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:17 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:18 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:19 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:20 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:21 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:22 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:23 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:24 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:25 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:26 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:50 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:50 - Install process returned (0)
    2013-04-08 16:16:50 - [In HRESULT format] (0)
    2013-04-08 16:16:50 - "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe" -i
    2013-04-08 16:16:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2013-04-08 16:16:57 - Install process returned (0)
    2013-04-08 16:16:57 - [In HRESULT format] (0)
    2013-04-08 16:16:57 - "C:\Windows\system32\cscript.exe" "C:\Windows\system32\iisext.vbs" /enext "ASP.NET v4.0.30319"
    2013-04-08 16:16:58 - Install process returned (-2146646015)
    2013-04-08 16:16:58 - [In HRESULT format] (-2146646015)
    2013-04-08 16:16:58 - Error when enabling ASP.NET v4.0.30319
    2013-04-08 16:16:58 - Last return code (-2146646015)
    2013-04-08 16:16:58 - Reading the following DWORD value/name...
    2013-04-08 16:16:58 - Flags
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - PendingFileRenameOperations
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SYSTEM\CurrentControlSet\Control\Session Manager
    2013-04-08 16:16:58 - Reading the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2013-04-08 16:16:58 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2013-04-08 16:16:58 - Last return code (-2146646015)
    2013-04-08 16:16:58 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    2013-04-08 16:16:58 - Cannot retry
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Management Framework 3.0
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - PowerShellVersion
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 3.0
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - CTPVersion
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2013-04-08 16:16:58 - Could not find or unable to read CTPVersion key
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft .NET Framework 4.5
    2013-04-08 16:16:58 - Reading the following DWORD value/name...
    2013-04-08 16:16:58 - Install
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2013-04-08 16:16:58 - The value is (1)
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - Version
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 4.5.50709
    2013-04-08 16:16:58 - The release version of .NET 4.5 is installed.
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Identity Foundation (KB974405)
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 -
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 6.1.7600.0
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2013-04-08 16:16:58 - Reading version of the following file...
    2013-04-08 16:16:58 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2013-04-08 16:16:58 - The version is...
    2013-04-08 16:16:58 - 1.0.3010.0
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - Version
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 10.51.2500.0
    2013-04-08 16:16:58 - A higher version of the prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Server AppFabric
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - ProductVersion
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\AppFabric\V1.0
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Windows Identity Foundation (KB974405)
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 -
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft Information Protection and Control Client
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 -
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2013-04-08 16:16:58 - The value is...
    2013-04-08 16:16:58 - 1.0.621.117
    2013-04-08 16:16:58 - A higher version of the prerequisite above is already installed
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Microsoft WCF Data Services 5.0
    2013-04-08 16:16:58 - Reading the following string value/name...
    2013-04-08 16:16:58 - Version
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2013-04-08 16:16:58 - Check whether the following prerequisite is installed:
    2013-04-08 16:16:58 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2013-04-08 16:16:58 - Reading the following DWORD value/name...
    2013-04-08 16:16:58 - IsInstalled
    2013-04-08 16:16:58 - from the following registry location...
    2013-04-08 16:16:58 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2013-04-08 16:16:58 - The value is (1)
    2013-04-08 16:16:58 - The prerequisite above is already installed
    2013-04-08 16:17:07 - Opening log file
    2013-04-08 16:17:07 - Opened action for user
    2013-04-08 16:17:07 - C:\Users\SPAdmin\AppData\Local\Temp\prerequisiteinstaller.2013.04.08-16.12.08.log
    2013-04-08 16:17:56 - Return code (-2146646015)
    2013-04-08 16:17:56 - It is recommended that you keep your Windows operating system up to date on http://windowsupdate.microsoft.com
    I tried solutions for all previous posts that I could find. Can anybody help me out?
    Thanks 
    Abdel

    Please help!!!  I am going on 9 days now trying to install SharePoint 2013 onto a VM.  I have tried Hyper-V and VMWare and am getting the same result with both.
    Running Windows 8.1  with 16 GBs of RAM.
    The pre-req installer will not install anything!!  And I get this error:
    The tool was unable to install Application
    Server Role, Web Server (IIS) Role
    So I installed the Web Server IIS Role and restart...   still no luck
    Then I ran this command: 
    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i -enable
    And get this message: "This option is not supported on this version of the operating system. Admins should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off dialog....
    9 days of cussing and pulling my hair out...  please someone help..  I just want to run the Pre-Req installer and install SharePoint on a VM Machine. 
    Any help would be appreciated!!  Thanks in advance!
    I just want to confirm that I'm facing exactly the same problem.
    Currently, Microsoft SharePoint Server 2013 is not supported for installation on computers running the Windows Server 2012 R2 operating
    system. 
    http://support.microsoft.com/kb/2891274/

  • Can I install WebCenter with Application Server 10.1.2.0 ?

    Hi all
    I have installed Application Server R2 10.1.2.0 (Infr + mid-tier)
    to deploy some Portals .
    and I would like to build & deploy my Applications JSF/ADF + Portlets
    using Jeveloper 10.1.3.2 Studio Edition (JDeveloper + ADF + WebCenter Extension)
    do I need to install Oracle WebCenter Suite 10g Release 3 (10.1.3.2.0)
    with Application Server R2
    OR JDeveloper 10.1.3.2 + AS R2 is enough
    OR what ?
    thanks

    I think the question was about requirements to create and run WebCenter centric applications and portlets in general. Please correct me if I'm wrong but isn't the context of the question about reuse of an existing AS 10gR2 platform? This would only make sense if the existing platform could be used for any parts of the Webcenter application - JSF runtime and portlets. Webcenter has to be setup on a 10gR3 container so you have at least one 10gR3 instance involved - at least for the Webcenter app. So why should you have an interest to mix up your application architecture with a 10gR2 based portlet deployment
    Also, if you want to use a 10gR2 container for your portlets you can only build portlets based on a 10gR2 PDK/portlet container. A 10gR3 PDK requires a 10.1.3.1 minimum release of the OC4J. Hence a 10gR2 for portlets doesn't make any sense for a Webcenter application.

  • How to compile forms and reports 6i in Application server 1.0.2.2.2.

    Hi all,
    i used oracle forms and reports 6i with oracle database 10g in client server architecture.
    now i want to make 3 tier, client-application server version 1.0.2.2.2-origin database serversystem on 3 separate machines.
    i have installed application server version 1.0.2.2.2.
    now i have my forms and reports 6i in application server computer.
    can any one please tell me how to compile forms and reports 6i in application server computer i.e do i have to write some extra code in forms and reports 6i in order to compile in application server computer successfully.
    waiting for an early reply.
    best regards
    fahad ejaz
    email:[email protected]

    ... another question would be why not upgrade those old Forms & Reports to the newest release 10.1.2.0.2 and use the latest Application Server to run them with?
    Release 6i and 1.0.2.2 is as you know desupported.
    Regards,
    Martin

  • Authentication and authorization capability in weblogic application server

    Hi,
    Need input from architecture point of view -
    Requirement is typical - have to build a web center portal application with authentication and authorization capability.
    I can think of three architecture options:
    1. weblogic server (where webcenter portal application will be deployed) with oracle IDM (or any other full blown IDM suite)...
    2. weblogic server with Active Directory (or any other LDAP directory), and a LDAP authenticator is configured in weblogic...
    3. only weblogic server (users created in weblogic admin console)...
    Obviously 1st one is costliest option (product cost, infrastructure cost, maintenance cost) and most flexible. However I am discarding it purely because of cost.
    Confused between 2nd and 3rd.
    2nd option - separate user store, user can be added/deleted without touching application server, cost wise - 1 extra server and 1 LDAP directory product (or open source LDAP server)...
    3rd option - application server becomes very 'heavy' with all users information, you need to access server to add/delete users, probably cheapest option money wise... However it might affect application performance if users grow large...
    Please let me know if I should consider more parameters/points before deciding. Is there any important thing I am missing? Your input appreciated.
    Thanks.

    Hi,
    You are right your first requirement make more costly and complex environment.
    I would recommend to go with Second option instead of the third one.
    In cause in future if you want to use different server also you will have option to use external AD.
    Well now you will think why I recommend you second option instead of the third option.
    external LDAP is more secure than internal one.
    If you have any further query let me know.
    Regards,
    Kal

  • FTP Server in SAP Web Application Server

    Hi,
    Would like to know if SAP Web Application Server comes with built-in FTP Server.
    Thanks

    Hi,
    FTP Server is not built in WAS. Integrate third-party products, tools, and applications, SAP Web Application Server supports several open connectivity standards, including the J2EE Connector Architecture and Microsoft .NET connectivity.
    A wide range of protocols and formats is supported for communication with SAP, non-SAP, and third-party components. SAP Web Application Server is open to the Common Object Request Broker Architecture (CORBA), Component Object Model+ (COM+), File Transfer Protocol (FTP), and SMTP to connect to non-SAP systems.
    IDoc and HTTP adapters sit on ABAP stack and the rest of the adapters(File, JDBC, SOAP etc) sit on JAVA stack.
    File Transfer Protocol (FTP) is an open protocol for exchanging files on a server.
    see this link:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/43/0e16bfd7b021aee10000000a1553f6/frameset.htm">here</a> and
    <a href="http://help.sap.com/bp_bpmv130/Documentation/Planning/TechnicalInfrasture.pdf#search=%22SAP%20Web%20Application%20Server%20comes%20with%20built-in%20FTP%20Server%22">here</a>
    Regards, Suresh KB

Maybe you are looking for

  • Authorization for certain warehouse in stock transfer

    I'm trying to create an authorization for stock transfer when To Warehouse equals a certain value. Is there a way to do it?

  • Website and blog

    Heelo, i'm building my portfolio and like build a blog too. However a want show the last 12 post (excerpt) of the blog on index, how can i do this?

  • Hyperion Business Rules cannot connect to Hyperion Planning

    I've deployed these applications into one machine server: - Hyperion Essbase 7.1.3 - Hyperion Planning 4.0.1 (including Hyperion Business Rules) - Essbase Administration Services 7.1.3 Everything runs well except that Hyperion Business Rules cannot c

  • Mail spam filters and phishing

    Yesterday's UK Sunday Times gave an email address to which sufferers were advised to forward bank phishing emails - it is, presumably, a bank sponsored site which allows them to try and trace and/or stem this ever increasing tide of spam. Most of the

  • Interplant subcontracting

    Hi, We are having two plants in the same company code. We want to send the material from one plant to another for subcontracting. material which is send has a material type as Raw material and after processing in another plant it becomes semifinished