First connection with IC  webClient

Hi,
I've got a strange behaviour when I execute CRM_IC (in se80). 
The IE is launched automatically and after a while (short time) a second IE shows up.
In the first one I've got a Interaction Center framework which is visible but with only two buttons (Reject and Warm Transfer) and a white page (in the center of the application) which said : Loading... The second one is completly empty
It seems that I have a profile error. So i've check out the profile on my user account and there is what I have :
SAP_PCC_CRM_USER
SAP_PCC_PARTNEREMPLOYEE
SAP_PCC_PARTNEREMPLOYEE_CC
SAP_PCC_SALES_REP
SAP_PCC_SALES_REP_LEAN
SAP_PCC_V02_PARTNEREMPLOYEE
Do you have any cloues ?
Kind regards
Joseph
Message was edited by:
        berthe joseph

Hi Joseph,
Try the following:
Open IE 6 window. Goto Tools> Internet Options> Security> Custom Level> Scroll down to "Access data sources across domains" click enable. Scroll to "Navigate sub-frames across different domains" click enable.
Hopefully it will work now.
Regards,
Khushboo
<b>Reward points if it helps!</b>

Similar Messages

  • Very slow first connection with Oracle.DataAccess 4.112.1.2

    Hello, I'm having some troubles with connecting using Oracle DataAccess component. In particular, when using .Net 4 Framework, the first connection to the database takes about 20-25 seconds!
    Here's my setup:
    - Web server running 64-bit Windows Web Server 2008 SP2 with IIS 7.0
    - Oracle server running 64-bit Windows Server Standard 2008 SP2 with Oracle 11g
    The version of ODAC component is 2.112.1.2 / 4.112.1.2
    The first strange thing is that, when I set an application on .NET 4 in IIS, I need to "Enable 32-bit Application" in order for it to work.
    I made some tests with a very simple query: "SELECT 1 FROM dual" and here's the results:
    - Classic ASP (ADODB.Connection): a fraction of a second to connect
    - .NET 2 with System.Data.OracleClient: a fraction of a second to connect
    - .NET 4 with Oracle.DataAccess: 20-25 seconds
    Moreover, if I launch the first connection thru Classic ASP, then the .NET 4 connection is very fast, as it happen in any case from the second connection on...
    This way, I excluded the problem is in the connection string, since it's always pretty much the same. I also excluded it could be a TNS problem, since they all use the same TNS (I think).
    That's all I've come up with, and I'm not a big Oracle expert so I hope someone here can help me sorting the situation out!
    Thanks,
    Stefano

    Thanks for your reply.
    I already tried messing around with that parameter.
    At the moment, it was set as:
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    I commented it and nothing changed.
    Thanks anyway :)

  • First connect with portal 10G

    I have installed portal 10G.
    all ok.
    Than i connect to the home page :
    http://server.com/portal/page?_pageid=6,1,6_13&_dad=portal&_schema=PORTAL
    all ok !!
    i have try to press the login button !!!
    but
    witch is the usernane and the password for the first connect as administrator ?????
    Than'k again

    How are you trying to connect the database using JPA?
    Has your datasource got bind successfully. You should check all these things first. If your datasource has not got binded then debug for that.

  • IPod nano: How does the display looks like during first connection with a computer?

    Hallo everybody,
    Today I got my brand new iPod nano. I connected it to my computer approx. 30 minutes ago.
    The window in iTunes opened and I could chouse all the details. So far, so good.
    But what about the display? I can only see a black and white display with the word "iPod" in the middle of the first line and a symbol of a battery on the right.
    In the middle you can see a picture of part of the cable connection and beyond the Message "Connected. Eject before disconnecting".
    So, when will I see the home screen or the buttons? Does anyone know? Have I done somthing wrong? Or do I have to wait until the batterie is full for the first time?
    Thank you very much an greetings from Germany,
    Petra

    Hello thetwy,
    Try the reset while the ipod is plugged into the computer. Steps here:
    http://support.apple.com/kb/HT1320
    If that does not work, use a different usb port on your computer, and/or, try the reset on a different computer.
    Hope this helps.
    ~Julian

  • I have iPad2 and original iPad. After upgrade to iOS5 neither will connect to wifi network. Network is working as I have connectivity with iPhone and Mac Airbook. What's the problem?

    I have downloaded iOS 5 to both iPad 2 and original iPad. I cannot get wifi to work on either. It's not my wifi as I have connectivity with other devices, just not with the iPad. Any ideas?

    I'm having the same problem.  The iPad has never roamed particularly well between access points, but under IOS6 it doesn't seem to roam at all, it simply sticks with the access point it first connected with.
    I don't have a solution for you, unfortunately.

  • Getting Connected for the First Time with JDBC

    Hello everyone. I am trying to make my first database connection to a mysql database with Java. I am using jdk 1.5.0, MySQL 4.1.11 nt, and I think I have the freshly downloaded driver C:\jdk1.5.0\jre\lib\ext\mysql-connector-java-3.0.16-ga-bin.jar" installed in the right spot. When I try to run the following code...
    package dbfinder;
    import java.sql.*;
    import javax.sql.*;
    import com.sun.rowset.JdbcRowSetImpl;
    import javax.sql.rowset.JdbcRowSet;
    import java.sql.ResultSetMetaData;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2005</p>
    * <p>Company: </p>
    * @author not attributable
    * @version 1.0
    public class DatabaseConnector {
    public DatabaseConnector() {
    public static void main(String args[]){
    Connection connection;
    Statement statement;
    // ResultSet resultSet;
    // ResultSetMetaData metaData;
    String DATABASE_DRIVER = "com.mysql.jdbc.Driver";
    String DATABASE_URL = "jdbc:mysql://localhost/state_crime";
    String USER = "cis695d";
    String PASSWORD = "cis695d";
    JdbcRowSet rowSet = new JdbcRowSetImpl();
    try {
    Class.forName(DATABASE_DRIVER); // load database driver
    System.out.println("class loaded");
    rowSet.setUrl("DATABASE_URL");
    rowSet.setUsername(USER);
    rowSet.setPassword(PASSWORD);
    rowSet.setCommand("Select * FROM state_crime_rates");
    rowSet.execute();
    ResultSetMetaData metaData = rowSet.getMetaData();
    int numberOfColumns;
    numberOfColumns = metaData.getColumnCount();
    System.out.println(numberOfColumns);
    } catch(SQLException sqlException){
    sqlException.printStackTrace();
    System.exit(1);
    catch(ClassNotFoundException classNotFound){
    classNotFound.printStackTrace();
    System.exit(1);
    I get the following exception...
    java.sql.SQLException: No suitable driver
         at java.sql.DriverManager.getConnection(DriverManager.java:545)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at com.sun.rowset.JdbcRowSetImpl.connect(JdbcRowSetImpl.java:618)
         at com.sun.rowset.JdbcRowSetImpl.prepare(JdbcRowSetImpl.java:630)
         at com.sun.rowset.JdbcRowSetImpl.execute(JdbcRowSetImpl.java:526)
         at dbfinder.DatabaseConnector.main(DatabaseConnector.java:44)
    Does anyone have any ideas? Is it my code? Is there a different driver I should use? Any help would be greatly appreciated.

    Hello everyone. I am trying to make my first
    database connection to a mysql database with Java. I
    am using jdk 1.5.0, MySQL 4.1.11 nt, and I think I
    have the freshly downloaded driver
    C:\jdk1.5.0\jre\lib\ext\mysql-connector-java-3.0.16-ga
    -bin.jar" installed in the right spot. You shouldn't be putting that JAR in jre/lib/ext, even if you've found some docs to tell you to do it. Only language extensions (e.g., packages that begin w/javax) belong there.
    I get the following exception...
    java.sql.SQLException: No suitable driver
    Does anyone have any ideas? Is it my code? Is there
    a different driver I should use? Any help would be
    greatly appreciated.The driver is correct. The class loader found it, even though I think you should use the -classpath option to find the JAR.
    It's your code.
    What are you doing with all that RowSet stuff?
    This works. Study it:
    import java.sql.*;
    import java.util.*;
    * Command line app that allows a user to connect with a database and
    * execute any valid SQL against it
    public class DataConnection
        public static final String DEFAULT_DRIVER   = "sun.jdbc.odbc.JdbcOdbcDriver";
        public static final String DEFAULT_URL      = "jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\\Edu\\Java\\Forum\\DataConnection.mdb";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        public static final String DEFAULT_DRIVER   = "com.mysql.jdbc.Driver";
        public static final String DEFAULT_URL      = "jdbc:mysql://localhost:3306/hibernate";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        /** Database connection */
        private Connection connection;
         * Driver for the DataConnection
         * @param command line arguments
         * <ol start='0'>
         * <li>SQL query string</li>
         * <li>JDBC driver class</li>
         * <li>database URL</li>
         * <li>username</li>
         * <li>password</li>
         * </ol>
        public static void main(String [] args)
            DataConnection db = null;
            try
                if (args.length > 0)
                    String sql      = args[0];
                    String driver   = ((args.length > 1) ? args[1] : DEFAULT_DRIVER);
                    String url      = ((args.length > 2) ? args[2] : DEFAULT_URL);
                    String username = ((args.length > 3) ? args[3] : DEFAULT_USERNAME);
                    String password = ((args.length > 4) ? args[4] : DEFAULT_PASSWORD);
                    System.out.println("sql     : " + sql);
                    System.out.println("driver  : " + driver);
                    System.out.println("url     : " + url);
                    System.out.println("username: " + username);
                    System.out.println("password: " + password);
                    db = new DataConnection(driver, url, username, password);
                    System.out.println("Connection established");
                    Object result = db.executeSQL(sql);
                    System.out.println(result);
                else
                    System.out.println("Usage: db.DataConnection <sql> <driver> <url> <username> <password>");
            catch (SQLException e)
                System.err.println("SQL error: " + e.getErrorCode());
                System.err.println("SQL state: " + e.getSQLState());
                e.printStackTrace(System.err);
            catch (Exception e)
                e.printStackTrace(System.err);
            finally
                if (db != null)
                    db.close();
                db = null;
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection() throws SQLException,ClassNotFoundException
            this(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection(final String driver,
                              final String url,
                              final String username,
                              final String password)
            throws SQLException,ClassNotFoundException
            Class.forName(driver);
            this.connection = DriverManager.getConnection(url, username, password);
         * Get Driver properties
         * @param database URL
         * @return list of driver properties
         * @throws SQLException if the query fails
        public List getDriverProperties(final String url)
            throws SQLException
            List driverProperties   = new ArrayList();
            Driver driver           = DriverManager.getDriver(url);
            if (driver != null)
                DriverPropertyInfo[] info = driver.getPropertyInfo(url, null);
                if (info != null)
                    driverProperties    = Arrays.asList(info);
            return driverProperties;
         * Clean up the connection
        public void close()
            close(this.connection);
         * Execute ANY SQL statement
         * @param SQL statement to execute
         * @returns list of row values if a ResultSet is returned,
         * OR an altered row count object if not
         * @throws SQLException if the query fails
        public Object executeSQL(final String sql) throws SQLException
            Object returnValue;
            Statement statement = null;
            ResultSet rs = null;
            try
                statement = this.connection.createStatement();
                boolean hasResultSet    = statement.execute(sql);
                if (hasResultSet)
                    rs                      = statement.getResultSet();
                    ResultSetMetaData meta  = rs.getMetaData();
                    int numColumns          = meta.getColumnCount();
                    List rows               = new ArrayList();
                    while (rs.next())
                        Map thisRow = new LinkedHashMap();
                        for (int i = 1; i <= numColumns; ++i)
                            String columnName   = meta.getColumnName(i);
                            Object value        = rs.getObject(columnName);
                            thisRow.put(columnName, value);
                        rows.add(thisRow);
                    returnValue = rows;
            else
                int updateCount = statement.getUpdateCount();
                returnValue     = new Integer(updateCount);
            finally
                close(rs);
                close(statement);
            return returnValue;
         * Close a database connection
         * @param connection to close
        public static final void close(Connection connection)
            try
                if (connection != null)
                    connection.close();
                    connection = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a statement
         * @param statement to close
        public static final void close(Statement statement)
            try
                if (statement != null)
                    statement.close();
                    statement = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a result set
         * @param rs to close
        public static final void close(ResultSet rs)
            try
                if (rs != null)
                    rs.close();
                    rs = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a database connection and statement
         * @param connection to close
         * @param statement to close
        public static final void close(Connection connection, Statement statement)
            close(statement);
            close(connection);
         * Close a database connection, statement, and result set
         * @param connection to close
         * @param statement to close
         * @param rs to close
        public static final void close(Connection connection,
                                       Statement statement,
                                       ResultSet rs)
            close(rs);
            close(statement);
            close(connection);
    }%

  • IC WebClient Connectivity with ICI and Third Party Solution (Genesys)

    <b>Hi Techies,
                 Can any body give the information about the IC WebClient Connectivity with ICI and Third Party Solution (Especially Chat and Mail Configuration with Web Client in CRM). We are using CRM 5.0 server with Java+Abap Engine.  I need configuration for Web Client Genesys(Third Party) with ICI configuration.  I dont have idea regarding this. I 've little idea on Business Communication Broker.  Can any help me out in this regard.   Thanks in an advance. If u have any document it can be acceptable.
    Regds,</b>
    Govinda
    [email protected]

    We are looking for a site to site model. I want all the devices on the remote network to be on their own subnet. We need to be able to hit individual remote devices from the head end. The devices at the remote site in turn also need to be able to communicate with each other without having to use the VPN.

  • I'm trying to use my iPad mini for the first time with a previous apple ID and password but it will not connect to iTunes but I can download apps from my iPhone using the same appleID and password and it works on my iphone...PLEASE HELP NOW

    I'm trying to use my iPad mini for the first time with a previous apple ID and password but it says "iTunes is not working try again"...it allowed me to download an app on my iPhone using the same apple ID &amp; password but all my apps are in "Waiting Status" on my iPad mini because it says "iTunes is not working"...PLEASE HELP ME NOW!!!

    Previous user installed iOS 7 beta on that iPhone.
    Take it back and get your money returned. You
    are running into a new security feature. Whoever owns
    the ID that it is asking for is the only person who can
    remove the security. That iPhone is worthless to you.

  • Ipad 1- I first connected my pad on someone elses computer and now i can't get it to sync with my computer?

    I got an ipad as a gift and was over seas so I connected initially on someone elses mac. Now i want to connect with my own account and for my ipad to stop acknowledging the friends computer???? How do i do this

    You'll probably need to do a full restore to get it into original state.
    Take a look at simple instructions here (go to where it says "Restoring your iPhone, iPad etc" ):
    http://support.apple.com/kb/HT1414

  • "No connectivity with the server" error for one document but not the other, in the same document library

    We have a number of users all of a sudden getting "No connectivity with the server.  The file 'xxx' can't be opened because the server couldn't be contacted." errors trying to open MS Office docs (Word, Excel, etc.) in SharePoint with IE,
    just by clicking the link and selecting the "Read Only" option.  If they select the "Check Out and Edit" option, they can open the document no problem.  One of my customers gets the error on one document but not the other, in
    the same document library!  The older document (a weekly report) was copied and renamed as per standard procedure.  She can read the older document, but not the new one.
    It is definitely a profile issue, as other people have logged onto the machines of the users with problems and do not get the error.  We have also renamed people's c:\user profile folders and the corresponding Profilelist registry entry and the newly
    created profile does not experience the error for these people.  Renaming the profile back restores all their personal settings but the error reappears.  When we copied the old profile's folder structure into the new profile, many of the user settings
    were restored (but not all, like Dreamweaver settings) but the error did not appear.  We think that the system folders files (like AppData) weren't totally copied over so we're going to run another test using xcopy.  We are rebooting between
    logons to make sure all files are unlocked.
    The laptops and computers are mainly 32bit, Win7 Enterprise running IE9 and Office 2010 Professional Plus, but there's a few 64bit machines as well. The SharePoint farm has 1 WFE, 1 App Server running search and CA, and a shared database server running SQL
    2005 SP4.  SharePoint is 64bit MOSS 2007 with the latest CU.
    We've checked the logs on the client as well as on the server and there aren't any helpful entries.  We've also run Process Monitor, also with no helpful entries.  We're planning to run something like Fiddler next.
    It's not everyone, because there are many people are accessing the SharePoint system and the same files.  It is also not a permission thing, as we've tested by giving the users elevated permissions with no changes.  One person experiencing
    the errors is a Site Collection Admin.  That same person ran a test where I coped a simple Excel file into a Document Library which contained a problem file.  They were able to open it Read Only no problems that day, but the next day, the same
    file gave them an error.   In their case, they usually get a "xxx is not checked out" error and only occasionally get the "No connectivity with the server" error.
    We've tried lots of things including:
    Deleting IE cache
    Deleting SharePoint Drafts and webcache folder contents
    Running IE without add-ons
    Upgrading and Downgrading IE
    Uninstalling and re-installing IE
    Reinstalling our SSL certs
    Repairing Office
    Removing and then adding back in the Microsoft Office "Microsoft SharePoint Foundation Support" Office Tool 
    Deleting all HKLM and HKLU Office registry settings
    Toggling IE Compatibility Settings
    Toggling the IE Automatic Logon option
    Toggling the location of checked out files
    Adding the site in the trusted sites list
    Adding the site to the WebClient\Parameters registry locations
    Making sure the WebClient service is started
    Rebooting the machine (lol :)
    This is becoming a serious issue, not just because of the inconvenience for the users having to check out every document they want to read, but we have some files with macros that open up other documents to run which are now failing.  There aren't
    "check out" workarounds for some of those macros.
    We're planning to open a ticket with Microsoft, but I'm throwing it out here first in case someone has run into this before, or may have some suggestions on what to try next.  Thanks!
    -Richard.
    PS  I think this needs to be in the "General" forum instead?

    It took three days of dedicated troubleshooting, but I have found the cause of the errors, and a couple of fixes.  It helped tremendously that my own machine was throwing the error.  I have scheduled a couple of users to work with me to test the
    various fixes, to see which one works best, so the story isn't over yet.
    I had backed up my c:\users profile folder and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList registry key so I could restore my profile after I was done.  I made a copy of the profile folder and was using that for awhile,
    but then made another copy where I had deleted a lot of content out of it so that the copies would go faster.  Since a newly created profile did not have errors, I was trying to copy back as much of the profile as possible to make it easier for our users
    to get back to work.  Instead of blowing away their profile and starting from scratch (which we know worked) I wanted to narrow down what was causing the error and just skip that from the restore.  The concept was to keep as much as the users profile
    in tact (application settings, etc.) not just restoring their desktop and My Documents folders.
    When we first tested a few weeks ago, simply copying the folder contents didn't reproduce the error.  I then tried xcopy, but got the "can't read file" error.  Then I tried robocopy, and ran into the "junction" problem. 
    I went back to xcopy, and found that placing the excludes.txt file in the windows/system32 folder eliminated the error.
    So the process went as follows: 
    Reboot and log into the machine as another user
    Delete the profile and associated registry key
    Reboot and log into the machine as the affected user, creating a new profile, and there is no error
    Reboot and log in as the other user
    xcopy the contents of the skinned-down backed-up profile to the newly created profile
    Reboot and log in as the affected user, and the error occurs
    Repeat the above, but add items in the excludes.txt file to see what, when eliminated, causes the error not to appear in the last step
    I eventually found that skipping the c:\users\<profile folder>\appdata\local\Microsoft\office\14.0 folder allowed the entire profile to be copied over without the error occurring.  That was strange, because we've cleaned out the cache folders
    before which didn't fix the issue. 
    So I went about it the opposite way, and tried to delete the 14.0 folder from the restored profile, and after reboot, the error still occurred.
    What eventually worked was deleting the 14.0 folder and copying over a 14.0 folder from a newly created profile!
    One way to do this was to:
    Reboot and log in as another user
    Rename the c:\users profile folder
    Rename the appropriate [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList] registry key
    Reboot and log in as the affected user, confirm that there is no error
    Reboot and log in as the other user
    Copy the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder to the other user's desktop
    Delete new profile folder, and rename the backup to be the production folder
    Delete the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder and then paste the 14.0 copy from the desktop
    Reboot and log in as the affected user, confirm that there is no error
    We've tried this on a couple machines and it works.  I had to run Windows Explorer as Administrator to access the other profile's folders.
    We've also successfully copied a 14.0 folder created by one profile on one affected computer over another profile's folder on another computer, eliminating the error, so we're trying that first, as that is fewer steps.
    We may attempt to script this, but the self-help instructions are only 5 lines long:
    Reboot and log into the affected computer with another account
    Go to <link to location of 14.0 folder on network> and copy the 14.0 folder
    Run Windows Explorer as Administrator
    Go to c:\users\<profile folder>\appdata\local\microsoft\office and delete the 14.0 folder, and paste the copied 14.0 folder (trying to overwrite it makes Win7 want to merge the folders)
    Reboot and log into your normal account, and confirm the error is gone
    I'll come back and report after we go into the field with this fix, but after the few tests, I am cautiously optimistic that this is it.

  • (err= -3253) connection with the server was reset. (Windows XP)

    I purchased a full album and am having trouble downloading three songs off this album from the iTunes store for Windows XP. The album is Draconian - Turning Season Within. Three of the nine songs off this album will not complete the downloads. It will get almost completely finished, for example: 11.1 MB of 11.3 MB, then it will start downloading the song again from the beginning before
    reading: stopped (err= -3253). Then a dialog box pops up saying "connection with the server was reset. I wrote an email to support and tried all the suggested fixes, with no desireable results, including making sure my firewall allows access to iTunes and the iTunes store, changing the startup procedure in "msconfig", and running diagnostics on iTunes to check for connectivity, whick it says I have full connectivity to the internet. This is probably my last hope, that someone else has encountered the (err= -3253) message and can help me with it. This is also the third album I've purchased from the iTunes store and the first time I've had any kind of error message. Please help!

    Seems to be a scam/rogue software.
    http://site-press.com/antivirus/antivirus-news/the-shield-deluxe-how-to-remove-the-shield-deluxe-pop...
    http://www.remove-malware.com/forums/viewtopic.php?f=47&t=4288
    http://www.microsoft.com/security/antivirus/rogue.aspx
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • 'Disk Utility has lost connection with Disk Management Tool' w/ RAID 10 set

    Using 4 internal drives, I have specified the following setup for each:
    2 partitions, 1 'speed' of 5 GB and 1 'data' of whatever remains.
    The 4 speed partitions stripe to a single RAID volume correctly.
    The 4 data partitions are used to make a RAID 10 volume as follows:
    The first 2 data partitions are mirrored to make a 'data-A'
    The next 2 data partitions are mirrored to make a 'data-B'
    These complete correctly.
    Upon attempting to strip data-A and data-B in order to finish the RAID 10 setup, Disk Utility quits with the following message:
    "Disk Utility has lost connection with the Disk Management Tool and cannot continue. Please quit and relaunch Disk Utility'.
    A search here and on the nets reveals only that this message appeared in 10.3.x when attempting to repair disk permissions and had to do with a rogue iTunes support file. This is occurring on a blank system (no iTunes installed) so I don't think its the same cause.
    Note that I was able to complete this setup under Tiger several times without issue, so it seems to be unique to Leopard. Does anyone know what is going on and hopefully suggest a workaround?

    To answer my own issue and leave a marker here for others, I was able to successfully set up a RAID 10 partition using diskutil, indicating that the problem is Disk Utility itself and not the RAID implementation.
    Disk Utility has proven itself to be bugridden (must restart frequently to get updated view of volumes; drops device names at various times; etc.) and this latest bug would seem to suggest that it should be avoided in favor of diskutil for any serious RAID construction.

  • ACS loses connection with AD occasionally after upgrade from 5.2 to 5.3.0.40

    ACS had been integrated with Active Directory before ACS upgrade to 5.3. After the ACS 5.3 upgrade users aren’t able to login to AAA devices occasionally. Error message is:
    {AuthenticationResult=Error; Type=Authentication; Authen-Reply-Status=Error; }
    24429 Could not establish connection with Active Directory
    At the same time, when this issue occurs, ACS connection to AD works fine (checked with Users and Identity Stores> External Identity Stores > Active Directory “Test Connection”)

    I had the same problem, I opened a Cisco TAC case and my issue was resolved.
    Sent: Tuesday, 14 August 2012 9:58 AM
    Subject: RE: 622739355 HelpDesk#SVR328332-2 : Troubleshoot Cisco ACS 1121 v5.3 With Windows Active Directory
    Hi Ramraj,
    Thanks for the link to the article, but from what I’ve seen in the logs I’m not sure that we’ve got the same root cause to the issue.
    From the ACSADAgent.log files I can see log messages like:
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG network.state NST: SniffList: postfailsort=mykulad11p.cssc.dksh.net
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.kerberos.adhelpers Encryption (id 1) is not supported by KDC. Try next in the list
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.osutil Module=Kerberos : KDC refused skey: KDC has no support for encryption type (reference base/adhelpers.cpp:216 rc: -1765328370)
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.adagent Unable to refresh computer credentials: KDC refused skey: KDC has no support for encryption type
    This lines up with the error message that we see in the TACACS+ Authentication logs:
    24493 ACS has problems communicating with Active Directory using its machine credentials.
    I have come across a NETBIOS limitation (it’s not an ACS bug, but a bug has been filed for tracking and documentation purposes) that prevents two ACSs from being connected to Active Directory at the same time if the first 15 characters of their hostnames are the same. The bug ID is CSCtj62342 and its externally visible details are available here: http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtj62342
    The hostname of the primary ACS is : MYMY-TPM-DC-ACS-1
    The hostname of the secondary ACS is: MYMY-TPM-DC-ACS-2
    From the hostnames, we can see that the first 16 characters of the hostnames are the same. What this means is that once the primary is connected to AD, after some time passes (this will depend on when the secondary goes an talks to AD) the secondary will lose its connection to AD and any authentications hitting the secondary will fail with the same error: 24493 ACS has problems communicating with Active Directory using its machine credentials.
    To resolve this issue, the hostnames of the ACSs will need to be changed so that the first 15 characters of their respective hostnames are not the same. Please keep in mind that this is a NETBIOS limitation and not a software bug.

  • Creating a share in 10.5 and connecting  with XP or Vista - My Experience

    Here was my situation.
    Client has a machine now running 10.5 on it that is sharing an external drive on the network for other mac users in the office to use as well as 3 Windows machines. I tested with an xp machine as well as a vista machine.
    The problem I was facing was that I had to set up the windows machines to be able to access the shared drive on the machine running 10.5. On 10.4 this was done with sharepoints, which breaks in 10.5. Luckily, Apple incorporated a lot of sharepoints functions into 10.5.
    First I had to create a Standard or Admin user for each unique user that will be connecting to the share, on the machine that the external drive is connected to. You have the option of creating a "share only" user, but that seems to only be for mac sharing because those accounts do not show up as available when you enable accounts to access the SMB.
    Once I had the new accounts made, I had to go to "Sharing" in the System Preferences and click on "File Sharing". When selected you see "Shared Folders" and "Users" panes. I clicked the + symbol and pointed it to the shared drive, since one of the accounts will have access to the whole drive. In the user pane I clicked the + and added the user I created for that access.
    Note at this point. If you use the same username and password of the user account in windows (case sensitive I believe) you will not have to specify a special username and password for access to the share. I did this with the first machine with complete access because he was the owner of the share.
    So after I gave that user access to the whole drive he was able to find the 10.5 machine on the network and connect to the share without prompt of a password.
    I then tried to set up the other two users who were not on the same subnet so they had to use "map network drive" on their PCs.
    Again I added the target folder that they would have access to on the shared drive. I added their user as having permission to access it. But when I went to map the network drive, it could see the folder if I entered \\ip.add.res.s\foldername and clicked "browse" but when I tried to add it, the system said it was not found. I also made sure to click "change user name" and entered the username and password for the account with access to the folder.
    So after tinkering a while I finally found that you must add the users to the main share drive list of users, even if they are set to "read only (dropbox)" or else they will not be able to access the subfolder assigned to them. It also did not make a difference if I removed the share drive completely and added just the subfolders and users individually.
    I hope this might help somone out there who might be having a similar issue with getting xp or vista to use shared folders in 10.5.

    Was not a question.

  • Crystal Server 2011 "Failed to open the connection" with 32 & 64 bit drivers are loaded

    Brand new installation of Crystal Reports Server 2011 with CR Developer 2011 as well.  Downloaded new Postgres and MySQL drivers for both the 32 and 64 bit ODBC definitions.  Created a new report on the server to eliminate any migration driver incompatibility issues.  Reports run fine in Developer but give the same "Failed to open the connection." 
    and still problems running the reports  If I Save Data with the reports, I can click View to see the data, but they will not refresh.
    All the articles I'm finding online seem to point to the issue with needing 32 & 64 bit drivers, but I've loaded both and built my ODBC connections with the 32 drivers in the SysWOW64 folder.
    Logged in as Administrator.  Any thoughts out there?  Are there some new security measures?
    Thanks in advance ...

    Yes, Designer and CRS are on the same machine.
    Good catch with the 5.1 driver.  I loaded up the mysql-connector-odbc-5.1.13-win32 driver and used that.  It alone failed when I made the ODBC connection with it.  I see on the CRS 2011 Feature Pack 3 .pdf file that it says "Only 64-bit database connector middleware is supported" ... I downloaded the other mysql-connector-odbc-5.1.13-winx64 64bit file, but teh .msi and .zip versions failed on the load.  Do I need that if it says that or should the first one be enough?
    I've been trying to use a normal User DSN, no?  Apparently I don't have access as a machine Administrator to do it as I get "You are logged on with non-Administrative privileges.  System DSNs could not be created or modified."  Having our server guys get that straightened out and we'll see.  Had not heard of that actually but will give it a go.
    You say I should create the DSN entries in the 64 bit version of the ODBC Data Source Administrator ... located in the system32 folder, not the SysWOW64 folder, where the 32 bit drivers are found, yes?  Isn't that the "wrong" location to use I've been reading?  Or are System DSNs different from a User DSN?
    BIG thanks for the replies.  I owe you beers!!!!!

Maybe you are looking for

  • Size of edit window

    I was replying to a post and noted the edit window scrolling left to right.  I checked my screen resolution and noted that my children had lowered it to 1024x768 from my usual 1280x1024. Why doesn't the edit window scale itself to the screen resoluti

  • JDBC Sender Mapping Problem

    I am using a Receive Step to start a BPM with some DB Records, the Receive Step gets the resultset with some row elements but I notice that the message namespace is missing <ns0:mt_avisoEst xmlns:ns0="urn:sap-dms:DMS_SAP_01"> </ns0:mt_avisoEst> this

  • How can I get wifi to work at home?

    How do I get iphone working with home wifi?

  • How to find out How many rows and coloumn exists in the Excel sheet

    hai gurus,              present iam uploading data from presentation server to application server.  when i use gui_upload the data is coming non-readable format. so i used alsm_excel_to_int fm for that . but the problem is user can give any type of e

  • My site won't auto re-size like it use to?

    I was wondering what I was doing wrong. My site use to auto re-size for smaller screen resolutions, and now it won't so it's cutting off half of the navigation when viewed on a smalls creen.