What is function of IIS server in OBIEE installation

I have added new presentation column in presentation layer. but I could not see this new column in presentation services(Answers) after refresh column.
Can anyone let me know the problem behind this?
Thanks

Hi,
Restart both the Services and check it out in answers.
Thanks

Similar Messages

  • Prevent Hotlinking on CF/IIS server?

    I am setting up an eCommerce site for a photographer
    with Cartweaver CF. He asked me about preventing
    others from 'hotlinking' the images, i.e. stealing bandwidth
    by posting images on their own sites via url to the image.
    I have read how to do with .htaccess on a linux server,
    but what about on an IIS server - can it be done?
    Or, is there some way to do this with ColdFusion itself?
    thanks
    Michael Evangelista
    Evangelista Design
    www.mredesign.com

    Thanks Paul - that looks like it will do the trick.
    Also noticed this from the same company
    http://www.helicontech.com/hotlinkblocker/
    Michael Evangelista
    Evangelista Design
    www.mredesign.com
    "vinkie" <[email protected]> wrote in message
    news:elgl43$m79$[email protected]..
    > You could use IsapiRewrite on IIS, probably the best
    tool for it.
    >
    >
    http://www.isapirewrite.com/
    >
    > Regards,
    > Paul

  • OC4J Plug in and IIS - What Software on the IIS box?

    I want to configure an IIS server to use the OC4J plugin to route appropriate requests to OC4J.
    The IIS server is a separate box and currently has no Oracle software installed.
    What Oracle software (if any) does it need to run the OC4J Plugin? Just the opii.dll?
    The manual makes reference to requiring permission changes in the ORACLE_HOME directory to allow HTTPS connections - but I don't have an Oracle Home on the IIS box. It seems like it's expected that IIS and OC4J are on the same machine - is this true?

    i try to do quite the same .
    i find that line in the documentation If Oracle Application Server is not installed on the same machine, then the standalone ONS daemon must be installed. OC4J Plug-in supports all the mod_oc4j functionality, including AJP over SSL and use of port tunneling
    I don't know yet what does it means but .....

  • Reverse Proxying in IIS server with WebLogic Server 8.1

    Hi All,
    I have a customer who wants to know if we have an IIS server in DMZ (De-materialized Zone) that is used as a Reverse proxy server (server #1).
    He installed IISProxy.DLL and IISForward.DLL per PeopleSoft's and BEA instructions. They opened up a port to their PeopleSoft server (server #2) where their weblogic 8.1 is running the PeopleSoft Web server.
    From outside the city (i.e. from home) he can go to
    http://www.roundrocktexas.gov/PRTL9/signon.html and connect to their PeopleSoft 9 Enterprise Portal (so far so good). However, when he clicks on a link on his portal to go to a document or an application that is set up on another server (server #3, is an IIS web server) the link fails.
    If he is in intranet all links function properly and there is no problem.
    What he would like to be able to do is to be able to access the content on server #3 when logging in via the RPS (Reverse Proxy Server)(server #1) which is connecting him to server #2. As a test one of the non-PeopleSoft URLs that work internally is http://websrvr/fitness/login.asp. He is trying to connect from server #1 to it which resides on server #3 when he tries that he could not find file.
    I have gone through some of the links and I came to know that IIS does not support reverse proxying. I am not sure completely. For reverse proxying, we need to use ISA server (Microsoft Product) before IIS. Is this true?
    Is Reverse Proxying supported in IIS? If yes, can anyone suggest me what to do in the above scenario.
    Thanks,
    Sreedevi

    Your DOCTYPE references 2.4, it should be 2.3. WLS 8.1 supports J2EE 1.3 which was servlet 2.3.
    Servlet 2.4 is part of J2EE 1.4 and is supported by WLS 9.0/9.1. Also it uses XML Schema not a DTD.
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • IIS Server 7.5 403 Forbidden Access Denied Error after submitting login Page

    Hi All,
    Need help to resolve below error:
    403 - Forbidden: Access is denied.
    You do not have permission to view this directory or page using the credentials that you supplied.
    Getting this error once hitting submit button, here i am entering only user name it should give an alert msg asking for the password. 
    The application is running on IIS server 7.5 and recently enabled Anonymous Authentication and since then it is giving this error.
    But if i am accessing the application locally it means in server machine it is working but from remote system it gives 403 error.
    Regards,
    Kirti

    Hi,
    it's difficult to say what exactly is causing without more info on you confiuration.
    I'm, from you description, assuming a webpage that was configured for forms authentication. You enabled anonymous authentication and now it no longer works.
    Forms authentication relies on webpage logic. In most cases, you cannot replace it 'like that' by another authentication method as the login page contains logic on how to store the usercredentials and/or authorization and were to go after authentication
    has finished.
    Anonymous authentication relies on the  application pool identitiy (or the anonymous user) having RX access to the content. Depending the configurations you made when enabling anonyous authentication, you might aditionnaly need to assign an identity
    to the anonymous user and configure ntfs privilges on the content.
    Check IIS logs and event logs for information. if you do not succeed to resolve, I would suggets to post on teh iis.net forums and include detailed configuration information.
    MCP/MCSA/MCTS/MCITP

  • How can I find what scom group a specific server belongs to using powershell?

    Environment:  SCOM 2007 r2
    Server in question:  Running Windows 2003 Std. (yes I know this sounds crazy)
    Why do I need this:  I noticed at the console level we have had server unexpected shutdown events which are not generating email notifications. 
    Source shows: Windows 2003 Server Standard Edition
    Alert Rule:  Windows Shutdown Unexpectedly
    From what I see these are all windows 2003 server Std edition systems.  I did a track and trace using our exchange tracking system which confirmed the alerts were not being emailed. Not sure if there is a better approach for this, but not being a sql
    expert (however I do have someone I can leverage) I am trying to see if I can somehow extract this information using powershell.
    Secondary general question:  How can I find out the current size of our scom 2007 database and the number of objkects\servers being monitored? This is prep work for a migration over to 2012.
    Thanks in advance for the help!

    1. what scom group a specific server belongs to
    function Get-GroupNames {
     [cmdletbinding()]
     param($computerFQDN)
     $containmentRel = Get-RelationshipClass -name:’Microsoft.SystemCenter.InstanceGroupContainsEntities’
    $computerClass = Get-MonitoringClass -name:”Microsoft.Windows.Computer”
    $criteria = [string]::Format(“PrincipalName = ‘{0}’”,$computerFQDN)
     try {
     $computer = Get-MonitoringObject -monitoringClass:$computerClass -criteria:$criteria
     $relatedObjects = $computer.GetMonitoringRelationshipObjectsWhereTarget($containmentRel,[Microsoft.EnterpriseManagement.Configuration.DerivedClassTraversalDepth]::Recursive,[Microsoft.EnterpriseManagement.Common.TraversalDepth]::Recursive)
     catch {
     $_
     write-host “An error occurred while querying groups of $computerFQDN”
    foreach($group in $relatedObjects)
     [array]$Groups = $groups + $group.SourceMonitoringObject.DisplayName
     if($groups) {
     return $groups
     } else {
     write-host “No groups available for $computerFQDN”
    Usage:
     Get-GroupName -ComputerFQDN myserver1
    for detail, pls. refer to
    http://techibee.com/powershell/powershell-get-scom-groups-of-a-computer-account/1129
    Roger

  • How to create a dynamic multi-line function in SQL Server

    I am attempting to create a Multi-Line Function in SQL Server that accepts a dynamic WHERE clause as a parameter. I need this so that the function can be as versatile as possible for the filter that needs to be applied. I am unfortunately getting an error
    upon creation of the function.  I don't know how to solve the problem. Can someone advise me?
    SQL:
    SET
    ANSI_NULLSON
    GO
    SET
    QUOTED_IDENTIFIERON
    GO
    -- =============================================
    -- Author:
    -- Create date: 2/3/2014
    -- Description: This multiline function will accept a generic WHERE Clause and apply it to the query for return.
    -- =============================================
    CREATE
    FUNCTIONTESTMULTILINEFUNCTION
    @WHEREvarchar(1024)
    ,@CHANGEDDATEasdatetime
    RETURNS
    @TESTTABLE
    TABLE
    IDint
    ,REVint
    AS
    BEGIN
    Declare@SQLSTRINGvarchar(4096)
    SET@SQLSTRING=''
    SET@SQLSTRING=@SQLSTRING+'SELECT
    REVS.ID, REVS.Revision
    FROM
    Select distinct result.ID, Max(Rev) as ''''Revision''''
    FROM
    Select * from dbo.BugsAll
    where
    [Changed Date] < @CHANGEDDATE
    ) result
    GROUP BY result.ID
    ) REVS
    join dbo.BugsAll BA on (BA.ID=REVS.ID AND BA.REV=REVS.revision)'
    IF
    (@WHEREisnotnullOR@WHERE<>'')
    BEGIN
    SET@SQLSTRING=@SQLSTRING+'
    WHERE '+@WHERE;
    END
    INSERT@TESTTABLE
    EXEC
    (@SQLSTRING)
    RETURN
    END
    GO
    ERROR:
    Msg 443, Level 16, State 14, Procedure TESTMULTILINEFUNCTION, Line 44
    Invalid use of a side-effecting operator 'INSERT EXEC' within a function.
    Senior Test Lead -- Microsoft

    >> Unfortunately I really need to form a dynamic query in a table valued function on the SQL SERVER. I have another tabled valued function that needs something returned as a table in order to further join the data. I am not allowed to use Stored
    Procedures in that function. <<
    You do know that real SQL programmers hate the proprietary nightmare of tabled valued functions?  This is how you procedural programmers avoid learning set-oriented declarative and functional programming. 
    Your mindset wants to write to a scratch tape or disk file (aka “tabled valued function result table”) just like you did BASIC, FORTRAN or COBOL. QL programmers do not have to materialize their data. We can use VIEW or a drive table as well as a base table. 
    >> Plus, there are occasions where I don't want to pass in a field [sic: columns are not fields] parameter or need to change a parameter list such that I don't wish the table function to filter by a particular field [sic] or other setting. <<
    What you want is a magical “Automobiles, Squids and Lady Gaga” function. An SQL programmer might write a complex VIEW then do simpler SELECTs off it. 
    >> My application pushes the WHERE clause from EXCEL to SQL to do the hard work as EXCEL is not the application in which I want to process the SQL statement and pass it via ODBC. I cannot run macros in Excel on the web.<< 
    This is a crazy language system. Usually we fetch data in SQL and then pass it to a math package, report writer, etc. We never keep logic (aka WHERE clauses) outside the database. 
    >> I am bummed about the fact that this feature doesn't work. It will up my server management costs to maintain unique tabular based functions based on WHERE clause query <<
    So stop writing those “tabular based functions”, change your mindset and start learning SQL and do it right. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • CONVERT function in SQL Server to oracle

    All,
    How to convert CONVERT function in SQL Server to oracle, below mentioned format is in SQL Server:
    variable1 = convert(numeric(20), SUBSTRING( parameter1,parameter2,parameter3)
    parameter1 datatype nvarchar2(100)
    parameter2 datatype bigint
    parameter3 datatype bigint
    I did bit R&D, but was not successful..but still getting on..
    If any help that would be great...
    Regards,
    ~ORA

    You cannot specify the precision/scale or length of input paramters to a stored procedure in Oracle, or at least the pl/sql engine does not respect the sizing. Assuming that you want to do something with variable1 in the procedure, and not just return it, the Oracle equivalent would be something along the lines of:
    SQL> CREATE FUNCTION f (p_param1 IN VARCHAR2,
      2                     p_param2 IN NUMBER,
      3                     p_param3 IN NUMBER) RETURN NUMBER IS
      4     l_var1 NUMBER(20) := SUBSTR(p_param1, p_param2, p_param3);
      5  BEGIN
      6     RETURN l_var1 * 10;
      7  END;
      8  /
    Function created.
    SQL> SELECT f('ABC10DEF', 4, 2) FROM dual;
    F('ABC10DEF',4,2)
                  100You may need to adjust the return type to match what you are actually returning.
    You can also use this iin a direct assignment in pl/sql without doig a select, something like:
    SQL> DECLARE
      2     l_num NUMBER(20);
      3  BEGIN
      4     l_num := f('ABC10DEF', 4, 2);
      5     DBMS_OUTPUT.Put_Line('The number is: '||l_num);
      6  END;
      7  /
    The number is: 100John

  • Where in migration process does old server stop functioning as primary server?

    I am migrating from a SBS 2003 box to a new WS 2012 R2 Essentials box - following the instructions from 
    "Migrate from Previous Versions to Windows Server 2012 R2 Essentials or Windows Server Essentials Experience".   What I need to know is where in the process does
    the old server stop functioning as a server for my network.   What I mean by this is when in the migration process (when I add the new server as a replicate DC?  not until I demote the old server?) will any programs/databases on the old server no
    longer be available to client computers?  
    Thanks for any insight.

    Yeah, we need to agree on what is meant by "the server". In Windows, Server means many different things. Each time you move, a role or feature from the "old" to the "new" the old server ceases to function as "the server"
    for that role or feature. The basic functions of a Windows DC include Active Directory, 5 FSMO roles, file and print services, and application services to name just a few.
    So the answer to your question is more to do with what you mean by "server".  In particular, for the application role, you must move the app to the new server by whatever means the developer recommends.  At that point, regardless of whatever
    else is going on the old server is out of the picture for that application.
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • Several Netpoint Site on same IIS server

    Hello
    Anyone knows of the best way to have several Netpoint site on the same IIS Server.
    So far I have installed 2 Netpoint sites on the same server in two different IIS Web Site (2 different TCP/IP ports, 80 and 81) one in production and one for testing. Each site uses its own Netpoint database defined in the web.config file. So far both sites work very well with their own database (only one syncs with netpoint and that is what we want)  I did not experiment with EMAILS so I dont know if the messaging service is able to attach to both databases/site.
    Does someone know how the messaging service selects the Netpoint database to use ?
    Will messaging work with both sites ?

    Hi Francois,
    After speaking with the developers it appears this is possible in Netpoint 5.9.
    You can manually edit the NPMessagingConfig.xml file to contain multiple entries and the messaging service will read each one when it executes.
    Each "website=value" must be unique.

  • OBIEE Installation (Basic) on IIS

    Hi Experts,
    Recently I have tried to install OBIEE on IIS. In the Installation Guide, I found the following instructions:
    To deploy Oracle BI Presentation Services and Plug-in with Microsoft IIS
    +1 Choose Advanced or Basic installation type.+
    +2 After you select the components to install, and if Presentation Services or Presentation Services Plug-in are selected, you are prompted to select the application server.+
    - Select Microsoft IIS.
    -- The ISAPI plug-in is installed in IIS.
    +3 When the Basic installation type is selected, the installer installs a stand-alone version of OC4J+
    and deploys Oracle BI Systems Management and Oracle BI Publisher in this container.
    However when I install OBIEE with Basic installation type, there is no step to select the Application Server.
    Has anybody encountered similar problem,
    Thanks!
    MB

    @John
    Thanks for the link. I had already seen it before and it had been very helpful.
    However my question was more about the Installation itself (not about moving the container).
    @wildmight
    I installed OBIEE once again on the clean WinServer with IIS up and running and there is an option to choose to install it in IIS.
    I guess my previous installations were done on WinServer without IIS.
    Thanks for your help,
    MB

  • What is the best email server for ios

    What is the best email server for ios

    Im going to go ahead and assume your talking to me?
        I ended up in this thread in search of a functional Exchange ready mail client capable of supporting multiple mail profiles. Since there are no free applications to accomplish this in the app stor, which I can find, I figured I'd leverage the 'community' for some direction before throwing good money after bad.
       As I assume Im not the only one to do this, I figured I'd help straighten these folks out on the lingo (as they werne't applying it properly) and the sassy 'sound like apple users' comment references the way ANTI-apple folks assume you people are less than adequite users.
       If I called an apple an orange, you would say I was wrong. If I did it repeatedly, after correction, you would assume Im incompetant.
       Seriously, its a stupid machine and will only do what you tell it. (true for all computers, apple or otherwise)
       So if I ask for a mail client, dont give me a provider. If I ask for a service, dont name a client. 
        Your right, this post is old. And stilll doesnt have an answer. . .
        In response to MichelPM, I didnt call your baby ugly. The 'Bandwagoning' is cute though. My advice is sound, and helping you folks not to look so... well... stupid.
        Since you interceded though, how about a little help? What mail client do you use? Is it exchange Compatible, with active sync? Does it offer multi-profile support? And the clients want images in their signatures, and multi signature support. (I can do this with my android phone ) 
    Im looking forward to your responses.

  • Why would adobe muse recommend hosting on BC for form functionality, if the server does not support PHP!

    I am adding custom landing pages to a business catalyst site and the coding came back as unsupported.

    BC is a .NET system. BC handles much of what you need without any server side coding. In fact you cannot use server side coding on BC.
    Read some of the KB docs if you if you need form functionality as they have it built in. You want to build a site with PHP then look at other options for hosting.

  • HTTP Submit Button - How to post data to an IIS Server

    Hello,
    I have created a simple form in LiveCycle designer. The form only has some check boxes, radio buttons and text fields for users to fill out. Everyone in my office is on webmail so the Email Submit button is not a smooth option for getting the xml data back to me.
    I would like to use the HTTP Submit button to allow users to submit their form data back to me but I am having trouble. I would like the xml files to end up in a directory on the web server.
    I set up an IIS 6 server and granted the Write right to the anonymous web user account. When I fill out the PDF form and click the HTTP Submit button it doesn't seem to work. Are there any special configuration changes I need to make to my IIS server to allow this data to be posted?
    Should this plan work? Should I be able to have users use the HTTP Submit button to post their data right to my IIS web server or is there some Adobe server I need to buy for this simple form? Also, I noticed that when I configure a standard button and set the Control Type to "Submit", there is an option on the Submit Tab to change the Submit As setting to "PDF". Does this mean that my users can fill out my form with Acrobat Reader and HTTP Submit the form to my web server as a PDF complete with their data? If not that's fine, I would be sufficiently happy if the users could post their XML files to the web server so I can open them in the form with Acrobat Professional.
    I am lost and would appreciate any good feedback.
    Thanks,
    Steve

    I think the problem may be missing what "submit" means. Submitting a
    PDF form, like submitting an HTML form, sends information to a web
    program or script, like an ASP, a CGI or a PHP. It does not just "save
    to the server", which seems to be what you are trying to do.
    Do you have the LiveCycle Form Manager product? If not I recommend the
    LiveCycle Designer forum: more folk there to help.
    Aandi Inston

  • What do I need J2EE server for ?

    Hi
    Can you please help me create a complite list of all components that needs J2EE server.
    Not only Portal but R/3, BW, XI , Adobe forms , Work flow ...
    Thanks
    Ziv

    There are a lot of functionality that are in the "grey area".  For example, SAP BI runs perfectly fine as AS-ABAP only but there are some functionality that require AS-JAVA.  Your best bet is to find out what application / functionality you require from SAP, then research to see if what you are after requires AS-ABAP and/or AS-JAVA.

Maybe you are looking for

  • Scored Items not starting at beginning on second try.

    I have a movie that has no actual quiz items yet when the student exits the course I want the LMS course summary page to read Completed - 100%, Passed. Score - 100%. I can achieve this on our IBM LMS by adding a scored interaction on my Next button o

  • DB Update from BAPI

    Hi All, I am trying to create a RFC FM ( BAPI) which will be called from external system. The role of this FM is insert to 3 different  Z tables.  Table structure's  is like Header, Details & Sub details. Requirement is if the insert/update fails on

  • JMS message redelivery in EJB 3

    Hi, We are using EJB 3, message driven bean as a subscriber to JMS queues. I am looking for an option which could enable us in driving the redeliver on failure & forwarding the messages to different queue in case of failure & reprocessing of messages

  • RAL question

    Gurus, I have a question on RAL configuration/setup (appl.comp BC-SEC-RAL) on NW74 SPS5 release. I am trying to configuring recording (dynpro channel) and eventually create a configuration based on the recording. I am running GUI 7.30 to start the tc

  • My adobe dreamweaver has started to act wierdly

    Every time i try to save a document, it puts an error message up I have no idea how this happened unless my antivirus software got a bit hungry and decided to chew on adobe and when i insert a DIV tag the DIV tag box shows up like this the bottons wo