IPlanet hangs with wl-proxy

Hi,
We have just upgraded our libproxy.so with the CR177707 patch to avoid the '<BEA-101257> <Failed to parse the client certificate in header: WL-Proxy-Client' problem.
now, we can obtain the cert inside Weblogic but after a few requests, IPlanet seems to freeze, it doesn't accept any request.
Our platform is IPlanet 6.0 sp8 on Solaris and Weblogic 8.1 sp2.
Any help ?

Hi,
We have just upgraded our libproxy.so with the CR177707 patch to avoid the '<BEA-101257> <Failed to parse the client certificate in header: WL-Proxy-Client' problem.
now, we can obtain the cert inside Weblogic but after a few requests, IPlanet seems to freeze, it doesn't accept any request.
Our platform is IPlanet 6.0 sp8 on Solaris and Weblogic 8.1 sp2.
Any help ?

Similar Messages

  • IPlanet Sun ONE Web Proxy Server 3.6 SP6 terminating

    I have a problem with my proxy server server.
    I use iPlanet Sun ONE Web Proxy Server 3.6 SP6
    It is terminating and the service is restarting. This happens about 10-15 times a day. The message I get from the log is :
    [22/Mar/2005:09:29:30] info: server terminating... each time it terminates.
    I know for sure that this is no hardware issue (as I have changed the hard disk recently). My OS is win2000 server SP4 + all released patches from MS.
    Also I have reinstalled the OS several times (clean install after format) and I got the same result.
    Also I tried to use the proxy with/without LDAP server for authentication - the same.
    Any suggestions/recommendations are mostly welcome.
    Thanks in advance,
    Kaloyan

    Dear Kaloyan,
    Migration to another proxy (e.g. ISA) seems to be quickest solution for your problem, as WebProxy doesn't work well on w2k platform.
    Vladimir
    P.S. Regards to Delyan :)

  • Iplanet Integration with weblogic

    Dear All,
    We want to integrate IPlanet with weblogic application server.
    Please suggest the procedure for the same i.e docs , URLs.
    Thanks
    Prashant

    kindly take a look at our reverse proxy plugin
    http://docs.sun.com/app/docs/doc/819-0902
    also, please note that if you need to serve only servlet / jsp , then sun java system web server 6.1 has integrated container that can do the job very well.
    for any further business process logic , you can use the app servers with 'reverse proxy enabled' so that these requested can be forwards to either Sun Java System Application Server or Web Logic
    thanks
    sriram.

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • How do I run Safari with a proxy on start up by command line?

    Hello,
    I am using a piece of software called Sahi to perform automated testing of websites. It uses a local proxy to accomplish this task, so it runs the browser with parameters needed so that that instance of the browser is running with the proxy settings. For some reason it's not correctly setup by default with Safari on the Mac. But it has a configuration file where you can set the command line parameters that it runs the browser with.
    So when I use Sahi in its default configuration, it doesn't work because the proxy is not configured, and I get an error ( http://sahi.co.in/forums/discussion/4607/sahi-doesn039t-work-with-safari-5-0-1-o n-macosx )
    So I need to set the proxy. When I set the 127.0.0.1:9999 proxy in the System Preferences it works. My question is how do I run Safari so that it provides the proxy settings as a command line option?
    This way I can add the command line option to the Sahi configuration file so that it runs Safari properly. I don't want to have the proxy settings system wide because I need other programs to work. I don't want to have the proxy settings set for Safari permanently because I also need to be able to run Safari normally outside of this special context.
    Any assistance would be appreciated.

    I should mention this is Safari 5.0.1

  • Using a Mac on windows network with a proxy server

    Hi I’m very new to Macs to apologies if this is a really silly question. I’m
    trying to setup a Mac on our network and I’m having an issue getting it to work
    properly with our proxy server. I have connected the Mac to the network and
    selected automatic proxy configuration in the network settings using the URL of
    our Pac file. I am asked for a proxy username and password when I initially try and
    access a website but once I have entered my credentials they are saved in
    keychain and anyone coming after me can browse using my account. I work in a
    hospital so there are many different people accessing different devices. We
    monitor and trace all users internet browsing so my question is can I configure
    the Mac to ask for proxy credentials for different users? On our windows devices
    a login box will appear if the browser has been closed and reopened. Can I do
    this with the Mac?????
    Any help you can offer will be very much appreciated.
    Thanks

    The short answer is that the IT department is a strict Microsoft shop and also incompetent. Almost everything in that message is patently false. Unfortunately, when accessing Microsoft Server services like this, you will need the support of the IT staff to tell you various settings to use. I think it is pretty clear that they have no intention of doing that.
    There is nothing "special" about bootcamp. It is just a boot loader. A Mac running Windows via bootcamp is a Windows PC, not a Mac. As such, it will work perfectly fine in the network. You could also try running Parallels. I believe Parallels can be configured to use a bootcamp partition so you could run Windows via either bootcamp or Parallels.
    One of the few things that is correct is that Apple does have to provide driver support for bootcamp and there is the possibility of random incompatibilities - but no more so than any other PC manufacturer. Parallels/VMWare may work around that with a different set of incompatibilities. Don't be too worried about this part. These "incompatibilities" are minor and almost always with funky hardware devices. What you want to do should work perfectly with either Parallels/VMWare or Bootcamp.

  • Using a Mac with a proxy server

    Hi I’m very new to Macs to apologies if this is a really silly question. I’m
    trying to setup a Mac on our network and I’m having an issue getting it to work
    properly with our proxy server. I have connected the Mac to the network and
    selected automatic proxy configuration in the network settings using the URL of
    our Pac file. I am asked for a proxy username and password when I initially try and
    access a website but once I have entered my credentials they are saved in
    keychain and anyone coming after me can browse using my account. I work in a
    hospital so there are many different people accessing different devices. We
    monitor and trace all users internet browsing so my question is can I configure
    the Mac to ask for proxy credentials for different users? On our windows devices
    a login box will appear if the browser has been closed and reopened. Can I do
    this with the Mac?????
    Any help you can offer will be very much appreciated.
    Thanks

    Do NOT store the proxy server username and password in Keychain.
    Easy to say, but by default, the next person to enter their password is likely to store their username password in the Keychain.
    You can use Applications -> Utilities -> Keychain Access to give the Keychain a separate password and to auto-lock it after 'n' minutes.  If you are the only one to know the Keychain password, then no one will be able to add the Proxy server username/password to the keychain.
    Keychain Access -> Edit -> Change Settings for Keychain Login...
    Keychain Access -> Edit -> Change Password for Keychain Login... (this is NOT required; you can keep the keychain set to use the same password you use for your login, as long as no one else knows that password; changing the settings to lock the keychain is sufficient for your needs)
    The good news is that only you will be able to access stuff stored in the Keychain.  The bad news is that if you do need stuff in the Keychain, you will need to enter the keychain password everytime you need to get at them.

  • Two Macs, only one fully autheticates with MS proxy... any suggestions?

    *+The short version:+* I have two Macs with identical settings, but after installing Security Update 2007-007 one will play streaming MPEG audio in iTunes (amongst other things) and one will not.
    *+The long detailed version:+*
    I'm having a weird network authentication problem with two Macs that have identical setups. Both are behind a crappy corporate Microsoft ISA proxy server that has driven me nuts for years. They are both running identical systems (10.4.10), both have identical network settings and both are bound to Active Directory.
    One Mac connects to the internet fine, while the other usually prompts for authentication or fails to connect with many apps. For example the Mac that works (let's call it Mac A) can connect to the iTunes Store and Microsoft AutoUpdate, while Mac B does not. In iTunes I would get the message “iTunes could not connect to the iTunes Store. You must log in to the proxy server in order to access the iTunes Store.”
    The weird thing is that I could still listen to MPEG audio streams and access song names from the CDDB on Mac B (I have grown used to there not being true universal proxy support in OS X. Adobe CS2 Software Update will not work with a proxy that needs to authenticate, iChat has its own settings, and for a long time Mozilla with its built-in NTLM authentication was the only way besides IE that I could even get online before 10.4).
    The problem for me is that after running Security Update 2007-007 I noticed that I can no longer listen to streaming music in iTunes on Mac B, but Mac A still works. That's when I noticed the other things that Mac A can connect to but Mac B does not, which is why this is starting to drive me crazy.
    Things I've tried or checked to get Mac B to work:
    -Set proxy to either IP address (Web Proxy (HTTP)) or Automatic Proxy Configuration, same problem on both.
    -Both have identical Samba config file settings.
    -Deleted all of my keychains and started fresh.
    -I tried updating iTunes from 7.3.1 to 7.3.2, but no go.
    -Both have the same time set (though they both cannot reach the time.apple.com server to automatically set the time. An error shows in the system.log).
    -Tried creating a new test account on Mac B, but it has the same problems.
    -Tried installing Authoxy 3.2.5 on Mac B to do the NTLM authentication, but I could never get Authoxy to connect. I get the following messages in Authoxy:
    Fatal Error: unable to connect to talker socket. Errno: Interrupted system call
    Couldn't open connection to proxy server. Errno: Interrupted system call
    -I've tried running OnyX, Yasu and AppleJack to repair permission and clear out any cache that might be causing a problem.
    -I've gone through the various log files to look for noticeable errors, but nothing seems to be coming up.
    Network items that work on both Macs:
    -Safari, Firefox, Dashboard Widgets, Software Update, Entourage, network drives
    Another difference is that Firefox never prompts for username & password on Mac A, but does at startup every time on Mac B. The only way I can get around this is to manually create a Kerberos ticket and then Firefox will not prompt for authentication (Kerberos will not create a ticket automatically on both Macs, I read this was a bug with logging in to AD with an admin Mac account). But the Kerberos ticket does not help with my iTunes or other network problems.
    If I've gotten all this to work, then why am I complaining? Because the streaming radio gets me through the day at work, simple as that.
    I'm trying to be as detailed as possible so that I cover the bases and hope that maybe someone comes across this with a search and have found an answer or maybe have something new to try.
    A big thanks for taking the time to read all of this and think it over.
    P.S. I hate you Microsoft.

    Aha! I've figured it out!
    But not before resetting the PRAM and VRAM, re-installing 10.4.10 with the combo installer, and installing Wireshark to try and figure out what network requests were getting denied.
    What did it was manually setting the IP address on the problem Mac to the IP from the Mac that was working. I came across this post (http://forums.macosxhints.com/archive/index.php/t-25049.html) where someone said the fix for them was to be in a certain IP range. I had previously tried renewing the DHCP, but I had to manually set the IP to the specific address to get it to work. I figured it had to be something on the server side since, like I said, both Macs had the same exact network settings.
    Thanks to everyone that took the time to read my first post, and sorry about the typo in the title. It was late and I was getting frustrated.

  • When i open Firefox (in general), i dont mean sign into any email address, just to start using Firefox, i want to have always to sign in with my proxy account = username and password..how? thank you!

    when i click on the Firefox icon i want always to have to sign in with my proxy username and password.. i want more privacy in using Firefox in general.. is that possible? thanks

    If you use extensions (Tools > Add-ons > Extensions) like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flash Block</i> that can block content then make sure that such extensions aren't blocking content.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    If it works in Firefox Safe-mode then disable all extensions (Tools > Add-ons > Extensions) and then try to find which is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Intermittent proxy error "There is a problem with the proxy server's security certificate. Outlook is unable to connect to the proxy server "

    Hi all,
    From time to time (at least once a day), the following message pops up on the user's screen:
    "There is a problem with the proxy server's security certificate. Outlook is unable to connect to the proxy server . Error Code 80000000)."
    If we click "OK" it goes away and everything continues to work although sometimes Outlook disconnects. It is quite annoying...
    Any ideas?
    Thank you in advance

    Hi,
    For the security alert issue, I'd like to recommend you check the name in the alert windows, and confirm if the name is in your certificate.
    Additionally, to narrow down the cause, when the Outlook client cannot connect again, I recommand you firstly check the connectivity by using Test E-mail AutoConfiguration. For more information, you can refe to the following article:
    http://social.technet.microsoft.com/Forums/en-US/54bc6b17-9b60-46a4-9dad-584836d15a02/troubleshooting-and-introduction-for-exchange-20072010-autodiscover-details-about-test-email?forum=exchangesvrgeneral
    Thanks,
    Angela Shi
    TechNet Community Support

  • There is a problem with the proxy server's security certificate. The name on the security certificate is invalid or does not match the name of the target site "Mailserver"

    Good day Guys
    First of all I am not an Exchange Expert, and I might be asking a very stupid question, but please bare with me. :) 
    While I was on leave our Mail server fell over and The company got a Specialist to help out for the time being.
    We where\are on Microsoft Exchange 2007 , which Fell over, and the specialist was able to recover as much data as he could.
    They then installed Exchange 2013 and tried to migrate everything from 2007 to 2013 and not everything migrated over.
    But the problem is, Outlook Anywhere was enable on 2007 and worked a 100% (before the disaster)
    With Exchange 2013 I get the following error message when trying to connect With Outlook 2013, using an external connection:
    "There is a problem with the proxy server's security certificate. The name on the security certificate is invalid or does not match the name of the target site "Mailserver"
    Outlook is unable to connect to the Proxy server. (Error Code 0)"
    Has anyone had the Similar when migrating over from 2007 to 2013 or is this an Issue on IIS and nothing to do with Exchange migration?
    Your assistance will be greatly appreciated.

    Hi,
    Firstly, I would suggest we use Exchange 2013 FE as the Outlook Anywhere proxy server.
    For the certificate issue, it mostly occurs because the host name that Outlook are trying to access does not match the certificate SAN. Please check with this point. If they do not match, you
    can change the host name by referring to the following article:
    https://support.microsoft.com/kb/940726/en-us?wa=wsignin1.0
    Thanks,
    Simon Wu
    TechNet Community Support

  • LDAP connections with multiple proxy instances

    After configuring LDAP connectivity through the Admin application on a machine with multiple proxy instances I end up with:
    number of proxy instances x LDAPConnPool times number of connections to the LDAP server.
    Question: Is it possible to prevent some of the proxy instances from opening LDAP connections?

    Hi
    Increase the IDLE timeout value on the LDAP server. Of course, this just extends the inevitable. Check if there is a way to disable IDLE timeout on LDAP server.
    Regards,
    Nagendra HK

  • LCM import of Planning Application Hangs with "In Progress Status"

    Hi,
    LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
    Any advise is appreciated.
    Regards,
    Vineet

    It is probably worth trying again, may be useful to first bounce the services.
    If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • My i phone 3gs was hang with the apple logo and its not booting

    my i phone 3gs was hang with the apple logo and its not booting can any one say me how to fix this .

    my phone is blinking with the apple logo and will not start

Maybe you are looking for

  • How to cancel an order

    How can i cancel an orden that I dont want anymore?

  • Unable to install Leopard 10.5 on the Mac Pro.

    Dear Gentlemen, In the past two weeks I tried to install windows on the Mac Pro with *Boot Camp* but unfortunate that the *Boot Camp* dose not support when the Raid Card is installed in the Mac Pro so I ask the support in my area and he said ((just r

  • Ipad Mini :Lightning /HDMI Video Out Not working

    I just tried a new Apple Ipad/IPhone AV HDMI/ Lightning adapter to try and play videos to my TV/Monitors thru their HDMI Port. The Ipad Mini recognized it was plugged in and notified me it was playing thru my TV. But I got no audio/video thru the TV

  • Adding custom properties to a File system Repository

    Hi KM-Experts I have integrated a local file server in the portal, and need to attach some custom properties to the files located on the server. The documentation for a File System Repository displays that this task is not possible. Is there some kin

  • Send idocs to SAP in SAP's XML format

    Hi! currently we are sending idocs to SAP using the RFC IDOC_INBOUND_ASYNCHRONOUS. this requires us to break up the data so that we can populate rows in the EDI_DC40 and EDI_DD40 table. Is it possible, via a RFC call, (or rather, via some programmati