Cannot create multicast session in C1, error -601

When trying to create news multicast session on C1, it gives Error -601
"the object name entered could not be found in the context specified".
This happens on multiple Zen Servers.
C1.3.6h, zdm7.0.1 snapins.
I already tried cleaning up the "hidden" sessionobjects, no help.
Other ideas?
-sk

Hi,
Sami Kapanen wrote:
>
> When trying to create news multicast session on C1, it gives Error -601
> "the object name entered could not be found in the context specified".
That usually points to eDir errors, or at least severe delays in sync.
You can try to use the -forcemaster switch of ConsoleOne to make sure
it's always talking to the master of any partition only, but if that
helps, I would check my eDir health and sync times.
CU,
Massimo Rosen
Novell Product Support Forum Sysop
No emails please!
http://www.cfc-it.de

Similar Messages

  • Cannot create a session after the response has been committed (Tomcat 6)

    I'm getting a rather annoying error when I try to open a pretty basic JSP page.
    I'm rather new to the whole JSP scene, so I'm following the example found on pages 287 and onwards in "JSF in Action - Manning" in case anyone wanted to check my code against the source.
    I've searched for about 4 hours now, coming back to this site a couple of times, once reading about writeouts and stuff. But I'm not really sure this is the issue in this case and if it is, where exactly the problem lies.
    I've already fixed a number of errors I got (jtsl.jar and standard.jar missing etc...) but this particular problem is driving me (and my co-workers for that matter :-) ) up the wall.
    Anyone willing to help me out here?
    Error:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Cannot create a session after the response has been committed
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
    root cause
    java.lang.IllegalStateException: Cannot create a session after the response has been committed
         org.apache.catalina.connector.Request.doGetSession(Request.java:2301)
         org.apache.catalina.connector.Request.getSession(Request.java:2075)
         org.apache.catalina.connector.RequestFacade.getSession(RequestFacade.java:833)
         org.apache.myfaces.context.servlet.SessionMap.setAttribute(SessionMap.java:53)
         org.apache.myfaces.util.AbstractAttributeMap.put(AbstractAttributeMap.java:103)
         org.apache.myfaces.util.AbstractAttributeMap.put(AbstractAttributeMap.java:35)
         org.apache.myfaces.application.jsp.JspStateManagerImpl.saveSerializedViewInServletSession(JspStateManagerImpl.java:523)
         org.apache.myfaces.application.jsp.JspStateManagerImpl.saveSerializedView(JspStateManagerImpl.java:358)
         javax.faces.application.StateManager.saveView(StateManager.java:47)
         org.apache.myfaces.application.jsp.JspViewHandlerImpl$StateMarkerAwareWriter.flushToWriter(JspViewHandlerImpl.java:387)
         org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:322)
         org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
         org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    Source Code of login.jsp:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:view>
    <html>
    <head>
         <title>
              <h:outputText value="ProjectTrack"/>
         </title>
    </head>
         <body>
              <table>
                   <tr>
                        <td>
                             <h:graphicImage url="/images/logo Skillteam.jpg"
                             alt="Welcome to ProjectTrack"
                             title="Welcome to ProjectTrack"
                             width="435" height="120"/>
                        </td>
                   <td>
                        <font face="Arial, sans-serif"
                        size="6">
                        <h:outputText value="ProjectTrack"/>
                        </font>
                   </td>
                   </tr>
         http://forum.java.sun.com/post!default.jspa?forumID=45#
    Click for bold     </table>
         </body>
    </html>
    </f:view>
    web.xml & faces-config
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
         <display-name>ProjectTrack</display-name>
         <welcome-file-list>
         <welcome-file>faces/login.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>
         </welcome-file-list>
         <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
         <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
         <servlet-name>Faces Servlet</servlet-name>
         <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
    </web-app>
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
         <navigation-rule>
              <from-view-id>/login.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>success</from-outcome>
                   <to-view-id>/inbox.jsp</to-view-id>
              </navigation-case>
              <navigation-case>
                   <from-outcome>failure</from-outcome>
                   <to-view-id>/login.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>Setup:
    Eclipse Europe 3.3.0
    Tomcat 6.0.13
    MyFaces 1.2
    JRE 1.6.0_02

    When searching for this error, this was the first page google gave me. I found the answer and just in case anyone else stumbles in here with the same question I thought I'd share my findings.
    Unfortunately, if your problem is the same as mine, you're going to feel pretty silly. I was navigating to the wrong page. If MyFaces(when running tomcat) tries to resolve to a page that doesn't exist, the error given above is what happens.
    In my case I accidentally put my .jsp page into the wrong directory and ended up banging my head against the wall for an hour figuring that out. Hope this helps someone.

  • Error: WEB3010: Cannot create a session after the response has been committ

    Hi,
    I am seeking more information on that error. You know how to explain to me what she is, which the possible causes, if somebody already had some problem where that mistake happened.
    Please, if somebody has some information he send me.
    Thanks
    Denis

    Committing a response involves sending headers/data back to the client. When a web application session is created, the session ID needs to be sent back to the client. This is done either via a Set-Cookie header or is encoded in the URLs returned to the client. When response has been committed before the session is created, there is no way for the session ID to be sent back to the client, hence the error.
    To correct the error, either increase the size of the output buffer or page buffer (if it is a JSP) or remove any calls that may be flushing data (thereby committing the response) to the client.

  • Cannot create billing document due to errors

    Hi,
    I cannot creat the billing document due to below errors in the error log of VF01.
    I ran SDRQ report and cannot detect any inconsistency.
    Error Log                                                                               
    4       0025001049 000000 ABEND due to system error                                          
        4       0025001049 000000 Processing cancelled due to inconsistencies in billing quantity.   
        4       0025001049 000010 The item has been fully invoiced already                                                                               
    Could you please help.
    Thank you & regards,
    Harshini.

    Hello,
    >4 0025001049 000000 ABEND due to system error
    Check SAP
    Note 77419 - VF076 for billing docs. w. net value unequal zero
    Note 976445 - VX02N - Termination due to negative sales order value
    Note 770784 - Information on locking problems during availability check
    >4 0025001049 000000 Processing canceled due to inconsistencies in billing quantity.
    Check SAP
    Note 489676 - External billing documents cannot be cancelled due to VF 188
    Note 371844 - Correction of incorrect costs
    Note 819805 - Lock logic, reversal, status, posting date (5.00)
    >4 0025001049 000010 The item has been fully invoiced already
    Check the billing reference for Sales doc type (VOV8) for document number 0025001049
    Thanks & Regards
    JP

  • Cannot create a session of an IVI using IIviSessio​nFactory in VB6

    With a valid configuration within MAX 3.0.2, using the following code produces a run-time error...
    Dim Factory As New IviSessionFactory
    Dim Dmm As IIviDmm
    Set Dmm = Factory.CreateDriver("HpDmm")
    Dmm.Initialize "HpDmm", True, True
    The above code snippet never gets past the SET no matter what instrument is used. If the instrument is referenced directly in VB6 everything is fine but it is then bypassing the whole idea of the configuration store and the ability to interchange.
    The response from the code is always...
    Run-time error '-2147217149(80041103) IIviSessionFactory: Software Module (hp...) has no Prog ID
    This is despite the fact that a Prog ID is not necessary according to the IV
    I Foundation specs.
    OS is Windows XP Pro and ICP2.1 is installed - HP3458A and 34401A IVI compliant drivers were used.

    I encountered the same problem using the NI IVI-C driver for the hpe364xa PSU driver. However, after reading this article I downloaded an IVI-COM compatible driver from Agilent for this instrument and my code (similar to above) worked fine. Agilent have many other IVI-COM drivers available if you prefer to use the session factory. Especially as the Measurement Studio for VB doesn't yet seem to have ActiveX controls for the later IVI classes such as RF_Sig_Gen, Power Meter and Spectrum Analyser.

  • Disk Utility 13 cannot create multi-session CDs

    With Mavericks/ Disk Utility 13 on a new MBP, the option to leave a disk appendable is always greyed out, on all the CD disks I have tried, including new ones of various national brands.
    On an older imac, runnng Snow Leopard and Disk Utility 11.5, following the same procedure, the identical disks are appendable. The older imac has an internal superdive. The MBP has a new external Apple Superdrive.
    Mavericks/Disk Utility will create the .dmg, but after clicking burn, there is no multi-session option available...it's there, but always greyed out.
    Any suggestions or advice?

    Thanks for the reply. Interesting discussion. I really hadn't gone that far with rationalising my mild frustration. I guess the sources of funding that require cd roms will have to catch up then. Fact is they all use Microsoft Windows and havn't risen to dropbox or icloud.
    Will try third party burner or just ruin more disks.
    Cheers to you
    Stephen

  • Cannot create hp web serv acct. error msg ajax submit failed error = 403

    Printer Mod HP officejet 6500E710, Model #710n
    Quad 610

    Hi DCI5366;
    Hope you are doing well and welcome to the HP Forum.
    Sorry to learn that you are having this issue.
    Let's do this 1st
    -Reboot the computer.
    -Open the browser (Internet Explorer, chrome, FireFox, Safari,Opera ) of your preference and clear cookies and internet (Browsing) history. In the browser of your preference try singing-in or registering to e-print.
    If the above did not solved your issue, Please try this step;
    -Use another browser (Internet Explorer, Chrome, firefox, safari, Opera).
    If that did not work please try this;
    - Set an static IP Address for your printer, This should be done outside the DHCP range (the range that your router uses to automaticly assing leasses to the clients or devices connecting to the network). You will have to do your research to see what is the procedure to accomplish this in your OS, Router and other peripheral in this case most probably your printer.
    - Use Google public DNS Servers 8.8.8.8 and alternate 8.8.4.4 (the reason that I recommend this is because I have use them all the time and have not seem conflict of any kind)
    - Make sure that your printer have the most current firmware and software available for them (remember most of the updates in firmware and software are to FIX ISSUES and in a lesser degree done are to add functionality). The issue that you having may have been fix in a firmware update.
    - Make sure that your Operating system is updated (To a lesser extend this are also updated to FIX ISSUES although some times can create them as well, mostly they are updated to patch security issues) it may be important.
    If that did not work and this is an acceptable option for you;
    Sign-in with an alternative account (Shapfish form HP, google account, Facebook). If you do not have an account mention create one and follow this to sign-in with the new account. https://h30495.www3.hp.com/help#eprint
    The steps aforementioned may fix the problem by them self but also will help establish that is not any of this circumstances creating the issue you are experiencing, moreover that is indeed a more isolated issue. And if this is the case please post again with all relevant information please
    I reiterate this will give all participants of the forum a good chance of to understand and provide suggestions to you.
    Also this is what I heard from other members of the forum.
    I heard here (other members of the community) that there is an issue that engineer are working on diligently that may be affecting this particular process. At the same time I know that other members have some success using this steps aforementioned.
    Hope this helps!
    RobertoR
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • [Solved] [KDE] Cannot open ConsoleKit session error message on startup

    Hi all,
    I've just installed updates on my system, and I now get a popup message along the lines of "Cannot create Consolekit session. Process /usr/lib/dbus-1.0/dbus-daemon-launch-helper received signal 5"
    The corresponding message in ~/.xsession-errors is:
    "Cannot create unix session: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildSignaled: Process /usr/lib/dbus-1.0/dbus-daemon-launch-helper received signal 5"
    Any idea what might be going on? I have checked, dbus seems to be running. Other than that, the desktop seems to work normally.
    Last edited by lardon (2012-04-13 08:14:36)

    I've just spotted (probably) related messages in the output of dmesg:
    [ 3895.854306] console-kit-dae[3668] trap int3 ip:7fe3409f0143 sp:7fff81adc430 error:0
    [ 5788.007546] console-kit-dae[8521] trap int3 ip:7f268922a143 sp:7fffe7fca950 error:0
    [ 5790.012563] console-kit-dae[8527] trap int3 ip:7f051448d143 sp:7fffd6dc5de0 error:0
    [ 5792.225186] console-kit-dae[8536] trap int3 ip:7f58e43eb143 sp:7fff3c5b0ce0 error:0
    [ 5793.463198] console-kit-dae[8540] trap int3 ip:7f8951c37143 sp:7fffae2da770 error:0

  • Cannot create ActiveX component

    So, I've looked all over for an answer for this one and so far, everything I've seen offered as fixes do not work.
    Exception Details: System.Exception: Cannot create ActiveX component.
    Source Error:
    Line 39:
    Line 40:             ' Create Acrobat Application object
    Line 41:             PDFApp = CreateObject("AcroExch.App")
    I have a webserver on which is installed the latest version of Acrobat Standard.
    Here is my code:
    Imports System.Data
    Imports System.Data.SqlClient
    Imports System.Web.Configuration
    Imports System.Data.OleDb
    Imports System.Security
    Imports System.Security.Principal
    Partial Class CodeTest
        Inherits System.Web.UI.Page
        Dim LOGON32_LOGON_INTERACTIVE As Integer = 2
        Dim LOGON32_PROVIDER_DEFAULT As Integer = 0
        Dim impersonationContext As WindowsImpersonationContext
        Declare Function LogonUserA Lib "advapi32.dll" (ByVal lpszUsername As String, _
                                ByVal lpszDomain As String, _
                                ByVal lpszPassword As String, _
                                ByVal dwLogonType As Integer, _
                                ByVal dwLogonProvider As Integer, _
                                ByRef phToken As IntPtr) As Integer
        Declare Auto Function DuplicateToken Lib "advapi32.dll" ( _
                                ByVal ExistingTokenHandle As IntPtr, _
                                ByVal ImpersonationLevel As Integer, _
                                ByRef DuplicateTokenHandle As IntPtr) As Integer
        Declare Auto Function RevertToSelf Lib "advapi32.dll" () As Long
        Declare Auto Function CloseHandle Lib "kernel32.dll" (ByVal handle As IntPtr) As Long
        Private Sub savePDFtoTIF(ByVal fullPathPDF As String, ByVal fullPathTIF As String)
            Dim PDFApp As Acrobat.AcroApp
            Dim PDDoc As Acrobat.CAcroPDDoc
            Dim AVDoc As Acrobat.CAcroAVDoc
            Dim JSObj As Object
            If impersonateValidUser("XXXXXXX", "", "XXXXXXXXXX") Then
                ' Create Acrobat Application object
                PDFApp = CreateObject("AcroExch.App")
                ' Create Acrobat Document object
                PDDoc = CreateObject("AcroExch.PDDoc")
                ' Open PDF file
                PDDoc.Open(fullPathPDF)
                ' Create AV doc from PDDoc object
                AVDoc = PDDoc.OpenAVDoc("TempPDF")
                ' Hide Acrobat application so everything is done in silentmode()
                PDFApp.Hide()
                ' Create Javascript bridge object
                JSObj = PDDoc.GetJSObject()
                ' Attempt to save PDF to TIF image file.
                ' SaveAs method syntax .SaveAs( strFilePath, cConvID )
                ' For TIFF output the correct cConvid is
                ' cCovid MUST BE ALL LOWERCASE.
                JSObj.SaveAs(fullPathTIF, "com.adobe.acrobat.tiff")
                PDDoc.Close()
                PDFApp.CloseAllDocs()
                ' Clean up
                System.Runtime.InteropServices.Marshal.ReleaseComObject(JSObj)
                JSObj = Nothing
                System.Runtime.InteropServices.Marshal.ReleaseComObject(PDFApp)
                PDFApp = Nothing
                System.Runtime.InteropServices.Marshal.ReleaseComObject(PDDoc)
                PDDoc = Nothing
                System.Runtime.InteropServices.Marshal.ReleaseComObject(AVDoc)
                AVDoc = Nothing
                undoImpersonation()
            Else
                lblStatus.Text = "Unable to impersonate"
                Exit Sub
            End If
        End Sub
        Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
            savePDFtoTIF("D:\DoH\998.110803030832.pdf", "D:\DoH\Project\000.tif")
        End Sub
        Private Function impersonateValidUser(ByVal userName As String, _
    ByVal domain As String, ByVal password As String) As Boolean
            Dim tempWindowsIdentity As WindowsIdentity
            Dim token As IntPtr = IntPtr.Zero
            Dim tokenDuplicate As IntPtr = IntPtr.Zero
            impersonateValidUser = False
            If RevertToSelf() Then
                If LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, token) <> 0 Then
                    If DuplicateToken(token, 2, tokenDuplicate) <> 0 Then
                        tempWindowsIdentity = New WindowsIdentity(tokenDuplicate)
                        impersonationContext = tempWindowsIdentity.Impersonate()
                        If Not impersonationContext Is Nothing Then
                            impersonateValidUser = True
                        End If
                    End If
                End If
            End If
            If Not tokenDuplicate.Equals(IntPtr.Zero) Then
                CloseHandle(tokenDuplicate)
            End If
            If Not token.Equals(IntPtr.Zero) Then
                CloseHandle(token)
            End If
        End Function
        Private Sub undoImpersonation()
            impersonationContext.Undo()
        End Sub
    End Class
    The impersonation works, as I use the same code on another page where I am manipulating file system objects through that account, with this code. Also, the code without the impersonation, works on my local machine perfectly.
    Any ideas on what to do would be greatly appreciated.
    Justice

    Look, I got dragged into a project that was late from the start, but is a big contract for the printing company that I work for that uses a lot of Adobe products internally for what they do.
    In good faith, I tried to purchase something that would work. I was in a rush and didn't read the entire EULA as I was installing it. Obviously, I wasn't trying to screw the system or I wouldn't have been here, posting about it. I also do not need an education about what is true or false on the internet. I need a solution now that is going to meet the customers needs based on what is provided here. Rather simple, and don't reallly have the time for an entire formalized consultation as to our "business needs", since this is really all we need it for and time is of the essence.
    If the best Adobe can do is publicly slap customers around on forums and throw vague answers out to follow up on, then I guess it's time to seek out other solutions for our business needs.

  • Cannot create class in system package while Using Sprite class

    Hi i developed a game using Sprite class & imported
    javax.microedition.lcdui.game.*; package. But when i tried to build this project it gave me "Cannot create class in system package" error. Worst thing is that now again if i build, then it displays error "package javax.microedition.lcdui.game.*; does not exist" . Pls help me

    First exception means that you tried to create a class with the package name equaling one from the predefined libraries in midp/cldc.
    For your second error, add all the jars you are using into the project's classpath.
    Mihai

  • Multicast sessions page of server properties

    I am using ZEN 4.0.1 ir7, Netware 6.5sp4, ConsoleOne 1.3.6e.
    I was creating multicast sessions on the multicast sessions page of server
    properties for later use by my technician. I had created 5 sessions, then
    closed the property page. Then later I went back to make changes on one of
    the sessions. When I attempt to open that tab I get the message 'Loading,
    one moment please...', and there it stays. I have to kill the ConsoleOne
    process in task manager and restart ConsoleOne in order to do anything.
    What's going on, and how do I correct it?

    Thanks guys. I started c1 without the zen snapins, then deleted one of the
    sessions from the 'other' tab. Then I put the zen snapins back in and was
    able to view the rest of the multicast sessions. Kind of screws up the
    linkages in edir doing it that way, but that's fixable.
    >>> Kurt Finlayson<[email protected]> 11/5/2006 9:03:10 PM >>>
    >Bill Knaack wrote:
    >> I am using ZEN 4.0.1 ir7, Netware 6.5sp4, ConsoleOne 1.3.6e.
    >>
    >> I was creating multicast sessions on the multicast sessions page of
    >server
    >> properties for later use by my technician. I had created 5 sessions,
    >then
    >> closed the property page. Then later I went back to make changes on one
    >of
    >> the sessions. When I attempt to open that tab I get the message
    >'Loading,
    >> one moment please...', and there it stays. I have to kill the ConsoleOne
    >> process in task manager and restart ConsoleOne in order to do anything.
    >> What's going on, and how do I correct it?
    >>
    >
    >This sounds familiar. I think this is fixed in a newer version of
    >ZENworks but not in ZfD 4.x. You could try a consoleOne containing newer
    >snapins of ZDM 6.5 or 7 and see what happens? Just a thought.

  • [Solved]Lightning for Thunderbird:C compiler cannot create executables

    Thanks very much in advance.
    I am trying to install Lightning in Thunderbird but no luck so far.
    The xpi file from their website is not for 64 bits.
    The link for the 64 bits version doesn't work
    I've tried with AUR and yaourt but both return the following error (look at the end):
    ==> Making package: lightning 0.9-2 x86_64 (Fri Oct 2 13:58:20 BST 2009)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Installing missing dependencies...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): zip-3.0-1
    Total Download Size: 0.26 MB
    Total Installed Size: 0.57 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    zip-3.0-1-x86_64 266.2K 389.5K/s 00:00:01 [#####################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [#####################] 100%
    (1/1) installing zip [#####################] 100%
    ==> Retrieving Sources...
    -> Downloading lightning-sunbird-0.9-source.tar.bz2...
    --2009-10-02 13:58:32-- http://releases.mozilla.org/pub/mozilla.org/calendar/sunbird/releases/0.9/source/lightning-sunbird-0.9-source.tar.bz2
    Resolving releases.mozilla.org... 156.56.247.196, 204.152.184.113, 149.20.20.5, ...
    Connecting to releases.mozilla.org|156.56.247.196|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 43121977 (41M) [application/x-tar]
    Saving to: `lightning-sunbird-0.9-source.tar.bz2.part'
    100%[======================================>] 43,121,977 412K/s in 1m 43s
    2009-10-02 14:00:15 (407 KB/s) - `lightning-sunbird-0.9-source.tar.bz2.part' saved [43121977/43121977]
    -> Found lightning-sunbird-0.9-locale.diff in build dir
    -> Found lightning-gcc44.diff in build dir
    -> Found mozconfig in build dir
    ==> Validating source files with md5sums...
    lightning-sunbird-0.9-source.tar.bz2 ... Passed
    lightning-sunbird-0.9-locale.diff ... Passed
    lightning-gcc44.diff ... Passed
    mozconfig ... Passed
    ==> Extracting Sources...
    -> Extracting lightning-sunbird-0.9-source.tar.bz2 with bsdtar
    ==> Entering fakeroot environment...
    ==> Starting build()...
    patching file calendar/sunbird/app/mozilla.in
    patching file toolkit/xre/nsAppRunner.cpp
    Adding client.mk options from /home/rafael/Builds/lightning/src/mozconfig:
    MOZ_CO_PROJECT=calendar
    BUILD_OFFICIAL=1
    MOZILLA_OFFICIAL=1
    make[1]: Entering directory `/home/rafael/Builds/lightning/src/mozilla'
    cd /home/rafael/Builds/lightning/src/mozilla/lightning-obj
    /home/rafael/Builds/lightning/src/mozilla/configure
    Adding configure options from /home/rafael/Builds/lightning/src/mozconfig:
    --enable-application=calendar
    --prefix=/usr
    --enable-extensions=lightning
    --enable-default-toolkit=gtk2
    --enable-system-cairo
    --enable-optimize
    --disable-debug
    --disable-tests
    --disable-installer
    --with-default-mozilla-five-home=/usr/lib/thunderbird-2.0
    --with-system-nss
    --with-system-nspr
    --with-system-jpeg
    --with-system-zlib
    --with-system-png
    creating cache ./config.cache
    checking host system type... x86_64-unknown-linux-gnu
    checking target system type... x86_64-unknown-linux-gnu
    checking build system type... x86_64-unknown-linux-gnu
    checking for gawk... gawk
    checking for nsinstall... no
    checking for gcc... gcc
    checking whether the C compiler (gcc -march=x86-64 -mtune=generic -O2 -pipe -Wl,--hash-style=gnu -Wl,--as-needed-lXrender -lX11 ) works... no
    configure: error: installation or configuration problem: C compiler cannot create executables.
    *** Fix above errors and then restart with "make -f client.mk build"
    make[1]: *** [configure] Error 1
    make[1]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla'
    make: *** [/home/rafael/Builds/lightning/src/mozilla/lightning-obj/Makefile] Error 2
    ==> ERROR: Build Failed.
    Aborting..
    I've searched in forums and on the Internet but I am a newby and I have no idea how to fix the c compiler...
    Thanks again
    Last edited by rafaelgp (2009-10-02 17:34:53)

    Very impressive!  Thanks for such a fast response.
    But I'm afraid it still doesn't work. After compiling for 10 minutes it couldn't finish:
    ../../dist/lib/libgkconcvs_s.a(nsCanvasRenderingContext2D.o): In function `nsCanvasRenderingContext2D::Destroy()':
    nsCanvasRenderingContext2D.cpp:(.text+0x51e2): undefined reference to `XFreePixmap'
    ../../dist/lib/libgkconcvs_s.a(nsCanvasRenderingContext2D.o): In function `nsCanvasRenderingContext2D::SetDimensions(int, int)':
    nsCanvasRenderingContext2D.cpp:(.text+0x56f6): undefined reference to `XRenderFindStandardFormat'
    nsCanvasRenderingContext2D.cpp:(.text+0x571e): undefined reference to `XListPixmapFormats'
    nsCanvasRenderingContext2D.cpp:(.text+0x575e): undefined reference to `XFree'
    nsCanvasRenderingContext2D.cpp:(.text+0x5796): undefined reference to `XCreatePixmap'
    collect2: ld returned 1 exit status
    make[4]: *** [libgklayout.so] Error 1
    make[4]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj/layout/build'
    make[3]: *** [libs] Error 2
    make[3]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj/layout'
    make[2]: *** [tier_9] Error 2
    make[2]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj'
    make[1]: *** [default] Error 2
    make[1]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj'
    make: *** [build] Error 2
    ==> ERROR: Build Failed.
    Aborting...
    Hope this helps.

  • New installation and SP2 upgrade of 7.5 - Cannot create ActiveX component

    Hi guys,
    New installation (w/ SP2) on 64bit Server 2003. when attempting to reach Http://Server/OSOFT I'm receiving the following error -
    Server Error in '/OSoft' Application.
    Cannot create ActiveX component.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: Cannot create ActiveX component.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [Exception: Cannot create ActiveX component.]
       Microsoft.VisualBasic.Interaction.CreateObject(String ProgId, String ServerName) +232
       OSoft.Consumers.ZFP.WebBase.PageBase.GetZFPText(Int32 intID, String strParam1, String strParam2, String strParam3, String strParam4, String strParam5) +422
       OSoft.Launch.Page_Load(Object sender, EventArgs e) +51
       System.EventHandler.Invoke(Object sender, EventArgs e) +0
       System.Web.UI.Control.OnLoad(EventArgs e) +67
       System.Web.UI.Control.LoadRecursive() +35
       System.Web.UI.Page.ProcessRequestMain() +731
    Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
    I've tried the following note (which seems very similar to my issue) only relevant to 7. and it did not help.
    1342140 - Cannot create ActiveX Component BPC 7 NW I've restarted the IIS and it did not help.
    Please advise..
    Thank you!

    Hi,
    I had the same problem with my BPC 7 installation yesterday and followed all the proposed solutions in this thread with no luck. When I checked,  the OSoftResSvrZFP_EN.dll was missing - you might be missing this too. Anyway, I solved it by running the BPC 7.0 server installation exe and then selected 'Repair'.
    Regards,
    Danny

  • Auto patch error usdsop cannot create a new process

    Hi i am applying hrms family pack k in one vision db in testnode but i am getting following error.Any idea
    appsversion 11.5.10 and windows 2003 advanced server
    Generating product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java with command:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjmx @j:\oracle\visappl\admin\VIS\out\genjars.cmd
    Error:
    usdsop cannot create a new process
    Cause: usdsop encountered an error creating a new process. [Reason].
    Action: Check that your system had enough resources to start a new process. Contact your system administrator to obtain more resou (RE
    Failed to generate product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java.
    adogjf() Unable to generate jar files under JAVA_TOP
    AutoPatch error:
    Failed to generate the product JAR files
    rgds
    rajesh

    This is the primary reason I dislike doing Oracle Apps on Windows.
    If something bad happens while patching, and you find yourself without critical ad executables because relink failed, you need to run relinkenv.cmd to (re)create the APPS.SH unix-style environment (forward slashes) for relink.sh.
    Source or double click on envshell.cmd
    sh adrelink.sh force=y "ad adjava.exe"
    Backup Mode is "file"
    Removing Application products' bin directories from PATH ...
    Done removing Application products' bin directories from PATH
    Removing $FND_TOP/$APPLBIN from PATH ...
    sed: number in \[0-9] invalid
    Done removing $FND_TOP/$APPLBIN from PATH
    awk: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    echo: adrelink.sh 4107: writing: The pipe is being closed.
    awk: adrelink.sh 4107: not found
    ORACLE RDBMS Version 8.0.6.0.0
    Oracle Reports Version 6.0
    Oracle Applications Release
    Unable to determine the release number.
    To resolve:
    type relinkenv.cmd
    This creates APPS.SH.
    Source or double click on envshell.cmd to create a new session.
    Now type sh
    At the command prompt, type . ./APPS.Sh
    now adrelink.sh force=y "ad adjava.exe"
    You are running adrelink, version 115.85
    Start of adrelink session
    Date/time is Fri Jul 20 20:22:35 PDT 2007
    Log file is d:/oracle/visappl/admin/log/adrelink.log
    Command line arguments are
    "force=y" "ad adjava.exe"
    Done with link of ad executable 'adjava.exe' on Fri Jul 20 20:27:07 PDT 2007
    Done relinking module adjava.exe in product ad
    Done with link of product 'ad' on Fri Jul 20 20:27:07 PDT 2007
    adrelink is exiting with status 0
    End of adrelink session

  • Cannot create the RTP Session

    we have made multithread rtp streaming server and tried to transmit the mpg file in a applet on a web page using tom-cat server.
    we got the following error...
    Cannot create the RTP Session: Local Data AddressDoes not belong to any of this hosts local interfaces
    Failed to initialize the sessions.
    java.security.AccessControlException: access denied (java.lang.RuntimePermission exitVM)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkExit(Unknown Source)
         at java.lang.Runtime.exit(Unknown Source)
         at java.lang.System.exit(Unknown Source)
         at Receive.start(MyPlayer.java:90)
         at MyPlayer.start(MyPlayer.java:30)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    I am really surprised that no one has answer for my query?????

Maybe you are looking for

  • Pdf docs created in pages show only photos, graphics, NO text, Help

    I have tried exporting to pdf, best quality & also "Print" to pdf with same results. The resulting thumbnail on my desktop and the one in "get info". look fine but when the pdf doc is opened only the graphic elements including photos show up. NO word

  • Thumbnails created when I creat document in easy DMS

    Hello, Can somebody help to analyze this problem?  When I creat a document and attach an original file to the document in easy DMS, there will be a thumbnail created meanwhile. This is not expected, and can you tell me why and how to avoid this? Than

  • JMS distributed queue on response

    I have an ALSB business service sending requests to a distributed JMS queue and getting a response back from a distributed JMS queue using the correlation ID correlation pattern. This approach seems to work just fine in my tests, but the ALSB documen

  • Revert to mountain lion

    Hi guys, i upgraded to mavericks os and don't really like it, how can i revert to my previous version of os, do i still have it on my computer? Thanks for any advice. Ela

  • Ipod is not recognizing my passcode, please help!

    This is the second time I have put a passcode lock on my ipod. I just put a passcode on my ipod about 10 minutes ago. I know I have not forgotten what it is because I wrote it down and it is the same password as last time. Not it says "Ipod diasbled"