Numerous ConcurrentCheckoutException stacktraces in ATGPublishing logs

We have a programatic ImportService that takes GSA XML files and creates BCC Projects to contain the asset modifications the GSA XML file represents. On our QA Servers today, the process that converts the XML files into BCC Projects began throwing numerous ConcurrentCheckoutException stacktraces like...
2012-03-16 19:21:15,927 ERROR [nucleusNamespace.atg.commerce.catalog.ProductCatalog] (Thread-4118)
atg.adapter.version.ConcurrentCheckoutException: failed to checkout item id cat240269, type category, it may already be in the process of being checked out. Please retry checkout.
     at atg.adapter.version.VersionRepository.requestCheckOutLock(VersionRepository.java:3558)
     at atg.adapter.version.VersionRepository.checkOut(VersionRepository.java:3678)
     at atg.adapter.version.VersionRepository.checkOut(VersionRepository.java:3520)
     at atg.versionmanager.impl.WorkspaceRepositoryImpl.checkOutRepositoryItem(WorkspaceRepositoryImpl.java:772)
     at atg.versionmanager.impl.WorkspaceRepositoryImpl.checkOut(WorkspaceRepositoryImpl.java:706)
     at atg.adapter.version.VersionItemDescriptor.getVersionItem(VersionItemDescriptor.java:2412)
     at atg.adapter.version.CurrentVersionItem.getVersionItem(CurrentVersionItem.java:1059)
     at atg.adapter.version.CurrentVersionItem.checkoutDependentIfNeeded(CurrentVersionItem.java:1232)
     at atg.adapter.version.CurrentVersionItem.valueAdded(CurrentVersionItem.java:787)
     at atg.adapter.gsa.ChangeAwareList.add(ChangeAwareList.java:167)
     at java.util.AbstractList.add(AbstractList.java:108)
     at atg.adapter.gsa.xml.ImportItemUtil.setProperties(ImportItemUtil.java:154)
     at atg.adapter.gsa.xml.ImportWorkerThread.importItem(ImportWorkerThread.java:398)
     at atg.adapter.gsa.xml.ImportWorkerThread.processItems(ImportWorkerThread.java:212)
     at atg.adapter.gsa.xml.ImportWorkerThread.processPhase(ImportWorkerThread.java:141)
     at atg.adapter.gsa.xml.ImportWorkerThread.run(ImportWorkerThread.java:101)
What does this stacktrace mean and how do I go about troubleshooting this? Looking around our BCC, I don't see that my BCC Project is competing with other project for asset locks or anything. I don't really know where to start troubleshooting this. Any insights or guidance is greatly appreciated.

Make Bob sad. The silence is deafening. 2nd day troubleshooting this and I am no closer to a solution or even a root cause. Looks like I have to go Oracle SR route.

Similar Messages

  • 2012 DC getting numerous 5152 errors in Security log

    I have a DC running Windows Server 2012 (not R2) which has recently started getting numerous failed audit entries in its security log, ID 5152.
    The source IP seems to include about half a dozen in use by domain PCs (all Windows 7). The source and destination port varies depending on which PC generating the error, but they do not change with regards to each PC. For example, when source IP is 192.168.1.113,
    the source and destination ports for all of the errors generated by that IP never change.
    This is a real puzzle. I've seen external logon attempts in the past on other servers when port 3389 was open to the internet. But in those cases the same IP tried different logon names and different ports. In this case, there is no username, nor does the
    error even have a place to display a username. It's just source and destination IP/Port, the protocol which is always 17.
    Anyone seen anything like this? Any ideas on what might be going on? Let me know if more information is needed.
    Jonathan

    Make sure that viruses are not behind this behaviour.
    Use Process Monitor to make diagnostics.
    Regards
    Milos
    I know what Process Monitor is but have never used it so I have no idea how to use it for this issue.
    Jonathan

  • How come the numeric keypad only works in log-in and not in normal progs?

    I've searched this forum for all things numeric keypad related and come up blank on this problem so I'm putting this question out there for anyone else who knows the answer.
    The numeric keypad on my iMacs only work it seems in typing in numbers in the password box at log-in, but in any other program, including Safari, I get nothing when I push those keys. Why is this and how can it be easily corrected with or preferably without the use of strange hacks if this is not some kind of missed setting? This one really bothers me. Why have a keypad at all if it isn't useful the majority of the time? I find the same problem on the Aluminum and plastic, wired, and wireless versions of the keyboard. If Apple didn't intend us to use the keypad in substitute for the number keys whenever we feel like it, wouldn't it make more sense to downsize the keyboards and sell them without one? The keypad only seems to work when set for use as a mouse-substitute, and nothing else.

    It's strange that it doesn't work on my desktops, but it works fine on my MacBook (but of course I have to use the f(x) key to make it work on that because it isn't really a separate keypad).
    Does anyone have any idea what settings under Tiger could cause the keypad not to function? It seems the problem is Tiger-related as the Leopard desktops don't exhibit the same problem.. Which keyboard is connected and by what method does not seem to make a difference.

  • Logging stacktrace

    Hi, I am using the logging API from sdk 1.5
    I don't know if there is a simple mechanism to log stacktraces. The log-method doesn't allow to use the exception class as a parameter. Is there a simple workaround to easily log stacktraces from exceptions without converting the stacktrace array?
    Thanks
    Heiko

    Hi, I am using the logging API from sdk 1.5
    I don't know if there is a simple mechanism to log stacktraces. The log-method
    doesn't allow to use the exception class as a parameter. Is there a simple
    workaround to easily log stacktraces from exceptions without converting the
    stacktrace array?If switching to log4j is an option for you, you can pass a message as well as
    a Throwable to the logger and it appears nicely in the resulting log destination.
    Otherwise you have to fiddle diddle something yourself to get the entire stack
    trace logged ... IMHO log4j is better than Sun's own logging facility.
    kind regards.
    Jos

  • No stacktraces in JDeveloper 10.1.3.4.0.4270

    Since a little while my JDev environment lacks printing stackTraces while running or debugging projects.
    For example:
    I have a bit of code which generates a NullPointerException. Normally I would get a stackTrace in the log inside JDev, where I could determine the line it went wrong.
    Now I only get the following:
    09/09/28 14:21:16 null
    A timestamp and a real short message pointing towards a NullPointerException. This is hard to debug. It happens with all sorts of exceptions.
    Can anybody help me out?
    JDEV 10.1.3.4.0.4270

    Restored a backup of my JDev directory because it took to long.

  • PrintStackTrace not appearing in application.log?

    We are having a difficult time locating the Stack Traces that we expected to see in the application.log of our J2EE Web Applications. Within our servlets the typical try/catch sequence is something like:
    try {
    // do some stuff that can throw an exception
    } catch(Exception ex) {
    ex.printStackTrace();
    ErrorBean errorBean = new ErrorBean(
    (ex.getMessage()!=null) ? ex.getMessage() : ex.getClass().getName(),
    request.getRequestURI(),ex);
    // Push ErrorBean into request scope for forward to Error Handler
    request.setAttribute(Constants.ERROR_KEY,errorBean);
    return (mapping.findForward("unexpectedError"));
    However, we can't find the output from the ex.printStackTrace() anywhere. It doesn't appear to be laying in the application.log. Any ideas? Is there something we should configure somewhere to send the stacktraces to application.log?
    Arghh....any help would be greatly appreciated.
    Bob
    Bob

    Ah...yes...they were right where you said they would be. However, is there some configuration that I could do to put the console messages (System.out.println() and, more importantly for us, ex.printStackTrace()) in the global-application.log so we would at least get some concept of the time of the exceptions? As it stands now we can see the actual exceptions in a file named after our OC4J instances (./ora9ias/opmn/logs/camsu.default_island.1) and some logging stuff with Timestamps from the Struts framework in the file the application.xml sends it to(<file path="../log/global-application.log"/>) but it is difficult to match the exceptions up with the servlet requests that caused them due, mainly, to lack of timestamps. Is there a way to get the stuff that presently goes to the opmn/logs file into the global-application.log?
    Regardless, I will definitely follow up the the Log4J stuff. Maybe that's where the magic bullet is. Thanks so much for your reply. This was giving me fits.
    Bob

  • ATG+ CRS Error in ATGPublishing server, access not allowed to BCC

    Hi,
    After the installation of ATG 10.0.3 and Commerce Reference Store on Weblogic, using CIM, I started both ATGProduction and ATGPublishing without trouble. I can access the store (http://localhost:7003/crs/storeus) and dynamo administration console (http://localhost:7003/atg/dyn) but when I try to access BCC (http://localhost:7005/atg/bcc) the web browser shows an error (page can´t be displayed). I have copied the error that appears in the log ATGPublishing.log
    I would be very grateful if someone could solve this issue. Thanks in advance
    Regards,
    Iñigo
    Log error:
    ###<Oct 19, 2011 9:46:17 AM CEST> <Error> <HTTP> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319010377001> <BEA-101017> <[ServletContext@1961981706[app:ATGPublishing.ear module:/atg path:/atg spec-version:null], request: weblogic.servlet.internal.ServletRequestImpl@49982a03[
    GET /atg/bcc HTTP/1.1
    Accept: application/x-ms-application, image/jpeg, application/xaml+xml, image/gif, image/pjpeg, application/x-ms-xbap, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    Accept-Language: es-ES
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8; InfoPath.3; managedpc)
    Accept-Encoding: gzip, deflate, peerdist
    Connection: Keep-Alive
    Cookie: DYN_USER_ID=140000; DYN_USER_CONFIRM=c2d08d3eb51f5945b8e444d80628b112; ADMINCONSOLESESSION=z6MYTp2Q7Y4s4b3yHQGNPrwS15LmJBZvlLYxhSXvktyFvqfbgJyl!1748133635; JSESSIONID=01p6Tp1J2Y2QPllJJdT7WXvpQSTyq05Mp12FNqY7YMs27QSqtp2V!991620916
    X-P2P-PeerDist: Version=1.0
    ]] Root cause of ServletException.
    javax.servlet.ServletException: PageFilter: cannot get a start request servlet.
         at atg.filter.dspjsp.PageFilter.doFilter(PageFilter.java:287)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at atg.servlet.GenericFilterService.doFilterChain(GenericFilterService.java:599)
         at atg.servlet.GenericFilterService.handleDoFilter(GenericFilterService.java:462)
         at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:409)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377046> <BEA-000000> <JspServlet: param verbose initialized to: true>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377046> <BEA-000000> <JspServlet: param packagePrefix initialized to: jsp_servlet>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377046> <BEA-000000> <JspServlet: param compilerclass initialized to: null>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377046> <BEA-000000> <JspServlet: param compileCommand initialized to: javac>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377047> <BEA-000000> <JspServlet: param compilerval initialized to: javac>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377047> <BEA-000000> <JspServlet: param pageCheckSeconds initialized to: 1>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377047> <BEA-000000> <JspServlet: param encoding initialized to: null>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377047> <BEA-000000> <JspServlet: param superclass initialized to null>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377047> <BEA-000000> <JspServlet: param workingDir initialized to: /mnt/opt/atguser/weblogic/user_projects/domains/base_domain/servers/ATGPublishing/tmp/_WL_user/ATGPublishing.ear/j3704z>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Info> <ServletContext-/atg> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319010377048> <BEA-000000> <JspServlet: initialization complete>
    ####<Oct 19, 2011 9:46:17 AM CEST> <Error> <Kernel> <atgappserver> <ATGPublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319010377915> <BEA-000802> <ExecuteRequest failed
    java.lang.NullPointerException.
    java.lang.NullPointerException
         at atg.taglib.dspjsp.PageTag.doCatch(PageTag.java:734)
         at atg.taglib.dspjsp.elwrap.PageTagWrapper.doCatch(PageTagWrapper.java:36)
         at jsp_servlet.__error._jspService(__error.java:405)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         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:300)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at weblogic.servlet.internal.ServletResponseImpl.sendError(ServletResponseImpl.java:720)
         at weblogic.servlet.internal.ServletResponseImpl.sendError(ServletResponseImpl.java:591)
         at weblogic.servlet.internal.ErrorManager.handleException(ErrorManager.java:150)
         at weblogic.servlet.internal.WebAppServletContext.handleThrowableFromInvocation(WebAppServletContext.java:2348)

    You were right. Some errors where displayed when launching ATGPublishing, some tables where missing. I made the imports again and everything went OK.
    Thank you!

  • I can't log into my YouTube account and each time I try the screen turns black, says "connection not trusted" and doesn't allow me the option to add exception like it normally does when I recieve this message trying to log into a website.

    I just got new ATT dsl internet service. Now, when I try and log into my YouTube account and numerous other websites, instead of logging me in, the screen turns black with a message displayed saying, "connection not trusted." On most sites, it will give me the option to either, "get me out of here" or "I understand the risks, allow exception." When I try logging into YouTube, the only option I have is; "get me out of here!"

    Check the date and time in the clock on your computer: (double) click the clock icon on the Windows Taskbar.
    * https://support.mozilla.com/kb/Secure+Connection+Failed
    You can retrieve the certificate and check who issued the certificate and other details like when it is valid.
    * Click the link at the bottom of the error page: "I Understand the Risks"
    Let Firefox retrieve the certificate: "Add Exception" -> "Get Certificate".
    * Click the "View..." button to inspect the certificate and check who is the issuer.

  • Send numeric limit data from TestStand sequence to Accesss database

    I use the "None" adapter to perform numeric limit testing on results from expression steps, but when I enable saving the report to an Access database the Name of the parameter is not shown. I noticed that when I use the multiple numeric limit step the option to name the parameter is built in, but the numeric limit test doesn't give that option. Is there a way around this? I have left the database options in their default settings.

    By default the numeric limit test doesn't log the name of the step into the MEAS_NUMERICLIMIT table. This make sense since the name of the step is already logged into the STEP_RESULTS table. For the multiple numeric limit test, make sense to have a name to differentiate the different tests within the same step. That's why the default setting is set to log the test name in the MEAS_NUMERICLIMIT table.
    Do you need the step name to be also in the MEAS_NUMERIC table or is it enough to have it on the STEP_RESULT one?
    Best Regards,
    Alejandro del Castillo
    Application Engineer
    National Instruments Co.

  • Difficulty having to keep logging in

    Hi,
    I gave up on the problem I had last year with having to 'keep' logging in on webmail to allow me to download e-mails to my Thunderbird desktop client. I was consistently told that BT do not support Thunderbird (although it is used by many thousands of people).
    Now I have a similar problem with receiving new e-mails on my new Samsung phone. It is synchronised with my e-mail, but I only receive e-mails to it after I again 'keep' logging on to my mail through the link on the BT.Com website.
    It seems to me that 'the system' is totally incapable of keeping me logged in, even though, on many occasions I have ticked that box when logging in via the web.
    What with that and the BT Mail fiasco (I still have not been transferred), and from what I read about other people's experiences that might be a good thing, it's about time somebody should answer for the absolute mess that this is in. For what we pay we should be having a much better experience with the service.
    Can somebody let me know if the continual logging on issue can be resolved?
    Regards,
    AlanF

    Hi liquorice & pottyperson,
    I really appreciate your willingness to try and help, and to be fair folks on here usually are very willing, and generous with their time in doing do.
    Last year when I raised the same issue, it got as far as the Mods, and the end result was, after they spoke with some tech person at BT, there was nothing they could do.
    Since making the initial post in this thread, I began to think that someone may have 'had a word' so-to-speak, as I have been able to receive e-mails without having to go through the proverbial webmail login routine every time. However, I am sending this now, because it would seem the temporary success couldn't last! This is the error message that just came up in Thunderbird:
    "Sending of password for user ************* did not succeed. Mail server mail.btinternet.com responded: (#MBR1213) Please verify your account by going to https://login.yahoo.com"
    (I have hidden the user name in the above comment)
    Just to let you know, I have googled the error code #MBR1213 on many occasions, and the issue would seem to be more than a well-known issue. Somewhere, I recall that last year, when I was having the same issue, somebody who was having the same issue as me, reported that 'the mail servers at BT Yahoo were incapable of preserving the logged in status', hence the fact that despite on numerous occasions previously we had logged in through webmail, we kept getting the #MBR1213 error message.
    Re the BT Mail issue, and my previous comments, like a lot of others I have been waiting over a year to be migrated. I read somewhere recently that BT had suspended further migrations because of the overwhelming continuing technical problems. Is that true or not?
    Again, I am grateful for your responding to my initial comments.
    Regards,
    AlanF

  • History seems to prevent logging in.

    When I try to log in to this site after I have logged out I get a message like :This page has expired due to inactivity.
    Restart Session
    When I delete history of the site I can log in without a problem.
    This has occurred with several sites. This problem has apparently occurred with versions from about 3.2 although I didn't try deleting history to see if that worked with versions prior to 5.0
    It also occurred on http://www.englewoodedge.com.
    I'm using SuSE Linux version 11.4

    Hi liquorice & pottyperson,
    I really appreciate your willingness to try and help, and to be fair folks on here usually are very willing, and generous with their time in doing do.
    Last year when I raised the same issue, it got as far as the Mods, and the end result was, after they spoke with some tech person at BT, there was nothing they could do.
    Since making the initial post in this thread, I began to think that someone may have 'had a word' so-to-speak, as I have been able to receive e-mails without having to go through the proverbial webmail login routine every time. However, I am sending this now, because it would seem the temporary success couldn't last! This is the error message that just came up in Thunderbird:
    "Sending of password for user ************* did not succeed. Mail server mail.btinternet.com responded: (#MBR1213) Please verify your account by going to https://login.yahoo.com"
    (I have hidden the user name in the above comment)
    Just to let you know, I have googled the error code #MBR1213 on many occasions, and the issue would seem to be more than a well-known issue. Somewhere, I recall that last year, when I was having the same issue, somebody who was having the same issue as me, reported that 'the mail servers at BT Yahoo were incapable of preserving the logged in status', hence the fact that despite on numerous occasions previously we had logged in through webmail, we kept getting the #MBR1213 error message.
    Re the BT Mail issue, and my previous comments, like a lot of others I have been waiting over a year to be migrated. I read somewhere recently that BT had suspended further migrations because of the overwhelming continuing technical problems. Is that true or not?
    Again, I am grateful for your responding to my initial comments.
    Regards,
    AlanF

  • Data logging more then one data per column

    Hello,
    I want to log multiply data to on column in my database. I use TestStand 3.0 and a SQL database. For example:
    I have the column "data" and in this column I want to log all data results from different steps (String, ButtonHit, Numeric) as a string. Logging.StepResult.Numeric, Logging.StepResult.ButtonHit, Logging.StepResult.String ......
    How is it posssible?
    Greetings
    Schwede

    Schwede -
    This is currently done in the default schema for the STEP_NUMERICLIMIT and MEAS_NUMERICLIMIT statements. Both log to the MEAS_NUMERICLIMIT table. The STEP_NUMERICLIMIT statement logs a single value for a Numeric Limit Test step and the MEAS_NUMERICLIMIT logs a value for each measurement in the Multiple Numeric Limit Test step.
    In summary, if you the step subproperties are different between two step types, but you want to log them to a shared table column, you have to use a separate statement per step type.
    Scott Richardson
    National Instruments

  • Repeated logging in

    I recently upgraged my computer and have it connected to the internet through an Airport Express base station. Since doing so, there are sites, such as eBay, that after logging in, I have to constantly repeat logging in every time I visit a new page. I have cookies enabled within Safari and eBay often doesn't recognize when I visit their home page.
    I'm guessing the problem lies in my Network settings. I'm using OS X's built-in firewall and have all file sharing preferences turned off. I'm not using Passive FTP Mode - don't know if this makes a difference. For the Firewall Prefs, I've tried blocking and not blocking UDP Traffic. I also have the Stealth Mode enabled.
    Any ideas?
    PowerMac G5 Quad, iMac G5 iSight, iMac Rev. B, PowerMac 7200   Mac OS X (10.4.5)  

    Just discovered that this problem seems to be confined to Safari. When using Internet Explorer, I visited numerous pages without having to log back in. Unfortunately, using IE is somewhat of a more painful way to surf due to it being too slow.
    Checked to see is Private Browsing was enabled in Safari thinking this might be the problem but there is no checkmark beside it so I'm assuming, maybe incorrectly, that is is disabled.

  • Getting Error when started WL 10.3

    Hi,
    Installed WL 10.3 in Win 7. When I started WL, I get "Parsing Failure in config.xml: failed to load java type corresponding to e=domain@http://xmlns.oracle.com/weblogic/domain>"
    error.
    There was another thread for the same issue, but it seems my config file is OK. Config file is attached.
    Thank you
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m
    WLS Start Mode=Development
    CLASSPATH=C:\bea11g\patch_wls1033\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea11g\patch_ocp353\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\PROGRA~1\Java\JDK16~1.0_2\lib\tools.jar;C:\bea11g\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea11g\WLSERV~1.3\server\lib\weblogic.jar;C:\bea11g\modules\features\weblogic.server.modules_10.3.3.0.jar;C:\bea11g\WLSERV~1.3\server\lib\webservices.jar;C:\bea11g\modules\ORGAPA~1.1/lib/ant-all.jar;C:\bea11g\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\bea11g\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\bea11g\WLSERV~1.3\server\lib\xqrl.jar;.;C:\bea11g\wlserver_10.3\server\lib;C:\Program Files\Java\jdk1.6.0_27\lib;
    PATH=C:\bea11g\patch_wls1033\profiles\default\native;C:\bea11g\patch_ocp353\profiles\default\native;C:\bea11g\WLSERV~1.3\server\native\win\32;C:\bea11g\WLSERV~1.3\server\bin;C:\bea11g\modules\ORGAPA~1.1\bin;C:\PROGRA~1\Java\JDK16~1.0_2\jre\bin;C:\PROGRA~1\Java\JDK16~1.0_2\bin;C:\Program Files\Java\jdk1.6.0_27\bin;C:\Program Files\Business Objects\Common\3.5\bin\NOTES\;C:\Program Files\Business Objects\Common\3.5\bin\NOTES\DATA\;C:\app\abdolran\product\11.2.0\client_1\bin;C:\app\abdolran\product\11.2.0\client_1;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\apache-ant-1.6.5\bin;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\IBM\RationalSDLC\ClearCase\bin;C:\Program Files\IBM\RationalSDLC\common;C:\Program Files\HEAT\;;C:\bea11g\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    Starting WLS with line:
    C:\PROGRA~1\Java\JDK16~1.0_2\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m -Dweblogic.Name=sbcadmin -Djava.security.policy=C:\bea11g\WLSERV~1.3\server\lib\weblogic.policy -Dreporthome=C:\bea11g\user_projects\domains\sbclocal\jreporthome weblogic.Server
    Listening for transport dt_socket at address: 9999
    <Dec 14, 2011 8:40:21 AM EST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\bea11g\user_projects\domains\sbclocal\lib\commons-beanutils-1.8.3.jar;C:\bea11g\user_projects\domains\sbclocal\lib\commons-codec-1.2.jar;C:\bea11g\user_projects\domains\sbclocal\lib\commons-dbcp-1.4.jar;C:\bea11g\user_projects\domains\sbclocal\lib\commons-digester-2.1.jar;C:\bea11g\user_projects\domains\sbclocal\lib\commons-fileupload-v1.0-transcient-fix.jar;C:\bea11g\user_projects\domains\sbclocal\lib\commons-lang-2.5.jar;C:\bea11g\user_projects\domains\sbclocal\lib\commons-logging-1.1.1.jar;C:\bea11g\user_projects\domains\sbclocal\lib\hsqldb.jar;C:\bea11g\user_projects\domains\sbclocal\lib\itext.jar;C:\bea11g\user_projects\domains\sbclocal\lib\jdom.jar;C:\bea11g\user_projects\domains\sbclocal\lib\JREngine.jar;C:\bea11g\user_projects\domains\sbclocal\lib\JREntServer.jar;C:\bea11g\user_projects\domains\sbclocal\lib\jrenv.jar;C:\bea11g\user_projects\domains\sbclocal\lib\JRESServlets.jar;C:\bea11g\user_projects\domains\sbclocal\lib\JRWebDesign.jar;C:\bea11g\user_projects\domains\sbclocal\lib\jsch-0.1.44.jar;C:\bea11g\user_projects\domains\sbclocal\lib\jstl.jar;C:\bea11g\user_projects\domains\sbclocal\lib\junit-4.8.2.jar;C:\bea11g\user_projects\domains\sbclocal\lib\languages.jar;C:\bea11g\user_projects\domains\sbclocal\lib\ldapjdk.jar;C:\bea11g\user_projects\domains\sbclocal\lib\log4j-1.2.16.jar;C:\bea11g\user_projects\domains\sbclocal\lib\ojdbc6-11.2.0.2.jar;C:\bea11g\user_projects\domains\sbclocal\lib\orai18n-11.2.0.2.jar;C:\bea11g\user_projects\domains\sbclocal\lib\PDFDPI550.jar;C:\bea11g\user_projects\domains\sbclocal\lib\poi-3.7-20101029.jar;C:\bea11g\user_projects\domains\sbclocal\lib\sac.jar;C:\bea11g\user_projects\domains\sbclocal\lib\sbcreport.jar;C:\bea11g\user_projects\domains\sbclocal\lib\sitemesh-2.3.jar;C:\bea11g\user_projects\domains\sbclocal\lib\standard.jar;C:\bea11g\user_projects\domains\sbclocal\lib\struts.jar;C:\bea11g\user_projects\domains\sbclocal\lib\xdb-11.2.0.2.0.jar;C:\bea11g\user_projects\domains\sbclocal\lib\xmlparserv2-11.2.0.2.jar>
    <Dec 14, 2011 8:40:21 AM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 20.2-b06 from Sun Microsystems Inc.>
    <Dec 14, 2011 8:40:22 AM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Dec 14, 2011 8:40:22 AM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: [Management:141266]Parsing Failure in config.xml: failed to load java type corresponding to e=domain@http://xmlns.oracle.com/weblogic/domain>
    <Dec 14, 2011 8:40:22 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Dec 14, 2011 8:40:22 AM EST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Dec 14, 2011 8:40:22 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ======--------------
    Config file
    <?xml version='1.0' encoding='UTF-8'?>
    <domain xmlns="http://xmlns.oracle.com/weblogic/domain" xmlns:sec="http://xmlns.oracle.com/weblogic/security" xmlns:wls="http://xmlns.oracle.com/weblogic/security/wls" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/security/xacml http://xmlns.oracle.com/weblogic/security/xacml/1.0/xacml.xsd http://xmlns.oracle.com/weblogic/security/providers/passwordvalidator http://xmlns.oracle.com/weblogic/security/providers/passwordvalidator/1.0/passwordvalidator.xsd http://xmlns.oracle.com/weblogic/domain http://xmlns.oracle.com/weblogic/1.0/domain.xsd http://xmlns.oracle.com/weblogic/security http://xmlns.oracle.com/weblogic/1.0/security.xsd http://xmlns.oracle.com/weblogic/security/wls http://xmlns.oracle.com/weblogic/security/wls/1.0/wls.xsd">
    <name>sbclocal</name>
    <domain-version>10.3.3.0</domain-version>
    <security-configuration>
    <name>sbclocal</name>
    <realm>
    <sec:authentication-provider xsi:type="wls:default-authenticatorType"></sec:authentication-provider>
    <sec:authentication-provider xsi:type="wls:default-identity-asserterType">
    <sec:active-type>AuthenticatedUser</sec:active-type>
    </sec:authentication-provider>
    <sec:role-mapper xmlns:xac="http://xmlns.oracle.com/weblogic/security/xacml" xsi:type="xac:xacml-role-mapperType"></sec:role-mapper>
    <sec:authorizer xmlns:xac="http://xmlns.oracle.com/weblogic/security/xacml" xsi:type="xac:xacml-authorizerType"></sec:authorizer>
    <sec:adjudicator xsi:type="wls:default-adjudicatorType"></sec:adjudicator>
    <sec:credential-mapper xsi:type="wls:default-credential-mapperType"></sec:credential-mapper>
    <sec:cert-path-provider xsi:type="wls:web-logic-cert-path-providerType"></sec:cert-path-provider>
    <sec:cert-path-builder>WebLogicCertPathProvider</sec:cert-path-builder>
    <sec:name>myrealm</sec:name>
    <sec:password-validator xmlns:pas="http://xmlns.oracle.com/weblogic/security/providers/passwordvalidator" xsi:type="pas:system-password-validatorType">
    <sec:name>SystemPasswordValidator</sec:name>
    <pas:min-password-length>8</pas:min-password-length>
    <pas:min-numeric-or-special-characters>1</pas:min-numeric-or-special-characters>
    </sec:password-validator>
    </realm>
    <default-realm>myrealm</default-realm>
    <credential-encrypted>{AES}2b8s2LiilVKwvDH8/ZhB+4BcroYAzZZhLwExqXUfpeAyT5624VzN9t9ck9cdKtX8j4RB5j4WoSF4Gh/VKeX0Sj1ttzLWXYzNHThoKPYRpGIZJh+pIuEG09C3vPA8Xvfr</credential-encrypted>
    <node-manager-username>system</node-manager-username>
    <node-manager-password-encrypted>{AES}Gjqgnlh3mZSgfqbM9wfyXohpWWV+2wDP0fGq0S4Ihnc=</node-manager-password-encrypted>
    </security-configuration>
    <server>
    <name>sbcadmin</name>
    <ssl>
    <name>sbcadmin</name>
    <enabled>true</enabled>
    <listen-port>7002</listen-port>
    </ssl>
    <log>
    <date-format-pattern>MMM d, yyyy h:mm:ss a z</date-format-pattern>
    <file-name>logs/sbcadmin.log</file-name>
    <rotation-type>bySize</rotation-type>
    <number-of-files-limited>true</number-of-files-limited>
    <file-count>7</file-count>
    <file-min-size>500</file-min-size>
    <rotate-log-on-startup>true</rotate-log-on-startup>
    <buffer-size-kb>8</buffer-size-kb>
    <logger-severity>Trace</logger-severity>
    <log-file-severity>Trace</log-file-severity>
    <stdout-severity>Debug</stdout-severity>
    <stdout-format>standard</stdout-format>
    <stdout-log-stack>true</stdout-log-stack>
    <stacktrace-depth>5</stacktrace-depth>
    <domain-log-broadcast-severity>Debug</domain-log-broadcast-severity>
    <memory-buffer-severity>Debug</memory-buffer-severity>
    <memory-buffer-size>500</memory-buffer-size>
    <log4j-logging-enabled>false</log4j-logging-enabled>
    <redirect-stdout-to-server-log-enabled>false</redirect-stdout-to-server-log-enabled>
    <redirect-stderr-to-server-log-enabled>false</redirect-stderr-to-server-log-enabled>
    <domain-log-broadcaster-buffer-size>1</domain-log-broadcaster-buffer-size>
    <server-logging-bridge-use-parent-loggers-enabled>false</server-logging-bridge-use-parent-loggers-enabled>
    </log>
    <machine>localmachine</machine>
    <listen-port>7001</listen-port>
    <listen-port-enabled>true</listen-port-enabled>
    <listen-address></listen-address>
    <java-compiler>javac</java-compiler>
    <client-cert-proxy-enabled>false</client-cert-proxy-enabled>
    <server-diagnostic-config>
    <wldf-diagnostic-volume>Off</wldf-diagnostic-volume>
    </server-diagnostic-config>
    </server>
    <embedded-ldap>
    <name>sbclocal</name>
    <credential-encrypted>{AES}Uduuu1U7NPk3CXsiYFIQ1knL7AKAvVKUacnUeVbqd2dvymj55DDnyHK9kOQrCHqn</credential-encrypted>
    </embedded-ldap>
    <configuration-version>10.3.3.0</configuration-version>
    <app-deployment>
    <name>appsdirsbc_10.2.2-b01_ear</name>
    <target>sbcadmin</target>
    <module-type>ear</module-type>
    <source-path>autodeploy\sbc_10.2.2-b01.ear</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>nostage</staging-mode>
    </app-deployment>
    <machine>
    <name>localmachine</name>
    </machine>
    <jms-server>
    <name>CHCFJMSServer</name>
    <target>sbcadmin</target>
    </jms-server>
    <jms-system-resource>
    <name>CHCHJMSModule</name>
    <target>sbcadmin</target>
    <sub-deployment>
    <name>CHCFJMSFaxQueue</name>
    <target>CHCFJMSServer</target>
    </sub-deployment>
    <sub-deployment>
    <name>CHCFJMSEMailQueue</name>
    <target>CHCFJMSServer</target>
    </sub-deployment>
    <sub-deployment>
    <name>CHCFJMSFileUploadQueue</name>
    <target>CHCFJMSServer</target>
    </sub-deployment>
    <sub-deployment>
    <name>CHCFJMSDeadEMailQueue</name>
    <target>CHCFJMSServer</target>
    </sub-deployment>
    <sub-deployment>
    <name>CHCFJMSDeadFaxQueue</name>
    <target>CHCFJMSServer</target>
    </sub-deployment>
    <descriptor-file-name>jms/chchjmsmodule-jms.xml</descriptor-file-name>
    </jms-system-resource>
    <admin-server-name>sbcadmin</admin-server-name>
    <jdbc-system-resource>
    <name>CHCFConnectionPool</name>
    <target>sbcadmin</target>
    <descriptor-file-name>jdbc/CHCFConnectionPool-8398-jdbc.xml</descriptor-file-name>
    </jdbc-system-resource>
    <jdbc-system-resource>
    <name>CHCFReportConnectionPool</name>
    <target>sbcadmin</target>
    <descriptor-file-name>jdbc/CHCFReportConnectionPool-3206-jdbc.xml</descriptor-file-name>
    </jdbc-system-resource>
    </domain>

    yes,
    thank you for the reply but wlfullclient.jar didn't help
    my friend figure it out it happen when sending a field bigDecimal value = 0. so i changed it not using big decimal. the problem is solved now

  • Cannot deploy par from NWDS

    Hi,
    I am not able to deploy par file into the DEV EP instance. Since the sys # is 00, I am using 50018 as the port number and very sure that the host name is ok. the error message in sap-plugin.log suggests that the upload response is the default login page. I have attached the stacktrace from plugin.log.
    [05.12.05 / 15:45] #DEBUG LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.PortalPlugin > Factory initialized !
    [05.12.05 / 16:03] #DEBUG LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.PortalPlugin > Startup in progress
    [05.12.05 / 16:03] #DEBUG LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.PortalPlugin > Factory initialized !
    [05.12.05 / 16:31] #ERROR LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1 > Upload Error message: Upload seems to have failed
    [05.12.05 / 16:31] #ERROR LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1 > Upload Response: <html><head><LINK REL=stylesheet HREF="/irj/portalapps/com.sap.portal.design.portaldesigndata/themes/portal/customer/Pioneer/glbl/glbl_ie5.css?6.0.13.0.1">
    <LINK REL=stylesheet HREF="/irj/portalapps/com.sap.portal.design.urdesigndata/themes/portal/customer/Pioneer/ur/ur_bdy_prtl_ie5.css?6.0.13.0.1">
    <LINK REL=stylesheet HREF="/irj/portalapps/com.sap.portal.design.portaldesigndata/themes/portal/customer/Pioneer/prtl_std/prtl_std_ie5.css?6.0.13.0.1">
    <!-- EPCF: BOB Core -->
    <META http-equiv="Content-Script-Type" content="text/javascript">
    <SCRIPT src="/irj/portalapps/com.sap.portal.epcf.loader/script/standard/js13_epcf.js?6.0722"></SCRIPT>
    <SCRIPT>
    <!--
    EPCM.relaxDocumentDomain();
    EPCM.init( );
    EPCM.DSM.init( );
    function SAPWP_receiveSessInfo( sessInfo, frameRef ){
      EPCM.DSM.processSession( sessInfo, frameRef );
    //-->
    </SCRIPT>
    <!-- EPCF: EOB Core -->
    <!-- HTML Business for Java, 60NW_VAL_REL, 145109, Wed Jul 13 10:38:22 PDT 2005 -->
    <!-- HTMLB: begin VARS -->
    <script language="JavaScript">
    ur_system = ;
    </script>
    <!-- HTMLB: end   VARS -->
    <title >SAP Enterprise Portal 6.0</title><meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"><link  REL=STYLESHEET  HREF="/irj/portalapps/com.sap.portal.design.urdesigndata/themes/portal/customer/Pioneer/ur/ur_ie5.css?6.0.13.0.1"  TYPE="text/css" ><link  REL=STYLESHEET  HREF="/irj/portalapps/com.sap.portal.runtime.logon/css/logon.css"  TYPE="text/css" ><link  REL=STYLESHEET  HREF="/irj/portalapps/com.sap.portal.runtime.logon/css/main2.css"  TYPE="text/css" ></head><body class="prtlBody urFontBaseFam urScrl">
    <!-- EPCF: Component com.sap.portal.runtime.logon.certlogon, hnlfbdolaebaghofikiedbahpmidieno -->
    <!-- EPCF: Component com.sap.portal.runtime.logon.default, hobbmlmpbnllcpciikmkhjahpmidieno -->
    <!-- component context:com.sap.portal.runtime.logon.default-->
    <!-- class: com.sapportals.portal.ume.component.logon.SAPMLogonComponent-->
    <!-- trying to go to page umLogonPage-->
    <!-- before including jsp resource umLogonPage.jsp-->

    Hi,
    you can use this alternative to upload the par file
    System administrator->support->portalruntime->Administration console->click on the browse button to find the par file and click the upload button.
    see this link for more information
    http://help.sap.com/saphelp_nw04/helpdata/en/2d/b8b2426dbec86ae10000000a155106/frameset.htm
    reward useful answerd

Maybe you are looking for

  • Using Javascript to disable a check box

    Friends, I am stuck on what should be a simple requirement and I am hoping you can help. I need to disable a form region checkbox if a field on the same form region has anything entered. What I have done so far is: 1) On the item that determines whet

  • G4 wont start

    on light goes on 4 a second

  • How to configure/set the selection screen in MRKO

    Hi Experts, I couldn't find any config or BADI or User Exit to change the selection screen in MRKO screen. Currently, only company code field is mandatory. My customer requested to make the vendor field as mandatory. Am I right to say that it is stan

  • Rule in Workflow

    What is a rule in workflows, when is it used

  • Code for Payment Method Drop Down in ESS Banks Detail

    Hello , I am on EP7.0 ERP05 NW04s and trying to modify the Payment Method DropDownByKey on the Banks Detail screen....I want to know where's the code which is filling the dropdown for the corresponding values of Payment Method like Direct Deposit for