Cannot integrate SASL/GSSAPI with SunOne 5.2

Hi Sir
I am using following configuration
1. iPlanet directory server 5.2
2. Solaris 9.0
3. KDC available with solaris
4. I am not using any SSL certificates
Goal: To be able to authenticate a ldap user thru kerberos
I have been successfully able to import all the /etc files and merge them with iplanet database. All the users are able to login as well as authenticate also.
I am facing a huge problem when I try to integrate kerberos with ldap. I have done identitymapping of GSSAPI. Also I have moved up kerberos in /etc/gss/mech. But now am I supposed to add userPassword: {KERBEROS} password ???? or to add what attributes in ldap. I am too confused. Suns own documentation is far incomplete to talk about all this. I can very well authenticate kerberos users (seperately in kerberos releam) very well but not in integration with LDAP. A new user with posix attributes can login into the system and work also. But how to get him authenticated thru kerberos ????
The result of "ldapclient list" is
NS_LDAP_FILE_VERSION= 2.0
NS_LDAP_SERVERS= 10.91.198.100
NS_LDAP_SEARCH_BASEDN= dc=quark,dc=co,dc=in
NS_LDAP_SEARCH_REF= FALSE
NS_LDAP_SEARCH_SCOPE= one
NS_LDAP_SEARCH_TIME= 30
NS_LDAP_PROFILE= default
NS_LDAP_CREDENTIAL_LEVEL= anonymous
NS_LDAP_BIND_TIME= 10
NS_LDAP_SERVICE_AUTH_METHOD= pam_ldap:simple
Can u please guide me.
Regards
Vikas

Hi,
I have problem with connecting DS 5.2 server using SASL GSSAPI from OpenLDAP client.
I have configured GSSAPI identity mappings on the DS and have KDC running on the same solaris machine.
When I do ldapsearch from the openLDAP client, I am getting the following error :
ldapsearch -h 10.7.30.16 -Y GSSAPI -U tester1
SASL/GSSAPI authentication started
ldap_sasl_interactive_bind_s: Local error (-2)
additional info: SASL(-1): generic failure: GSSAPI Error: Miscellaneous failure (Ticket expired)
Do I need to configure anything else on the client side (OpenLDAP client on the linux machine) ?? Can you please give me the steps to make this work ??
Thanks,
Radhakrishnan

Similar Messages

  • Cannot integrate iPhoto 8 with Aperture 2

    I have the trial version of Aperture (v 2.1.3) and am trying to integrate it with my iPhoto (v 7.1.5) but am unable to do so.
    In iPhoto I cannot see the "Show Aperture Library" option in the file pull down menu. I tried closing and re-opening iPhoto thinking this would 'refresh' this app - but no help.
    In Aperture, I am able to see the "Show iPhoto Browser" option in the file pull down menu. I am also able to see my iPhoto events and images in that browser. But when I try to import an image from there to Aperture - by clicking onto an image and dragging it to a folder in Aperture (within the program), that causes my Aperture app to hang - it just keeps acting like its importing but never finishes.
    Any ideas on what to do here to make this integration work?
    There was a time when these two programs were playing nicely with each other. Not sure what happened since then. Also - I still have time left on the trial of Aperture, and this program appears to be working fine on its own.
    Thanks for any help here ...
    -S

    No I haven't - but then again, I was able to move between both programs at one time before, and that was without having used the preview feature (ever) in Aperture.
    Is there something going on with the preferences maybe?
    Is there something up with my OS?
    I don't understand why one time it works and then another time it doesn't.
    also - There is an issue happening in both directions:
    Aperture to iPhoto
    iPhoto to Aperture
    Would using Preview in Aperture help with either approach to integration?
    Is there supposed to be an order to how the programs are opened?
    Is there supposed to be an order to where the master images are supposed to be residing initially?
    Just wondering if I am missing anything here.
    -S
    Message was edited by: saligel

  • Cannot integrate JWSDP1.6 WITH TOMCAT50-JWSDPontomcat.bat won't  run!

    Hi!
    I have JWSDP1.6 WITH TOMCAT50-JWSDP INSTALLED with the "no Web Container" option.Tried to run jwsdpontomcat.bat but get a "Bad command or file name" message.
    Problem seems to have something to do with setenv.bat.This is the result....
    C:\Sun\jwsdp-1.6\jwsdp-shared\bin>set ANT_OPTS=
    -Djava.endorsed.dirs=C:\Sun\jwsdp-1.6\jaxp\lib\endorsed;C:\Sun\jwsdp-1.6\jaxp\lib
    Syntax error
    It gets stuck at lis line in setenv.bat.
    Pls help
    Steve

    I am modifying the correct httpd.conf file on the server, it just doesn't seem to work. - If I put the rewrite rules in the <Directory /> the rewrite works but it adds /Library/WebServer/Documents to the URL.
    I also tried putting the rewrite rules in <IfModule mod_rewrite.c> but that did not work either.
    mod_rewrite is enabled and running on the server.
    I will post the rewrite rules again in the code brackets. Sorry for the long post. - If some one can try them out on their Leopard Server to see if they can get them to work, it would be much appreciated. Again, these work on my Leopard Client but I can't get them to work on Server.
    -- The httpd.conf file posted above is just the default conf file found in /private/etc/apache2/
    <code>
    RewriteEngine On
    Options +FollowSymLinks
    RewriteRule ^(.+)/$ http://%{HTTP_HOST}$1 [R=301, L]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.php(.*)\ HTTP
    RewriteRule (.+)\.php(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.asp(.*)\ HTTP
    RewriteRule (.+)\.asp(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.aspx(.*)\ HTTP
    RewriteRule (.+)\.aspx(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.htm.(.)\ HTTP
    RewriteRule (.+)\.htm.(.)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.cfm(.*)\ HTTP
    RewriteRule (.+)\.cfm(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.bak(.*)\ HTTP
    RewriteRule (.+)\.bak(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.inc(.*)\ HTTP
    RewriteRule (.+)\.inc(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\..(.)\ HTTP
    RewriteRule (.+)\..(.)$ $1$2 [R, L]]
    <code>

  • Integrate third party JMS providers with sunone 8

    Hi,
    I am trying to integrate a JMS provider, FioranoMQ with Sunone Application server (version 8). I have defined an external queue connection factory using the administration console. But I am not able to deploy the EJB as the exception in server.log says that queue connection factory does not exist.
    Here is the stack trace of the exception
    [com.sun.enterprise.connectors.ConnectorRuntimeException: jms_MyQcfis not created yet!]|#]
    [#|2004-01-06T15:43:55.312-0800|SEVERE|j2ee-appserver1.4|javax.enterprise.system.container.ejb.mdb|_ThreadID=11;|com.sun.enterprise.connectors.ConnectorRuntimeException
    com.sun.enterprise.connectors.ConnectorRuntimeException: jms_MyQcfis not created yet!
         at com.sun.enterprise.connectors.system.ActiveJmsResourceAdapter.setValuesFromConfiguration(ActiveJmsResourceAdapter.java:316)
         at com.sun.enterprise.connectors.system.ActiveJmsResourceAdapter.updateMDBRuntimeInfo(ActiveJmsResourceAdapter.java:259)
         at com.sun.enterprise.connectors.inflow.ConnectorMessageBeanClient.setup(ConnectorMessageBeanClient.java:139)
         at com.sun.ejb.containers.MessageBeanContainer.<init>(MessageBeanContainer.java:189)
         at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(ContainerFactoryImpl.java:196)
         at com.sun.enterprise.server.AbstractLoader.loadEjbs(AbstractLoader.java:464)
         at com.sun.enterprise.server.ApplicationLoader.load(ApplicationLoader.java:129)
         at com.sun.enterprise.server.TomcatApplicationLoader.load(TomcatApplicationLoader.java:96)
         at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:205)
         at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:156)
         at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:466)
    In case I again try to create the jms_myqcf , it says that resource already exists.
    The resource reference defined in the xml files are
    Sun application client.xml
    =====================
    <sun-application-client>
    <resource-ref>
    <res-ref-name>jms_myqcf</res-ref-name>
    <jndi-name>jms_myqcf</jndi-name>
    <default-resource-principal>
    <name></name>
    <password></password>
    </default-resource-principal>
    </resource-ref>
    <resource-env-ref>
    <resource-env-ref-name>jms_MyQueue</resource-env-ref-name>
    <jndi-name>jms_MyQueue</jndi-name>
    </resource-env-ref>
    </sun-application-client>
    Sun EJB JAR.XML
    ===============
    <sun-ejb-jar>
    <enterprise-beans>
    <unique-id>1</unique-id>
    <ejb>
    <ejb-name>SimpleMessageEJB</ejb-name>
    <jndi-name>jms_MyQueue</jndi-name>
    <mdb-connection-factory>
    <jndi-name>jms_myqcf</jndi-name>
    </mdb-connection-factory>
    </ejb>
    </enterprise-beans>
    </sun-ejb-jar>
    Do you have any idea why this exception is thrown?
    James

    You are right that I am using j2ee 1.4 final release.
    I donot know much about connector 1.5 resource adapter and donot have one. Is there no other way that i can integrate an external JMS provider with sunone?
    I intend to do the following.
    - define the connection factory object & destination object in the external JNDI or any JNDI of sunone so that the applications can lookup these objects.
    - Now i want to deploy a MDB which creates connection using the conn factory and listens for messages on destination defined in the jndi in the first step.
    Thats all i want to do. Do you know which is the easier and best approach to do that?

  • Integrate third party JMS with sunone

    Hi,
    I am trying to integrate a JMS provider, FioranoMQ with Sunone Application server (version 8). I have defined an external queue connection factory using the administration console. But I am not able to deploy the EJB as the exception in server.log says that queue connection factory does not exist.
    Here is the stack trace of the exception
    [com.sun.enterprise.connectors.ConnectorRuntimeException: jms_MyQcfis not created yet!]|#]
    [#|2004-01-06T15:43:55.312-0800|SEVERE|j2ee-appserver1.4|javax.enterprise.system.container.ejb.mdb|_ThreadID=11;|com.sun.enterprise.connectors.ConnectorRuntimeException
    com.sun.enterprise.connectors.ConnectorRuntimeException: jms_MyQcfis not created yet!
         at com.sun.enterprise.connectors.system.ActiveJmsResourceAdapter.setValuesFromConfiguration(ActiveJmsResourceAdapter.java:316)
         at com.sun.enterprise.connectors.system.ActiveJmsResourceAdapter.updateMDBRuntimeInfo(ActiveJmsResourceAdapter.java:259)
         at com.sun.enterprise.connectors.inflow.ConnectorMessageBeanClient.setup(ConnectorMessageBeanClient.java:139)
         at com.sun.ejb.containers.MessageBeanContainer.<init>(MessageBeanContainer.java:189)
         at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(ContainerFactoryImpl.java:196)
         at com.sun.enterprise.server.AbstractLoader.loadEjbs(AbstractLoader.java:464)
         at com.sun.enterprise.server.ApplicationLoader.load(ApplicationLoader.java:129)
         at com.sun.enterprise.server.TomcatApplicationLoader.load(TomcatApplicationLoader.java:96)
         at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:205)
         at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:156)
         at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:466)
    In case I again try to create the jms_myqcf , it says that resource already exists.
    The resource reference defined in the xml files are
    Sun application client.xml
    =====================
    <sun-application-client>
    <resource-ref>
    <res-ref-name>jms_myqcf</res-ref-name>
    <jndi-name>jms_myqcf</jndi-name>
    <default-resource-principal>
    <name></name>
    <password></password>
    </default-resource-principal>
    </resource-ref>
    <resource-env-ref>
    <resource-env-ref-name>jms_MyQueue</resource-env-ref-name>
    <jndi-name>jms_MyQueue</jndi-name>
    </resource-env-ref>
    </sun-application-client>
    Sun EJB JAR.XML
    ===============
    <sun-ejb-jar>
    <enterprise-beans>
    <unique-id>1</unique-id>
    <ejb>
    <ejb-name>SimpleMessageEJB</ejb-name>
    <jndi-name>jms_MyQueue</jndi-name>
    <mdb-connection-factory>
    <jndi-name>jms_myqcf</jndi-name>
    </mdb-connection-factory>
    </ejb>
    </enterprise-beans>
    </sun-ejb-jar>
    Do you have any idea why this exception is thrown?
    James

    You are right that I am using j2ee 1.4 final release.
    I donot know much about connector 1.5 resource adapter and donot have one. Is there no other way that i can integrate an external JMS provider with sunone?
    I intend to do the following.
    - define the connection factory object & destination object in the external JNDI or any JNDI of sunone so that the applications can lookup these objects.
    - Now i want to deploy a MDB which creates connection using the conn factory and listens for messages on destination defined in the jndi in the first step.
    Thats all i want to do. Do you know which is the easier and best approach to do that?

  • How to integrate Google calendar with MS CRM Service calendar

    Dear Team, 
     how to integrate Google calendar with MS CRM Service calendar?
    Please reply to below mail id 
    [email protected] 
    Thanks & Regards
    Dhamodharan R
    Thanks & Regards Dhamodharan R Myblog : http://mscrmexpert.wordpress.com

    Hello,
    The TechNet Website Feedback forum is designed to help Microsoft improve TechNet (technet.microsoft.com) by sending your suggestions and bugs.
    Your post is off topic hers, and should be asked in the
    Microsoft Dynamics CRM Forum on the Microsoft Dynamics Community.
    As Microsoft's Dynamics Community forums are on a different platform, we cannot move the question for you.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Unable to integrate Oracle Reports with Express--(To oracle Team also)

    Hi
    Unable to integrate Oracle Reports with Express. While defining
    the Express database connection using the olap connection editor
    iam getting the following error "Error locating the XCONEDIT.INI
    file. Try re-installing the software".
    what should be done?
    Atleat,If anybody has successfully connected to Express via
    Reports6i. Kindly give the details like what softwares to be
    installed in what HOME? and also other steps involved in the
    process.
    YOur help !!!
    kindly respond...(Oracle Team do respond with something)
    with rgds

    hello,
    check out the notes
    Note:112542.1
    Note:167049.1
    on oracle metalink for further information.
    if you still have issues, please contact oracle support services
    for furhter assistence.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Cannot deploy BPEL process with SSO to BPELConsole activated

    I cannot deploy BPEL process with SSO to BPELConsole activated. Here is the error I get from JDeveloper (sorry for the french error message):
    Problème détecté lors de la connexion au serveur "ssdvoiagu.dev.local.csst.qc.ca" sur le port "7781" : java.security.AccessControlException: access denied (com.collaxa.security.DomainPermission generique read)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
    at java.security.AccessController.checkPermission(AccessController.java:427)
    at com.collaxa.security.OC4JSecurityService.checkAccess(OC4JSecurityService.java:16)
    at com.collaxa.security.SecurityService.checkDomainAccess(SecurityService.java:26)
    at com.collaxa.cube.fe.util.ServletUtils.getLocatorWithoutUrlRewrite(ServletUtils.java:162)
    at deployHttpClientProcess.jspService(_deployHttpClientProcess.java:332)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Target BPEL process manager runs under SOA 10.1.3.3. When the SSO to BPELConsole is disabled, the deployment works just fine. Is there any way to make it work with SSO?

    Please check:
    http://blog.jpoot.com/category/oracle-appserver/oid-ldap/
    We had some issues with SSO and SSL but everything is running now.
    Marc

  • I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4.  However, I cannot record voice memos with my Bluetooth mic.

    I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4, so it appears my headset mic is fine.  I can also use voice activated dialing, although it fails miserably interpreting numbers.  However, I cannot record voice memos with my Bluetooth mic.   I just get barely audible static.  Any suggestions?   Thanks.

    Hello, did you ever get an answer to your question? I just picked up a Jawbone Era and using on an iPhone 4s running 5.0.1. Seems to work fine on regular calls, but not on the built in Voice memos application. It worked fine on my older Jawbone Icon, but haven't tested on the 4s or iOS 5.
    Thanks!

  • How to integrate RFSG driver with sampling theorem labview code

    hi all, 
    I got the labview code of sampling theorem from labview-> find examples. How can I integrate this code with PXI system? How can I integrate the RFSG driver with labview code?

    Hi Nieman,
    LabVIEW 2014 should be compatible with the 9068 and the cRIO 2.1 drivers.  I verified it should work as expected earlier today.  Please make sure you are using the example cRIO PN-IO Device when you are moving the module over to the new target.  If you are already accessing that, please navigate to this folder:
    <Program Files>\National Instruments\LabVIEW 2014\Targets\NI\FPGA\cRIO\other
    Please let me know if you see a CS_cRIO-PNAD folder. This folder provides all the files necessary to discover and use the module in the project.  If we do not have that folder there, we will be unable to locate the module.  If that is indeed the case, then it may be the driver did not install correctly.  
    If after finding this folder and it is still not working, please send me screenshots of the error that you are seeing and a MAX Technical Report.  Thanks!
    Matt S.
    Industrial Communications Product Support Engineer
    National Instruments

  • Cannot login to iCloud with Yosemite

    Hi everybody,
    a few weeks ago I updated my iMac to Yosemite. It all works fine except that I cannot login to iCloud with my wife's account.
    When she logs in into her iMac account it sometimes appears a Mac configuration screen. It seems that everything's ok, because
    the configuration finishes without error message, but when I look into the System Preferences -> iCloud her iCloud account is not active.
    When I try to login with her ID a message appears "You can't sign in at this time. Please try again later."
    It also doesn't work when I go into the System Preferences -> Internet Accounts and try there to login into iCloud.
    It really bothers me because I didn't find a solution. And also I don't understand why it works with mit ID on my iMac account.
    There is no problem to login with her ID on the Apple page, I've already tried that.
    Thanks in advance!

    Welcome to the Apple Community.
    1. Sign out of your account
    (If you are unable to do this because System Preferences has frozen, Force Quit System Preferences and try again)
    2. When prompted, opt to delete, contacts, calendars etc from your Mac.
    (You are only deleting this data from your Mac, not from iCloud, the data will be reinstated when you log back in. If you need to check that the data is in iCloud before deleting it go to iCloud.com and check each section for data)
    3. Having logged out, check that the iCloud accounts along with their data have disappeared from the Mail, Address Book and iCal Applications.
    (If necessary, delete the iCloud accounts from each of these application separately from each Applications Preferences)
    4. At this point it may be worth trying to log into iCloud from the System Preferences iCloud settings again, if this works, all well and good, if it doesn't continue to step 5.
    5. Open your User Library folder in the Finder. (When in the Finder, go to the Go menu, hold down the option key (alt) and choose Library when it appears in the Go menu)
    6. Navigate to Library > Application Support > iCloud and drag the iCloud folder to your desktop. (This action only copies the folder and will provide you with a back up)
    7. Select the iCloud folder again in Library > Application Support and drag it to the trash, enter your administrators password when prompted.
    8. Restart your computer.
    9. You should now be able to enter your ID and Password in system Preferences > iCloud and log into your account. Check the services you wish to use and once you are satisfied it's working as it should, trash the iCloud folder you copied to your desktop earlier.

  • Is it possible to integrate LSO 600 with an external system without SAP PI?

    Hi,
    as asked in the title, i am wondering if it is possible to integrate LSO 600 with an external (non-SAP) system without using SAP PI/XI. The external system is a middleware application which can handle RFC functions, IDocs besides the usual web service communications.
    However, i don't know how LSO and SAP PI are integrated so i wonder if their interfaces are such that instead of SAP PI another middleware could be used.

    Web Services are used. If you were to implement the services in your 3rd party middleware and configure SAP to call it, I suppose it is possible. The external course catalog can be used for CourseEnrollment and LearningProgress. See the application help for details. Don't expect to receive support from SAP with such a setup however.

  • After upgrading to Lion I cannot rewrite CD-RW with my Superdrive. I'm on an iMac24 10.7.1s

    After upgrading to Lion I cannot rewrite CD-RW with my Superdrive. I'm on an iMac24 10.7.1

    Might be corrupted audio preferences ..
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following;
    /Library/Preferences/Audio
    Click Go then move both .plist files from the Audio folder to the Trash.
    com.apple.audioDeviceSettings.pllist
    com.apple.audio.SystemSettings.plist
    Restart your Mac. See if that made a difference ...

  • I cannot sync my iphone with my computer

    I cannot sync my iphone with my computer. The laptop wont even recognise the iphone on itunes. I have had the phone for almost over2 years now. Its a 3GS iPhone. How do I fix this?? I have tried hooking up the iphone to various computers and they also do not catch the iphone on itunes on those computers. What should I do???

    If you are using a Windows based computer, try disabling a/v software and turning off the Firewall.
    Disable antivirus software
    Turn-Windows-Firewall-on-or-off
    Then try syncing you iPhone.

  • You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 90 days.

    So i signed into my other itunes account to download some purchase i had made on that account, went to sign back into my new account and download purchases i had made on my iphone adn it tells me "You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 90 days.". This is a shared family computer with multiple Apple IDs being used on it. Not cool apple. This needs to be figured out. Not acceptable for families that have more than one apple ID to have to wait 3 months to download old purchases. Get real. Any way i can 'override' this?

    http://support.apple.com/kb/ht4627
    http://www.apple.com/feedback/
    Contact itunes support.  They may grant a one time exception at their discretion.
    https://getsupport.apple.com

Maybe you are looking for

  • Migration Assistant

    I just bought a new MBP. I already own a 3 year old Mac Pro. Before I migrate and potentially screw something up (I am a recovering PC user), I have some questions. 1. can I use the USB/mini cable to connect to my Time Machine HD? It seems to be comm

  • Link to other tab !

    Hi all ! I an beginner with OracleAS Portal. I have a problem need some guide ! I created three tab: TAB_A; TAB_B; TAB_C. Inside the TAB_A, I place a link: me.info.com*. And my purpose is when anyone click this link, other content page inside TAB_B a

  • Difference between SAP ECC IDES 6.0 and SAP NetWeaver?

    Hello everyone! I am a bit confused since I am also new to SAP world, so I would to ask you, we have a SAP IDES ECC 6.0 in our server here to our company, I was trying to see a little of SAPUI5 and in a tutorial a guy was using SAP NetWeaver Visual C

  • Error 42201 the input signal is empty

    hi all can you help fixing this error please ? error 42201 the input signal is empty .( i am having this error while connecting the build array function to the detrend function .  Bill David

  • New Database in EMC's databases tree

    How do I take database from one computer and copy to other computer. Then I want to put this new database in the list of already present databases at EMC's databases tree list. My second question is: My OMC, net manager and net configuration are not