Multiple SAML Service Providers

Hello
Is it possible to have multiple SAML 2.0 service providers configured per Weblogic domain or are separate domains required?  If it is possible I assume each SP would need its own WL server within the domain.  We are looking at ways of using Weblogic to handle saml authentication from multiple apps with each app configured as a SAML 2.0 Identity Provider on ADFS.
Jon

Just so you know, having a second AXL service provider is supported by Cisco.  Just check out this section of the Installation Guide for UCCX 9x.
In the Cisco Unified CM Configuration window, the Cisco Unified CCX 9.0(1) AXL Service Provider Configuration area for a Unified CM Cluster setup displays a list of IP addresses of the AXL Service Providers sorted by priority, where the Unified CM Publisher is listed first followed by the Unified CM Subscribers. During the AXL Service Provider Authentication in the Unified CM Cluster deployment, the priority is given to the Unified CM Publisher. However, if the Unified CM Publisher is offline or not available, the next available Unified CM Subscriber is chosen for user authentication. You can also change the priority of the AXL Service Providers, if necessary, by selecting the IP address of an AXL Service Provider in the list and clicking the up and down arrow.Note        As per the Unified CM design, even if the Unified CM Publisher is listed after a Unified CM Subscriber, the system will use the Unified CM Publisher for authentication. However, if the Unified CM Publisher is offline, the Unified CM Subscriber will use its own database to authenticate.
Source:
http://www.cisco.com/en/US/customer/docs/voice_ip_comm/cust_contact/contact_center/crs/express_9_0/installation/guide/UCCX_BK_I296D4AC_00_install-guide-uccx_chapter_0100.html#UCCX_TK_S152D4E4_00 - Step 10
Anthony Holloway
Please use the star ratings to help drive great content to the top of searches.

Similar Messages

  • OSPF between Multiple MPLS Service Providers

    Hi,
    One of my customer currently connects to three different MPLS providers. All the SP's PEs are already configured with the customer's subnets, but the CE is configured to point only to one of the PE as the default route. If the link to this SP is down, the customer need to manually change the default route to point to another SP.
    How can I enable dynamic routing, e.g. OSPF, to all the of service providers? What is required from the service providers to enable this?
    Thanks for all the advice.
    rgds,
    Arief

    A better understanding of the full topology, such as all the branches that this CE is talking to, and via which of the SPs they are reachable via would help.
    I do not see much problem, more especiall, if you take the pains to configure the routing protocol on the CE to only advertise the local subnet and not other subnets learnt by it.

  • Welcome to the Service Providers General discussion

    Welcome to the Cisco Networking Professionals Connection Service Providers Forum. This topic will provide you the opportunity to discuss issues surrounding General Service Provider solutions. We encourage everyone to share their knowledge and start conversations on issues such as storage Cable, DSL, WiMAX, and any other topic concerning SP networking.
    Remember, just like in the workplace, be courteous to your fellow forum participants. Please refrain from using disparaging or obscene language or posting advertisements.
    We encourage you to tell your fellow networking professionals about the site. If you would like us to send them a personal invitation simply send their names and e-mail addresses along with your name to us at [email protected]
    Dan Bruhn
    NetPro Community Manager

    Welcome to the Cisco Networking Professionals Connection Service Providers Forum. This topic will provide you the opportunity to discuss issues surrounding General Service Provider solutions. We encourage everyone to share their knowledge and start conversations on issues such as storage Cable, DSL, WiMAX, and any other topic concerning SP networking.
    Remember, just like in the workplace, be courteous to your fellow forum participants. Please refrain from using disparaging or obscene language or posting advertisements.
    We encourage you to tell your fellow networking professionals about the site. If you would like us to send them a personal invitation simply send their names and e-mail addresses along with your name to us at [email protected].
    Dan Bruhn
    NetPro Community Manager

  • 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

  • Best practices for Calling Multiple Business Services in OSB

    Hi All,
    I have a requirement where I need to call multiple business services in OSB. We are presently calling them sequentially in a proxy pipeline. I was wondering if we could accomplish the same task in a better way. Each of the business services are mutually exclusive.
    Thanks in Advance,
    Rudraksh

    Hi Eric,
    Thanks for the response. We figured that it is possible to call multiple services with Split Join. However, we ran into the issue you described. We had a blocking call and had to wait until each of the services returned a response.
    However, we needed a Async model for our design and felt that this might not be a right fit.
    We are now looking at implementing the publish option with QoS configured as this fits our usecase better. Thanks for the help again.
    Rudraksh

  • Unable to install Sun Java System MAPI Service Providers

    I tried to install the outlook connector for Outlook 2003. I've got the following error message. It said that Unable to install Sun Java System MAPI Service Providers. I am using Windows 2000 SP3 platform
    --- 2005/06/22 11:41 ---
    11:41:26 [5365] Outlook version is 11.0.6359.0.
    11:41:26 ERROR: [5501] Unable to find MAPI directory.
    11:41:26 No directory "C:\Program Files\Common Files\System\MAPI\LANGID" with LANGIDs: 1033, 0, 1033, 1033, 1033, 1033.
    11:41:26 [5475] TMP directory is 'C:\DOCUME~1\admin\LOCALS~1\Temp'.
    11:41:28 [5362] Checking Windows version.
    11:41:28 [5363] Windows version is 5.0.
    11:41:28 [5364] Checking Outlook version.
    11:41:28 [5509] Checking default mail client.
    11:41:28 [5508] Default mail client is 'Microsoft Outlook'.
    11:41:28 [5178] Verifying that Outlook is not running.
    11:41:28 [5179] Trying to login to shared session.
    11:41:29 ERROR: [5501] Unable to find MAPI directory.
    11:41:29 No directory "C:\Program Files\Common Files\System\MAPI\LANGID" with LANGIDs: 1033, 0, 1033, 1033, 1033, 1033.
    11:41:29 [5366] Checking whether Sun Java System MAPI Service Providers are installed.
    11:41:29 ERROR: [5501] Unable to find MAPI directory.
    11:41:29 No directory "C:\Program Files\Common Files\System\MAPI\LANGID" with LANGIDs: 1033, 0, 1033, 1033, 1033, 1033.
    11:41:31 ERROR: [5351] Unable to install Sun Java System MAPI Service Providers.
    11:41:31 ERROR: Unable to install Sun Java System MAPI Service Providers.
    Anyone can help for this? Thanks

    I have used this method, but the dog gone service does not return a started status. It just keeps saying starting even after the service starts.
    Download sc.exe from ftp://ftp.microsoft.com/reskit/win2000/sc.zip and copy
    it to system32
    Open a command line, change to C:\Sun\AppServer\lib and run:
    C:\winnt\system32\sc.exe create SJdomain1 binPath=
    "C:\Sun\AppServer\lib\appservService.exe
    \"C:\Sun\AppServer\bin\asadmin-pause.bat start-domain domain1\"
    \"C:\Sun\AppServer\bin\asadmin-pause.bat stop-domain domain1\"" start= auto
    DisplayName= "SunJava domain1"
    1. I'm no fan of windows and I prefer Solaris or Linux
    2. Windows should have this tool as a part of the OS so I don't have to go hunt for it
    3. I guess this solution is better than no solution at all :)

  • Multiple Web Services in one Jdeveloper project

    Hi all,
    I'm currently trying to implement a series of web services, all relating to one application. I'm using the top-down approach, where I generate the web service from a WSDL file, and add my implementation to the generated classes. The WSDL file imports all sorts of XML Schemas (xsd-files) and Jdeveloper correctly generates all the necessary java-classes for me. Lets call the first web service I create WS-1.
    This all works fine and I'm a happy panda. I can call the web service, it works, I can modif the wsdl and regenerate the web service to e.g. change the input etc. All this works.
    Just until the point where I want to create a second web service (lets call this WS-2). This new web service doesn't use all the XML Schemas that the first web service does, it is more simple with regards to in-/output. The problem arises when I modify WS-2 and Jdeveloper regenerates the Web service files (.java and the files in the WEB-INF/wsdl-directory). When I do this, it deletes the imported xsd-files that WS-1 uses (removes them from WEB-INF/wsdl).
    And when I regenerate WS-1 to get my xsd-files in again, then when I regenerate WS-2 it imports all the unnecessary xsd-files into the wsdl for WS-2.
    Something tells me, that there is a connection or shared library between all web services in one Jdeveloper project. That they all imports and uses the xsd-files in WEB-INF/wsdl.
    Is this true? Can't I have multiple web services (and wsdl-files) using different types (schema definitions) in the the same Jdeveloper project?
    One solution I can think of, is to have all my web services in different projects under the same application. But is this really necessary?
    I'm using Jdeveloper 10.1.3.3.0.

    Hi,
    pure from a coder instinct I think I would prefer them to be in separate projects for better reuse and clean separation. If I need project 1 to access aclass from Project 2, I can check the dependency check box in the project properties. Is there any business requirement that makes you think having all of these in a single project will help ?
    Frank
    Btw.: I agree that JDeveloper shouldn't constraint developers from doing what they want and if this is a limitation the feel free to file a bug

  • Views on multiple ExtendProxy services in same cluster

    Hi,
    I would like to load-balance 2 sets of clients for the same cluster such that each client set is balanced separately. The motivation is that one set is quite small and the other is much larger so it can happen that the clients in the smaller set all end up connecting to proxies on one host, instead of proxies on different hosts.
    I can think of 3 ways fo doing this:
    1) Create a ExtendProxy service, with 2 sub options:
    a) is it possible to expose to have an ExtendProxy JVM expose multiple proxy services (ExtendProxyService1, ExtendProxyService2).
    b) Running 2 parallel sets of ExtendPorxy JVMs
    2) Moving the load balancing out fo the proxy service (to an F5 BigIp in my case) and setting up 2 pools withthe same members. That avoids touching the cluster at all.
    Any opinions?

    Am I to understand that you have two managed servers, and you have two admin servers, both managing the two managed servers?
    That doesn't make sense. You shouldn't be managing a managed server from more than one admin server. The admin server represents a single domain. You can't have a managed server that's in more than one domain.

  • Hi i have pap2,i know to configure but need some info about the service providers in india

     plz help me in telling the service providers in india i used net4 phonewala before but want to use other service provider now..i have atleast 40 packs pap2 but dont know what to do with those...can i sell them ..plz help me

    netphonewala should unlock the units first. If the devices are locked or provisioned with them then you will not be able to use them with any other provider. The current ITSP where the devices are registered will be the ones to unlock the units.

  • OWSM and Webservices -Define policies once for multiple web services

    I thought that through using OWSM we had the possibility to use the same Policy Lines for multiple web services.
    Mostly when web services are used/integrated within an application, the same rules need to be defined and I thought this requirement could be met when using OWSM.
    But you need to define the policy requirements on each web service that's passing through a gateway or agent, why isn't it supported to define policy lines one level higher to be able to use the same requirements for multiple web services?

    Nathalie,
    For this purpose OWSM allows you to use Template Policy Pipelines.
    For individual services, you can than replace the pipeline with the Template.
    But I have to agree with you here: the templating functions are rough on the edges, e.g. limited editing capabilities.
    Hope this helps.
    Best regards, Sjoerd

  • Regarding multiple web service

    Hi,
    I am working on web services in EJB.
    for securing the web service, we use jboss-wsse security.
    Can i have multiple web services with few web services being secured and the others in-secured?
    Thanks in advance.

    Friends,
    Can you please help me out with this logic? Thanks!

  • Need to upgrade service providers of Moss 2007 to SharePoint 2013

    I have upgraded the Moss 2007 Content database via native approach into SharePoint 2013. I am wondering how we can upgrade the service providers of Moss 2007 to SharePoint 2013 service applications.
    Regards Restless Spirit

    Hi Restless,
    According to your description, my understanding is that you want to upgrade the service providers of MOSS 2007 to SharePoint 2013 service application.
    Per my knowledge, you need to firstly upgrade the service providers of moss 2007 to SharePoint 2010 via database content, then upgrade SharePoint 2010 service applications to SharePoint 2013.
    There are some useful articles for your reference:
    MOSS 2007 upgrade - Shared-Services Provider SSP migration and my sites
    MOSS SharePoint 2007 SSP migration to SharePoint 2010
    Upgrade service applications to SharePoint 2013
    Best Regards,
    Wendy
    Forum Support
    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]
    Wendy Li
    TechNet Community Support

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

  • Changing Service Providers and will lose email -- help!

    Hello,
    I'm switching service providers and cannot take my email address with me. 2 Questions:
    1. If I stop synching with my current provider, will NO email show up in my email box for that account, or will it save the current emails.
    2. How do I extract the email addresses/address book so that I can send a mass email to my contacts that i'm changing my email address?
    Thank you!!
    Kevin

    1. If I stop synching with my current provider, will NO email show up in my email box for that account, or will it save the current emails.
    Generally speaking, witnin 30 days this will be so.
    2. How do I extract the email addresses/address book so that I can send a mass email to my contacts that I'm changing my email address?
    Those should remain in AB, as all eMails should depending on account type... is this old one POP or IMAP?

Maybe you are looking for

  • Preciso de um conversor de 4 a 20mA para GPIB. Voces fornecem

    Gostaria de saber se vocês fornecem uma solução para medição de sinal de corrente padrão de instrumentação de campo (4 a 20mA) para protocolo IEEE 488 (GPIB). Um cartão de conversão ou algo deste tipo?

  • Creative suite 4 web premium and vista 64

    Hi.  I just purchases a new laptop and it has vista 64. I need to know if there have been any problems running the programs on creative suite web 4 with vista 64; or is this a better combo than vista 32?  Thanks for any info.

  • Servlet  encoding problem

    Hi, I have a servlet which need to send xml(Which can have any unicode characters) as response. Below are my trails. *1>>>* PrintWriter out = response.getWriter(); response.setContentType("text/xml;charset=ISO-8859-1"); out.write("<?xml version=\"1.0

  • AUDITTRAIL ON FND_USERS AND FND_USER_RESP_GROUPS

    Hello, I am trying to enable Audit Trail on my FND_USER and FND_USER_RESP_GROUPS tables for tracking the user creation and responsibility changes. I got stuck during the configuration process. I couldnt find the FND_USER and FND_USER_RESP_GROUPS tabl

  • RMI Callback Connection Refused Problem

    we are running Red Hat Linux 9, we previously had a problem connecting a server and client running in 2 different PC's. we had the following error Exception in mainjava.rmi.ConnectException: Connection refused to host: 127.0.0.1; nested exception is: