Itmss is not a registered protocol?

Whenever I try and verify my iTunes account with firefox is always gives me the itmss is not a registered protocol. error. Is there a way I can fix this? I have already tried uninstalling and reinstalling iTunes but nothing changes. Or is there a way to verify my iTunes account on the internet instead of using an Itunes protocol?
Thanks
Justin

I saved one RTSP link, and when I try to stream that from nokia devices (Nokia Asha 501, Asha 308, Asha 311, Nokia X2-00, Nokia 303) it fails. However I was able to stream them from VLC media player.  
I haven't tried from Apple quicktime player just yet. Can you explain what's the difference between VLC and apple quick time player when it comes to audio streaming?

Similar Messages

  • Apt is not a registered protocol

    I'm running kubuntu 11.04, and Seamonkey 2.8. When I attempt to download flashplayer 11 the message pops up "apt is not a registered protocol".
    This also happenes on flashplayer 10.
    When I download (10 or 11) as tar.gz and unpack it, I cannot find flashplayer.xpt (which is in the mozilla instructions). This is why I am trying to get the .apt file.

    I saved one RTSP link, and when I try to stream that from nokia devices (Nokia Asha 501, Asha 308, Asha 311, Nokia X2-00, Nokia 303) it fails. However I was able to stream them from VLC media player.  
    I haven't tried from Apple quicktime player just yet. Can you explain what's the difference between VLC and apple quick time player when it comes to audio streaming?

  • Adfs/ls does not work while adfs/ls/idpinitiatedsignon works | There are no registered protocol handlers on path /adfs/ls/ to process the incoming request

    Hello Experts
    I am trying to configure ADFS 3.0 with Sharepoint 2013 and facing an issue with ADFS 3.0 url
    When I try to access url https://<ADFS.domain.com>/adfs/ls - I face following error 
    Encountered error during federation passive request. 
    Additional Data 
    Protocol Name: 
    Relying Party: 
    Exception details: 
    Microsoft.IdentityServer.RequestFailedException: MSIS7065: There are no registered protocol handlers on path /adfs/ls/ to process the incoming request.
       at Microsoft.IdentityServer.Web.PassiveProtocolListener.OnGetContext(WrappedHttpListenerContext context)
    But When I try to access ADFS url - https://<ADFS.domain.com>/adfs/ls/idpinitiatedsignon 
    It works.. 
    Is it normal behavior or something wrong here.
    Please suggest.
    Thanks

    /adfs/ls/ is the endpoint for all "passive" protocols. a Plain GET to /adfs/ls wil complain (correctly) that the plain GET is not a correct SAML or WS-Fed message. You should only send correct messages to that EndPoint........
    Paul Lemmers

  • Address family not supported by protocol family: bind

    Over the past few days a number of users have reported connection issues with our application. We've been able to track the problem to this line of code:
    ServerSocketChannel sc = ServerSocketChannel.open();
    sc.socket().bind(new InetSocketAddress("localhost", 0)); <- error thrown
    The following error is thrown:
    java.net.SocketException: Address family not supported by protocol family: bind
    sun.nio.ch.Net.bind(Native Method)
    sun.nio.ch.ServerSocketChannelImpl.bind(Unknown Source)
    sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    I've read this is something to do with an IPv4 / IPv6 issue. But what I don't understand is that our users have had this working fine for months and we've never had any problems in the past, but within the last couple of days 10 people have contacted us, all with the same issue. We've not released any patches so we've not introduced the problem. Does anyone know what might have changed in the past few days? Did Microsoft release a patch to modify the IPv 4 / 6 protocols?
    Apparently the issue might be resolved in Java7, but we have thousands of users, and rolling out a new version of Java is a big upheaval.
    Any ideas???
    BBB

    It uses a JRE that is isolated for our application, so Java updates 'shouldn't' affect it. I have a sneaking suspicion that a Vista update may have changed something, but I can't be sure.
    I'm working through the problem with one of our users, and I've changed the code from:
    ServerSocketChannel sc = ServerSocketChannel.open();
    sc.socket().bind(new InetSocketAddress("localhost", 0));To
    ServerSocket sc = new ServerSocket();
    sc.bind(new InetSocketAddress("localhost", 0));This works and I'm able to get an available port. However, later in the code it runs this section of code to connect the socket:
         void connect() throws IOException, InterruptedException {
              int retry;
              for (retry = 0; retry < MAX_RETRY; retry++) {
                   try {
                        channel = SocketChannel.open();
                        channel.configureBlocking(false);
                        //connect to server
                        channel.connect(serverAddr);
                        //register events to listen
                        channel.register(selector, SelectionKey.OP_CONNECT);
                        while (!channel.isConnected()) {
                             if (selector.select(1) > 0) {
                                  Set readyKeys = selector.selectedKeys();
                                  Iterator i = readyKeys.iterator();
                                  while (i.hasNext()) {
                                       SelectionKey key = (SelectionKey) i.next();
                                       i.remove();
                                       SocketChannel keyChannel = (SocketChannel) key
                                                 .channel();
                                       if (key.isConnectable()) {
                                            if (keyChannel.isConnectionPending()) {
                                                 keyChannel.finishConnect();
                                            break;
                        break;
                   } catch (Exception e) {
                        channel.close();
                        channel = null;
                        try {
                             Thread.sleep(150);
                        } catch (Exception ex) {
              if (retry == MAX_RETRY) {
                   throw new InterruptedException("Maximum retry number reached!");
              channel.register(selector, SelectionKey.OP_READ);
         }It's now falling over on this line:
    channel.connect(serverAddr);
    java.net.SocketException: Address family not supported by protocol family: connect
    serverAddr is a InetSocketAddress, channel is a SocketChannel, which appears not to be supported on the machine that are having these connection issues.
    I'll be honest, I have little or no experience of implementing Sockets, and since I can't replicate the actual problem that our users are having it makes it even hard to fix it or try to code a workaround. The code above is from an OpenSource project, i.e. it's not something I wrote. In other words, I'm kinda up the 'proverbial creek'!
    Could anybody be kind enough to steer me in the right direction for a workaround that doesn't use a SocketChannel? It really would be appreciated!
    BBB

  • [PI 7.11 SP3] PI components not correctly registering themselves after AS restart

    Hi Experts,
    We have planned a system backup shutdown and restart every night for our PI environment.
    In a random manner, some PI components as XI AF or Integration Directory are not correctly registered to SLD after that restart : for example, Integration Directory registers but it is not assigned to a PI domain.
    It is good to mention that PI instance is actually using its own SLD (local SLD) for registration.
    When the problem occurs, I follow sap note 1117249 to manually register PI components within SLD and this solves the issue.
    But the definitive solution will be to avoid incomplete SLD registration at restart … But I have not yet found any sap note for that kind of solution.
    Il someone can help J
    Thanks a lot
    Nadir

    Hey Caio,
    Thanks for the response but it doesn't actually answer my question.  But to that point, for a "basic" PI post install, which of the NWA config tasks would you run other than the "initial config" ?  And would you run them BEFORE you updated the SLD content (cimsap/CRDelta) ?
    NW: PI - AS ABAP (Basic Configuration for Idoc, Proxy): Maintain
    PI Adapter Engine in JPR Mode
    PI Demo Client
    PI Full Qualified Host Name
    PI Self Test for NetWeaver
    PI SLD Self Registration
    Specifically, I did the SAPINST - ABAP/JAVA patches - Client copy - and THEN the initial config wizard (Setup a new local SLD, ).  Also, during the initial config, I clicked the box marked "This SLD will be used as a name server for development" and my PI server hostname was already in the box  marked "object server name".  This config took about 30 minutes.  I didn't see any errors or warnings.  although I didn't view the log.  I did go into Java JEE services and Filter for Services with name "XPI".  All were green.
    THEN I tried to update the SLD content.
    any thoughts appreciated.
    NICK

  • ERROR :  SSO Partner application could not be registered successfully

    Hi,
    when i run txkrun.pl to register sso my regisitration fails
    perl txkrun.pl -script=SetSSOReg
    You are registering ORACLE HOME, Instance with SSO and OID Servers.
    Enter the host name where Oracle iAS Infrastructure database is installed ? hschbscgn20104.hclt.corp.hcl.in
    Enter the LDAP Port on Oracle Internet Directory server ? 389
    Enter SSL LDAP Port on Oracle Internet Directory server ? 636
    Enter the Oracle Internet Directory Administrator (orcladmin) Bind password ?
    Enter the instance password that you would like to register this application instance with ?
    Enter Oracle E-Business apps database user password ?
    *** Log File = /data/vis/inst/apps/VIS_hschbscgn20118/logs/appl/rgf/TXK/txkSetSSOReg_Fri_Nov_19_10_05_55_2010.xml
    Beginning input parameter validation for Oracle Home Instance registration.
    *** ALERT: This Oracle Home Instance is already registered. Oracle Home Instance Registration will be skipped.
    Input parameter validation for Oracle Home Instance registration completed.
    Beginning input parameter validation for SSO registration.
    Input parameter validation for SSO registration completed.
    Beginning input parameter validation for OID registration.
    Input parameters validation for OID registration completed.
    BEGIN SSO REGISTRATION:
    Beginning to register partner application.
    *** ERROR : SSO Partner application could not be registered successfully.
    End of /data/vis/apps/apps_st/appl/fnd/12.0.0/patch/115/bin/txkSetSSOReg.pl : No Errors encountered
    Below is my Log file:
    BEGIN SSO REGISTRATION:</message>
    </record>
    <record>
    <date>2010-11-18T23:31:11</date>
    <millis>1290103271727</millis>
    <sequence>79</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.TXKSTDIO</class>
    <method>info</method>
    <thread>10</thread>
    <message>Beginning to register partner application.</message>
    </record>
    <record>
    <date>2010-11-18T23:31:11</date>
    <millis>1290103271728</millis>
    <sequence>80</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.config.Instance</class>
    <method>updateIasProperties</method>
    <thread>10</thread>
    <message>updating ias.properties file by retrieving data from DB</message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272017</millis>
    <sequence>81</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.config.Instance</class>
    <method>updateIasProperties</method>
    <thread>10</thread>
    <message>Retrieved Preferences: {IASname=VIS.hclt.corp.hcl.in, InfrastructureDBCommonName=ORAAS.HCLT.CORP.HCL.IN, InfrastructureUse=true, OIDhost=hschbscgn20104.hclt.corp.hcl.in, SSLOnly=false, OIDsslport=636, IASpassword=05a78096c85355eed5aa08f04546377eb5e16520f2237467b7, OIDport=389}</message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272018</millis>
    <sequence>82</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.config.Instance</class>
    <method>updateIasProperties</method>
    <thread>10</thread>
    <message>ias.properties is latest. No need to update.</message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272019</millis>
    <sequence>83</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.sso.Instance</class>
    <method>ssoReg</method>
    <thread>10</thread>
    <message>Processing APPS_FRAMEWORK_AGENT: https://hschbscgn20118.hclt.corp.hcl.in:443</message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272019</millis>
    <sequence>84</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.sso.Instance</class>
    <method>removePortsFromAgent</method>
    <thread>10</thread>
    <message>Agent:https://hschbscgn20118.hclt.corp.hcl.in:443
    After removing default ports Agent:https://hschbscgn20118.hclt.corp.hcl.in</message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272053</millis>
    <sequence>85</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.DBUtil</class>
    <method>getAgentConfFileId</method>
    <thread>10</thread>
    <message>Executing: SELECT PREFERENCE_NAME FROM FND_USER_PREFERENCES WHERE PREFERENCE_NAME LIKE 'TXK_SSO_FILE_ID_%' AND PREFERENCE_VALUE = 'https://hschbscgn20118.hclt.corp.hcl.in' AND MODULE_NAME = 'LDAP_SYNCH' AND USER_NAME = '#INTERNAL' </message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272054</millis>
    <sequence>86</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.DBUtil</class>
    <method>getAgentConfFileId</method>
    <thread>10</thread>
    <message>file id NOT found</message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272055</millis>
    <sequence>87</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.sso.Instance</class>
    <method>updateReqArgs</method>
    <thread>10</thread>
    <message>Updated Required Arguments Map: -site_name=https://hschbscgn20118.hclt.corp.hcl.in -appspass=******* -config_mod_osso=true -logout_url=https://hschbscgn20118.hclt.corp.hcl.in/OA_HTML/AppsLogoutSSO -home_url=https://hschbscgn20118.hclt.corp.hcl.in -config_file=/data/vis/inst/apps/VIS_hschbscgn20118/ora/10.1.3/Apache/Apache/conf/osso/VIS_hschbscgn20118_osso.conf -update_mode=CREATE -success_url=https://hschbscgn20118.hclt.corp.hcl.in/osso_login_success -cancel_url=https://hschbscgn20118.hclt.corp.hcl.in </message>
    </record>
    <record>
    <date>2010-11-18T23:31:12</date>
    <millis>1290103272056</millis>
    <sequence>88</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.sso.Instance</class>
    <method>ssoReg</method>
    <thread>10</thread>
    <message>Commmand is : sh /data/vis/apps/tech_st/10.1.3/sso/bin/ssoreg.sh -site_name https://hschbscgn20118.hclt.corp.hcl.in -config_mod_osso true -logout_url https://hschbscgn20118.hclt.corp.hcl.in/OA_HTML/AppsLogoutSSO -home_url https://hschbscgn20118.hclt.corp.hcl.in -config_file /data/vis/inst/apps/VIS_hschbscgn20118/ora/10.1.3/Apache/Apache/conf/osso/VIS_hschbscgn20118_osso.conf -update_mode CREATE -success_url https://hschbscgn20118.hclt.corp.hcl.in/osso_login_success -cancel_url https://hschbscgn20118.hclt.corp.hcl.in</message>
    </record>
    <record>
    <date>2010-11-18T23:31:14</date>
    <millis>1290103274625</millis>
    <sequence>89</sequence>
    <logger>txkSetSSOReg</logger>
    <level>INFO</level>
    <class>oracle.apps.fnd.txk.ias.sso.Instance</class>
    <method>ssoReg</method>
    <thread>10</thread>
    <message>Return Code is : 1</message>
    </record>
    <record>
    <date>2010-11-18T23:31:14</date>
    <millis>1290103274625</millis>
    <sequence>90</sequence>
    <logger>txkSetSSOReg</logger>
    <level>SEVERE</level>
    <class>oracle.apps.fnd.txk.ias.sso.Instance</class>
    <method>ssoReg</method>
    <thread>10</thread>
    <message>CLASSPATH=/data/vis/apps/tech_st/10.1.3/jdbc/lib/ojdbc14.jar:/data/vis/apps/tech_st/10.1.3/jlib/repository.jar:/data/vis/apps/tech_st/10.1.3/sso/lib/ossoca.jar:/data/vis/apps/tech_st/10.1.3/sso/lib/ossoreg.jar:/data/vis/apps/tech_st/10.1.3/lib/xmlparserv2.jar:/data/vis/apps/tech_st/10.1.3/jdbc/lib/classes12.jar:/data/vis/apps/tech_st/10.1.3/jdbc/lib/nls_charset12.jar:/data/vis/apps/tech_st/10.1.3/jlib/jndi.jar:/data/vis/apps/tech_st/10.1.3/jlib/ojmisc.jar:/data/vis/apps/tech_st/10.1.3/j2ee/home/jazn.jar:/data/vis/apps/tech_st/10.1.3/j2ee/home/jaas.jar:/data/vis/apps/tech_st/10.1.3/jdk/lib/rt.jar:/data/vis/apps/tech_st/10.1.3/jdk/lib/i18n.jar:/data/vis/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndoid.jar:/data/vis/apps/tech_st/10.1.3/jdbc/lib/ojdbc14.jar:/data/vis/apps/tech_st/10.1.3/jdbc/lib/orai18n.jar:/data/vis/apps/tech_st/10.1.3/jlib/repository.jar:/data/vis/apps/tech_st/10.1.3/jlib/infratool.jar:/data/vis/apps/apps_st/comn/java/classes:/data/vis/apps/tech_st/10.1.3/sysman/webapps/emd/WEB-INF/lib/emd.jar:/data/vis/apps/tech_st/10.1.3/dcm/lib/dcm.jar:/data/vis/apps/tech_st/10.1.3/sysman/j2ee/lib/portalSMI.jar:/data/vis/apps/tech_st/10.1.3/jlib/emConfigInstall.jar:/data/vis/apps/tech_st/10.1.3/lib/dms.jar:/data/vis/apps/tech_st/10.1.3/opmn/lib/ons.jar:/data/vis/apps/tech_st/10.1.3/j2ee/home/oc4j.jar
    Parameters passed to SSO registration tool :
    param0:-oracle_home_path param1:/data/vis/apps/tech_st/10.1.3 param2:-site_name param3:https://hschbscgn20118.hclt.corp.hcl.in param4:-config_mod_osso param5:true param6:-logout_url param7:https://hschbscgn20118.hclt.corp.hcl.in/OA_HTML/AppsLogoutSSO param8:-home_url param9:https://hschbscgn20118.hclt.corp.hcl.in param10:-config_file param11:/data/vis/inst/apps/VIS_hschbscgn20118/ora/10.1.3/Apache/Apache/conf/osso/VIS_hschbscgn20118_osso.conf param12:-update_mode param13:CREATE param14:-success_url param15:https://hschbscgn20118.hclt.corp.hcl.in/osso_login_success param16:-cancel_url param17:https://hschbscgn20118.hclt.corp.hcl.in
    -DinstallType=
    -DORACLE_CONFIG_HOME=/data/vis/inst/apps/VIS_hschbscgn20118/ora/10.1.3
    -DoldOracleHome=
    -DoldOHSUser=root
    Check /data/vis/inst/apps/VIS_hschbscgn20118/ora/10.1.3/sso/log/ssoreg.log for details of this registration
    SSO registration tool failed. Please check the log file /data/vis/inst/apps/VIS_hschbscgn20118/ora/10.1.3/sso/log/ssoreg.log, correct the problem and re-run the tool.
    .end std out.
    .end err out.
    </message>
    </record>
    <record>
    <date>2010-11-18T23:31:14</date>
    <millis>1290103274626</millis>
    <sequence>91</sequence>
    <logger>txkSetSSOReg</logger>
    <level>SEVERE</level>
    <class>oracle.apps.fnd.txk.ias.TXKSTDIO</class>
    <method>exception</method>
    <thread>10</thread>
    <message>oracle.apps.fnd.txk.ias.SsoOidException: SSO Partner application could not be registered successfully.
    at oracle.apps.fnd.txk.ias.sso.Instance.ssoReg(Instance.java:470)
    at oracle.apps.fnd.txk.ias.sso.Instance.registerPartnerApp(Instance.java:690)
    at oracle.apps.fnd.txk.ias.Instance.main(Instance.java:88)
    </message>
    </record>
    </log>
    can anyone tell me what is the problem

    Hi
    Please refer doc and do the following steps.
    1. Take a copy of the $IAS_ORACLE_HOME/Apache/Apache/bin/iasobf file
    2. Change the ORACLE_HOME=to the correct IAS_ORACLE_HOME
    3. Re-run the SSO registration by following the three step process
    Regards,
    Krishna

  • Regarding iMessage, when i want to send text to a person in my contacts app, i've been getting a message saying the number has not been registered with iMessage.  How can one fix this problem?

    Regarding iMessage, when i want to send text to a person in my contacts app, i've been getting a message saying the number has not been registered with iMessage.  How can one fix this problem?  It works on the iPhone.

    It takes two to tango, maybe it's your recipient that has weak Internet/Cellular connections.

  • XML file not generate in MOPZ - system has not been registered in SLM

    HI,
    I need to install EHP4 in ERP 6.0. So to get the xml file i installed solution manager 7.0 EHP1 and post process of EHP1.
    ST -400 -21
    the important Notes i followed.
    ==================================================================
    Note 1151784 - Setup of SL Controller for Live Update
    Note 1145444 - SLM configuration
    Note 1277035 - Solution Manager: EHP4 product data missing
    Note 1122966 - Maintenance Optimizer: Notes for Enhancement Packages
    Note 1137683 - Maintenance Optimizer: Notes for Software Lifecycle Manager
    Note 1154188 - SLM web service authentication 700 SP14 ( SERVICE NOT AVAILABLE )
    Note 669669 - Updating the SAP Component Repository in the SLD
    Note 1244225 - Solution Manager 7.0 EhP 1: recommended corrections
    Note 1137683 - Maintenance Optimizer: Notes for Software Lifecycle Manager
    =======================================================================
    Note 1334252 - SAP Solution Manager - Basic functions SP20 and higher ( this note contain post process of EHP1)
    ===============================================================
    Still i am not getting the xml file of EHP4 for ERP 6.0.
    I am getting the error "The system/systems - VMW, has/have not been registered in SLM"
    Regards
    Lee

    hi Ruediger Stoecker ,
    But the xml file didn't generate. that's why i worried.
    ==============================================
    I tried with end of selection process in MOPZ upto "END Maintenance" phase. The XML file didn't generate.
    Edited by: Lee green on Dec 23, 2009 10:10 AM

  • I have a Windows copy of Photoshop Elements 11, but the serial number has been lost. I didn't buy the product and I am unable to find the box. As far as I know, it's never been used so has not been registered. Does anyone know how the serial number can be

    I have a Windows copy of Photoshop Elements 11, but the serial number has been lost. I didn't buy the product and I am unable to find the box. As far as I know, it's never been used so has not been registered. Does anyone know how the serial number can be recovered under these circumstances?

    If you never bought the product then you cannot get the serial number.

  • "the activex control for flash player could not be registered" - Solutions Roundup

    I recently ran into this problem on my computer:
    http://at32.s3.amazonaws.com/flash_install_problems2.jpg
    I am a Flash developer (as in I write SWFs, I don't work for Adobe).  and when I updated IE to 10.2, "the activex control for flash player could not be registered".  Since I am a developer, I also have Firefox and Chrome installed, with Flash running without problems.  For a long time now, Internet Explorer has used a different version (ActiveX) to the other browsers, which use plugins.  I am a strong supporter of Flash, it's great to develop with and has a very wide feature set which is growing all the time, unlike fixed technologies/standards.  However, the weakest part is the install process - I don't understand why their is a Download Manager.  Google Chrome does it's best (so far) by managing the install/update process entirely in the background.  Anyway, it was in my best interest to try and get to the bottom of this.
    For the record, on the problem machine I have Windows 7 with IE8, but I have seen almost  identical symptoms with IE9, Windows XP SP3, as well as various  iterations of Flash Player (10.0, 10.1, 10.2 and even some final  editions of version 9).
    First I tried the standard support here:
    http://kb2.adobe.com/cps/191/tn_19166.html
    Basically, doing the manual uninstall and manual install of the latest version (without using the download manager, or have IE open).  This did not work.  I also tried the Microsoft "subinacl" program, together with "reset_fp10.bat".  This didn't work either.  However, you should try all of these things first before progressing further.
    A quick note about people who had tried running the following at a command prompt: "secedit /configure /cfg %windir%\repair\secsetup.inf /db secsetup.sdb /verbose"
    I didn't do this, because on investigating further it didn't seem to work with Windows 7, only Windows XP, Windows 2000 or Windows 2003 - though there was a few threads where this had fixed the problem for some users.
    For my solution, it is recommended you use the manual uninstall / installers, so you should have them downloaded ready to use.
    I then heard about problems with permissions in the registry with the key: HKEY_LOCAL_MACHINE\Software\Classes\shockwaveflash.shockwave
    So I opened regedit.exe (start - run - typed "regedit.exe"), navigated to the key and sure enough, I couldn't open it - permission denied - even though I had an administrator account.  If for some reason, you can access this key (and any subkeys), then it's likely the following fix will not resolve the problem.
    I then done further diagnosis, by using Process Monitor to try and install Flash Player, and I got the following:
    http://at32.s3.amazonaws.com/flash_install_problems.gif
    This shows all the access denied errors the Flash Player install was experiencing when trying to write to the registry key.  This confirmed that this was the problem.  I only stress this because several people said it was unwise to tinker with the registry.  Though this is common advice, this is the only known fix for this precise problem at present, since you need to manually adjust the permissions yourself.  I don't know who is at fault here - Microsoft or Adobe - but let's just get Flash fixed...
    The solution:
    Firstly, you may want to backup your registry, or the exact key.  I didn't do this so I've provided no instructions on how to, but it is recommended for the paranoid.  Also make sure as much software is closed down as possible - browsers, IM software, any junk in your system tray. As way of example, I happened to have "BBC iPlayer" installed and running in the background which uses Adobe AIR and Flash Player, so I exited that too.
    1) Open regedit (start - run - type "regedit.exe").  You may need to right click on it and select "Run As Administrator", but I didn't as my account was already administrator.
    2) Navigate to the key. HKEY_LOCAL_MACHINE\Software\Classes\shockwaveflash.shockwave
    Click on it to confirm that you cannot access it (you will get an error) - if their are no problems - this probably isn't the cause of your issues.
    3) Right click on it and click Permissions, and ignore any message that may pop up.
    4) Under "Group or Usernames" click "Add".  Type your account name name, or "Administrators" in the box, then "Check Names" to format it correctly, then Ok.
    5) Now on the next screen click the checkbox to enable Full Control (this will also automatically enable "Read" permission too).
    6) Click Advanced, then the "Owner" tab at the top.  You will see that their is no "Current Owner".  This is what we will now fix.
    7) Click on your name to change the owner to (I went for Administrators).  Also enable the checkbox entitled "Replace Owner on subcontainers and objects".  Then click Ok.  You will get an error message, which you can try clicking Retry to, but hit Cancel - this is not a problem.
    8) Click Ok a couple of times and this part of your registry is now fixed.
    9) Now it's a simple case of running the manual Flash uninstall program, then finally the manual Flash installer (for Active X - not the Firefox/Chrome plugin versions).  To my surprise, after a couple of days looking into this - I finally had a solution and Flash in IE once more.  If you are using Firefox too you may find Flash is no longer installed their (the uninstaller removed it).  In this case just install via the Adobe site or try to watch a video on You Tube and you will be prompted or linked to the install.
    Hope this provides a good round up of the possible solutions to this problem.  Hopefully Microsoft or Adobe can find out what causes this issue in the first place so we don't have to go down this route for much longer.  Chrome's implementation of Flash shows how effortlessly things can work!

    They will stay on the screen.  However, Process Monitor is only intended for advanced users.  It is recommended that users try to navigate to the troublesome registry key using regedit, and see if they can access it or not without an error.  This is far easier than trying to use Process Monitor, which is very complicated.
    I used Process Monitor to confirm that it was just that key which was causing the problem, and not others.  Process Monitor is not to be confused with the new Resource Monitor which is accessible via Task Manager in Windows 7 (and possibly Vista).  If you must experiment (and Process Monitor is very useful for diagnosing many deep-level problems if you know what you're looking for) Process Monitor can be downloaded from here:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    It replaces the older Sysinternals "FileMon" and "RegMon".  For those interested in the technical side, I had to setup a number of filters to be able to get the results display as in the screenshot.  First of all to just show Registry events.  Then to just show events from the manual Flash activeX installer executable.  The I added a filter to show only non-successfull results.  And finally, for the purposes of the screenshot, added a filter to just show those with "Access Denied", since other non-critical errors are also picked up due to missing keys because installation has not yet been fully completed I guess.   When experimenting, most of these filters were applied using the "is not" boolean logic, which will make sense if you experiment with the program.
    Without adding any filters, it picks up so many events (hundreds per second) that it's otherwise unusable.  e.g. 40,000 events within the first few seconds of opening the program. For this reason, I recommend simply using Regedit to diagnose the problem with the particular Flash registry key.

  • Getting error The user could not be registered at this time due to an internal error in R11

    We created new Organization (that had alpha numeric value e.g.  7777A) using Customer Online to be used in iStore i11 version. 
    The user account and password was also created for the organization.  When we tried to login to istore the first time the registration screen (jtftmplh.jsp) was displayed.  After filling the needed information and submitting we get the error:
    "The user could not be registered at this time due to an internal error Please contact the system administrator if this problem persists.
    Note to System Administrators: View source for more information about this error."
    But if we created new Organization with numbers only  e.g. 7777  we don't have the issue. Yet we already have large number of organization with alpha numeric and they work fine. (believe they were pragmatically loaded).
    The profiles "HZ: Generate Party Number" and "HZ: Generate Party Site Number" are set to Yes.
    ==> Here is the error in the page source:
    Message: The user could not be registered at this time due to an internal error
    Please contact the system administrator if this problem persists.
      Note to System Administrators: View source for more information about this error.
    Stack:
    oracle.apps.jtf.base.resources.FrameworkException: The user could not be registered at this time due to an internal error
    Please contact the system administrator if this problem persists. 
    Note to System Administrators: View source for more information about this error.
        at oracle.apps.jtf.um.template.TmplUtils.action(TmplUtils.java:406)
        at _oa__html._jtftmplh._jspService(_jtftmplh.java:3961)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java)
        at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java)
        at _oa__html._jtftmplh._jspService(_jtftmplh.java:3870)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java)
        at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java)
        at _oa__html._jtftmplh._jspService(_jtftmplh.java:2342)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java)
        at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java)
        at _oa__html._ibeCRgpBusinessCreate._jspService(_ibeCRgpBusinessCreate.java:1467)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
        at org.apache.jserv.JServConnection.run(JServConnection.java:294)
        at java.lang.Thread.run(Thread.java:680)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: IBE_ERR_UM_REG_USER
        at oracle.apps.ibe.um.RegisterBusiness.handle(RegisterBusiness.java:1157)
        at oracle.apps.jtf.um.template.TmplUtils.action(TmplUtils.java:379)
        ... 37 more
    Caused by: oracle.apps.jtf.base.resources.FrameworkException
        at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
        at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)
        ... 39 more
    The error message is not helpful and not clear of the error. How can we register users with alpha-numeric value (if that is the issue?).
    Thanks for your assistance.

    Been like this for a couple of days.  Is this something that happens from time to time?

  • How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI?

    How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI? I'm having some hiccups getting Adobe to register the software, but since I set it as the default .pdf reader during setup, things try (and fail) to open in the as yet unregistered software. How can I change it temporariiy to the Acrobat Reader XI that I have installed?

    Anubha,
    It worked! Thank you so much.
    I'd opened file with the 'Open with' feature then clicking Adobe Reader,
    but that didn't do it. When I used 'Open with', then 'Choose default
    program...', it worked like a charm.
    Again, thank you!
    Jonathan
    On Wed, Mar 18, 2015 at 10:16 PM, Anubha Goel <[email protected]>

  • ISE 1.2 Guest Portal - This device has not been registered.

    I have setup and SSID on my WLC. I got the redirecting to my ISE guestportal working.
    However when I sign in I get a Device regitration Page
    "This device has not been registered"
    Unable to obtain the user information needed for network access.
    The device ID is grayed out and blank.
    Any assistance in this matter would be greatly appreciated

    Thanks Johnston,
    P.S for those who needs the path ISE 1.2 Administration -> Web Portal Management -> Settings -> Multi-Portal Configurations -> DefaultGuestPortal -> Operations.
    On another note
    When I login - I get my acceptable usage policy.
    Accept
    Then get a Device registration Portal where I can add the MAC address.
    Now I have two quistions.
    When I add my test mac address the url redirects to myservername:8443/guestportal/AfterDevReg.action - unable to connect <- that's the one issue.
    The other is - Can't I by pass the MAC? ie once the user is signed on to get access.
    Curretly I have the following settings enabled.
    Enable Mobile Portal
    Allow guest users to change password
    Guest users should be allowed to do device registration <- if I disable that after signon the page just flash back to the guest portal.

  • Error In Receiver BC adapter(EOIO not supported by protocol BC.)

    Hi Experts ,
    My Scenario is ABAP proxy to SAP BC .I had  bellow error  in Receiver BC adapter .
    Adapter Framework caught exception: Delivery semantics EOIO not supported by protocol BC.
    Error Delivering the message to the application using connection BC_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.InvalidParamException: Delivery semantics EOIO not supported by protocol BC..
    Please help how to resolve this .
    Regards
    Upendra.V
    Edited by: upendra v on Oct 4, 2010 2:08 PM

    HI Anuradha,
    Check the below link for receiver mail configuration and follow the steps accordingly.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0a27c01-26b0-2c10-bd8a-94498efa7ff6?quicklink=index&overridelayout=true
    Regards,
    Naveen

  • Active X could not be registered trouble..help!

    Hey guys, need some help. I am a little computer literate, but not too much...
    So recently I got a virus and it messed up my laptop bad!! I downloaded new Anti-Virus and its gone but left me with a world of problems...(rundll32 errors, etc.) I have been in forums and trying to fix this for a week to no avail...
    I can't download flash now, it gives me the notification of Active X Control for flash player could not be registered. Undoubtedly, I know this has to do with the virus' damage.
    I have a Toshiba Satellite A205 with Vista and its a 32 bit system. I am the admin on my system.
    Any help would be appreciated and please let me know if there is more info I could provide to get some answers.
    Thanks,
    Kristen
    Message was edited by: kstone23
    Add: I forgot to include I am running IE8 and using AVG Anti-Virus.
    I couldn't figure out how to disable the AVG to see if that was the problem, but with the registry errors (the Rundll) it seems like it wouldn't have anything to do with it?

    Hey!
    So I have spent the past month trying to fix it to no avail...I tried this and it totally worked!! (I'm so excited!)
    To anyone who ever will need this link:
    Make sure when you enter the command you put in all the spaces. (Down the thread what RubbishFoo suggests)
    http://social.answers.microsoft.com/Forums/en-US/InternetExplorer/thread/b038c4fb-42a9-448 3-ae16-98930dd5d706
    Off to catch up on everything I have missed!! Thanks for all the help!

Maybe you are looking for

  • How to hide or reorder mailboxes on iPhone 6?

    Hi I have a lot of mailboxes with subfolders I don't want to see on my iPhone 6 so I'm trying to work out how to hide and reorder them. I can see how to do it in iOS 7 but it seems to have changed? Can I do it from the phone? Help please! Rod

  • Issues with Thinkpad yoga on Windows 7 64-bit

    I uninstalled the windows 8.1 that came with my Thinkpad Yoga to installe windows 7 64-bit because there was no support for Power Manager ( a tool that allows you to charge your battery only upto a certain percentage (eg 40%) which helps reduce batte

  • Photo Album Won't Run From Internet

    CS4 - I posted earlier that my photo albums won't run from the internet but runs from my computer and from a flash drive. I have rebuilt it probably 10 times. The URL is http://www.kandjreynoldsconstruction.com/gallery/index.html. Albums that I've bu

  • Firefox lost my tabs

    FF4.0.1 on Win 7, i7, 3gb RAM, FF 4 is much faster than 3. I had a LOT of tabs (around 150), and a couple more in different panoramas. FF4 started getting quite slow. I shut down normally. I restarted, and all my tabs and panoramas are gone! I've loo

  • Disk Utillity 10.4.6 errors creating .DMG

    I had a client over yesterday, we reformatted his system, installed Tiger 10.4 updated to 10.4.6 installed all of his applications, configured all of his settings, and I've told him now that it's clean, and configured, with permissions repaired, to m