Change WCS login HTTPS certificate

Hi
Anyone know how to make a cert request for the WCS login page - and thereafter install a new certificate?
Any documentations or guides that you can refer to?
I'm running version 7.0.220.0 on a Windows 2003 R2 svr.
Best Regards,
Steffen. 

Thank you - allready looked at that post, but I was looking for some documentation, i won't help me just to look at some files

Similar Messages

  • HTTPS Certificate change

    I have a customer that has changed their web server certificate for https. However the JRE version they are using 1.4.1_03 doesn't seem to recognize this new certificate. If I am able to get the public key for this certificate can I add this using the keytool? If not what are the options? Will they have to get a certificate from a well know CA like versign or thawte??

    you can ignore the certificate by writing an all trusting trust manager:
        public static void trustHttpsCertificates() throws Exception {
            Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
            //Create a trust manager that does not validate certificate chains:
            TrustManager[] trustAllCerts = new TrustManager[] {
                new X509TrustManager() {
                    public X509Certificate[] getAcceptedIssuers() {
                        return null;
                    public void checkServerTrusted(X509Certificate[] certs, String authType) throws CertificateException {
                        return;
                    public void checkClientTrusted(X509Certificate[] certs, String authType) throws CertificateException {
                        return;
                }//X509TrustManager
            };//TrustManager[]
            //Install the all-trusting trust manager:
            SSLContext sc = SSLContext.getInstance("SSL");
          sc.init(null, trustAllCerts, new SecureRandom());
           HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
        }//trustHttpsCertificates()

  • Web clipping proxy error oracle.portal.wcs.transport.http.HttpTransportException WCS-519

    When I am trying to change the url it is coming following error .
    An exception has occurred : oracle.portal.wcs.transport.http.HttpTransportException WCS-519 -- HTTP Proxy Authentication failed for  int.domain.co.in:8080 with authentication of type "Basic" at realm "realm1". Update your proxy login information in the Edit Defaults / Personalize page to
    authenticate.
    Can anybody please help me regarding this issue it is very urgent.so please

    I have a similar setup on Linux boxes (MT and Infra) and having the same problem. I can add external application, also able to register Web clipping provider successfully using the external application ID.
    But when I try to clip the external application. It shows me on the page "User authentication failed. Please use the following link to update the information."
    And, The application.log shows in addition to WCS-514 error code 404
    Raising SOAP fault code: AuthenticationFailure
    I get provider Test page without any error. http://xyz.abc.com:7778/portalTools/webClipping/providers/webClipping
    Your help is highly appreciated.
    Thanks,
    -Dhiren Desai
    [email protected]

  • Jax-WS Client - Change Endpoint Address "https" to "http" - Cause HTTP 302

    Hi,
    I don't know it is a bug or not, but i couldn't find any answer for this.
    I try to write a client for an SSL Secured and Basic Authenticated web service. To access the WSDL url, i have a VPN connection to that network. Also i registered their certificate to the JVM that i used to run the Client.
    To create Jax-WS Client codes, i used "......\jaxws-ri\bin\wsimport.bat -s src -d bin -p model https://xxxx.com/xxxxxx.asmx?WSDL" as explained.
    After successfully generated sources, i added my "SecurityEnvironmentHandler.java" to catch Username and Password callbacks, and also added "SecurityHandler.java" to register my handler and surrund with necessary SOAP Header Security tags. I register them as explained too.
    Everything looks fine, but when i try to run Client test which basically call one of the services, i get
    com.sun.xml.ws.client.ClientTransportException: The server sent HTTP status code 302: Found
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.checkStatusCode(HttpTransportPipe.java:203)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:177)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:93)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:598)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:557)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:542)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:439)
         at com.sun.xml.ws.client.Stub.process(Stub.java:222)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:135)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:109)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:118)
         at $Proxy36.xxxxxxxxxxx(Unknown Source)
         at xxxxxxxxServisImpl.xxxxxxxxxxxxx(xxxxServisImpl.java:69)
         at xxxxxxxxxServisTest.testxxxxxxx(xxxxxxServisTest.java:57)
         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:585)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at org.springframework.test.ConditionalTestCase.runBare(ConditionalTestCase.java:69)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)( i have changed some unnecessary parts with "xxxxxx" )
    The basic of it i get an "*HTTP 302*" which means it tries to redirect the request.
    Also i had an working copy of a sample Client which was written with Jax-RPC. I looked the generated SOAP Messages for both of clients, they was almostly the same.
    After lots of tries, i found the problem, somehow after the client application starts, it changes the Endpoint Address "https://xxxxxxxx.com/xxxx.asmx" to "http://xxxxxxxxx.com/xxx.asmx", ( it drops the "s" wich means it changes the protocol HTTPS to HTTP ).
    If i set the Endpoint Address to "https://xxxxxxxx.com/xxxx.asmx" before calling any service on port, it works as it should be.
    On the "generated" main WebServiceClient class the WSDL address and also Endpoint Address were set correctly ( with https ).
    Also do i missing any logical part of it? Because i didnt changed it, it generated from WSDL by using "wsimport", it couldnt be a mistake, of if it would be, somebody could see that.
    Thanks for any advice.
    Umut KUNDUKAN

    Welcome to the forum. Please don't post in threads that are long dead. When you have a question, start your own topic. Feel free to provide a link to an old post that may be relevant to your problem.
    I'm locking this thread now.

  • How to change the login's background

    Hi all,
    I'm new with apex and i need to change the login's background, i want to place an image as the login's background.
    how do i do that?? where should i change it ??
    Regards
    Carlos

    Hello,
    Here you can see it in details:
    http://application-express-blog.e-dba.com/?p=1681
    http://www.grassroots-oracle.com/2011/07/modifying-your-apex-login-page.html
    Regards,
    Fateh

  • How to change the login process

    Hi SDN,
    I've set up an Ecommerce 7.0 application with a B2B config. All is running an ok.
    I want to change the login process. We have userid's like 000005999999. In the LoginAction, i want to add this zeros before the id automatically so that the user can login with 5999999.
    My problem is that i don't find the Action which is performed after login.
    The form in the login.jsp looks like this:
    (Sorry i couln't post that code normally because SAP means thats cross site scripting. Remove spaces, then i looks normally)
    for /user/login there should be a forward at config.xml...but it isn't. No entry at config.xml and no entry at config_user.xml.
    Which Action is performed if i press the login button on login.jsp? Can someone help me please?
    Where can i change this Action to a Z_Action ?
    I think its the LoginAction.java... but where is it called? Where can i change the call to the Z_ class?
    For b2c it will be easy to find the LoginAction...there its defined in the config.xml... but at b2b... i really do not understand how that is working. Please help me with that problem.
    Thanks and best regards,
    Toni
    Edited by: Toni Flückiger on Apr 20, 2011 3:45 PM
    Edited by: Toni Flückiger on Apr 20, 2011 3:46 PM

    In web.xml  there is an init-param definition that maps as this:
    <init-param>
      <param-name>config/user</param-name>
      <param-value>/WEB-INF/config_user.xml</param-value>
    </init-param>
    So, all the forward name s with /user prefix  will be checked in the config_user.xml
    If you are trying to define a ZAction and would like to add /user prefix to the forward name, then you have to place it in the config_user.xml.
    Easwar Ram
    http://www.parxlns.com

  • Oracle.portal.wcs.transport.http.HttpTransportException WCS-514 WebClipping

    Hi!,
    I have Mid Tier installed on one of the Linux box and Infrastructure installed on a separate Linux box. Both of these boxes are behind firewall. I have successfully compeleted portal configuration for Reverse Proxy. I can access portal via internet. Users don't have to put port numbers (7777 or 7778) to access the portal. Users just enters http://www.abc.com, which takes them to portal builder page.
    However, Both of my Web providers are not working. As described by the document to configure seeded provider. I changed to port in the URL from 80 to 777. http://www.abc.com:7777/portalTools/webClipping/providers/webClipping. I can access these two web provider applications from the internet, with both the ports 80 as well as 7777. I also edited the provider.xml to use proxy.
    When I try to personalize web clipping portlet. and provide URL Location. It is giving me following error.
    An exception has occurred : oracle.portal.wcs.transport.http.HttpTransportException WCS-514 -- Get status code 400 to URL http://www.xyz.com by method get
    It seems to me I may be missing one of the configuration step, don't know which?
    I appreciate your help in advance.
    Thanks

    I have a similar setup on Linux boxes (MT and Infra) and having the same problem. I can add external application, also able to register Web clipping provider successfully using the external application ID.
    But when I try to clip the external application. It shows me on the page "User authentication failed. Please use the following link to update the information."
    And, The application.log shows in addition to WCS-514 error code 404
    Raising SOAP fault code: AuthenticationFailure
    I get provider Test page without any error. http://xyz.abc.com:7778/portalTools/webClipping/providers/webClipping
    Your help is highly appreciated.
    Thanks,
    -Dhiren Desai
    [email protected]

  • HT1277 After i changed the login password on my father's mac he could no longer access email through apple mail on either the mac or his ipad. any suggestions as to how to fix this problem?

    After i changed the login password on my father's mac he could no longer access email through apple mail on either the mac or his ipad. any suggestions as to how to fix this problem?

    See if this helps...
    Mac OS X 10.4 Help, I forgot a password in my Keychain
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1960.html
    Mac OS X 10.4: Keychain Access asks for keychain "login" after changing login password...
    http://support.apple.com/kb/HT1631

  • Hello J have small problems J have to change my login icloude on my PC and now I N do not arrive has to change it on my ipad and my iphone

    hello J have small problems J have to change my login icloude on my PC and now I N do not arrive has to change it on my ipad retina and my iphone 5.
    I will be able to have French answers.

    Sorry, there is no one from Twitter here. You need to contact Twitter support.
    This "may" be helpful:
    https://support.twitter.com/articles/20169405-re-entering-your-password-through- the-ios-settings

  • How do I delete icloud acct. when I changed the login info and can't sign in to it anymore?

    How do I delete my icloud acct.?
    I changed my login info and now i can't sign in, I read that I have to delete it to update icloud info so how do i delete it if i can't sign in?

    If you are trying to delete the account from your device, and if the old ID is an earlier version of your current ID, temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  You should now be able to use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID.  After doing so you can delete the account and go back to https://appleid.apple.com to change your ID back to the way it was. 

  • I want to borrow my wife's iPad for a trip but have access to my iBooks account. If I change her login access will that mess up her books for the future?

    I want to borrow my wife's iPad for a trip but have access to my iBooks account. If I change her login access will that mess up her books for the future?

    I assume that iBooks is limited in the same way that iTunes and the App store are.  That is, you can only change the AppleID associated with a device once every 90 days.
    http://support.apple.com/kb/ht4627
    So if you log out of the iBook store with her AppleID, and use yours, you will have to wait 90 days before she can use her AppleID with that same device again.

  • Cisco ISE NDES EAP and HTTP certificates from different CA

    Hi guys, hope this is something you can help with…
    2 x ISE 1.2 (patch 5) 3415 appliances with hostnames webproxy1.customerdomain.com and webproxy2.customerdomain.com
    AD integration with customerdomain.local
    Guest authentication (CWA) using a separate interface on the ISE appliance (Gigabit 1) routing into its own VRF for isolation
    Corporate authentication is using EAP-TLS which is working fine
    BYOD using NSP with SCEP for iPads only at this stage using NDES on <customerdomain.local>
    I have installed a signed GlobalSign server certificate for HTTPS for guests (with SAN fields webproxy1.customerdomain.com and webproxy2.customerdomain.com)
    I have also installed a signed server certificate from the customer's CA for EAP (with CN of psn.customerdomain.local and SAN fields psn.customerdomain.local , webproxy1.customerdomain.com and webproxy2.customerdomain.com)
    The issue I have is if the two certificates are assigned for EAP and HTTP respectively the NSP process fails to generate a certificate though SCEP to the NDES server.
    As soon as I use the same internally signed certificate for HTTP and EAP it works, this then causes a problem with the HTTPS certificate being trusted by guests.
    This does not work with the GlobalSign certificate being used for both HTTPS and EAP, only the internal one works.
    Can you confirm if it is a valid design to have the ISE use one certificate for HTTPS and another for EAP signed by different CAs, it appears it has to be the internal CA used in the SCEP process to work.
    Thanks
    Andy

    I have now tested this with a test HTTP cert signed by a public CA and an EAP cert signed by my internal and SCEP works fine.  I am wondering if this is a certificate tier length issue.  My working example has a RootCA->IssuingCA->Cert.  It fails with a cert with a 3-tier heirarchy RootCA->IntermediateCA->IssuingCA->Cert.
    Can anyone confirm this works on other deployments with a 3-tier certificate chain with SCEP?
    Thanks

  • Changing AD login's to reflect new SMTP addresses set in exchange... will it break connection to smartphones that use activesync?

    Hello,
    My organization is in the process of migrating mailboxes from Exchange 2003 to 2010. In addition to migrating we are also changing the login's in users AD objects. These users also have smart phones that are configured via activesync. I've come across a
    few users that when we change their login names. It breaks the activesync configuration on their smartphone. Is there a tool available that will help carry over the new login and won't break the activesync connection?

    Hi,
    Any update?
    Just checking in to see if the suggestions were helpful. Please let us know if you would like further assistance.
    Best Regards,
    Andy Qi
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Andy Qi
    TechNet Community Support

  • In the ECM .How to change default login page.

    Now,my default login page is search page .I want to make home page into workflow page. thanks.
    Edited by: 976375 on 2013-1-31 下午5:57

    Take a look here: Re: Customize Login Page
    As for
    I want to make home page into workflow page.I'm afraid it is impossible - for workflow a user has to authenticate first.
    Maybe rather than change default login page you want redirect to a different page? This is also possible - see Re: Custom page to log in

  • Can you reload the default HTTPS certificate for a Border Controller?

    The HTTPS page does not work for the Tandberg Border Controller (Q6.3). HTTP is fine. I believe that the customer uploaded their own certificate which has now “broken” the HTTPS page.
    So the question is – can you reload the default HTTPS certificate for a Border Controller?
    There’s a handy button to do this on the VCS but not on the BC it seems. The only option I can see is for the customer to generate a “working” certificate and upload it, is this the only option?
    Thanks,
    David

    Hi sherylz,
    It is also possible to edit the theme, but it may be wise to make a copy of it:
    *[https://support.mozilla.org/en-US/questions/940165]
    *[https://developer.mozilla.org/en-US/Add-ons/Themes/Background MDN Reference]
    *Add on to make own skin: [https://addons.mozilla.org/en-Us/firefox/addon/bt-canvas/]

Maybe you are looking for

  • How to connect an old HP LaserJet 5MP to a new iMac?

    Having the worst trouble -- for starters, the printer isn't recognized in Printer Setup Utility, though HP's on-line notes tell me that 10.6.4 has everything it needs for this printer. If so, where on iMac should I see the driver file or whatever it'

  • Problem in Importing Custom Themes in WD

    Hi, I'm facing problem in importing custom themes in WD. I executed program WD_THEMES and imported my custom theme. A message appeared as Only non-importable themes found (with the wrong version, for example), Do you want to view a list of these them

  • Site properties set in Muse, appear wrong on the IPhone

    Hi, I am creating a mobile site of my desktop flash version. "www.go-film.de". I love the idea of creating websides without any coding experience. So I start to translate the flash version, in a lighter html IOS copy. It works perfect, except the fac

  • Processing Triggers

    Hello I have to create a Trigger that would insert a new Deptno into a table Dept before insert or update on Emp When Deptno is not found!! The question is: I can not find a syntax for "not found" The code should be as follows: Create or Replace trig

  • Automatic Reconcillation FF_5

    Hi, We are using the automatic reconciliation (FF_5) concept to reconcile the outgoing and incoming payments. For outgoing the process is going smoothly it reconciles automatically the main and outgoing accounts based on cheque and number and documen