Problem of overflow in Iplanet 6.0sp1

Hi,
I am getting these following error messages in the logs
[30/Mar/2004:12:55:06] warning (19529): flex log buffer overflow- greater than 4096 characters
I am not able to figure out why we are getting this error. If its a patch which needs to be put on the web server, then which patch I would be needing to install.
Nikhil

This doesn't seem to be an error. This is may be because the maximum characters they allow is 4096 and anything above it might be truncated. Check with Sun Support may be they have a better answer.

Similar Messages

  • Problem of buffer overflow in Iplanet 6.0sp1

    Hi,
    I am getting these following error messages in the logs
    [30/Mar/2004:12:55:06] warning (19529): flex log buffer overflow- greater than 4096 characters
    Also I am getting a error in logs like filename.ext is temporarly not available
    I am not able to figure out why we are getting this error. If its a patch which needs to be put on the web server, then which patch I would be needing to install.
    Nikhil

    This has been answered before:
    http://swforum.sun.com/jive/thread.jspa?forumID=16&threadID=19626
    PS: 6.0sp1 is very old, perhaps you should consider upgrading to 6.0sp7 or 6.1sp1.
    Thanks
    Manish

  • Include directive in iplanet 6.0SP1

    If I have a include directive
    <%@ page contentType="text/xml; charset=UTF-8" %>
    in jsp then it loads up fine in iplanet 6.0SP1 and shows Japanese characters.
    However when I have the same directive in some declare.jsp and include declare.jsp in another jsp file like:
    <%@ include file='/declare.jsp' %>
    then the webserver doesn't take the utf-8 encoding and doesn't process japanese characters correctly.
    Is this bug fixed in later versions of iplanet? Any help is appreciated.
    Thanks
    Ravi

    This doesn't seem to be an error. This is may be because the maximum characters they allow is 4096 and anything above it might be truncated. Check with Sun Support may be they have a better answer.

  • OptimizeIt 4.11 and iPlanet 6.0sp1

    Hi,
    has anyone successfully configured OptIt 4.11 to work with iPlanet 6.0sp1?
    The instructions presented in iPlanet's documentation..
    http://docs.iplanet.com/docs/manuals/enterprise/50/servlets/xprof.htm#22740
    ... are a bit vague, and the server simply refuses to start with absolutely
    nothing in the error log. If I remove the -Xrunoii option, and replace it
    with -Xbootclasspath/a:/usr/local/OptimizeItSuite/lib/oibcp.jar, the server
    starts ok, but with the following error..
    warning ( 1186): Attempt to start OptimizeIT failed (exception: unknown
    exception,no description)
    While starting the server, it does print out stuff from OptIt, so there must
    be some kind of connection between them:
    OptimizeIt Profiler 4.11 build 442 Audit System.
    (c) 1997, 1998, 1999, 2000, 2001 VMGEAR.
    Port is 1470
    Although that port 1470 cannot be accessed as the OptIt didn't start
    successfully.
    Does this seem familiar to anyone?
    cheers,
    Juha

    wryteralways wrote:
    My software update wants to download and install 10.4.11, but I want to make sure my Appleworks 6.2.9 will still work before I install the update because I have no desire want so ever to move to iWorks etc. which are just far inferior to Appleworks for my uses.
    The AppleWorks 6.2.9 Update will do absolutely nothing on your already installed AppleWorks 6.2.9.
    Its task is to update old AppleWorks 6 versions (6.0 thru 6.2.8).
    Yvan KOENIG (from FRANCE dimanche 3 août 2008 12:32:28)

  • Sudoku generator problems(Stack overflow)

    I've been having some troubles trying to implement a program that generates sudoku problems. It takes a complete puzzle and pulls out the first number and tries to solve it with any of the 8 other numbers and if it can't then that means removing that variable completely will still keep the uniqueness of the solution. Problem is, I'm getting some stack overflow errors while implementing this and I have no idea why. My code is as follows, where the method solve is a program I've already written that can solve any sudoku problem.
    public int[][] generate(int [][] board) throws java.io.IOException {
              int oldValue;
              int[][] tempBoard = new int[9][9];
              for (int x = 0; x < 9; x++) {
                   for (int y = 0; y < 9; y++) {
                        tempBoard[x][y] = board[x][y];
              for (int x = 0; x < 9; x++) {
                   for (int y = 0; y < 9; y++) {
                        oldValue = board[x][y];
                        for (int z = 1; z <= 9; z++) {
                             if (z != oldValue) {
                                  board[x][y] = z;
                                  tempBoard = solve(tempBoard);
                                  if (tempBoard != null) {
                                       board[x][y] = oldValue;
                                       break;
                                  else {
                                       tempBoard = new int[9][9];
                                       for (int a = 0; a < 9; a++) {
                                            for (int b = 0; b < 9; b++) {
                                                 tempBoard[a] = board[a][b];
                        board[x][y] = 0;
                        for (int c = 0; c < 9; c++) {
                             for (int d = 0; d < 9; d++) {
                                  tempBoard[c][d] = board[c][d];
              return board;

    I was in the middle of editing that when you posted that, sorry
    public int[][] generate(int [][] board) throws java.io.IOException {
              int oldValue;
              int[][] tempBoard = new int[9][9];
              for (int x = 0; x < 9; x++) {
                   for (int y = 0; y < 9; y++) {
                        tempBoard[x][y] = board[x][y];
              for (int x = 0; x < 9; x++) {
                   for (int y = 0; y < 9; y++) {
                        oldValue = board[x][y];
                        for (int z = 1; z <= 9; z++) {
                             if (z != oldValue) {
                                  board[x][y] = z;
                                  tempBoard = solve(tempBoard);
                                  if (tempBoard != null) {
                                       board[x][y] = oldValue;
                                       break;
                                  else {
                                       tempBoard = new int[9][9];
                                       for (int a = 0; a < 9; a++) {
                                            for (int b = 0; b < 9; b++) {
                                                 tempBoard[a] = board[a][b];
                        board[x][y] = 0;
                        for (int c = 0; c < 9; c++) {
                             for (int d = 0; d < 9; d++) {
                                  tempBoard[c][d] = board[c][d];
              return board;
    Edited by: rhett77 on Oct 19, 2007 10:23 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Problem with JAAS example in WLS6.0sp1

    Hi,
    I tried to run the SampleClient from the JAAS example in WLS6.0sp1 and got an
    exception
    when a valid username/password combination is entered. Has anyone experienced
    that in WLS6.0sp1?
    Thanx
    Ralf
    SampleLoginModule.initialize(), debug enabled
    SampleLoginModule.initialize(), URL t3://localhost:7001
    SampleLoginModule.login(), username guest
    SampleLoginModule.login(), password guest
    Authentication Failed: Unexpected Exception, java.lang.NoSuchMethodError
         at weblogic.security.auth.Authenticate.authenticate(Authenticate.java:124)
         at examples.security.jaas.SampleLoginModule.login(SampleLoginModule.java:157)
         at java.lang.reflect.Method.invoke(Native Method)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:595)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:125)
         at javax.security.auth.login.LoginContext$3.run(LoginContext.java:531)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:528)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:449)
         at examples.security.jaas.SampleClient.main(SampleClient.java:92)

    Weblogic comes with its own implementation of JAAS, unfortunately
    conflicting with Sun's. Contact customer support, they will tell you the
    exact differences and incompatibilities. Or reverse engineer the two
    versions, you'll find quite a few differences (apart from the BEA version
    not implementing JAAS authorization, which is documented).
    "Narinder Gaheer" <[email protected]> wrote in message
    news:[email protected]..
    I am happy someone came up with this problem. I also bent backwardssolving
    this problem
    in my application.
    I figured out that as soon as I remove the standard jaas.jar from my
    classpath , I can run the example successfully. Weblogic.jar does contain
    necessary jaas library , so don't need to include jaas.jar.
    I am not sure, but I get the feeling that there is a jaas library conflict
    here. May be weblogic
    guys are the best to put some light on this issue.
    "Ralf Fritsche" <[email protected]> wrote in message
    news:3b15188e$[email protected]..
    I found out, that the example runs with the JDK delivered by BEA,
    but not with a JDK I downloaded from SUN.
    Wheras with the first the provided way to set the user defined
    configuration class with the system property'weblogic.security.jaas.Configuration'
    works, this is not possible with another JDK. According to the
    JAAS standard, this class could only be defined in the properties
    file 'java.security' of the Java runtime.
    How is BEA doing this?
    Thanx
    Ralf

  • NSAPI [iPlanet 6.0SP1] for WLS6.1 SP1

    Hi,
    I am trying to integrate iPlanet WebServer 6.0 SP1 with Weblogic6.1 SP1 but am
    not able to get it up and running. I followed the documentation and able to get
    the ststic HTML pages but am not able to get the JSP's and Servlets to work. Here
    are the steps I followed, can anyone help me out.
    Thanks in advance
    Ravi
    1. Copy &#8220;proxy36.dll&#8221; located in the &#8220;<weblogic_home>/bin&#8221;
    directory to &#8220;<Netscape_Home>/Servers/Plugins/&#8221; directory.
    2. Modify &#8220;Magnus.conf&#8221; file.
    Add following two lines at the top of the file after the comments.
    >Init fn="load-modules" funcs="wl-proxy,wl-init"\ shlib="C:/Netscape/Server4/plugins/proxy36.dll"
    Init fn="wl-init"
    3.Modify &#8220;obj.conf&#8221; file. Add the following lines
    <Object name="weblogic" ppath="*/weblogic/*">
    Service fn="wl-proxy" WebLogicHost=<IPAddress of WLS Server>WebLogicPort="Port#"
    PathTrim="/weblogic"
    </Object>
    4.Apply changes and Stop/Start the iPlanet Server.
    6.Create subfolder called &#8220;my_apps&#8221; under &#8220;<NETSCAPE_HOME>/docs/&#8221;.
    Move the contents of the &#8220;<WEBLOGIC_HOME>/public-html/my_apps&#8221; folder
    to this folder.
    7.Modify &#8220;myapps.properties&#8221; located in &#8220;<WEBLOGIC_HOME>/MyDomain/myappsproperties&#8221;
    and modify the &#8220;web_server_url&#8221; and &#8220;web_server_ip&#8221; to
    indicate the URL of the webserver
    web_server_url=http://<iPlanetHostname>:port/weblogic/
    web_server_ip= http://<iPlanetHostname>:port
    8.     Restart WebLogic Server
    9.     Restart iPlanet Enterprise Server

    Hi,
    My previous request might have been misleading, i found that it is not just images that don't work but all the resources deployed in apache with the webconnector to iplanet do not work if there is a query string attached to it.
    for eg., http://<host>/home/index.html?user=username does not work either.
    Thanks
    Prashanth Sukumaran.

  • Solaris8 LDAP & iPlanet Directory5.0SP1

    Would you please help me to set up LDAP naming switch ?
    attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.15
    NAME 'SolarisLDAPServers'
    DESC 'LDAP Server address eg. 76.234.3.1:389'
    EQUALITY caseIgnoreIA5Match
    SYNTAX SolarisLDAPServerSyntax)
    When I try to add the above attribute, start-slapd say as follows:
    error code 21 (Invalid syntax) -
    atribute type SolarisLDAPServers: Unknown attribute syntax OID "SolarisLDAPServerSyntax"
    I couldn't add this attribute even if I tried to do so according to http://docs.sun.com. Is this Solaris client naming profile attribute correct or not ?
    Could I describe not SolarisLDAPServerSyntax but IA5String ?

    Thanks for your help. I've just add the attribute.
    But I'd like to ask you more something regarding "ldapclient" utility. I couldn't initialize LDAP client machine by using ldapclient utility in spite of its nisDomainObject for DN dc=sample,dc=com. ldapclient utility shows me some message at the end . If you have any idea, would you please help me ?
    Regards,
    Satoshi
    Just FYI# ldapclient -v -i -a none -b "dc=sample,dc=com" -d sample.com -D "cn=Directory Manager" -w "password" 127.0.0.1:389
    findDN: calling_ns_ldap_default_config()
    found 2 namingcontexts
    findDN: nsldap_list(NULL, "(&(objectclass=nisDomainObject)(nisdomain=sample.com))
    rootDN[0] dc=sample,dc=com
    NOTFOUND:Could not find the nisDomainObject for DN dc=sample,dc=com
    findDN: _ns_ldap_list(NULL, "(&(objectclass=nisDomainObject)(nisdomain=sample.com))
    rootDN[1] o=NetscapeRoot
    NOTFOUND:Could not find the nisDomainObject for DN o=NetscapeRoot
    cannot find search base DN

  • From Exchange 5.5, I have problems sending email to iPlanet Messaging Server 5.1 with subdomain. Error result = The recipient was unavailable to take delivery of the message (Host unreachable)

     

    I'd start with the basics, can you ping the iMS machine? Can you telnet to port 25 on the machine? Do these steps from the MSX server.
    If those things work, which I suspect they will not based on the text "Host unreachable" in your question then I would put master_debug slave_debug on the channel which the MSX system is arriving, either going to be tcp_local or tcp_intranet. Then look at the resulting log file on the iMS system.
    Hope this helps,
    Chad

  • Goods Receipt PO "money overflow" error message

    Hi all,
    A client is having problems when trying to post a Goods Receipt PO based on an A/P Reserve Invoice. When adding the following error message comes up:
    [Goods Receipt PO-Rows -Warehouse Code][line: 0], 'Money Overflow (ODBC-104)'
    Has anyone of you encountered this message? What could the problem be? They are using SAP 2005A PL 46.
    Any help will be appreciated.
    Regards,
    Anthony

    Hi,
    this note could be used to resolve your problem:
    Money overflow error message
    Symptom
    SAP Business One A does not support scenarios that might lead to a value greaterthan 9,223,372,036,854 in money fields, or in intermediate calculations, and may generate a Money Overflow error message.
    Other terms
    Money Overflow, maximum, 2005 A SP01.
    Reason and Prerequisites
    FAQ.
    Solution
    The scenarios described above are not supported in SAP Business One.
    The note # : 1026634
    Rgds,

  • Is there a way to prevent slash stripping of include parameters in WL7.0sp1?

              We are porting a web application from WL6.1sp2 to WL7.0sp1 and have run into a
              strange problem with the JSP include directive. We pass in string values as include
              parameters and have noticed that when we have an include like this:
              <jsp:include page="../components/form_field_input_org.jsp" >
              <jsp:param name="value" value="<%=value%>"/>
              </jsp:include>
              and pass in the String "http://somecompany.com" as value, the parameter ends up
              as "http:/somecompany.com" in the included jsp. In fact, if I pass in "///////"
              as the parameter, it comes out "/" in the included JSP. Somehow, all occurrences
              of multiple slashes are trimmed to one slash.
              This problem has been seen using WL7.0sp1 on Linux, Solaris and win32 but has
              not been seen using WL6.1sp2 on any platform.
              Has anyone encountered this problem? Any potential resolutions? I suppose I have
              to start URL encoding/decoding but I would like to avoid this if possible.
              Thank you,
              Nathan
              

    Please open a case with BEA Support.
              Nathan Freeling wrote:
              > We are porting a web application from WL6.1sp2 to WL7.0sp1 and have run into a
              > strange problem with the JSP include directive. We pass in string values as include
              > parameters and have noticed that when we have an include like this:
              >
              > <jsp:include page="../components/form_field_input_org.jsp" >
              > <jsp:param name="value" value="<%=value%>"/>
              > </jsp:include>
              >
              > and pass in the String "http://somecompany.com" as value, the parameter ends up
              > as "http:/somecompany.com" in the included jsp. In fact, if I pass in "///////"
              > as the parameter, it comes out "/" in the included JSP. Somehow, all occurrences
              > of multiple slashes are trimmed to one slash.
              >
              > This problem has been seen using WL7.0sp1 on Linux, Solaris and win32 but has
              > not been seen using WL6.1sp2 on any platform.
              >
              > Has anyone encountered this problem? Any potential resolutions? I suppose I have
              > to start URL encoding/decoding but I would like to avoid this if possible.
              >
              > Thank you,
              > Nathan
              Regards,
              Ann
              Developer Relations Engineer
              BEA Support
              

  • Question on iPlanet package installation

    This is an interesting problem: we've got iPlanet 6.0 (SP6) installed on one of our new webservers (Solaris 9), but the OS doesn't think it's there. A pkginfo command returns none of the iPlanet-related packages (listed below, from one of our other servers), yet the system seems to be working fine (i.e., the web server is up and running and answering requests). My questions are, 1) anyone have any idea how the software got installed (and gone through two SP updates) without the OS knowing anything about it; and 2) any idea how to fix it? Like I said, it seems to be working just fine, but it bugs me that the packages don't seem to be installed -- I'd like to fix it if I can.
    Thanks in advance,
    Tony Schloss
    [email protected]
    (Standard "all opinions mine" disclaimer applies).
    iPlanet package listing (from another server, identical install):
    system IPLTadcon Administration Server Console
    system IPLTadman Administration Server Documentation
    system IPLTadmin Administration Server
    system IPLTcons Console Client Base
    system IPLTdscon Directory Server Console
    system IPLTdsman Directory Server Documentation
    system IPLTdsr Directory Server (root)
    system IPLTdsu Directory Server (usr)
    system IPLTjss Network Security Services for Java
    system IPLTnls Nationalization Languages and Localization Support
    system IPLTnspr Portable Runtime Interface
    system IPLTnss Network Security Services
    system IPLTpldap PerLDAP

    Manish,
    Thanks for the reply; that makes sense, by itself. My follow-up question, then, would be: why do my other three servers list the packages? All four (identlical configurations) were installed the same way, and within roughly a week or two of each other. As best I can recall now, we simply ran the setup binary for the initial install (I don't know how else we would have done it), and I know for sure that the last SP was done that way on all four boxes (one right after the other).
    Thoughts? I'm not questioning you, just trying to figure out what went wrong (if anything).
    Thanks in advance!
    Tony

  • Urgent:BiG Problem with accents.

    Hi,
    I have a problem with accents in IPlanet 4.0 sp4.
    I have a form in a html page and a servlet that takes the words that i
    put in the form.
    The problem is if i put accents in the word iplanet don' t serve the
    correct caracters..
    Please i need help...
    Manu

    Try this
     http://www.dhakamobile.com/nokia-fourth-generation-dct-4/9423-nokia-n97-hard-reset-keys.html
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Error occur when installing iPlanet App server 6.0 SP2

    Dear All,
    I have problems in installing the iPlanet App server 6.0 SP2 in Solaris.
    I choose typical installation and select default settings.
    - install iplanet server
    - typical install
    - install ALL components
    However, the following errors occur during the installation:
    sh: ./pre_nas_preinst: not found
    ERROR. Failure installing iPlanet Application Server Web Connector Component. Do you want to continue [n]?
    ERROR. Failure installing iPlanet Application Server Core Server Component. Do you want to continue [n]?
    ERROR. ...........
    What's the problem with it? Could anyone help....?
    Thank youin advance.
    Thx & Regards,
    Yvonne

    I would recommend to use the latest version of application server which is iAS6.5sp1MU2. Try this out and see if you run into any problems. Also please check the release notes available at docs.sun.com to check the compatibility.

  • Iplanet

    Hello friends,
    i setup iPlanet 6.0SP9 and get the following error message when i enter:
    # ./start
    ./uxwdog: relocation error: ../lib/libnsres30.so: symbol errno, version GLIBC_2.
    0 not defined in file libc.so.6 with link time reference
    any ideas?
    thanks very much.

    http://edocs.bea.com/wlp/docs81/interm/pdf.html
    Go down to the zip files section and get the weblogic portal javadoc
    Harish Bantwal Kamath wrote:
    Any URLs you can tell me it directly talks about this part?
    Jay Zimmett <[email protected]> wrote:
    You may want to use the weblogic ejb
    com.bea.p13n.controls.ejb.usermgmt.GroupManager
    You can find the documentation in the portal javadocs.
    Harish Bantwal Kamath wrote:
    Hi Gurus
    Can anyone give me a code sample for retrival of the groups the userbelongs to.
    Background:
    I am novice to security of Weblogic and using 8.1 version
    Assumption:
    I assume that A Group A has different Role assigned and containsGroup B and
    that is mapped to different role, in the subject need to fill bothgropus
    Scenario:
    I use iPlanet for Security provider. A User can belong tomultiple group.
    Groups can contain subgroups.
    Problem Statement:
    I use iPlanet to store user info including the groups and subgroups.I need
    to populate subject with all the groups and Sub groups, either he belongsto directly
    or indirectly (Group A belong to B).
    Can anyone point me or provide me to sample code

Maybe you are looking for

  • Scaling/resizing images in slideshow

    Hi, I did my own website and now I'm doing my gf's website. Note that I'm doing exactly the same than for my site but I have a problem now that I never had with my site. My problem is this :  I place a new slideshow. When you resize the main image, y

  • Get web Content into array

    Hello, I am trying to retrieve the content of a web site into an array so that i can compare it to itself later to see if it has changed. I am trying to make get the content into an array then get the content into a different array later and compare

  • Project closing. What status should be used?

    What status should have WBS in project structure (CJ03) to be sure: 1. new PO could not be created within WBS, however already existing PO could be paid 2. WBS is closed: now new PO couldn't be created & existing PO could not be paid Now (CJ03) there

  • Color images randomly converting to B/W ?

    While working in LR 4, after several hundred edits for no reason it started converting the images to B/W? Seems to be some sort of glitch, they are color then change to B/W? Thanks for any help with this.

  • Master Data Text and Attributes

    Guys,            I read some posts on sdn regarding differences between master data texts and attributes and now I am a little confused.  I thought attributes define a char.  then what does text do?  Does it not define or describe the char as well?