Multiple HTTP Services

Hi
I fill a mysql table with data from a datagrid. When the grid
if full (50 lines) I send 50 http service request that concerns
INSERT sql command. My question : Is there a better way then this,
as to send all data in a single http service? but how??
Thanks

"robbyk87" <[email protected]> wrote in
message
news:gnrl9a$pfr$[email protected]..
> Hey all,
>
> Is there a way I can OOP this so I do not have to create
another button
> set
> the source and create multiple http services?
>
> Surely there must! But alas, I am at a loss here.
>
> Basically if I needed to add more images - I would have
to create more and
> more http services as well as all the 'like' commands
for the image
> button.
I'm not sure what you mean by the "like" commands, but if you
just use a
repeater to repeat your buttons and use ONE HTTPService that
looks at what
index the button that was clicked is in the repeater list and
sends based on
that, I'd think you'd be pretty much there.

Similar Messages

  • HTTPS to Multiple HTTP service and ports

    Hello Guys,
    I am trying to set up a config in a one armed design with client connecting via https that should be redirected to differents http servers (some are port 80 others 8080 and 9000) and depending on the end of the HTTPS url I have to rewrite the end of the url to connect to the right application on the server.
    example i use
    https://mydomain.extranet.prod/reporting and this should be transformed in http://sdourep01.rep.fr:8080/
    But at the same time if the client use this https url:https://mydomain.extranet.prod/ged/appli1 it should be rerouted to others servers using port 9000.
    Can someone help on how with a same VIP and a same certificate i can balance the traffic to the right servers changing the ports and rewriting the url.
    Here is a sample of my config so far.
    Thanks

    if all you need is change the port, than can easily be done.
    Create a rule to handle the SSL traffic. A single rule for all your url is ok.
    Send the cleartext traffic to an ip port ie: x.x.x.x:81
    Then create multiple rules for x.x.x.x:81 with different url match statement.
    ie:
    content reporting
    virt x.x.x.x
    proto tcp
    port 81
    add service Server1_8080
    url "/reporing*"
    active
    Content Appli1
    virt x.x.x.x
    proto tcp
    port 81
    add service Server1_9000
    url "/ged/appli1*"
    active
    However, if you need the url to be changed as well as the port, then you will need to configure a redirect. Then catch the redirect with a new SSL rule and forward it to the specific server.
    Hope this helps.
    If you need more info, let me know.
    Gilles.

  • Can you run multiple Excel Services Applications against a single Web Application?

    I have been struggling with this one for a while now, hopefully someone can help me understand what I am missing...
    I have a single SharePoint Farm.  This farm runs multiple Web Applications & the Service Applications.
    1. SharePoint Only Server with Multiple Site Collections (http://sharepoint.com/...)
    2. MS Project Server with Multiple Site Collections (http://pwa.com/...)
    3. My services applications all exist on the same farm.
    I was under the impression, and believe that I validated this through testing and from this site (http://blogs.office.com/2009/11/16/excel-services-in-sharepoint-2010-administration-improvements),
    that you can only run a single Excel Services Application against each unique Web Application.  In essence, I can run one Excel Services Application against the SharePoint Only Server, and another Excel Services Application against the MS Project
    Server...  However, I can NOT run multiple Excel Services Applications against the different Site Collections within the MS Project Server becuase it is only aware of its "default" Excel Service Application. 
    ie. I can NOT do the following:  ExcelServiceApp1 for
    http://pwa.com/SiteA & ExcelServiceApp2 for
    http://pwa.com/SiteB
    Is that correct?
    If that is not correct, then I must be missing a way to specify a different Excel Service App for each Project Web App Site. 
    Some other solutions that I think may work, but would really appreciate if someone could validate:
    - Create multiple Project Server Service Applications for each instance of PWA/Excel Service? (but wouldn't this still have to use one of the two WebApplications and cause the same limitation?)
    - Create a new Web Applciation for each PWA/Excel Service?  (ie.
    http://pwasite1.com;
    http://pwasite2.com; http://pwasite3.com, etc.)
    Thoughts/suggestions are very greatly appreciated!!!

    Hello Trpy2k
    I have not done what you are doing and I assume that you are using project server 2010.  However, you answer lives in PowerShell.
    The New-WebServiceProxy show that you can create a new proxy by spacing a URL and not a web application. The default proxy from the web application is directing to the default excel service.  If you need another excel service, you must specify another
    proxy and this may do it for you.
    Also, don't forget the Secure State service and that each excel report will need this configured, that is with the assumption that the other excel service requires different authentication.
    PS.  This question may get a better answer in the SharePoint forums.
    Cheers!
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • Certificate error while connecting to multiple web service

    I am having a web service test client through which I can connects and get reports from multiple web services.
    In Development unix box, we are using "self-signed certificate" using keystore type JKS. In Production server, we are using certificate from CA.
    The web service is running in Development and in Production.
    Now I have developed single test client with a drop down selection for different web services. For example, if we select "Development", the request will go the development web service and if we select "Production", the request will go to Production web service.
    Now while connecting to Develpment service, we are settings the below certificates details Because we are using the self signed certificate.
    System.setProperty("javax.net.ssl.keyStore",keyStoreFileLocation);
    System.setProperty("javax.net.ssl.keyStorePassword",keyStorePassword);
    System.setProperty("javax.net.ssl.keyStoreType", keyStoreType);
    System.setProperty("javax.net.ssl.trustStoreType",trustStoreType);
    System.setProperty("javax.net.ssl.trustStore",trustStoreFileLocation);
    System.setProperty("javax.net.ssl.trustStorePassword",trustStorePassword);
    I am clearing the System properties using the System.clearProperty() while pointing to Production service. because in Production we are using the CA certificate from Thawte so these details are not required at all and our JRE (java 5) is pre configured to support that CA certificate.
    I am using Resin-2.1.12, axis1.2 and java5.
    Now the problem is
    (1) for the first time, when I send the request to Production Service URL, the report gets generated. For the next time when we are running against Development, it's giving below certificate error.
    sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    (2) Now restart resin and run the test client against Developemnt service URL, here report gets generated and for the next time, run the test client against Production, it's giving the certificate error.
    So for the 2nd request, it always gives the error irrespective of the web service instance selected.
    Please suggest ....thanks in advance.

    Hi  ,
    No, due to the issue is happening only on one computer.
    The error "(401) Unauthorized" usually indicates that the connection has been established but the permission check fails.  InfoPath Form Services uses the application pool identity of the web
    application to connect to resources.
    Does the account  which login the computer have permission to connect to User Profile Service Application?
    For a workaround, you can go to IIS Manager , set the User Profile Application Pool to Anonymous Access and try again.
    Also you can have a look at the blog:
    http://sharepointconnoisseur.blogspot.in/2011/04/how-to-resolve-401-unauthorized-error.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How best to make a transaction span multiple HTTP requests?

    Hi, all. What is the best way to implement a transaction that spans multiple
    HTTP requests? Many J2EE applications must solve this problem, but I can't
    any guidelines for an implementation.
    Consider an application that implements a multi-step wizard. Each step
    gathers data from the user; step one gets the user's name, and step two gets
    his dog's name. When the user completes the wizard, the application saves
    the user & dog in two entity beans. Conceptually, the application treats
    this wizard like a single, long-running transaction. The transaction begins
    when the user launches the wizard. Submitting the JSP for step one adds the
    Boy bean to the transaction, and submitting step two adds the Dog bean.
    Finishing the wizard commits the transaction. Exiting the wizard or timing
    out causes the transaction to rollback.
    Although the wizard looks like a transaction, the entire sequence of user
    interactions can't be captured in a single JTA UserTransaction. A
    UserTransaction must be associated with a single thread, but each wizard
    step is handled asynchronously by its own execution thread. It's impossible
    to funnel the conversation through one thread that can demarcate the
    transaction. (This would be a pretty dumb solution for other reasons, but I
    don't want to get lost in details.)
    I think the standard way to solve this problem is to store conversation
    state in a stateful session bean (or the http session) and create / update
    both entity beans in a transactional EJB method after the wizard completes.
    Unfortunately, this solution prevents me from leveraging a lot of great
    transaction management features provided by the app server. For example, I
    can't use optimistic concurrency to make sure that the dog object hasn't
    changed in the database between the start and end of the wizard. Also, I'm
    forced to keep track of changes to the dog object in the conversation state,
    then replicate these changes to an entity bean at the end of the wizard.
    Keeping track of state in a stateful bean is pretty straightforward, but it
    seems like there must be an existing solution that leverages the appserver's
    concurrency and state management features. Am I missing something? Is there
    code, a pattern, or an article that describes the best way to implement a
    multi-step process that looks transactional? I suppose WLI does what I want,
    but that feels like killing a roach with a SCUD missle. Thanks for any
    advice.
    Dave

    Dave Smith wrote:
    Without a transaction, will the app server manage the version column
    automatically, assuming of course that <concurrency-strategy> is
    "Optimistic" and <verify-columns> is set to "Version"? Of course, I'll have
    to expose the version as a cmp-field, which is fine with me.Yes
    >
    Do you know offhand, so that I don't have to get off my lazy ass and write a
    test, whether the CMP service will create the version column when it
    generates db tables? (I realize it's not good to let WLS generate the tables
    in a production system.)No, I don't think it does.
    >
    I assume from your answer that I'm on my own for implementing stuff like and
    transaction inheritance and tracking object modifications? Well, we'll give you a bit of help on the object modifications. The
    usual pattern is when you're pushing the JavaBean back to the CMP you
    call all the setXXX methods on the CMP bean. Our CMP container will
    check if the value you are setting is the same as read from the db. If
    so, it will not update that column.
    -- Rob
    If so, no big
    deal. I was just hoping somebody would say, "Oh, you want the Jakarta
    SuperBeans project" or something.
    Thanks,
    Dave
    "Rob Woollen" <[email protected]> wrote in message
    news:[email protected]...
    I'd recommend that you include a separate version or timestamp column in
    your db schema.
    Then do something like this:
    Client Server
    1) First HTTP Request
    2) Read current Dog and Boy Entity Beans
    (if any) and copy their values into a JavaBean.
    You want to include the version
    column(s) in the JavaBean(s) along with the data values.
    You probably also want to store the JavaBeans in
    your HTTP Session.
    3) Client proceeds through wizard interacting with JavaBeans
    4) Finish with Wizard, copy JavaBean values (including
    version columns) to CMP 2.0 Entity Beans.
    The version column will give you the optimistic concurrency protection
    that you desire without opening a JTA transaction to span user input.
    -- Rob
    Dave Smith wrote:
    Hi, all. What is the best way to implement a transaction that spans
    multiple
    HTTP requests? Many J2EE applications must solve this problem, but Ican't
    any guidelines for an implementation.
    Consider an application that implements a multi-step wizard. Each step
    gathers data from the user; step one gets the user's name, and step twogets
    his dog's name. When the user completes the wizard, the applicationsaves
    the user & dog in two entity beans. Conceptually, the application treats
    this wizard like a single, long-running transaction. The transactionbegins
    when the user launches the wizard. Submitting the JSP for step one addsthe
    Boy bean to the transaction, and submitting step two adds the Dog bean.
    Finishing the wizard commits the transaction. Exiting the wizard ortiming
    out causes the transaction to rollback.
    Although the wizard looks like a transaction, the entire sequence ofuser
    interactions can't be captured in a single JTA UserTransaction. A
    UserTransaction must be associated with a single thread, but each wizard
    step is handled asynchronously by its own execution thread. It'simpossible
    to funnel the conversation through one thread that can demarcate the
    transaction. (This would be a pretty dumb solution for other reasons,but I
    don't want to get lost in details.)
    I think the standard way to solve this problem is to store conversation
    state in a stateful session bean (or the http session) and create /update
    both entity beans in a transactional EJB method after the wizardcompletes.
    Unfortunately, this solution prevents me from leveraging a lot of great
    transaction management features provided by the app server. For example,I
    can't use optimistic concurrency to make sure that the dog object hasn't
    changed in the database between the start and end of the wizard. Also,I'm
    forced to keep track of changes to the dog object in the conversationstate,
    then replicate these changes to an entity bean at the end of the wizard.
    Keeping track of state in a stateful bean is pretty straightforward, butit
    seems like there must be an existing solution that leverages theappserver's
    concurrency and state management features. Am I missing something? Isthere
    code, a pattern, or an article that describes the best way to implementa
    multi-step process that looks transactional? I suppose WLI does what Iwant,
    but that feels like killing a roach with a SCUD missle. Thanks for any
    advice.
    Dave

  • Creating multiple http servers on one machine

    I created multiple http servers on one machine.
    I did this in the following way:
    Created a http service as nt service with the following command:
    apache -i -n Testservice -f d:\oracle\isuites\apache\apache\conf\httpd2.conf.
    When I start the service, I always get an error:
    Didn't return an error. Cannot start service.
    Can someone help me.
    I need two httpd services as nt service. Because, I want to use oracle fail safe. So I need a service.
    Alternative : I can create batch files. But I want to start these batch files as nt service. Is there a possibility on
    Windows nt to do this, or an available tool.
    Thanks in advance,
    Iloon

              "Jason Rosenberg" <[email protected]> wrote:
              >Hello,
              >
              >I am wondering about having multiple servers on one machine.
              >I take it, each server will require a unique ip address, which can
              >be done either by using multiple NIC's or using multi-homing.
              If you want to have multiplie servers in the same machine and you want to cluster them then you need ip for each instance.
              If you want multiple instances without clustering, then you can have them run on the same ip but each one should have a different port.
              >
              >I am asking because I am wondering whether it will always be valid
              >for me in servlet code to identify my current server instance by
              >ip address (InetAddress). Or is there a better way to do this?
              If you are accessing the ejb/services on the same server using a servlet. You can get the context, simply using the default getInitialContext(). This should return the context to the local machine. This shoudnt require any ip information.
              >
              >Jason
              >
              >
              

  • Dynamic orchestration using multiple proxy services

    The project I am currently on is using ALSB for service orchestration. For a given orchestration, we would have one orchestration proxy (the control center), that synchronously calls a sequence of alsb proxy services.
    Each proxy service in this second level fronts one or more business service calls to perform a specific operation ("Create Account", "Create User", etc.).
    So far so good, all this can work just fine (and much of it is already working in production). The trick that I am trying to make happen currently, is to dynamically load the list of second-level proxies and loop through the list to trigger calls.
    Loading a list of proxy paths/names is no problem, I have many options there. It's when I try to take that list and loop through it, calling each proxy on the list that I am stuck.
    Unfortunately, it appears I could have three routing choices and none of them work:
    1. Service Callouts only work with a static service name, not a dynamic one (so even if I had a for-each loop around a Service Callout action, it doesn't do me any good).
    2. Dynamic Publish actions are asynchronous only
    3. Dynamic Routing actions inside Route nodes work, except that only one can exist per proxy service.
    Am I missing anything? Is there some way to get ALSB to accept dynamic synchronous invocation of multiple proxy services from one orchestration proxy service?
    Meghan Pietila
    Granite Consulting, Inc.
    Minnesota

    A way of Invoking a dynamically chosen proxy service (PS) synchronously could be the following.
    Service Callout actions are synchronous, so ALSB will block in PS2 (PS=proxy service) when it does the invocation of PS1.
    Assuming the following very simple scenario (I hope to have understood correctly your case):
    OPS = orchestration proxy service
    case1: OPS -> PS1 -> PS3 -> ...
    case2: OPS -> PS1 -> PS2 -> ...
    where each PSi calls one or more business service (I suppose that the business services called in each PSi are called in a predefined order), so what is changing from one case to another is the sequence of PSi to be called.
    I've setup the following ALSB project:
    - OPS proxy services
    - PS1 .. PS4 proxy services
    - a proxy called 'step'
    - a xquery called 'routing'
    The idea is to call, from OPS, another proxy (the 'step' proxy) in a synch way (service callout) passing the information of what proxy should be called dynamically.
    In the 'step' proxy then I create the <route><service> XML fragment, for the Dynamic Route action. This <route><service> XML fragment will point to the configuration of yet another proxy service (PSx), that is the PSx that I want to call.
    One limitation is that I assume that your OPS always calls for example 2 proxies which name is resolved dynamically.
    About the xquery:
    <routing>
    <case name="1">
    <node>PS1</node>
    <node>PS3</node>
    </case>
    <case name="2">
    <node>PS1</node>
    <node>PS2</node>
    </case>
    </routing>
    OPS performs the following steps:
    - chooses what is the case: 1 or 2
    - does 2 service callout to the proxy called 'step' passing each time the correct node to be called
    $routing/case[@name=data($case)]/node[1]
    $routing/case[@name=data($case)]/node[2]
    In the 'step' proxy I do a dynamic publish to desidered PS:
    <route xmlns="http://www.bea.com/wli/sb/context">
    <service isProxy="true">{ $proxyToBeInvoked }</service>
    </route>
    where the proxyToBeInvoked variable is built from the node received by the caller.
    I've used this approach in a solution currently under development but I've found some problems when I want to receive back in OPS the error raised by any PSi: I'm able to catch the error but I'm not able to receive back the detailed error like in an usual stack trace.
    I hope that could be useful.
    Regards
    ferp

  • Can't have multiple Web Service connections in SP1

    Hello,
    I'm currently interested in adding more than 1 Web Service connection to a particular xcelsius file, but after adding the first connection, the option is disabled in the Data Manager screen. Is there a workaround for this, since before service pack 1 you could have any amount of connections and as off upgrading this was changed.
    Regards

    Yeah I totally agree, It's like someone giving you a bunch of new appliances for your home but then telling you that your not going to have any electricity.  This product is pretty much usless to me now.
    Just the thought of having to partially develop in one version of xcelsius and then port over to a version that has SP1 installed makes me ill.  From what I can tell Xcelsius Engage Server still has multiple web service connection functionality enabled (http://www.businessobjects.com/product/catalog/xcelsius_engage/comparison.asp), I'm interested to see what the cost will be to upgrade to Server.

  • Charts are not working in Multiple Presentation Services environment.

    Hi ,
    I have implemented multiple presentation services enviornment bu follwoing this blog: http://rnm1978.wordpress.com/2009/08/25/multiple-rpds-on-one-server-part-2-presentation-services/. It was successfully implemented but charts are not working for any of the Presentation instyance.
    Kindly help us in providing the solution for this issue.
    Thanks,
    Jaishree

    thats true , but to how enable the Java host services as its not getting started from the Service Panel>Oracle Java Host Services.

  • Problem with Multiple Presentation Services

    Hello,
    Can any one help me out regarding multiple presentation services with different servers like url of the presenation services should be like
    http://localhost1:9704/analytics and
    http://localhost2:9705/analytics_test
    i have done up to the different port numbers,by deploying analytics_test in enterprise manager and changed the port number in web.xml and created new another instance config file with changed DSN name and listener port ,and also making changes in xmlp-server-config.xml and bioffice.xml but i am struck at host names now, where do i need to do changes so that i get
    localhost1 and localhost2 ??
    Thank you

    If you want to work on test environment on your own machine, you can follow the instruction in the link above :
    http://bvellinger.blogspot.com/2008/01/obiee-10132-and-multiple-presentation.html
    Then you must edit the file :
    C:\WINDOWS\system32\drivers\etc\host
    And modify it like this :
    127.0.0.1       localhost1
    127.0.0.1       localhost2Then a ping return a reply :
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\Nicolas>ping localhost1
    Pinging localhost1 [127.0.0.1] with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Documents and Settings\Nicolas>ping localhost2
    Pinging localhost2 [127.0.0.1] with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Documents and Settings\Nicolas>

  • Create Multiple presentaion services

    Hello,
    I am trying to create multiple presentaion services by referencing the following document
    http://gerardnico.com/wiki/dat/obiee/obiee_and_multiple_presentation_services_windows
    In this document at step 2 it says
    Copying the original catalog into another directory is how to create the new catalog. Copy the directory OracleBIData\web\catalog to OracleBIData\web\catalog_test. Now the new catalog-directory is ready to use and should be entered in the configuration file ( instanceconfig.xml).
    The first part of step 2 is fine.What does it mean by "Now the new catalog-directory is ready to use and should be entered in the configuration file ( instanceconfig.xml)"
    Does it means I need to enter one more entry for serverinstance in the same file?
    And also step 3 says
    Change the listener port in file instanceconfig_9710.xml into 9710. Also change the listener port in file instanceconfig_9712.xml into 9712.
    There is no listener port 9710 in instanceconfig.xml file.
    I am very confused.Please suggest.
    Thanks in advance

    Hello Goran,
    Thanks for the reply.
    I didn't understansd the below steps in the provided link
    The command c:\>C:\instrsrv.exe "Oracle BI Presentaion SErver Two" C:\srvany.exe
    What does the above command do?
    and you also performed this step after the above step
    C:\instsrv.exe “Oracle BI Presentaion Server Two” Remove
    Why is it for?Please clarify.
    Thanks in advance

  • Multiple presentation services

    Hello,
    Can any one help me out regarding multiple presentation services with different servers like url of the presenation services should be like
    http://localhost1:9704/analytics and
    http://localhost2:9705/analytics_test
    i have done up to the different port numbers,by deploying analytics_test in enterprise manager and changed the port number in web.xml and created new another instance config file with changed DSN name and listener port ,and also making changes in xmlp-server-config.xml and bioffice.xml but i am struck at host names now, where do i need to do changes so that i get
    localhost1 and localhost2 ??
    Thank you

    Hello,
    Can any one help me out regarding multiple presentation services with different servers like url of the presenation services should be like
    http://localhost1:9704/analytics and
    http://localhost2:9705/analytics_test
    i have done up to the different port numbers,by deploying analytics_test in enterprise manager and changed the port number in web.xml and created new another instance config file with changed DSN name and listener port ,and also making changes in xmlp-server-config.xml and bioffice.xml but i am struck at host names now, where do i need to do changes so that i get
    localhost1 and localhost2 ??
    Thank you

  • Is it possible to define multiple web services in one project?

    I'd like to publish multiple components within one project as web services. but when I try to create it using the project New menu, it only prompts me and allows me to select one component . So does this mean only one web service can exist in one project?

    Sunil
    Thanks for the prompt reply.
    I think I should have worded my question more clearly.
    I have a project with multiple Java classes. I'd like to convert two of them into web services.
    There are two ways to co this.
    1. I right click on each class and select the Generate J2EE Web Service option. This will work correctly and allow multiple web services to be generated.
    but this is not what I want to do .
    What we are trying to do is to generate web services at the project level. I am following instructions in OTN web services tutorial :
    http://www.oracle.com/technology/obe/obe1013jdev/ws/wsandascontrol.htm
    So , this is what I do :
    1. Right-click on my project and select New from the context menu.
    2. In the New Gallery, expand Business Tier in the Categories list and select Web Services, then select Java Web Service from the Items list. Click OK.
    3. In the Select J2EE Web Service Version dialog, select J2EE 1.4 (JAX-RPC) Web Service, then click OK.
    4. Click past the welcome page
    5. This brings me to the page where I can select the web service and class.
    This is where I am stuck - it seems I can only select one web service here . Unless I am missing something.
    Or should I just repeat the process multiple times - running the wizard once for each class ?
    Thanks for the help.

  • Are multiple presentation services on a single server really unsupported?

    Hello all,
    I can hear everywhere that multiple presentation services on a single server are not supported by Oracle, but I can't find an official source stating this.
    All I could get is this page where it is stated that it is not recommended (but not unsupported):
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=1111655.1&h=Y
    Can anyone please advise ?
    Thank you in advance,
    Cedric.

    Hi cedric,
    It is not recommened is what i can say,in simple words it gets jammed when you try to build a request from any of the services.
    It is not supported cant be the reason,it has a work around to go and do that
    Follow these blogs Multiple presentation servers using the same RPD
    http://obiee101.blogspot.com/2009/10/obiee-multiple-repositorys-multiple.html
    UPDATED POST
    There is no such official document saying about its support by oracle,but oracle wont support handling two servers in production as it is not legal and it is going against the product capabilities.I would suggest you not to go with it.
    Cheers,
    KK
    Edited by: Kranthi.K on Apr 11, 2011 2:53 AM

  • Http service of message Server offten core down?

    our company buy the jes sysytem , when i use it . i find a error that make http service of message server often core down these days, i want to know the reason. here is the environment and the error message:
    Sun Java(tm) System Messaging Server 6.1 (built Apr 28 2004)
    libimta.so 6.1 (built 12:38:06, Apr 28 2004)
    SunOS staff-jes1.sina.com.cn 5.9 Generic_117172-07 i86pc i386 i86pc
    error message is:
    Assertion failed: U_SUCCESS(err), file mee.c, line 1700

    httpd problem seems to go away now. It's been up for two days without crashing.
    But I got to tell you, applying patch on JES is not easy if you have customized webmail interface. And If you have multiple customized webmail interface, it's a lot of work. Mind you we only have 3 customized domains. The patch does not apply to those so you have to do it manually for each customized domains. Maybe I missed something, please tell me.
    Sun should change the current implementation customized domains. For ISP like us planning to put 5000 domains on JES, that means 5000 links or directories on /opt/SUNWmsgsr/config/html to provide customized interface for each one. Again. maybe there is a different way that I don't know.

Maybe you are looking for

  • Reading XML object from Request object

    Hi, We are using Flash in our web application in which we are sending an XML object using HTTP post method to a JSP where we need to parse the XML object and get the values. Can anyone tell how we can do it?

  • Getting stylesheets to work in header.php and files associated with it

    Let's say I created a header.php file in my includes folder.  And I include it in my index.php file in the site root directory. Then in the header.php file, I have a link to the style sheet.  The issue I've always found is that you can't get the head

  • How to get rid of 'BITMAP CONVERSION' in Execution Plan.

    Hi I am using oracle 10g. I am getting the path of execution of the query something as below. I have posted some part of it not all. I want to get rid of this 'BITMAP CONVERSION' Section of the path, is there any hint for the same in oracle? |  56 | 

  • Enterprise DIM adapter

    Has anyone successfully used the PowerCenter DIM Adapter for Enterprise for data/metadata extraction? Any assistance would be appreciated.

  • IIS Error 500

    Hi All, In one of the secondary server (MP,DP installed) showing error 500. but Mpcontrol.log said 200 Ok message. Also I can browse the MP link without  any issue. I tried to restart the services but still getting error 500 in IIs. Its win2k8 server