Failing to use gzstream

Hi,
I try using gzstream. My very first code is just to see how it works.
#include <iostream>
#include <fstream>
#include <gzstream.h>
#include <string>
int main(int argc, char **argv)
std::string file,file2 ;
file = "test" ;
file2 = "test.zip" ;
std::ofstream out(file.c_str(),std::ofstream::binary) ;
out << argv[1] ;
out.close() ;
ogzstream out_zip ;
out_zip.open(file2.c_str()); //,ogzstream::binary) ;
out_zip << argv[1] ;
out_zip.close() ;
return 0 ;
But when compiling
g++ -l gzstream myzip.cpp -Wall
I get the following error message:
/tmp/ccnWQAid.o: In function `main':
myzip.cpp:(.text+0x108): undefined reference to `gzstreambase::close()'
/tmp/ccnWQAid.o: In function `gzstreambuf::gzstreambuf()':
myzip.cpp:(.text._ZN11gzstreambufC2Ev[_ZN11gzstreambufC5Ev]+0x17): undefined reference to `vtable for gzstreambuf'
/tmp/ccnWQAid.o: In function `gzstreambuf::~gzstreambuf()':
myzip.cpp:(.text._ZN11gzstreambufD2Ev[_ZN11gzstreambufD5Ev]+0xc): undefined reference to `vtable for gzstreambuf'
myzip.cpp:(.text._ZN11gzstreambufD2Ev[_ZN11gzstreambufD5Ev]+0x17): undefined reference to `gzstreambuf::close()'
/tmp/ccnWQAid.o: In function `ogzstream::ogzstream()':
myzip.cpp:(.text._ZN9ogzstreamC1Ev[_ZN9ogzstreamC1Ev]+0x8c): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/ccnWQAid.o: In function `ogzstream::open(char const*, int)':
myzip.cpp:(.text._ZN9ogzstream4openEPKci[_ZN9ogzstream4openEPKci]+0x1b): undefined reference to `gzstreambase::open(char const*, int)'
/tmp/ccnWQAid.o: In function `ogzstream::~ogzstream()':
myzip.cpp:(.text._ZN9ogzstreamD1Ev[_ZN9ogzstreamD1Ev]+0x5a): undefined reference to `gzstreambase::~gzstreambase()'
myzip.cpp:(.text._ZN9ogzstreamD1Ev[_ZN9ogzstreamD1Ev]+0xa5): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/ccnWQAid.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x8): undefined reference to `typeinfo for gzstreambase'
/tmp/ccnWQAid.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0xc): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/ccnWQAid.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x10): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/ccnWQAid.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x1c): undefined reference to `typeinfo for gzstreambase'
/tmp/ccnWQAid.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x20): undefined reference to `virtual thunk to gzstreambase::~gzstreambase()'
/tmp/ccnWQAid.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x24): undefined reference to `virtual thunk to gzstreambase::~gzstreambase()'
/tmp/ccnWQAid.o:(.rodata._ZTI9ogzstream[_ZTI9ogzstream]+0x10): undefined reference to `typeinfo for gzstreambase'
collect2: Fehler: ld gab 1 als Ende-Status zurück
So, removing the out_zip.close() line I receive the following error:
/tmp/cc5AZiFe.o: In function `gzstreambuf::gzstreambuf()':
myzip.cpp:(.text._ZN11gzstreambufC2Ev[_ZN11gzstreambufC5Ev]+0x17): undefined reference to `vtable for gzstreambuf'
/tmp/cc5AZiFe.o: In function `gzstreambuf::~gzstreambuf()':
myzip.cpp:(.text._ZN11gzstreambufD2Ev[_ZN11gzstreambufD5Ev]+0xc): undefined reference to `vtable for gzstreambuf'
myzip.cpp:(.text._ZN11gzstreambufD2Ev[_ZN11gzstreambufD5Ev]+0x17): undefined reference to `gzstreambuf::close()'
/tmp/cc5AZiFe.o: In function `ogzstream::ogzstream()':
myzip.cpp:(.text._ZN9ogzstreamC1Ev[_ZN9ogzstreamC1Ev]+0x8c): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/cc5AZiFe.o: In function `ogzstream::open(char const*, int)':
myzip.cpp:(.text._ZN9ogzstream4openEPKci[_ZN9ogzstream4openEPKci]+0x1b): undefined reference to `gzstreambase::open(char const*, int)'
/tmp/cc5AZiFe.o: In function `ogzstream::~ogzstream()':
myzip.cpp:(.text._ZN9ogzstreamD1Ev[_ZN9ogzstreamD1Ev]+0x5a): undefined reference to `gzstreambase::~gzstreambase()'
myzip.cpp:(.text._ZN9ogzstreamD1Ev[_ZN9ogzstreamD1Ev]+0xa5): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/cc5AZiFe.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x8): undefined reference to `typeinfo for gzstreambase'
/tmp/cc5AZiFe.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0xc): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/cc5AZiFe.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x10): undefined reference to `gzstreambase::~gzstreambase()'
/tmp/cc5AZiFe.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x1c): undefined reference to `typeinfo for gzstreambase'
/tmp/cc5AZiFe.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x20): undefined reference to `virtual thunk to gzstreambase::~gzstreambase()'
/tmp/cc5AZiFe.o:(.rodata._ZTC9ogzstream0_12gzstreambase[_ZTV9ogzstream]+0x24): undefined reference to `virtual thunk to gzstreambase::~gzstreambase()'
/tmp/cc5AZiFe.o:(.rodata._ZTI9ogzstream[_ZTI9ogzstream]+0x10): undefined reference to `typeinfo for gzstreambase'
collect2: Fehler: ld gab 1 als Ende-Status zurück
So what wrong with it? I installed it from AUR. I also installed from source by downloading from their webpage, but it doesn't work. Strangely, the make test of the source tarball works fine.
I don't see how to tinker this issue....I hope you can help me finding the problem.
Thanks,
L-K

Well,
I changed the order of g++ flags
g++ myzip.cpp -lgzstream -lz -Wall
and finally it works....hell, I don't understand this...so there is any defined order of how to put g++ parameters? That never occured to me.
L-K

Similar Messages

  • Synchronization from OID to AD failed by using ActiveExport profile

    Hi All
    Synchronization from OID to AD failed by using ActiveExport profile
    and i use copy activeexp.map.master that contains
    DomainRules
    cn=Users,dc=software,dc=raya,dc=corp:CN=Users,DC=twa,DC=com:
    AttributeRules
    # Organizational Unit Mapping
    ou: : :organizationalunit:ou: : organizationalunit
    # Container mapping
    cn: : :orclcontainer: cn: :Container
    #Domain cannot be exported
    #name: : :domain: dc: :domain
    cn:1: :inetorgperson:cn: :User
    cn:1: :inetorgperson:SAMAccountName: :User
    # attribute rule for mapping Active Directory LOGIN id
    #mail: : :person:sn: :User:
    mail: : :person:UserPrincipalName: :User:
    # attribute rule for mapping entry and to create orclUserV2
    # There should be a mapping rule with orcluserv2 objectclass
    # without which the PORTAL may not function properly
    cn: : :inetorgperson:givenname: :person
    givenName: : :person:displayName: :person
    # mail needs to be assigned valid value for default settings ing DAS
    mail: : :inetorgperson:mail: :person
    # The next mapping rule is for synchronizing password from OID to AD.
    # Additional configuration is required. Please refer to DIP documentation
    # for details.
    # NOTE - To synchronize password from OID to AD, uncomment the next rule.
    # userpassword: : :person:unicodepwd: :person:
    # Setting useraccountcontrol to "544" (0x220) means
    # 1) regular account 2) password not required 3) user account is enabled
    cn: : :person:useraccountcontrol: :person:"544"
    mobile: : :inetorgperson:mobile: :organizationalperson:
    # GROUP ENTRY MAPPING RULES
    cn: : :orclgroup:cn: :group:
    # This will work successfully only when cn doesn't have any
    # special characters associated with it.
    cn: : :orclgroup:SAMAccountName: :group:
    uniquemember: : :groupofuniquenames:member: :group:
    when i check the log file i found
    Trace Log Started at Mon Jul 24 07:54:58 EEST 2006
    tampro.Twa.com:389
    rdn value is missing in change record when performing insert operation. Please ensure that required mapping rule is specified in the profile.
    java.lang.NullPointerException
    at oracle.ldap.odip.gsi.ActiveWriter.insert(ActiveWriter.java:286)
    at oracle.ldap.odip.gsi.LDAPWriter.writeChanges(LDAPWriter.java:272)
    at oracle.ldap.odip.engine.AgentThread.mapExecute(AgentThread.java:581)
    at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:306)
    at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:200)
    null
    ActiveExport:Error in Mapping Enginejava.lang.NullPointerException
    java.lang.NullPointerException
    at java.io.Writer.write(Writer.java:126)
    at java.io.PrintStream.write(PrintStream.java:303)
    at java.io.PrintStream.print(PrintStream.java:462)
    at java.io.PrintStream.println(PrintStream.java:599)
    at java.lang.Throwable.printStackTrace(Throwable.java:461)
    at oracle.ldap.odip.engine.ODIException.printStackTrace(ODIException.java:296)
    at oracle.ldap.odip.engine.AgentThread.mapExecute(AgentThread.java:740)
    at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:306)
    at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:200)
    Updated Attributes
    orclodipLastExecutionTime: 20060724075501
    orclLastAppliedChangeNumber: 3833
    orclOdipSynchronizationStatus: Mapping Failure, Agent Execution Not Attempted
    orclOdipSynchronizationErrors: Unknown Error Encountered
    Sleeping for 1 secs
    can any one tell me what can i do ?

    If its a very rare failure, then as you mentioned, you can skip it..

  • BlueTooth [BT] failed during use. Various links say "BT Not Available" - "No BT Hardware Found" etc. Have 3 yr. MacBook Pro Notebook with OSX 10.6.8 with built-in Bluetooth. HELP !

    Bluetooth [BT] failed during use.Menu bar icon remains as does two BT icons in Utilities folder. System Prefs. BT icon totally gone. Remaining icons say "No BT Hardware Found" - " BT Not Available" etc. Have 3 yr. old MacBook Pro Notebook with OSX 10.6.8 & built-in  Bluetooth. [ Close by iPad's BT remains functional. ]

    Yeah the Bluetooth hardware has failed and needs to be replaced. there is nothing you can do except replace the BT chip. Take it to Apple.

  • Failed to use command "getElementAttribute" in webDrvier.

    Hi Microsoft guys,
    I have written a practice to learn IEDC webDriver (based on the webdriver C# demo)
    Everything worked ok but failed during using 'getElementAttribute'
    WorkFlow:
    1. open "http://www.bing.com" - passed
    2. find element for "input[name='go']" - passed.
    3. find element attribute "class" for #2 element by using "getElementAttribute" command
    always response will be like
    Response received: {"response":{"sessionId":null,"status":"unknown error","value":"Parsing error"}}
    Q:
    As it is a parsing error, i doubt i write the wrong joson for getElementAttribute
    But i checked the msdn, i don't know where i was wrong.
    Could your guys help to have a check on my code ?
    http://msdn.microsoft.com/en-us/library/ie/dn768404%28v=vs.85%29.aspx
    Source code
               //Execute a "get" command - Navigate to http://bing.com
                const string getCommand = @"
                    ""command"": {
                        ""name"": ""get"",
                        ""parameters"": {
                            ""url"": ""http://www.bing.com""
                        ""sessionId"": ""{sessionId}""
                response = ExecuteCommand(getCommand, strSessionId);
                //"Page Loading Strategies" are not currently supported
                //"get" commands will return immediately and not wait for the page to load
                //The 20-second polling is added to wait for the page to load
                //This issue will be addressed and fixed in the next IEWebDriver release.
                WaitForPageToLoad(20, strSessionId);
                //Execute a "findElement" command - Find the Bing search field
                const string findElementCommand = @"
                    ""command"": {
                        ""name"": ""findElement"",
                        ""parameters"": {
                            ""locator"": ""css selector"",
                            ""value"": ""input[name='go']""
                        ""sessionId"": ""{sessionId}""
                response = ExecuteCommand(findElementCommand, strSessionId);
                //Retrieve the ElementId from the response
                try
                    strElementId = response["response"]["value"]["id"];
                catch (Exception e)
                    HandleError("Exception thrown when trying to access strResponse[\"response\"][\"value\"][\"id\"] from the response.", e);
                const string getAttrCommand = @"
                    ""command"": {
                        ""name"": ""getElementAttribute"",
                        ""parameters"": {
                            ""elementId"": ""{elementId}"",
                            ""name"":""title"",
                        ""sessionId"": ""{sessionId}""
                response = ExecuteCommand(getAttrCommand, strSessionId, strElementId);

    Hi MartinLiao,
    This forum is to discuss HTML, CSS and Javascript programming for IE, I think you are posting on wrong forum. I’m not familiar with WebDriver API, so what I can do is to provide code sample for WebDriver. Please refer to the following link to download it.
    http://code.msdn.microsoft.com/windowsdesktop/Internet-Explorer-02ac106f.
    Thank you for understanding.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [svn:bz-4.x] 16147: Fix a few more regression tests on the 4. x branch that were failing when using Spring integration.

    Revision: 16147
    Revision: 16147
    Author:   [email protected]
    Date:     2010-05-17 06:18:38 -0700 (Mon, 17 May 2010)
    Log Message:
    Fix a few more regression tests on the 4.x branch that were failing when using Spring integration.
    Modified Paths:
        blazeds/branches/4.x/qa/apps/qa-regress/WEB-INF/src/runtimeconfig/remoteobjects/ROMessage Destination.java
        blazeds/branches/4.x/qa/apps/qa-regress/WEB-INF/src/runtimeconfig/remoteobjects/RuntimeCo nfigurator.java
        blazeds/branches/4.x/qa/resources/webtier/flex_sdk_4/flex-config.xml

    Well heres my story. I tried kde4 from extra the last 3 weeks and I like it. I have used xfce for the past 3 years, previous to that gnome. Tried kde but never really liked it. Now I am only using workspace, base, mutimedia and graphics.
    Here is what I like.
    1- Dolphin, awesome I have used thunar a while and it is great but I love splitview, and fish for ssh (which has been around a while I know), and the ability to mount other partitions on my hdd with a click no fstab entry or nothin'.
    2-Pretty, I've used xfce with built in compositor an love the snappiness. But I like desktop grid with kde4 and flipswitch. Compiz-fusion is cool but I prefer not to use I'll take what the DE gives. Plasmoid are cool too.
    3- Gwenview is nice too. Use to use gqview, but thumnails are nice.
    Looking forward to or lacking
    1- Keyboard shortcuts, Yes xbindkeys is there but if I have a DE I want it to do it. They just don't work now.
    2- kde4 has windows specific settings, but I can't set the opacity for particular windows , doesn't work.
    3- Ram of course is much higher in kde4, but maybe I'm getting old I just don't care as much.

  • Fail to use Jeditorpane to display a text with big5 encoding

    Hi All,
    I fail to use Jeditorpane to display a text with big5 encoding correctly.
    It only show machine code.
    I am using jre1.6.0_17. Yet it works well with earlier version of jre like jre 1.6.0_15, and jre 1.6.0_16
    bcpscsin

    bcpscsin wrote:
    ..I can find it in javax.swing
    FFS! It is JEditorPane, not Jeditorpane. Count the freaking upper case letters in both of those!
    Convince yourself by following these two URLs
    [http://java.sun.com/javase/6/docs/api/javax/swing/JEditorPane.html] -> produces a web page.
    [http://java.sun.com/javase/6/docs/api/javax/swing/Jeditorpane.html] -> "Page Not Found"
    My point is - do not type 'something like' the class name - get it right so we can be sure. Programming is a technical business and programmers need to be very accurate. It is even more important to be very accurate when asking for help on an forum. People have very little time to 'hold your hand' about the correct spelling and capitalisation of class names - or anything else for that matter.
    You still have not answered my question about the bug database.

  • "Failed to use non CLS compliant type" when iterating SPLimitedWebPartManager.WebParts

    Hi,
    I having trouble updating a property of a custom web part with PowerShell, that is installed on a client's environment. The custom web part has a property called RowLimit for which I need to set an integer value. 
    Basically what my script does is, it gets the page with the web part (SPFile), then I get all the web parts on the page using the SPWeb.GetLimitedWebPartsManager function. Then I iterate all web parts in the manager using a 'foreach' like below:
    $webpartmanager = $web.GetLimitedWebPartManager($page.Url, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    $webParts = $webpartmanager.WebParts
    foreach($webPart in $webParts) {
    UpdateWebPart $webPart $webPartType $webPartTitle $xmlReader
    Now, the first few iterations works fine, I get the OOTB web parts and their properties, but as soon as I hit the custom web part I get this error:
    The field/property: "RowLimit" for type: "OurWebPart.WebPart" differs only in case from the field/property: "rowLimit". Failed
    to use non CLS compliant type.
    So from what I've found online is that the web part possibly has two properties, a 'rowLimit' and a 'RowLimit' (which is legal in C#). And I've thought of ways to get around this when trying to update the property, but I'm not even getting to the point of
    making the update.
    Unfortunately I don't have access to the source code for the web part, and even if I did we don't have the option of making it CLS compliant and redeploying - we need to work with what is there.
    Can anyone please shed some light as how to get around this problem? 
    Thanks!

    Hi,
    Thanks for your sharing.
    What’s more, per my knowledge, the RowLimit property is the view pagination size for the web part.
    There is an article about changing the property, you can refer to it.
    http://sharepointblogbyshri.blogspot.com/2013/10/sharepoint-2010-edit-pagination-size.html
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentCompon

    JDev 11.1.1.2.0
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichInputText [oracle.adf.RichInputText]
    the problem is with x220.getProperty("_parentId") its coming as null, why only someone from Oracle can tell this,
    AdfRichUIPeer.GetDomNodeForCommentComponent= function(x220)
    *var x221=x220.getProperty("_parentId");*
    var x222="compS|" + x220.getClientId();
    var x223=AdfAgent.AGENT.getElementById(x221);
    if (x223)
    var x224=x223.firstChild;
    if (x224)
    return AdfRichUIPeer._getCommentNodeForComponent(x224,x222);
    var x225=AdfPage.PAGE.getDomDocument().body;
    var x226=AdfRichUIPeer._findCommentNodeWithContent(x225,x222);
    if (x226!=null)
    return x226;
    AdfAssert.assertionFailed(
    "Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent." + x220,1);
    return null;}

    Please post your question on the internal Oracle Forums - No one on OTN has access to drop builds.

  • Assertion failed: Incorrect use of AdfRichUIPeer on adf tree

    Hi all,
    I am using adf tree component as given below.
    <af:tree value="#{bindings.QACodesParentVO.treeModel}"
    var="node"
    selectionListener="#{QAReasonCodesBean.denialCodesRowSelection}"
    rowSelection="single" id="t1"
    binding="#{QAReasonCodesBean.t1}"
    contentDelivery="immediate">
    <f:facet name="nodeStamp">
    <af:outputText value="#{node}" id="ot1">
    <af:showPopupBehavior popupId="p1"
    triggerType="contextMenu"
    alignId="ot1"/>
    </af:outputText>
    </f:facet>
    <f:facet name="contextMenu">
    <af:popup id="p1">
    <af:menu text="menu 1" id="m1">
    <af:commandMenuItem actionListener="#{QAReasonCodesBean.createItem}"
    disabled="#{!bindings.Create.enabled}"
    id="cmi3"
    text="#{viewcontrollerBundle.CREATE_ITEM}"/>
    <af:commandMenuItem disabled="#{!bindings.Delete.enabled}"
    id="cmi4"
    text="#{viewcontrollerBundle.DELETE_ITEM}">
    <af:showPopupBehavior popupId="::p5"
    triggerType="action"/>
    </af:commandMenuItem>
    </af:menu>
    </af:popup>
    </f:facet>
    </af:tree>
    This tree giving the following error when I am collapsing the expanded the tree nodes. Not in all cases only in few cases.
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichOutputText [oracle.adf.RichOutputText]
    id=pt21:r1:1:t1:2:ot1
    StackTrace:
    anonymous(x217)
    [AdfRichOutputText [oracle.adf.RichOutputText] id=pt21:r1:1:t1:2:ot1]
    anonymous(x248)
    [AdfRichOutputText [oracle.adf.RichOutputText] id=pt21:r1:1:t1:2:ot1]
    anonymous()
    anonymous(x367)
    [[object HTMLTableElement]]
    anonymous(x395)
    [[object HTMLTableElement]]
    anonymous(x302)
    [[object HTMLTableElement]]
    anonymous(x309,x310,x311)
    [[object HTMLTableElement],1,(empty)]
    anonymous(x481,x482,x483,x484)
    [[object HTMLTableElement],6,(empty),(empty)]
    anonymous(x88,x89)
    [[object HTMLDivElement],[object HTMLDivElement]]
    anonymous(x112,x113,x114)
    [AdfRichTree [oracle.adf.RichTree] id=pt21:r1:1:t1,[object HTMLDivElement],[object HTMLDivElement]]
    anonymous(x784,x785,x786,x787,x788)
    [[object Element],,(empty),,[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object
    HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object
    HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object
    HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object
    HTMLDivElement],[object HTMLDivElement],[object HTMLDivElement],[object HTMLFormElement],[object HTMLDivElement],(empty)]
    anonymous(x730,x731,x732,x733,x734)
    [[object Element],true,(empty),(empty),[object Object]]
    anonymous(x712,x713)
    [[object XMLDocument],[object Object]]
    anonymous(x617)
    [AdfDataTransferRequestEvent Object, status=4, context=[object Object], request=AdfXMLRequest Object completionState:4]
    anonymous(x7,x8)
    [AdfDhtmlPage Object,AdfDataTransferRequestEvent Object, status=4, context=[object Object], request=AdfXMLRequest Object completionState:4]
    anonymous(x83)
    [AdfXMLRequest Object completionState:4]
    anonymous(x87)
    [AdfXMLRequest Object completionState:4]
    anonymous()
    anonymous()
    [[object Event]]
    I am I doing any thing wrong in the tree code. How to resolve this issue.
    Regards
    Gayaz

    Hi, did you solved this ?

  • Assertion failed: Incorrect use of AdfRichUIPeer....

    Dear all,
    i have a table which its partial trigger is set to a button and that button's partial submit is set to true...
    now i got that error when trying to navigate between the input texts when the table is in the insertion mode -->
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichSelectOneChoice [oracle.adf.RichSelectOneChoice] id=r1:2:t1:17:soc1
    StackTrace:
    I searched the forum and changed the partial submit of the button to false and everything went fine with me , but am not sure why the partial submit of the button caused that problem ?
    Thanks in Advance,
    Lama
    Edited by: Delta on Sep 28, 2010 5:37 AM

    Hi,
    I too have come across this kind of exception.
    Generally we get this error message, when the adf tags are not used properly. I mean the syntax. In my case, i got this exception because of using render property.
    The page was supposed to render a taksflow from the list of 3 taskflows based on the value selected from a selectOneChoice. With this implementation, i got this error. Later i used visible property and then it starts working fine.
    Hence would like to have a look at your page/fragments. Can you post your code here.
    Thanks,
    Kiran Konjeti

  • IFCORE-1565: The Dgraph could fail when using a relevance ranking strategy.

    Hi,
    I just saw the release notes for Endeca 6.2.2 and read this bug:
    IFCORE-1565: The Dgraph could fail when using a relevance ranking strategy.
    Is there someone who could provide some more information on this bug? What is it and when does it occur? Reading the word 'could' would suggest a kind of unpredictability?
    Thanks,
    Maarten

    The known trigger for the bug was doing relrank on a query that contained multiple text searches.

  • Fail to use ODM in Jdeveloper 10g

    I can build model using Jdeveloper 9301,but fail when using Jdeveloper 10g.
    The error message show:
    java.lang.NoSuchMethodError: oracle.jdeveloper.library.JLibraryList[] oracle.jdeveloper.library.JLibraryManager.getAllLibraryLists()
         at oracle.dmt.dm4j.addin.DM4JAddIn.findLib(DM4JAddIn.java:716)
         at oracle.dmt.dm4j.addin.DM4JAddIn.addDM4JLibsToProject(DM4JAddIn.java:753)
         at oracle.dmt.dm4j.addin.ClassificationModelBuildAddIn.invoke(ClassificationModelBuildAddIn.java:444)
         at oracle.ide.WizardManager.invokeWizard(WizardManager.java:495)
         at oracle.ide.WizardManager$1.run(WizardManager.java:549)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:449)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    The required jar files have been copied into %JDEV_ORACLE_HOME%\lib\ext.
    What should I do?

    Hi,
    JDeveloper 10g changed the AddIn api that DM4J uses, consequently it will fail.
    DM4J 9.0.4 Beta(release 2) is certified for JDeveloper 9.0.3.3. It will also work in JDeveloper 9.0.4.
    The ODM Client 10g will be the proper client to use in association with JDeveloper 10g. We will announce when the 10g client will be available.
    Thanks, Mark

  • Develop module disabled and requires renewal of my membership. My membership is up to date. All solutions so far have failed. Using OS X 10.9.4

    Develop module disabled and requires renewal of my membership. My membership is up to date. All solutions so far have failed. Using OS X 10.9.4
    Any more ideas please?

    If no help from users in the forum, consider Adobe technical support.

  • XML Publisher Report Fails While using Pivot Table in R12 Oracle EBS

    Hello All,
    Need your help. I am trying to create a report with a Pivot table. I have created the .rtf file using the Oracle BI Publisher Template Builder for word 10.1.3.4.1. the data comes correctly in preview but when i register it in EBS and run the concurrent program it competes in warning and no output is displayed.
    The error message looks like as follows.
    [9/3/10 4:03:17 PM] [19934:RT444621] Executing post-processing actions for request 444621.
    [9/3/10 4:03:17 PM] [19934:RT444621] Starting XML Publisher post-processing action.
    [9/3/10 4:03:17 PM] [19934:RT444621]
    Template code: XXECOHCGEN
    Template app: XXECO
    Language: en
    Territory: 00
    Output type: EXCEL
    [9/3/10 4:03:31 PM] [19934:RT444621] Output file was found but is zero sized - Deleted
    [9/3/10 4:03:31 PM] [UNEXPECTED] [19934:RT444621] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
         at java.lang.reflect.Method.invoke(Method.java:599)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:611)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:239)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5936)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:302)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:176)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'crosstab' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
         ... 17 more
    would appreciate some pointers to fix this issue.
    Regards,
    Abhijeet K
    Edited by: Abhijeet K on Sep 3, 2010 8:10 AM

    HI, was there a Solution Ever found for this post other than the Workaround.
    I am at the Same issue now, Any Valuable inputs will Help me finish my Report ASAP, becos currently this is my only Show stopper
    we have Oracle Apps R12 realease 12.1.3  we use XMLpublisher built in R12
    The issue i have is .
    I created a XMLPublisher Report using PIVOT TABLE i would like to have my output to be in Excel, When i Preview it works fine, when i execute via Concurrent Program it gives the Following Log file
    XXTPC Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    TPC_ITEM_COUNT_RPT module: TPC ITEM COUNT RPT
    Current system time is 25-JUN-2012 11:00:39
    XDO Data Engine Version No: 5.6.3
    Resp: 21676
    Org ID : 101
    Request ID: 2149483
    All Parameters: report_name=RUN BY ORDER TYPE:org_name=HQF:org_choice=TPC US:item_selection=1001:order_type=k-us:pstatus=entered,waved,notwaved,shipped:transit_days=:first_receipt_date=01-jun-2012:last_receipt_date=22-jun-2012
    Data Template Code: TPC_ITEM_COUNT_RPT
    Data Template Application Short Name: XXTPC
    Debug Flag: N
    {first_receipt_date=01-jun-2012, org_choice=TPC US, item_selection=1001, report_name=RUN BY ORDER TYPE, pstatus=entered,waved,notwaved,shipped, org_name=HQF, last_receipt_date=22-jun-2012, order_type=k-us, transit_days=}
    Calling XDO Data Engine...
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    29148
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 2149483 on node HQTERPAS1LX at 25-JUN-2012 11:00:51.
    Post-processing of request 2149483 failed at 25-JUN-2012 11:00:52 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 25-JUN-2012 11:00:52
    I have requested my DBA to get me the OPP file..
    Thanks in advance for any solution.

  • SQL Agent Job failing - not using credentials in the config file for Data source

    Hi
    We have an SSIS pkg, that is secheduled as SQL Agent job using proxy account. The pkg contanins data source for connecting different SQL servers and the proxy account do not have access to the external DBs. The data source credentials are stored in the Config
    file.
    Why the job is not using the credentials in the config file and try to use the proxy account and failing.
    Do the proxy account need access to all the external dbs in the pkg, and then what is the purpose of the config file.
    I am sorry, i am not SSIS person trying to understand. If any one can explain tha will be great!!
    Thank you!
    VR

    Please take a look at these URLs:
    Schedule a Package by using SQL Server Agent
    SSIS package does not run when called from a SQL Server Agent job step
    Cheers,
    Saeid Hasani
    Database Consultant
    Please feel free to contact me at [email protected] as well as on Twitter and Facebook.
    [My Writings on TechNet Wiki] [T-SQL Blog] [Curah!]
    [Twitter] [Facebook] [Email]

Maybe you are looking for

  • Dialog boxes freezing captivate

    Captivate 7 appears to work fine... unit a dialog box displays. Such as "do you want to save" or "the project has many unused items,,, you can delete them." When a dialog box displays Captivate 7 totally freezes. If i mouse over the Save, or OK or ot

  • Changing the bank recon setup

    Hi, we have to change one of the Account symbol and asociated account for the posting rules for electronic bank statements. what other places do I need to make changes along with this..? do routing to a different account affects the auto reconciliati

  • PROBLEM to give condition in ADF table column and on pressing enter

    Hi, 1st problem: ======== I have 1 ADF input text , <af:inputText id="testinp" contentStyle="width:200px" value="#{adfobj.input1}" /> say user is trying to enter any value , immediately if user presses "ENTER KEY" inside input text only i should invo

  • Safari 5.0.4 sluggish

    Hi there, Has Safari's performance started to feel occasionally sluggish to you? By this I don't mean loading webpages, but rather general application slowness, spinning balls, hanging, etc. Websites seem to load just fine. No problems there. It's th

  • Type-tool issue

    Hello, I have just recently downloaded CS6 and I had some problems while working on it. Leaving aside the fact that Save for web is not working, now I have some issues with the type tool. Whenever I type something the punctuation is going in front of