Connections for Syndication Server

Hi all
In my repository in Connections table I have an entry for MDM Syndication server. What is this for? normally we will have connections for all GUI showing all the active sessions.
Thanks-
Ravi Kumar

Hi Ravi,
Connection tabel will display the applications connecting to the MDM repository.
Connection records consist of a predefined set of fields and are system-managed by MDM. Each record represents an MDM client application that is currently connected to the repository, along with the connection time and time since last access, allowing you to monitor connection activity.
Even if you have the portal server connecting to the rep you will get it in connecntion tables.
like SAP MDM JAVA API
Hope It Helped,
Thanks & Regards
Simona Pinto

Similar Messages

  • Error while creating connection for Application server in Jdeveloper

    Hi,
    I am trying to create a new connection for my weblogic server from JDeveloper
    I am using weblogic 6.1
    The error is :javax.naming.AuthenticationException [Root exception is java.lang.SecurityException : attemting to add an object which is not an instance 0f java.security.Principal to a subject's Principal set
    I am currectly passing my userID and password. but still it is giving the above exception.
    Please advise me.
    With thanks
    Murthy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    HI
    In JDeveloper 10.1.3.1.0,
    1. Click on the tab for the Connections navigator.
    2. Right click on Application Server and select New Application Server Connection.
    3. Enter a descriptive name for the new connection, and select the appropriate connection type from the drop down list. Click Next.
    4. Specify oc4jadmin for User Name, then enter the oc4jadmin password. Click Next.
    5. Select Single Instance for Connect To, then provide the host name where BPEL is installed, the OPMN port number, and the OC4J instance name (the default for 10.1.3.1 is oc4j_soa). Click Next.
    6. Click Test Connection. If you have been successful, you should see "Success!"
    7. Now, right click on Integration Server and select New Integration Server Connection.
    8. Specify a connection name and click Next.
    9. In the drop down list by Application Server, select the Application Server Connection you just created. Again, specify the host name where BPEL is installed and the port number. This port number will be the same that you specified for the Integration Server Connection to the home OC4J container. Click Next.
    10. Test the connection. You should see something like:
    Application Server: OK
    BPEL Process Manager Server: OK
    ESB Server: OK
    11. Now, return to the Applications navigator, and try to redeploy your process using the Integration Server Connection just created. (It is possible that you will have to close JDeveloper and then reopen it for this to work.)
    Cheers
    Anirudh Pucha

  • Connection for "composite server"

    IHAC that is trying to create a VO from a connection to "composite server" http://www.compositesw.com/products/information-server
    using Integrated Weblogic. Composite Studio Server is a data virtualization tool. For more info go to http://www.compositesw.com/products/information-server
    1. Created a DB Connection using Third Party Database driver(jar pulled from software)
    2. Tried to create ADF BC View Object from the Connection(From Step 1), Its throwing error.

    Customer using 11.1.1.4
    customer tried to connect to Composite Studio Server (Data Virtualization Tool) views using Third Party Database Driver. I could connect successfully but could not access any views in ADF BC Create Widgets. While opened Create View Object Wizard, In Query Step, clicking next it throws error that Query is not correct, but while executing the same query using JDeveloper Database Navigator SQL Editor it is working fine.
    Queries Used for ViewObject
    SELECT viewConferenceSearch.ConfRecNum, viewConferenceSearch.Acronym, viewConferenceSearch.ProjectCode, viewConferenceSearch.ConfTitle, viewConferenceSearch.City, viewConferenceSearch.CountryCode, viewConferenceSearch.CountryName, viewConferenceSearch.StartDate, viewConferenceSearch.EndDate, viewConferenceSearch.Keyword, viewConferenceSearch.Comments FROM viewConferenceSearch
    This is the log message i see in Unexpected Error Dialog
    Performing action New...[ from oracle.ide.navigator.ProjectNavigatorWindow ]
    Performing action New...[ from oracle.ide.navigator.ProjectNavigatorWindow ]
    Uncaught exception
    java.lang.OutOfMemoryError: Java heap space
    sun.management.MemoryUsageCompositeData.toCompositeData(MemoryUsageCompositeData.java:33)
    sun.management.MemoryNotifInfoCompositeData.getCompositeData(MemoryNotifInfoCompositeData.java:42)
    sun.management.MemoryNotifInfoCompositeData.toCompositeData(MemoryNotifInfoCompositeData.java:36)
    sun.management.MemoryImpl.createNotification(MemoryImpl.java:168)
    sun.management.MemoryPoolImpl$CollectionSensor.triggerAction(MemoryPoolImpl.java:300)
    sun.management.Sensor.trigger(Sensor.java:120)
    Uncaught exception
    java.lang.OutOfMemoryError: Java heap space
    o.i.net.JarIndex.flushCache(JarIndex.java:732)
    o.i.net.JarIndex$1.run(JarIndex.java:136)
    j.util.TimerThread.mainLoop(Timer.java:512)
    j.util.TimerThread.run(Timer.java:462)
    Edited by: jhpierce on Sep 18, 2012 9:54 AM

  • JDBC connection for SQL Server 2000

    How to connect SQL Server 2000 from java?
    If i can get any sites where i can get examples also fine.
    Thanks in advance
    Praveen.

    Developer's Daily  Java Education 
      front page | java | perl | unix | DevDirectory 
      Front Page
    Java
    Education
    Pure Java
       Articles
    JDBC 101: How to connect to an SQL database with JDBC
    Introduction
    If you're interested in connecting your Java applets and applications to standard SQL databases like Oracle, Informix, Sybase, and others, JDBC is your ticket to paradise.  The combination of Java's JDBC and standard SQL makes a simple and powerful database solution. JDBC makes the simple things easy -- without making the complex tasks too difficult either.
    In this first article in our series, we'll show you step-by-step how to establish a connection from your Java programs to an SQL database using JDBC. In the process we'll show you how to connect to two different databases -- Mini SQL (mSQL), and Interbase -- just so you can see how the code changes when you switch from one database to another.
    Obtaining the JDBC driver
    Before you start working with JDBC, you'll need a copy of the Java JDK. If you don't have it already, you can get the JDK for free at Sun's Java web site, or it will also be included with many IDE's that you can purchase, such as JBuilder or Visual Cafe.
    Once you have the JDK, the next thing you need to do is to get the correct JDBC driver for your database. In most cases the JDBC driver will be provided by your database vendor. For instance, if you purchase the Interbase database, the driver will be provided with the software, or you can obtain the most recent version at http://www.interbase.com/.
    (An exception to this rule is Mini SQL, or mSQL. Because it's a very low-cost database, the JDBC driver has actually been developed by a separate group of people, led by George Reese at imaginary.com. You can download the mSQL JDBC driver from the imaginary.com web site.)
    Once you have the correct JDBC driver for your database, install it according to the instructions that came with it. Installation instructions will vary somewhat for each vendor.
    Establishing a connection is a two-step process
    Once you have the correct JDBC driver installed, establishing a connection from your Java programs to your SQL database is pretty easy.
    Regardless of whether you're trying to connect to Oracle, Sybase, Informix, mSQL, or Interbase (or any other JDBC data source), establishing a connection to an SQL database with Java JDBC is a simple two-step process:
    Load the JDBC driver.
    Establish the connection.
    We'll show you two examples just so you can see how easy it is, and how little the code changes when you migrate from one database server to another.
    A Mini SQL Example
    Listing 1 provides the full source code required to establish a connection to a mSQL database on a server named "www.myserver.com".
      //  Establish a connection to a mSQL database using JDBC. 
    import java.sql.*; 
    class JdbcTest1 { 
        public static void main (String[] args) { 
            try { 
                // Step 1: Load the JDBC driver. 
                Class.forName("com.imaginary.sql.msql.MsqlDriver"); 
                // Step 2: Establish the connection to the database. 
                String url = "jdbc:msql://www.myserver.com:1114/contact_mgr"; 
                Connection conn = DriverManager.getConnection(url,"user1","password");  
            } catch (Exception e) { 
                System.err.println("Got an exception! "); 
                System.err.println(e.getMessage()); 
      Listing 1: This source code example shows the two steps required to establish a connection to a Mini SQL (mSQL) database using JDBC. 
    An Interbase Example
    Listing 2 provides the full source code required to establish a connection to an Interbase database. In this example, we're connecting to a local Interbase server (i.e., the server is running on the same PC that we're running the Java code on).
      //  Establish a connection to an Interbase database using JDBC. 
    import java.sql.*; 
    class JdbcTest1 { 
        public static void main (String[] args) { 
            try { 
                // Step 1: Load the JDBC driver. 
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 
                // Step 2: Establish the connection to the database. 
                String url = "jdbc:odbc:contact_mgr"; 
                Connection conn = DriverManager.getConnection(url,"user1","password");  
            } catch (Exception e) { 
                System.err.println("Got an exception! "); 
                System.err.println(e.getMessage()); 
      Listing 2: This source code example shows the two steps required to establish a connection to an Interbase database using JDBC. 
    What's the difference?
    The difference between the two source code listings is very small, so we highlighted them in a dark blue color. The only difference between connecting to the two databases is:
    The name of the JDBC driver.
    The URL used to connect to the database.
    Everything else in the two source code listings -- except for the comment at the top -- is identical. Here's a slightly more detailed discussion of the two differences:
    1. The JDBC Driver
    The name of the JDBC driver will be supplied to you by your database vendor. As you can see in the class.forName() statements, these names will vary. In the first case we're using the mSQL-JDBC driver. In the second case we're using the JDBC-ODBC Bridge driver supplied with the Interbase server.
    2. The URL
    The syntax of the DriverManager.getConnection() method is:
    DriverManager.getConnection(String url, String username, String password);
    The username and password are the normal names you use to log into your database. The URL you use will again vary with the database you use. In both examples shown, we're establishing a connection to a database named contact_mgr. (We'll use this database for all of our examples in this series of JDBC articles.)
    If you stick with standard SQL commands, it can be very easy to switch from one database server to another. In fact, I've heard from several developers who are using mSQL to prototype their software (because it's so inexpensive), and then switching to another commercial vendor when it's time to take their product "live".
    Conclusion
    Establishing a connection to an SQL database with Java JDBC is a simple, two-step process. The process is nearly identical for all SQL databases, and the only real differences are (a) the driver name, and (b) the URL used to connect to the database. Your database vendor will provide this information in their documentation.
    Resources mentioned in this article
    Here are a few links to resources we mentioned in this article:
    Interbase
    The Mini SQL (mSQL) database
    The mSQL-JDBC driver at imaginary.com
      [an error occurred while processing this directive]
     

  • Internet connection for Windows Server 2008

    I have an HP ProBook 6545b notebook computer which I installed an evaluation copy of Windows Server 2008 on. I'm trying to get internet connectivity to work but as yet, it's not.
    I get the message that it can't find a network interface card but even with an Ethernet cable connected, it still won't connect to the internet.
    For the background, this is the first time I'm trying this on a home computer being I'm a 2012 graduate of a technical school and I'm re-reading all my computer related textbooks.
    The HP notebook I'm using gets the internet connection when I have Windows 7 Professional installed.
    Is/are there a driver/drivers needed or a service in 2008 I need to install? If it's a driver, where can I get it?

    Hi,
    That mean windows server does not recognize your network card, you can try the manufacturer driver, or the best move would be to setup a small virtual machine on your notebook, under a windows 7's OS.
    You could use virtualbox, or similar product to achieve the goal.
    Thanks
    Regards, Philippe
    Don't forget to mark as answer or vote as helpful to help identify good information. ( linkedin endorsement never hurt too :o) )
    Answer an interesting question ? Create a
    wiki article about it!

  • JDBC Connectivity for SQL Server 2005 Windows Authentication Mode

    Hi Everyone,
    In my Scenario we are using SQL Server 2005 with Mixed Mode Authentication. Now we are planning to move only with Windows Authentication Mode.
    We have configured DB with Window authentication mode & user id have been configured in PI channels however we are getting error. We checked microsoft site, which says Windows Authentication mode DB can not be connected using JDBC drivers.
    http://support.microsoft.com/kb/313100
    In this above link see Basic Connectivity Troubleshooting Section.
    Please let me know if someone confirued JDBC Channel Successfuly with Windows Authentication Mode.
    Thanks In Advance
    Regards,
    Bharathi.

    I think this issue is related to the way that Vista, Windows 7 and Windows 2008 / 2008 R2 treat users who are logged on to the system with an account that is a member of the local administrators group when SQL is running locally.
    If your SQL setup has left you with BUILTIN\Administrators being a member of the sysadmin server role and you start up SQL Management Studio you'd expect to be mapped to the sysadmin role if your user account is in the local administrators group, however
    these OS disable this ability and when you try to connect to the database engine SQL server doesn't know you are a member of the local administrators group.
    To get round this, close all your open SQL management studio windows and then start a new window by right clicking the icon in the start menu and chosing to run as administrator. This time when you try to connect to the SQL database engine, windows doesn't
    "hide" the fact that you are an administrator. If you need to do this a lot you can go to the compatibility tab on the properties of the shortcut and set it to always run as administrator.
    Alternatively you can install the admin tools remotely and you don't get this effect.
    Tim

  • Portal Connection for xAPS Server

    hi all,
    I am in need of creating a 'system'  for a xAPS system which has XRPM installed in it.
    I have following details.
    CID,
    Primary IP
    Device Name
    Please suggest me which template need to be used to create this system.
    with regards,
    Sumanth

    Hi,
    You should modify HTTP Provider Service settings for your Http Provider Service. You can do it in Visual Administrator tool(<SID>-Dispatcher-Services-HTTP Provider). Necessary for you is "Ports" property. To remove the /irj/portal you should go to Cluster - Server - Services - HTTP Provider and enter /irj/portal in the Start Page text field.
    Best wishes,
    Sergey

  • How to connect to lined server in SSMS in SSIS connection manager

    Hi,
    In SSMS (Server name is sqlssisdw1), I have one (SQL Server)linked server name sql4. in that linked server there is DB called rptdb
    Now using SSIS I want to use tables in that DB rptdb.
    So for this I want to create Connection manager, but for this when I select 'New OLEDB connection' and in that in 'Server Name' when I wrote 'sql4' it is not giving me list of DB. I also tried giving sqlssisdw1 in server name and see if I can see this
    rptdb but I can't.
    Can you please tell me how can I connect to lined server in SSMS in SSIS connection manager? Thank you.
    Vicky

    Hi ,
      if you are already having access and login credentials to the remote server which is configured in sql4 , you pretty much directly connect to that server from the connection manager instead of going through a linked server. If you still want to connect
    through the linked server , you need to establish the connection for SQL Server sqlssisdw1 and then
    use a 4 part name query to access the rptdb tables as like below
    SELECT * FROM SQL4.rptdb.<schemaname>.Tablename
    Best Regards Sorna

  • DAC: Failing to connection to INFA Server and INFA Rep Ser

    OBIEE APPPS: 7.9.3
    Informatica OS: Windows 2003
    DB: Oracle 10gR2 on Windows 2003
    Informatica is running without any issues. Successfully restored the repository, make sure to configure the repository server in workflow manager as well. Successfully tested 'Physical Data Sources' with out any issues. Successfully validate the DAC connection to Informatica rep server.
    Problem: When I am testing my testing my informatica connections from DAC client from tab "Informatica Server" I am failing in both the connection
    Whenk I test: my Informatica Server I am getting error "
    Failure connecting to "ORACLE_BI_DW_SERVER"!
    =======================================
    STD OUTPUT
    ========================================
    ==========================================
    ERROR OUTPUT
    ===========================================
    I am getting following error when I test connection for repository server:
    Feb 27, 2008 12:54:57 PM com.siebel.etl.engine.core.ETLUtils logException
    SEVERE: MESSAGE:::CreateProcess: pmrep connect -r Oracle_BI_DW_Base -n Administr
    ator -x Administrator -h obieewin.ultradent.com -o 5001 error=2
    EXCEPTION CLASS::: java.io.IOException
    java.lang.ProcessImpl.create(Native Method)
    java.lang.ProcessImpl.<init>(ProcessImpl.java:81)
    java.lang.ProcessImpl.start(ProcessImpl.java:30)
    java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
    java.lang.Runtime.exec(Runtime.java:591)
    java.lang.Runtime.exec(Runtime.java:429)
    java.lang.Runtime.exec(Runtime.java:326)
    com.siebel.etl.functional.ExternalProcessExecutor.fire(ExternalProcessExecutor.j
    ava:142)
    com.siebel.etl.functional.ExternalProcessExecutor.execute(ExternalProcessExecuto
    r.java:99)
    com.siebel.analytics.etl.infa.interaction.PmrepInvoker.pmrep(PmrepInvoker.java:9
    0)
    com.siebel.etl.gui.data.StaticDatabaseCalls.testRepositoryServer(StaticDatabaseC
    alls.java:946)
    com.siebel.etl.gui.data.StaticDatabaseCalls.testInformaticaServer(StaticDatabase
    Calls.java:881)
    com.siebel.etl.net.ExecutionPlan.getInformaticaStatus(ExecutionPlan.java:261)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.mBeanRequestInformaticaS
    tatus(ClientMessageDispatcher.java:403)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.consoleMessage(ClientMes
    sageDispatcher.java:220)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.run(ClientMessageDispatc
    her.java:140)
    10 SEVERE Wed Feb 27 12:54:57 MST 2008 MESSAGE:::CreateProcess: pmrep connect
    -r Oracle_BI_DW_Base -n Administrator -x Administrator -h mycompany.company.co
    m -o 5001 error=2
    EXCEPTION CLASS::: java.io.IOException
    java.lang.ProcessImpl.create(Native Method)
    java.lang.ProcessImpl.<init>(ProcessImpl.java:81)
    java.lang.ProcessImpl.start(ProcessImpl.java:30)
    java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
    java.lang.Runtime.exec(Runtime.java:591)
    java.lang.Runtime.exec(Runtime.java:429)
    java.lang.Runtime.exec(Runtime.java:326)
    com.siebel.etl.functional.ExternalProcessExecutor.fire(ExternalProcessExecutor.j
    ava:142)
    com.siebel.etl.functional.ExternalProcessExecutor.execute(ExternalProcessExecuto
    r.java:99)
    com.siebel.analytics.etl.infa.interaction.PmrepInvoker.pmrep(PmrepInvoker.java:9
    0)
    com.siebel.etl.gui.data.StaticDatabaseCalls.testRepositoryServer(StaticDatabaseC
    alls.java:946)
    com.siebel.etl.gui.data.StaticDatabaseCalls.testInformaticaServer(StaticDatabase
    Calls.java:881)
    com.siebel.etl.net.ExecutionPlan.getInformaticaStatus(ExecutionPlan.java:261)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.mBeanRequestInformaticaS
    tatus(ClientMessageDispatcher.java:403)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.consoleMessage(ClientMes
    sageDispatcher.java:220)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.run(ClientMessageDispatc
    her.java:140)
    Feb 27, 2008 12:54:57 PM com.siebel.etl.engine.core.ETLUtils logException
    SEVERE:
    ANOMALY INFO::: Error while connecting to informatica repository server
    MESSAGE:::
    pmrep Connect Error
    =====================================
    STD OUTPUT
    =====================================
    =====================================
    ERROR OUTPUT
    =====================================
    EXCEPTION CLASS::: com.siebel.analytics.etl.infa.interaction.PmrepConnectExcepti
    on
    com.siebel.analytics.etl.infa.interaction.PmrepInvoker.pmrep(PmrepInvoker.java:9
    3)
    com.siebel.etl.gui.data.StaticDatabaseCalls.testRepositoryServer(StaticDatabaseC
    alls.java:946)
    com.siebel.etl.gui.data.StaticDatabaseCalls.testInformaticaServer(StaticDatabase
    Calls.java:881)
    com.siebel.etl.net.ExecutionPlan.getInformaticaStatus(ExecutionPlan.java:261)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.mBeanRequestInformaticaS
    tatus(ClientMessageDispatcher.java:403)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.consoleMessage(ClientMes
    sageDispatcher.java:220)
    com.siebel.etl.net.ClientMessageDispatcher$WorkerThread.run(ClientMessageDispatc
    her.java:140)
    11 SEVERE Wed Feb 27 12:54:57 MST 2008
    ANOMALY INFO::: Error while connecting to informatica repository server
    MESSAGE:::
    pmrep Connect Error
    =====================================
    STD OUTPUT
    =====================================
    =====================================
    ERROR OUTPUT
    =====================================
    information about how it is set in DAC client:
    Informatica Server: ORACLE_BI_DW_SERVER
    PORT: 4001
    Repository: Oracle_BI_DW_Base
    Port: 5001
    Please keep in mind that I have set the environment varialbles correctly, I have never faced these issues. Please help me out ASAP.
    Thank you in advance.
    P.S: DAC and OLAP repositories have created and loaded without any issues. I am stuck here where I need to make sure DAC can talk to Informatica but failing.

    HI,
    You can restart your windows box and then see if the error is still coming. From your error log it seems there is some IO issue. I am also facing similar kind of issue. Actually my Informatica server runs and connects properly from DAC client. But when i run Execution plan, my Informatica server crashes? Do you have any idea what might be the cause?
    Thanks,
    Prasad N

  • Syndication server providers

    Please, i need an example for registering a new content provider in syndication server release 9.02, and if there is any documents for syndication server.
    I tried to register a provider with a hand made provider description package (zip package) which contains xml file with a sample information like:
    <?xml version="1.0"?>
    <CONTENT_PROVIDER xmlns="http://www.oracle.com/ds/2000/SERVICE_DESCRIPTOR/CONTENT_
    PROVIDER">
    <NAME>Sample Affiliate</NAME>
    <DESCRIPTION>Sample Affiliate</DESCRIPTION>
    <EMAIL>[email protected]</EMAIL>
    <PHONE>(123)456-7890</PHONE>
    <ADDRESS>one oracle drive</ADDRESS>
    <BUSINESS_TERM>/oracle/syndication/server/bizTerm.pdf</BUSINESS_TERM>
    </CONTENT_PROVIDER>
    then it gave me a null pointer error. is there anything missing?.
    thanks in advance.

    Hi Jo,
    I could somewhat figure it out the issue... make sure the following thingsss.....in the order...
    1. In your syndication mapping(open ur corresponding map) under the map properties tab <b>XML File Output</b> Should have the value  <b>Single File(All records)</b>.
    2. In the Port definition choose Manual instead of Automatic.
    Hope this will fix your issues,,,
    please feel free to revert to me for further clarifications...
    thanks
    Alexander
    p.s.Kindly reward the points, if found problem solved.

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE).

    I have a 3 node cluster that has replica setup to replicate to another cluster off-site.
    Suddenly one of the servers is not replicating with the error:
    Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE). (Virtual Machine ID CC0FD4CC-F9B7-4C68-ABE8-B7D52A87899F)
    All other servers are replicating fine so there cannot be a permissions or connectivity issue between the 2 clusters.
    This server has 2TB of data so I'd rather not have to start the replication again.
    Does anyone have any pointers?
    Thanks.

    Hi drensta,
    Based on my knowledge , "hyper-v replica broker " is needed for failover cluster replica .
    Here is a link for "Why is the "Hyper-V Replica Broker" required?"
    http://blogs.technet.com/b/virtualization/archive/2012/03/27/why-is-the-quot-hyper-v-replica-broker-quot-required.aspx
    Hope this hleps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How do I connect to the server to agree to terms of service for my IPhone on IOS7

    I recently updated my IPhone 5 to IOS7 and I need to agree to the terms of service but I cannot connect to the server.  What should I do?

    Sorry, you can't connect through the PC to enable internet on your BlackBerry.
    That's why it has the wireless mobile radio and WiFi.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • TS1814 I had to restore my Ipod Touch and now I can't connect to anything on it. When it asks for my Apple ID it comes up with an error message and says that it can't connect to the server. I have checked my WiFi connection and its connected.

    I have had to restore my Ipod Touch and now I can't connect to anything on it. When it asks for my Apple ID it comes up with an error message and says that it can't connect to the server. I have checked my WiFi connection and its connected.

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    -Griff W.

  • How to update db server connection for objects in business view

    I had to migrate to a new SQL server for my main user database (sql 2008)
    crystal itself is fine, and I have updated all of the reports to use a different connection string.
    but I had forgotton about the dynamic dropdownlists in business view..
    what is the best way to update the connection for those ??
    I will go through each one manually if I have to.. but was hoping for something a little easier
    thanks for any help !

    Hi
    Open the config.cfg and then change the JdbcPasswordEncoding=Intradoc to JdbcPasswordEncoding=ClearText and then enter the new password in JdcPassword=<new passwd> . Save the file and then restart the CS. It should get going from there.
    Srinath

Maybe you are looking for

  • How do i download all my music onto new mac from icloud match?

    I have over 7000 songs I would like to transfer from my old laptop to my new one (macbook to macbook).  I opened itunes match and they showed up with the download cloud next to each song.  1) when i click on the cloud nothing happens 2) once I do get

  • AGP graphics card

    I purchased a new MacBook Pro after my PowerBook was stolen. I installed my Final Cut Studio, but I get a Configuration error when opening Final Cut. Is one of my settings off? I would love some help in solving this problem...

  • EHP4 upgrade question - ABAP Stack and EA-HR

    Hi Experts, My ABAP stack in the ECC system is at 7.01 SP3. My EA-HR module is at 600 SP38. We want to upgrade EA-HR to 604 (EHP4) so that we can benefit from some of the MSS functionality but the question is, what ABAP stack level do I need to be on

  • Pages App, is showing the titles of all my documents but icons are a black and white pages icons and the files won't open, what can I do?

    I recently updated iTunes and had several crashes on the next sync with my ipad2. Now when I open the Pages App, all my documents are shown with a black and white Pages icon, the title and date created is there but I cannot open any of the documents

  • Please help with javascript problem

    Hi I'm trying to get 4 images to rotate(image1.jpg, image2.jpg, image3.jpg and image4.jpg). However, only image1.jpg is loading up. In the head, my code is: <script language="JavaScript1.1"> <!-- var image1=new Image() image1.src="image1.jpg" var ima