Midtier Install when SSO requires SSL

Having a bit of a problem here with the SSO port selection screen... our SSO configuration is through SSL, and it works great. Well, except for the fact that I need to make the Midtier install and link to the SSL port. Problem is, the installer expects to see SSO over regular HTTP and won't go any further until it does. Is there a way around this? Maybe an environment variable? Maybe something I can change in the script?
Thanks in advance!!!

by using keytool u can able to create a key store ,create a certificate and sign the certificate.after doiing all these things u have to configure to particular server on which u need.
1.open the admin console see the servers and select one server on which u need to enable ssl
2.in tabs panel u r able to see the KEYSTORE tab,click that
3.give the required parameters
4.dont give any values to trust fields
while doing this u will get A promt llike FOR THIS U HAVE TO CONFIGURE SSL ALSO for that follow the steps
1.go to ssl tab beside the keystore tab
2.give required parameter and enable the ssl atribute.
after doing all once restart the admin server then u will get response through https......

Similar Messages

  • OC4J Instance Failed when installing the SSO against FMW OID 11g

    Hi All,
    We are facing an problem when installing the SSO against OID 11g. The error is OC4J Instance Failed.
    In Installer log it is showing Target Invocation Exception.
    Please anyone advise.
    Thanks in Advance.
    Vaasu.

    Hi All,
    We are facing an problem when installing the SSO against OID 11g. The error is OC4J Instance Failed.
    In Installer log it is showing Target Invocation Exception.
    Please anyone advise.
    Thanks in Advance.
    Vaasu.

  • How to configure sso with SSL step by step

    Purpose
    In this document, you can learn how to configure SSO with SSL. After user have certificate installed in browser, he can login without input username and password.
    Overview
    In this document we will demonstrate:
    1.     How to configure OHS support SSL
    2.     How to Register SSO with SSL
    3.     Configure SSO for certificates
    Prerequisites
    Before start this document, you should have:
    1.     Oracle AS 10g infrastructure installed (10.1.2)
    2.     OCA installed
    Note:
    1.     “When you install Oracle infrastructure, please make sure you have select OCA.
    2.     How Certificate-Enabled Authentication Works:
    a.     The user tries to access a partner application.
    b.     The partner application redirects the user to the single sign-on server for authentication. As part of this redirection, the browser sends the user's certificate to the login URL of the server (2a). If it is able to verify the certificate, the server returns the user to the requested application.
    c.     The application delivers content. Users whose browsers are configured to prompt for a certificate-store password may only have to present this password once, depending upon how their browser is configured. If they log out and then attempt to access a partner application, the browser passes their certificate to the single sign-on server automatically. This means that they never really log out. To effectively log out, they must close the browser.
    Enable SSL on the Single Sign-On Middle Tier
    The following steps involve configuring the Oracle HTTP Server. Perform them on the single sign-on middle tier. In doing so, keep the following in mind:
    l     You must configure SSL on the computer where the single sign-on middle tier is running.
    l     You are configuring one-way SSL.
    l     You may enable SSL for simple network encryption; PKI authentication is not required. Note though that you must use a valid wallet and server certificate. The default wallet location is ORACLE_HOME/Apache/Apache/conf/ssl.wlt/default.
    1.     Back up the opmn.xml file, found at ORACLE_HOME/opmn/conf
    2.     In opmn.xml, change the value for the start-mode parameter to ssl-enabled. This parameter appears in boldface in the xml tag immediately following.
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    </category>
    </module-data>
    <process-set id="HTTP_Server" numprocs="1"/>
    </process-type>
    </ias-component>
    3.     Update the distributed cluster management database with the change: ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct opmn
    4.     Reload the modified opmn configuration file:
    ORACLE_HOME/opmn/bin/opmnctl reload
    5.     Keep a non-SSL port active. The External Applications portlet communicates with the single sign-on server over a non-SSL port. The HTTP port is enabled by default. If you have not disabled the port, this step requires no action.
    6.     Apply the rule mod_rewrite to SSL configuration. This step involves modifying the ssl.conf file on the middle-tier computer. The file is at ORACLE_HOME/Apache/Apache/conf. Back up the file before editing it.
    Because the Oracle HTTP Server has to be available over both HTTP and HTTPS, the SSL host must be configured as a virtual host. Add the lines that follow to the SSL Virtual Hosts section of ssl.conf if they are not already there. These lines ensure that the single sign-on login module in OC4J_SECURITY is invoked when a user logs in to the SSL host.
    <VirtualHost ssl_host:port>
    RewriteEngine on
    RewriteOptions inherit
    </VirtualHost>
    Save and close the file.
    7.     Update the distributed cluster management database with the changes:
    ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct ohs
    8.     Restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl stopproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl startproc process-type=HTTP_Server
    9.     Verify that you have enabled the single sign-on middle tier for SSL by trying to access the OracleAS welcome page, using the format https://host:ssl_port.
    Reconfigure the Identity Management Infrastructure Database
    Change all references of http in single sign-on URLs to https within the identity management infrastructure database. When you change single sign-on URLs in the database, you must also change these URLs in the targets.xml file on the single sign-on middle tier. targets.xml is the configuration file for the various "targets" that Oracle Enterprise Manager monitors. One of these targets is OracleAS Single Sign-On.
    1.     Change Single Sign-On URLs
    Run the ssocfg script, taking care to enter the command on the computer where the single sign-on middle tier is located. Use the following syntax:
    UNIX:
    $ORACLE_HOME/sso/bin/ssocfg.sh protocol host ssl_port
    Windows:
    %ORACLE_HOME%\sso\bin\ssocfg.bat protocol host ssl_port
    In this case, protocol is https. (To change back to HTTP, use http.) The parameter host is the host name, or server name, of the Oracle HTTP listener for the single sign-on server.
    Here is an example:
    ssocfg.sh https login.acme.com 4443
    2. Restart OC4J_SECURITY instance and verify the configuration
    To determine the correct port number, examine the ssl.conf file. Port 4443 is the port number that the OracleAS installer assigns during installation.
    If you run ssocfg successfully, the script returns a status 0. To confirm that you were successful, restart the OC4J_SECURITY instance:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Then try logging in to the single sign-on server at its SSL address:
    https://host:ssl_port/pls/orasso/
         3. Back up the file targets.xml:
    cp ORACLE_HOME/sysman/emd/targets.xml ORACLE_HOME/sysman/emd/targets.xml.backup
    4. Open the file and find the target type oracle_sso_server. Within this target type, locate and edit the three attributes that you passed to ssocfg:
    ·     HTTPMachine—the server host name
    ·     HTTPPort—the server port number
    ·     HTTPProtocol—the server protocol
    If, for example, you run ssocfg like this:
    ORACLE_HOME/sso/bin/ssocfg.sh http sso.mydomain.com:4443
    Update the three attributes this way:
    <Property NAME="HTTPMachine" VALUE="sso.mydomain.com"/>
    <Property NAME="HTTPPort" VALUE="4443"/>
    <Property NAME="HTTPProtocol" VALUE="HTTPS"/>
    5.Save and close the file.
    6.     Reload the OracleAS console:
         ORACLE_HOME/bin/emctl reload
    7. Issue these two commands:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Registering mod_osso
    1.     This command sequence that follows shows a mod_osso instance being reregistered with the single sign-on server.
    $ORACLE_HOME/sso/bin/ssoreg.sh
         -oracle_home_path $ORACLE_HOME
         -config_mod_osso TRUE
         -mod_osso_url https://myhost.mydomain.com:4443
    2.     Restarting the Oracle HTTP Server
    After running ssoreg, restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    Configuring the Single Sign-On System for Certificates
    1.     Configure policy.properties with the Default Authentication Plugin
    Update the DefaultAuthLevel section of the policy.properties file with the correct authentication level for certificate sign-on. This file is at ORACLE_HOME/sso/conf. Set the default authentication level to this value:
    DefaultAuthLevel = MediumHighSecurity
    Then, in the Authentication plugins section, pair this authentication level with the default authentication plugin:
    MediumHighSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOX509CertAuth
    2.     Restart the Single Sign-On Middle Tier
    After configuring the server, restart the middle tier:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Bringing the SSO Users to OCA User Certificate Request URL
    The OCA server reduces the administrative and maintenance cost of provisioning a user certificate. The OCA server achieves this by authenticating users by using OracleAS SSO server authentication. All users who have an Oracle AS SSO server account can directly get a certificate by using the OCA user interface. This reduces the time normoally requidred to provision a certificate by a certificate authority.
    The URL for the SSO certificate Request is:
    https://<Oracle_HTTP_host>:<oca_ssl_port>/oca/sso_oca_link
    You can configure OCA to provide the user certificate request interface URL to SSO server for display whenever SSO is not using a sertificate to authenticate a user. After the OracleAS SSO server authenticates a user, it then display the OCA screen enabling that user to request a certificate.
    To link the OCA server to OracleAS SSO server, use the following command:
    ocactl linksso
    opmnctl stoproc type=oc4j instancename=oca
    opmnctl startproc type=oc4j instancename=oca
    You also can use ocactl unlinksso to unlink the OCA to SSO.

    I have read the SSO admin guide, and performed the steps for enabling SSL on the SSO, and followed the steps to configure mod_osso with virtual host on port 4443 as mentioned in the admin guide.
    The case now is that when I call my form (which is developed by forms developer suite 10g and deployed on the forms server which is SSO enabled) , it calls the SSO module on port 7777 using http (the default behaviour).
    on a URL that looks like this :
    http://myhostname:7777/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    and gives the error :
    ( Forbidden
    You don't have permisission to access /sso/auth on this server at port 7777)
    when I manually change the URL to :
    https://myhostname:4443/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    the SSO works correctly.
    The question is :
    How can I change this default behaviour and make it call SSO on port 4443 using https instead ?
    Any ideas ?
    Thanks in advance

  • How to make Oracle BI Mombile to work when  SSO is implemented in BI?

    Hi folks:
    I have SSO enabled in my OBIEE 11.1.1.6.6 . Its is working fine from IE/Firefox Browser/Chrome.
    Before implementing SSO ipad app was running perfectly fine.. but now Its not getting connected...prompt for username and password all the time.
    I am aware of SSO limitation of Ipad. Hence I tried connecting with SSO switch OFF in Ipad....in none of the ways actually is working :-(
    For SSO ...I'm using AD Authentication with Kerberos.
    So is there any configuration I am missing somewhere to allow Oracle Mobile to work when SSO is configured for BI?
    Below is what I am using to connect:
    Host: xxx.yyy.com (also tried with IP address)
    Port: 9704
    SSL – Off
    SSO – Off (also tried setting to ON)
    Username: my username
    Pass: my password
    Save Pw: On
    Device Locale: On
    Analytics Path: /analytics/saw.dll
    Publisher Path: /xmlpserver
    Any feedback will be really appreciated ...I'm really stuck on this ... or if you faced this and had to implement a workaround ... please let me know.
    Thanks a lot!
    Matias

    Hi: I tried that and got the following error message.
    "Error 401--Unauthorized
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.2 401 Unauthorized
    Te request requires user authentication. Te response MUST include a WWW-Autenticate header field (section 14.46) containing a challenge applicable to the requested resource. The client MAY repeat the request with a suitable Authorization header field (section 14.8). If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials. If the 401 response contains the same challenge as the prior response, and the user agent has already attempted authentication at least once, then the user SHOULD be presented the entity that was given in the response, since that entity MAY include relevant diagnostic information. HTTP access authentication is explained in section 11."
    Again this was after SSO configuration. I have no way to bypass SSO based on the current configuration ... so not sure how to solve that in order to make it work from iPAD and also from the IOS application.
    Any thoughts?
    Thanks!
    Matias

  • SSO with SSL not working

    We've set up SSL to use with 10g AS Portal (9.0.4). Actually, all we want is to have the SSO sign in securely.
    So if I go to https://www.myserver.com:4446/pls/portal I get a portal page. However when I try to login it reverts back to non-SSL. Also, if I go to https://www.myserver.com:4445/pls/orasso the SSO server comes up, but doesnt let me login (no entries in the Enabler Config table) Do I have to run ssodatax? And how can I tell portal to use the SSO through SSL once I fix that?
    Im using Oracle 10g AS (9.0.4) on Red Hat 3.0
    Thanks

    Hi Tim,
    Thank you for the update.
    Is this the option you are specifying (i,e) located in Tomcat/conf/server.xml.
    Define a SSL Coyote HTTP/1.1 Connector on port 8443
        <Connector port="8443"
                   maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
                   enableLookups="false" disableUploadTimeout="true"
                   acceptCount="100" debug="0" scheme="https" secure="true"
                   clientAuth="false" sslProtocol="TLS" />
    So, should we add any parameter called headersize?
    Please let us know the parameter that needs to be added.
    Thanks..

  • I'm running Firefox 3.6.13. Add-ons say will be installed when Firefox is restarted but they don't install. What is the problem?

    I also have a few add-ons that aren't compatible with my current version of Firefox, and they say they will be un-installed when Firefox restarts, but they still stay on the add-ons list.

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the "Find Updates" button (in Firefox 4: right-click the extension -> "Find Updates") to do a compatibility check.

  • Error message reads, " Wizard Interuppted before InDesign CS2 was comletely installed" when removing

    Adobe Tech Support no longer supports CS2 since the release of CS4 and has referred me to knowledgebase and the forum for help.
    This is my original problem:
    When you try to start Adobe InDesign CS2, or Adobe InCopy CS2, the application returns one of the following error messages:
    -- "Could not personalize your copy of [application] because of missing or invalid personalization information."
    -- "Please personalize your copy of [application] to continue the setup process."
    -- "The serial number you provided is not valid. Please check your serial number and re-enter it"
    I was referred to:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=331649
    The instructions for all methods require that I remove InDesign, but I get an error message that says "Wizard Interuppted before InDesign CS2 was completely installed" when removing.
    My OS is Windows XP. Any help is highly appreciated.
    Thank you!

    Step one is to back up your computer in case anything goes wrong.
    Once you've done that, look at http://kb.adobe.com/selfservice/viewContent.do?externalId=331300 which lists all the folder locations for the creative suite along with the registry keys. It says you should uninstall using ad/remove, but if this doesn't work it should be OK to remove things manually and edit the registry, then run the Windows Installer Cleanup Utility.
    At that point you should reboot and you should be able to try installing again.

  • APEX 3.1.2 install with sso, error "requested url ../plsapex/f.. not found"

    Question: why is sso rewriting the url from .../pls/apex/f?p=.. to .../plsapex/f?p=?
    Can anyone help?
    Thanks.
    Abstract: APEX 3.1.2.00.02 install with sso config, error "requested url ../plsapex/f .. was not found"
    Situation:
    Upgraded from Apex 3.0.0.00.20 to Apex Application Express 3.1.2.00.02
    I get to my apex_admin and apex builder pages with url: [http://machinename:port/pls/apex] or
    [http://machinename:port/pls/apex_admin]
    When I try to access our application using no authentication scheme everything is fine.
    But when I switch to sso authentication, somehow strangely the url [http://machinename:port/pls/apex/f?p=application_number]
    is rewritten to sso [http://machinename:port/plsapex/f?p=application_number].
    [https://test.insitehome.org/pls/apex/f?p=119]
    reappears in browser as
    [https://test.insitehome.org/plsapex/f?p=119:1:2095395898953485]
    entries of select * from flows_030100.WWSEC_ENABLER_CONFIG_INFO$
    "LSNR_TOKEN" "SITE_TOKEN" "SITE_ID" "LS_LOGIN_URL" "URLCOOKIE_VERSION" "ENCRYPTION_KEY" "ENCRYPTION_MASK_PRE" "ENCRYPTION_MASK_POST" "URL_COOKIE_IP_CHECK"
    "HTML_DB:test.insitehome.org:443" "LS$XXXXXXXXXXXXXXXX" "6XXXXXXX" "https://testsso.insitehome.org/pls/orasso/orasso.wwsso_app_admin.ls_login" "v1.2" "0AXXXXXXXXXXXXX" "6FXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "C2XXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "N"
    entries of select * from flows_030100.WWSEC_SSO_LOG$ showing ../plsapex/.. rewrite,
    after trace turned on with SQL&gt; @secdbg.sql;
    ID MSG LOG_DATE
    1259 entry: urlencode 15-DEC-08
    1260 encoded URL is https%3A%2F%2Ftest.insitehome.org%3A443%2Fplsapex%2Ff%3Fp%3D119%3A1%3A1562268139343648 15-DEC-08
    1261 exit: urlencode 15-DEC-08
    1262 entry: urlencode 15-DEC-08
    1263 encoded URL is https%3A%2F%2Ftest.insitehome.org%3A443%2Fplsapex%2Ff%3Fp%3D119%3A1%3A1562268139343648 15-DEC-08
    1264 exit: urlencode 15-DEC-08
    copy of last entries Apache log file
    [Mon Dec 15 13:30:33 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704279613,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/plsapex/f
    [Mon Dec 15 13:32:18 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 124999354851,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:18 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704387543,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/plsapex/f
    [Mon Dec 15 13:32:21 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 124999354854,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:21 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 120704387663,1|http://forums.oracle.com/forums/] File does not exist: /u02/test_10gr2_hm2/Apache/Apache/htdocs/favicon.ico
    [Mon Dec 15 13:32:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229365945:172.17.241.64:23211:0:817,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n
    [Mon Dec 15 13:35:09 2008|http://forums.oracle.com/forums/] error [http://client 172.18.5.120|http://client%20172.18.5.120/] [ecid: 107819660799,1|http://forums.oracle.com/forums/] mod_plsql: /pls/apex/wwv_flow_custom_auth_sso.process_success HTTP-404 \nwwv_flow_custom_auth_sso.process_success: MANY PROCEDURES MATCH NAME, BUT NONE MATCHES SIGNATURE (parameter names)\n
    [Mon Dec 15 13:37:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229366245:172.17.241.64:19598:0:70,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n
    [Mon Dec 15 13:42:25 2008|http://forums.oracle.com/forums/] error [http://client 172.17.241.64|http://client%20172.17.241.64/] ecid: 1229366545:172.17.241.64:23157:0:832,0 \nOSSO E09: No Oracle SSO support for POSTing data to protected resource yet.\n

    1. I am able to get to the SSO page. I am redirected to the sso page first
    when unter the url [https://test.insitehome.org/pls/apex/f?p=119:1]
    I am able to enter the username and password.
    But once I click the login button I get the following message :
    " Not Found
    The requested URL /plsapex/f was not found on this server.
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server Server at test.insitehome.org Port 443"
    2. The mod_osso.conf file was not changed for our Apex upgrade. The contents of the osso.conf file though are not readable.
    I tried commenting out the
    #OssoConfigFile /u02/test_10gr2_hm2/Apache/Apache/conf/osso/osso.conf
    line in the mod_osso.conf file. url rewrite to ../plsapex/.. did not change.
    Thanks.
    Douglas
    1. The contents of OssoConfigFile /u02/test_10gr2_hm2/Apache/Apache/conf/osso/osso.conf
    ^E~H/&ocirc;M&aelig;~D&Ntilde;~I~PG^:~I| u^~T=&Egrave;i^V^O&Uuml;.&brvbar;&Acirc;^PhW^A&ordm;&Ugrave;&middot;G&raquo;?n&Oacute;^MsF~C&reg;&Ucirc;&para;&aring;&Igrave;4&Iacute;r^S)&plusmn;~Y&pound;&micro;&igrave;&oslash;&gt;oA~W~W~&Igrave;&Acirc;~W&sup2;E~^K^Yg~I#\^?^H~U^L&Uuml; &aelig;i&ograve;
    ~&Euml;&icirc;&Aacute;n^S~J@VI&sup3;^Y&ordf;&THORN;~S&Ograve;&uuml;c&iquest;&yuml;|&uuml;w&para;&iuml;.Gl^X^U~N31p^Q&copy;&raquo;$@~N&curren;&Aacute;_q0be&Aacute;:&Ocirc;&&Ugrave;&Ccedil;&Aacute;ts^[&Oacute;&Ocirc;sJ&Igrave;&Ouml;~W&pound;F^W~W^^&egrave;3A&micro;^[&iexcl;&gt;u^D|f^B~S&egrave;D&Auml;&brvbar;&iacute;&thorn;l&yacute;&Auml;^K&Otilde;&aelig;&iacute;Uu^Gxg~--D^--^Gu&Ntilde;-^PA&Ccedil;4^H^@Px&laquo;&Oacute;^--`Gf^PuJx&uuml;tz&thorn;&lt;&cedil;&iexcl;~J&Ucirc;&macr;&yacute;a~^G~G^U^WSk&divide;u$&szlig;&acirc;&acute;&agrave;s~@8^Y&uml;,--^R&Euml;2&ucirc;&ccedil;&Aacute;&euml;&Igrave;&oacute;@&brvbar;&frac12;&shy;Jg&pound;&Oslash;r^RCs&lt;~@~R&Ugrave;&middot;&szlig;&oacute;&yuml;&THORN;N@&oslash;0&pound;~G&otilde;r^S~N^R&plusmn;&frac12;^_~W~\f&Ocirc;|&oacute;&Agrave;^W~F~T^XO~PHv&uacute;|^F(&middot;%"4&Yacute;l&acirc;~J&cedil;~H^N0#d&Agrave;&cedil;O^H^@~S^FZN2&igrave;z&aring;&auml;N^Xn[T~\(&yen;&ocirc;y"z~XY&para;2~TTg^Y&yacute;&atilde;&aelig;~V&cedil;&yuml;^VUs^B~H&euml;^S^Z3~A&gt;nzr~[^Sl&Agrave;;~D~H&atilde;&frac12;Z&ouml;~U^C
    2. Browser headers- using "Live HTTP headers"
    showing the change in the browser url from .../pls/apex/.. to /plsapex/..
    [https://testsso.insitehome.org/pls/orasso/orasso.wwsso_home.process_signon?urlc=v1.2~08090C4ABBC838658AA3832B0404A1AD53FA9354A053CD7A3DE65D3F31E756E01249AA25E5D85CFD37C9046C60C1340DF5FCAB898569B6791252608F196074FCD7309A9DC4C6B3D9B88E9255DDCD10E3820D6BEB11294A7A4CF9AE309DB67FEC05A56D5B7C7EC239E3F9D5E27E1F199C7338C333B11E9A672CF9B6DFFC193ABA7CFBD22BAE8726E566690E47127365BCC0E5D7A7A24769A1727E287E06CC7FF4BD9D3680141B849561EADCB0478EC2F48D741652100F6EB08395B3253439783EC02DC9ECF8C0B41B112A4059B88B5C3F7854D687A25CDC423A567466E7D48F06BEDD238B645FE5CE58427DD9A9E692A0C88E4891CD900F9DEE362CDDF84A8A62E4093C95628878785C9C8DD54DC21A297BEC39C7EA28A2AEDE81EA475248E15F1327636295C484FA1246FC5B921D675CD17E9CA00F1138A89E8A82292963EAACFB369C19C75610779033377F7EF340278EBFF6E213D64AD9531E7E24AACDC78EE5F35A149CC3754B]
    GET /pls/orasso/orasso.wwsso_home.process_signon?urlc=v1.2~08090C4ABBC838658AA3832B0404A1AD53FA9354A053CD7A3DE65D3F31E756E01249AA25E5D85CFD37C9046C60C1340DF5FCAB898569B6791252608F196074FCD7309A9DC4C6B3D9B88E9255DDCD10E3820D6BEB11294A7A4CF9AE309DB67FEC05A56D5B7C7EC239E3F9D5E27E1F199C7338C333B11E9A672CF9B6DFFC193ABA7CFBD22BAE8726E566690E47127365BCC0E5D7A7A24769A1727E287E06CC7FF4BD9D3680141B849561EADCB0478EC2F48D741652100F6EB08395B3253439783EC02DC9ECF8C0B41B112A4059B88B5C3F7854D687A25CDC423A567466E7D48F06BEDD238B645FE5CE58427DD9A9E692A0C88E4891CD900F9DEE362CDDF84A8A62E4093C95628878785C9C8DD54DC21A297BEC39C7EA28A2AEDE81EA475248E15F1327636295C484FA1246FC5B921D675CD17E9CA00F1138A89E8A82292963EAACFB369C19C75610779033377F7EF340278EBFF6E213D64AD9531E7E24AACDC78EE5F35A149CC3754B HTTP/1.1
    Host: testsso.insitehome.org
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: [https://test.insitehome.org/pls/apex/f?p=119:1]
    Cookie: SSO_ID=v1.2~1~B2483914381A0220A727D12C9A8915E0A7D5AC3F5921B83727FF3A769585941BFC92F6ED489A5526E4BA399033EBB1F594C2E5A9651284A756F0266EDADF2788A5646DC849CC31B22EDFF550F9AE8FBAA45D77962089553D126DC23F7C7D2FF5A6DCD07733EC7AE97C49B047498D6007FAE70E0BB737DD71475C47565AC065B460717829838F23206D05E94531F1B214A089889F439700293486A9BA57C9CEBE1D9958AA22C8A11254DE2B99554BEC167ACAEED89A91289AE21D3392F1B4BB8E21F37C087A416488E063FD4E905ACE4532BF5C7AD4BCCC694F46325BFD4B6B61C0530FDFE7E17D5ECABB99B2734D813E8A969B328653110606BD37F85E3E383A2309D69B4792CBD2173695360006B17F; orasso=9.0.3+en-us+us+AMERICA+5E6829A8119E1C0EE04011AC15F572DA+416E61A4441EBFF32F938E43B1C666B24FCDEED0AE4178FB7D0666DF2F8B242E83E304641F7BB27D2447D4235172D9FDAF1AF383E817CC68D3FAC8771CA0D15526CC58AFCA0862435154ABDA250A026D369DCCC3EC1DA333
    HTTP/1.x 302 Found
    Date: Fri, 19 Dec 2008 14:31:46 GMT
    Server: Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    Location: [https://test.insitehome.org:443/plsapex/f?p=119:1:4439918187386025|https://test.insitehome.org/plsapex/f?p=119:1:4439918187386025]
    Set-Cookie: orasso=9.0.3+en-us+us+AMERICA+5E682B3E13BF540BE04011AC15F572DC+D7088454FEBAE9994BE0076646C00462FF614D0247361AC1D38957C467A4BD0B68508FA922065C7512D2DD7BC3BF02EE28F7281585308D54E0BCC5F3E3254F8DB6F3952C0C6D0F5B88B379B6686B1981F7DE4443A83FA03F;path=/;secure
    Keep-Alive: timeout=60, max=1000
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8
    Vary: Accept-Encoding
    [https://test.insitehome.org/plsapex/f?p=119:1:4439918187386025]
    GET /plsapex/f?p=119:1:4439918187386025 HTTP/1.1
    Host: test.insitehome.org:443
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: [https://test.insitehome.org/pls/apex/f?p=119:1]
    Cookie: ORACLE_SMP_CHRONOS_GL=26:1229695773:876325; ORACLE_SMP_CHRONOS_LT=1229697115969
    HTTP/1.x 404 Not Found
    Content-Type: text/html; charset=iso-8859-1
    Connection: Keep-Alive
    Keep-Alive: timeout=5, max=999
    Server: Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server OracleAS-Web-Cache-10g/10.1.2.2.0 (N;ecid=112453569346,0)
    Content-Length: 326
    Date: Fri, 19 Dec 2008 14:31:46 GMT
    -----

  • HT1296 I purchased a macbook pro online this fall and had iWork and iLife apps pre-installed when I purchased it.  How can I get these Apps onto my iPhone 4s without paying for it again?

    I purchased a macbook pro online this fall and had iWork and iLife apps pre-installed when I purchased it.  How can I get these Apps onto my iPhone 4s without paying for it again?
    On my iphone those apps still require me to purchase them.

    The MacBook versions run on a Different Operating System...
    You will need to Purchase the iOS iPhone versions

  • [IntegratedWLS with JDev11g]: ADauthenticator required SSL/TSL exception ?

    hi
    i already have AD authentication provider and it was work fine before and list users and group
    today when i try show users and group from console i get this exception error and cannot connect to list get users
    i dont change any configuration or attribute in my ADauthenticator
    *now, please can any body tell me what this error mean and which server requires ssl  [WLS] or [AD]?*
    <Logger><error> ServletContainerAdapter manager not initialized correctly.
    <16/11/2009 AST 02:56:33 م> <Error> <Console> <BEA-240003> <Console encountered the following error weblogic.security.providers.authentication.LDAPAtnDelegateException: [Security:090294]could not get connection
         at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3584)
         at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3571)
         at weblogic.security.providers.authentication.LDAPAtnDelegate.listUsers(LDAPAtnDelegate.java:2353)
         at weblogic.security.providers.authentication.LDAPAuthenticatorImpl.listUsers(LDAPAuthenticatorImpl.java:178)
         at weblogic.security.providers.authentication.ActiveDirectoryAuthenticatorMBeanImpl.listUsers(ActiveDirectoryAuthenticatorMBeanImpl.java:225)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.management.jmx.modelmbean.WLSModelMBean.invoke(WLSModelMBean.java:437)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447)
         at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:268)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447)
         at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:443)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:314)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.java:663)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.java:661)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.java:654)
         at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1426)
         at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72)
         at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1264)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1366)
         at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:788)
         at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:222)
         at javax.management.remote.rmi.RMIConnectionImpl_1032_WLStub.invoke(Unknown Source)
         at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993)
         at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:544)
         at weblogic.management.jmx.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:380)
         at $Proxy137.listUsers(Unknown Source)
         at com.bea.console.utils.security.UserUtils.getUsers(UserUtils.java:78)
         at com.bea.console.actions.security.users.UserTableAction.getCollection(UserTableAction.java:100)
         at com.bea.console.actions.security.ManagementBaseTableAction.execute(ManagementBaseTableAction.java:82)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
         at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:261)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
         at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
         at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
         at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:256)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:133)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:266)
         at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.render(StrutsStubImpl.java:107)
         at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:292)
         at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:428)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:727)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
         at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:162)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388)
         at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
         at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:211)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:196)
         at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:47)
         at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.reflect.InvocationTargetException
         at weblogic.security.providers.authentication.LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4258)
         at weblogic.security.utils.Pool.newInstance(Pool.java:37)
         at weblogic.security.utils.Pool.getInstance(Pool.java:33)
         at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3579)
         ... 120 more
    _**Caused by: netscape.ldap.LDAPException: error result (8); 00002028: LdapErr: DSID-0C0901FC, comment: The server requires binds to turn on integrity checking if SSL\TLS are not already active on the connection, data 0, v1771**_
         at netscape.ldap.LDAPConnection.checkMsg(LDAPConnection.java:4871)
         at netscape.ldap.LDAPConnection.simpleBind(LDAPConnection.java:1766)
         at netscape.ldap.LDAPConnection.authenticate(LDAPConnection.java:1264)
         at netscape.ldap.LDAPConnection.authenticate(LDAPConnection.java:1273)
         at netscape.ldap.LDAPConnection.bind(LDAPConnection.java:1562)
         at weblogic.security.providers.authentication.LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4235)
         ... 123 more thanks
    Edited by: JDeveloper on Nov 16, 2009 3:40 PM

  • How to use SquirrelMail and Require SSL for IMAP Service?

    Hello,
    Mac OS X Server v.10.4.9 – Open Directory Master
    Providing POP, IMAP, SMTP, web services including webmail via SquirrelMail.
    PHP v.4.4.4 Nov. 1, 2006
    OpenSSL v.0.9.7l Sept. 2006
    I need to require SSL for IMAP access, however, I also need to provide webmail access. SquirrelMail does support TSL it seems and that can be configured from /etc/squirrelmail/config/conf.pl and is discussed briefly here: http://www.squirrelmail.org/wiki/SquirrelMailIMAPS .
    When I turn on TSL on SquirrelMail and change the IMAP port number to 993 attempting to log into SquirrelMail provides the following error:
    Bad request: IMAP server does not appear to support the authentication method selected. Please contact your system administrator.
    According to the above noted page from the SquirrelMail site one needs PHP 4.3 and SSLv3 in order for TSL to work, one must also connect to the IMAP server over port 993. Requirements I appear to meet.
    So – how can one require the use of SSL for IMAP and still provide webmail access via SquirrelMail?
    I have reviewed these three threads:
    http://discussions.apple.com/thread.jspa?threadID=912841&tstart=75
    http://discussions.apple.com/thread.jspa?messageID=1457773&#1457773
    http://discussions.apple.com/thread.jspa?messageID=3921004&#3921004
    However they do not answer the fundamental question of how to use SquirrelMail with SSL required by IMAP. Essentially the conversation revolves around working around the SSL requirement or forgoing it.
    Thank you for any assistance.

    David,
    Yet from time to time these same users are in a
    circumstance where they need to use webmail, thus
    SquirrelMail needs to work. I am not trying to
    secure webmail by requiring SSL.
    I see, your problem. In this particular case there is a workaround.
    Use different ports for postfix and cyrus limited to localhost, thus catering only to SquirrelMail, thus not needing TLS.
    Roughly do this (this is just off the top of my head, may contain errors):
    For SMTP / Postfix:
    Edit /etc/postfix/master.cf
    and add:
    465 inet n - n - - smtpd
    -o smtpdrecipientrestrictions= permit_mynetworks,reject
    -o mynetworks=127.0.0.1/32
    -o smtpdenforcetls=no
    # This will create a port 465 (if you use this alreay pick another one. choose the number wisely, depending ony what is in use on your server)
    # This port is only accessible to IP number in "mynetworks"
    For IMAP / Cyrus
    Edit /etc/cyrus.conf and add (below imap):
    imaplocal cmd="imapd -C /etc/imapd-local.conf" listen="127.0.0.1:imap" prefork=0
    Next duplicate /etc/imapd.conf and name it imapd-local.conf
    Edit /etc/imapd-local.conf
    Change
    tlsserveroptions: require
    to
    tlsserveroptions: use
    Next edit:
    /etc/services
    and create a port called "imaplocal"
    (you could probably recycle 585 wich is deprecated, check what is in the services file, make sure no duplicate port numbers).
    should look something like:
    imaplocal 585/udp
    imaplocal 585/tcp
    When done with all config files:
    Save & restart mail services
    Point SquirrelMail to the new ports wich should only be accessible to localhost (check with an external client if it holds
    Sorry for the "draft style" post, but I don't have much time.
    Just ask, if anything isn't clear.
    HTH,
    Alex

  • Workflow Wizard (JDev) an BPEL 10.1.2.0.2 midtier install

    Hi,
    I have a RHEL4 based AS environment set up for BPEL as follows:
    1. Infrastructure install of AS 10.1.2.0.2
    2. Midtier install of AS 10.1.2.0.2
    3. BPEL Midtier install into (2) and configured to use OID for LDAP and Metdata Repos for dehydration
    4. BPEL dev install for Jdev
    In workflow wizard when we get to allocate groups/users we cannot seem to populate the wizard with user data from from OID.
    Someone told me its not supported. Wanted to verify this.
    Thanks,Saul.

    Hi Saul, I tried to install BPEL PM in midtier and my settings for installation are as follows and are like your settings:
    1. Infrastructure install of AS 10.1.2.0.2
    2. Midtier install of AS 10.1.2.0.2
    3. BPEL Midtier install into (2)
    Now how do I configure to use OID for LDAP and Metdata Repos for dehydration. I get the following error and thus my defsault domain doesn't work.
    None of the processes works either
    Configuring OID as LDAP based JAZN provider ...
    ERROR: Failed to update C:\Oracle_Software\Portal\j2ee\OC4J_BPEL\application-deployments\hw_services\orion-application.xml
    java.net.UnknownHostException: xmlns.oracle.com
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:153)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
         at sun.net.www.http.HttpClient.New(HttpClient.java:339)
         at sun.net.www.http.HttpClient.New(HttpClient.java:320)
         at sun.net.www.http.HttpClient.New(HttpClient.java:315)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:521)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:498)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:626)
         at java.net.URL.openStream(URL.java:913)
         at oracle.xml.parser.v2.XMLReader.openURL(XMLReader.java:2292)
         at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:266)
         at oracle.xml.parser.v2.NonValidatingParser.pushExternalDTD(NonValidatingParser.java:540)
         at oracle.xml.parser.v2.NonValidatingParser.parseDoctypeDecl(NonValidatingParser.java:465)
         at oracle.xml.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:298)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:277)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:268)
         at oracle.tip.install.util.XMLUtil.loadDocument(XMLUtil.java:212)
         at oracle.tip.install.tasks.ConfigureOID.configureJaznProvider(ConfigureOID.java:288)
         at oracle.tip.install.tasks.ConfigureOID.install(ConfigureOID.java:130)
         at oracle.tip.install.BPMInstaller.runInstaller(BPMInstaller.java:140)
         at oracle.tip.install.BPMInstaller.main(BPMInstaller.java:77)
    ERROR: Failed while configuring JAZN provider in orion-application.xml.
    Configuration assistant "Oracle BPEL Process Manager OID Configuration Assistant" was canceled.

  • More than 50 MB sized applications are grayed out with status of "Waiting/Installing", when we update those apps from WiFi Connection?

    Hi,
    Few application updates are available in iOS App store. However, Those applications are grayed out with status of "Waiting/Installing", when we update those apps from WiFi Connection. It's happening only for more than 50 MB sized applications. Unable to install those application through WiFi, However, it's successfully installed through MacBook Pro iTunes application. Please suggest me, why this happening suddenly.
    Thanks in Advance,
    Suresh Balakrishnan.

    - If I make the deployment required, it will install right away regarless of maintenance windows.  However, i don't want to use this option because if the user logs in to other machine (e.g. boardroom computer), it will auto install this software. 
    Re-check your deployment, specially the user experience:
    If you've checked the box next to "Software installation", it will install after the deadline has passed and ignores maintenance windows. Change the deployment to required and uncheck that box and the software should be installed according to your
    maintenance windows.

  • What does it mean when itunes requires 10.6.8?

    what does it mean when itunes requires 10.6.8?
    I accidently deleted my friend's itunes and it will not let me download it

    If the computer is running Mac OS X 10.5.8, you cannot install the most recent version of iTunes. You will have to download iTunes 10.6.3, the last version that will run on a Mac OS X 10.5.8 system:
    http://support.apple.com/kb/DL1575
    To reinstall Microsoft Word, you will need to use the installer disk for Microsoft Office. To reinstall PhotoBooth, you would need to reinstall Mac OS X itself.
    I presume you looked in the Trash on the computer, though, to see if the things you believe you deleted are perhaps still there? If they are, just drag them back to the Applications folder.
    Regards.

  • How to Protect mod_plsql DAD with SSO using SSL

    Hi,
    I am not able to set up any DAD with SSO using SSL. I have processed all issues depending on the Note:273379.1 "How to Protect mod_plsql DAD with SSO".
    When I am not using ssl, my DAD with SSO will work properly.
    But when I am using ssl, my DAD (http://host_name/pls/testsso) will redirect any page to SSO login through http (not through https).
    Any ideas?
    AS 10.1.2.0.2

    Did you run ossoreg.jar to update your osso.conf with the SSL entry for SSO ?

Maybe you are looking for