Embedded object JPQL query failing!!

Hi,
   I am getting following query compilation error while starting the server. Not finding issues in my model classes.
   Kindly let me know the mistakes I made in the query.
Exception [EclipseLink-8030] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.JPQLException
Exception Description: Error compiling the query [TempTransactionTransformAuditQuery:
select obj from TempTransactionTransform obj where obj.tempTransactionTransformPK.altIdType= :altIdType and obj.tempTransactionTransformPK.actualValue= :actualValue and obj.tempTransactionTransformPK.altenateValue= :altenateValue], line 1, column 82: unknown state or association field [altIdType]
of class [com.test.model.TempTransactionTransformPK].
My Classes are:
@Entity
@Table(name="T_TRANSACTION_TRANSFORM")
public class TempTransactionTransform{
    /** Creates a new instance of TempTransactionTransform */
    public TempTransactionTransform() {
    @Id
    @Embedded
    @AttributeOverrides({
    @AttributeOverride(name = "altIdType", column = @Column(name="ALT_ID_TYPE")),
    @AttributeOverride(name = "altenateValue", column =  @Column(name="ALT_FIELD_VALUE")),
    @AttributeOverride(name = "actualValue", column =  @Column(name="ACTUAL_FIELD_VALUE"))
    public TempTransactionTransformPK tempTransactionTransformPK;
    @Column(name="FIELD_NAME")
    protected String fieldName;
    @Column(name="ALT_ID_SUB_TYPE")
    private String altIdSubType;
    @Column(name="TRANS_NARRATION")
    private String transNarration;
    @Column(name = "AMC_CODE")
    protected String amcCode;
    public TempTransactionTransformPK getTempTransactionTransformPK() {
        return tempTransactionTransformPK;
    public void setTempTransactionTransformPK(TempTransactionTransformPK tempTransactionTransformPK) {
        this.tempTransactionTransformPK = tempTransactionTransformPK;
    public String getFieldName() {
        return fieldName;
    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    public String getTransNarration() {
        return transNarration;
    public void setTransNarration(String transNarration) {
        this.transNarration = transNarration;
  public String getAmcCode() {
        return amcCode;
  public void setAmcCode(String amcCode) {
  this.amcCode = amcCode;
==================================================================
@Embeddable
public class TempTransactionTransformPK{
    public TempTransactionTransformPK() {
    public String altIdType;
    public String altenateValue;
    public String actualValue;
    public TempTransactionTransformPK(String altIdType,String altenateValue,String actualValue){
         this.altIdType = altIdType;
         this.altenateValue = altenateValue;
         this.actualValue = actualValue;
  public String getAltIdType() {
       return altIdType;
  public void setAltIdType(String altIdType) {
       this.altIdType = altIdType;
  public String getAltenateValue() {
       return altenateValue;
  public void setAltenateValue(String altenateValue) {
       this.altenateValue = altenateValue;
  public String getActualValue() {
       return actualValue;
  public void setActualValue(String actualValue) {
       this.actualValue = actualValue;
Thanks,
Mahendran..

Hi,
as Mitesh already pointed out, comparison of embedded instances is not supported by the Java Persistence query language. The BNF allows comparing entitry instances, but not embeddeds. The only thing you can do in a query with an embedded instance is navigate through it (see chapter 4.4.4 Path Expressions). So your first query comparing the fields of the embedded instead of the embedded itself is the right thing to do.
Regards Michael

Similar Messages

  • Keep the record in the view object if deletion failed.

    I have a view object which is based on the entity object, when I am trying to delete a row it failed because it has a child record associate with. I know the row is not delete from the database, but the record is deleted fromt the view.
    How to keep the record in the View object if delete failed?

    Hi,
    the row is not delete from the database,refresh the view . re-execute query and the view show the row

  • How do I change colour profile of embedded objects?

    One of my Illustrator CS6 documents was intially created some time ago without paying much attention to colour management issues. I am now trying to put that right and have assigned the document a profile of Adobe RGB (i998). However, each time I open it I am warned that 'The document has an embedded color profile that does not match the current RGB working space'. It also says that the embedded profile is sRGB, while my working space is Adobe RGB. I get this message three times and am assuming that it refers to embedded objects.
    So far, I have failed to find a permanent solution. Do I have to reimport all items that may have a colour profile, having first ensured that they are tagged as AdobeRGB?
    David

    Hi Monika,
    First of all, let me apologise for using the word 'embedded' instead of 'linked'. I was distracted by the fact that the doc in question (an award certificate) is embedded in a Microsoft Access report. That being said, I have now found that all the linked logo images in this Illustrator doc are GIFs or TIFs that don't accept a colour profile (and thus cannot be the trigger for my profile warnings).
    I use a Canon 5D and (rightly or wrongly) have chosen to standardise on a CS working space of Adobe RGB. However, your reference to digital photos is not relevant in this case as there are none in the document. My only concern is to make this document match my working space and no longer trigger irritating profile mismatch warnings. My overall objective is to ensure that the colours will all be correct when it goes to a printer (one of our sponsors, a UK colour paper manufacturer, will be printing the final certificates from a PDF file).
    David

  • Is there a way to force a View Object to query the database always?

    Dear All,
    Is there a way to force a view object to always scan the database table to read the latest data?
    Here's my use case.
    I have a page that loads data then I have a button which executes the following code.
    viewObject.setApplyViewCriteriaName("SampleCriteria");
    viewObject.setNamedWhereClauseParam("arg1", "test");
    viewObject.executeQuery();
    RowSetIterator it = viewObject.createRowSetIterator(null); 
    while(it.hasNext()) {
         /* More Code */
    }Suppose after page load, I edited some row in the table and then I clicked the button. I notice that my edited row
    was not reflected in the query.
    I am not sure but is there some configuration to check so that when the viewobject executes it will always query the data
    from the table?
    I am thinking that there is some level of caching and I want to disable it. If I restart my application, I notice that it is able to read the latest data.
    JDEV 11.1.1.5

    By default a view object performs its query against the database to retrieve the rows in its resulting row set. However, you can also use view objects to perform in-memory searches and sorting to avoid unnecessary trips to the database.
    The view object's query mode controls the source used to retrieve rows to populate its row set. For more details please refer: http://docs.oracle.com/cd/B31017_01/web.1013/b25947/bcadvvo005.htm
    Also, see if this helps: setQueryMode for secondary rowSet not working

  • Error : Catalog object schema validation failed in OBIEE 11.1.1.5

    Hi all ,
    Facing the below error while accessing few reports present in a folder (Voice Tab) . But , able to access other reports present in the same folder .
    Catalog object schema validation failed: /users/weblogic/sayak/TPLAN reports/Voice Tab/Net revenue per minute (ILD\/NLD)
    Error Details
    Error Codes: AGFIXBO2:EIRWWH9E
    Location: saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Also while try to edit the analysis (Net revenue per minute (ILD\/NLD) from catalog , i am getting the above error .The Reports were fine till yesterday , What could be the issue ?
    Thanks

    Hi Devarasu ,
    Yeah .. I'm aware of this bug of 11.1.1.5 , but I'm puzzeled by the sudden impact of it . i.e , It didn't gave me the error while creating/editing the file yesterday and looked fine on dashboard as well .
    However , If there's no alternative other than applying patch , then please let me know the patch ID .
    And applying this patch means , just overwriting some configure files in the OBIEE home folder sructure ? or somthing else ?
    Thanks

  • Trex error: No embedded object found in document (Errorcode 14037)

    Hi,
    we have following problem with our crawler:
    in the crawler 50 % of documents are returning the error "No embedded object found in document (Errorcode 14037)" and are not displayed in the trex monitor. All other documents are indexed correctly an are in the trex monitor in "OK".
    We are on Stack 14 Patch 4.
    Regards,
    Gerhard

    Hi Gerhard,
    Typically, errors codes 14XXX are related to filter problems during the preprocessing of documents. Details about TREX error codes are explained in the help portal and in the note 898404.
    Unfortunatelly, filter problems could not be easily fixed. However, a good starting point would be to use a newer TREX release. If this doesnt help please open a Customer Message and attach documents, which causes the mentioned error. Please attach only not sensible documents!
    Kind regards,
    Roland

  • Embedded objects when converting a word document

    Hello ng,
    a word document contains other documents as embedded objects shown as a symbol. When converting this document with Acrobat Standard or Professional the symbols are converted as non functional picture. So the embeddes document can't be opened.
    So here's my question: Is it possible to convert embedded objects shown as symbol to functional embedded object within PDF?
    Example is shown below.
    Many thanks!
    Susanne

    It cannot be done. For all intents remember that creating the pdf is akin to printing the document out. If you were to print document to your printer, you would not expect to be able to click on the paper to launch the object. Now it is true that one can have things like hyperlinks preserved, but specialized coding was created for this functionality and is not available in all applications nor on all platforms. However, your wish is a reasonable feature request. I suggest you might ask here:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Getting Rest Query failed error.

    Hi,
    I have integrated my app with facebook. I am able to post my reviews and comments on FB but when I click on link in FB post, its redirectign me to the required url but not loading the review.
    Can any body tell me why this happens.
    here are logs:
    2013-05-22 18:29:17,281 [http-bio-8090-exec-10] ERROR com.fatwire.wsdk.rest.WidgetSDKResource - Failed to execute method feed in widget wsdk.reviews
    com.fatwire.cos.ex.CoSServerException: com.fatwire.cos.ex.CoSServerException: REST query failed
         at com.fatwire.cos.core.jpa.query.CoSJpaQuery.getSingleResult(CoSJpaQuery.java:161)
         at com.fatwire.cos.records.RecordManager.countRecords(RecordManager.java:462)
         at com.fatwire.wsdk.cos.records.processors.feed.RecordListReadProcessor.calculatePageNo(RecordListReadProcessor.java:229)
         at com.fatwire.wsdk.cos.records.processors.feed.RecordListReadProcessor.getPageNo(RecordListReadProcessor.java:186)
         at com.fatwire.wsdk.cos.records.processors.feed.RecordListReadProcessor.process(RecordListReadProcessor.java:62)
         at com.fatwire.cos.core.monitor.MonitoredMethodInterceptor.invoke(MonitoredMethodInterceptor.java:68)
         at com.fatwire.wsdk.pipeline.impl.PipelineImpl.execute(PipelineImpl.java:60)
         at com.fatwire.cos.core.monitor.MonitoredMethodInterceptor.invoke(MonitoredMethodInterceptor.java:68)
         at com.fatwire.wsdk.rest.WidgetSDKResource.executeWidgetMethod(WidgetSDKResource.java:183)
         at sun.reflect.GeneratedMethodAccessor255.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
         at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$TypeOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:185)
         at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
         at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)
         at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:416)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:537)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:699)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
         at com.google.inject.servlet.ServletDefinition.doService(ServletDefinition.java:263)
         at com.google.inject.servlet.ServletDefinition.service(ServletDefinition.java:178)
         at com.google.inject.servlet.ManagedServletPipeline.service(ManagedServletPipeline.java:91)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:62)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.comments.service.filters.RestFilter.doFilter(RestFilter.java:141)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.i18n.ResourceFilter.doFilter(ResourceFilter.java:45)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.sso.SSOContextFilter.doFilter(SSOContextFilter.java:64)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:219)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.sso.GeneralPreparationsFilter.doFilter(GeneralPreparationsFilter.java:68)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.util.web.StartupGuardFilter.doFilter(StartupGuardFilter.java:42)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.ManagedFilterPipeline.dispatch(ManagedFilterPipeline.java:118)
         at com.google.inject.servlet.GuiceFilter.doFilter(GuiceFilter.java:113)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
         at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1002)
         at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:585)
         at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: com.fatwire.cos.ex.CoSServerException: REST query failed
         at com.fatwire.cos.core.jpa.cmd.wem.WemCommandManager.execREST(WemCommandManager.java:356)
         at com.fatwire.cos.core.jpa.cmd.wem.WemCommandManager.execGET(WemCommandManager.java:192)
         at com.fatwire.cos.core.jpa.cmd.wem.WemCountQueryCommand.findResult(WemCountQueryCommand.java:79)
         at com.fatwire.cos.core.jpa.cmd.wem.WemCountQueryCommand.executeSingle(WemCountQueryCommand.java:68)
         at com.fatwire.cos.core.monitor.MonitoredMethodInterceptor.invoke(MonitoredMethodInterceptor.java:68)
         at com.fatwire.cos.core.jpa.query.CoSJpaQuery.getSingleResult(CoSJpaQuery.java:156)
         ... 104 more
    Thanks in advance.
    Thanks,
    Nelash jindal

    Hi There,
    Please try the below steps and check if it helps :
    Go to C:/programfiles/Adobe/Adobe Captivate(version)/AdobeCaptivate.ini           
    Open the file with notepad and add the line Use32BitJVMForPublish=1 
    Save it and Try to publish the project .
    Regards,
    Mayank

  • The following query failed: GetUserProfileByName - with the wrong username

    I have 2 users (out of 800), who run into this issue on occasion. Their username is 'fccs\user1' in the profile db, and in every UserInfo table in the system. But when they try to go to certain sites or open an infopath form, this error gets thrown:
    The following query failed: GetUserProfileByName (User: FCCS\[email protected], Form Name: Template, IP: , Connection Target: , Request: http://fccsteams/sites/DataManagement/Tasks/Lists/Tasks/Folders1.aspx?RootFolder=/sites/DataManagement/Tasks/Lists/Tasks/2013/11&, Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-08-05T23:14:53:458Z Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Operation Failure ---> Access Denied: To create a user profile, you must be an administrator, or create your own profile and have personal features rights.  UnauthorizedAccessAccess Denied: To create a user profile, you must be an administrator, or create your own profile and have personal features rights. The remote server returned an error: (500) Internal Server Error.)
    Notice how the username is now the entire email address and not just the username. I have no idea why it thinks that that is their username. Any ideas?

    Hi,
    According to your post, my understanding is that you got query failed error.
    Melick had written a blog said that the form access the user profile web service (Userprofileservice.asmx) using  UDC
    file.
    You can check whether the UDC connection was still pointing to root site.
    You can change this file to match with the sub site collection. Otherwise there may be a cross domain access issue.
    There are similar threads for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/9c2f7f4c-0fa9-43bd-94b1-1d7075e35841/5566-error-with-getuserprofilebyname-and-infopah-browser-forms-using-claims-based-authentication
    http://social.msdn.microsoft.com/Forums/en-US/49753330-40c0-4327-9a9b-2c3304a74e67/sharepoint-infopath-and-populating-forms-with-ad-data?forum=sharepointcustomizationlegacy
    Thanks & Regards,
    Jason 
    Jason Guo
    TechNet Community Support

  • Custom Renderer / Embedded Objects

    In looking over the developer's guide, it suggests that one would have to create a custom XML renderer to handle deep structured documents (i.e., embedded objects). Is my reading of the renderer chapter correct?
    Thanks in advance.

    Check out the technical brief on a XSL Renderer sample application at:
    http://technet.oracle.com/products/ifs/

  • Adding objects into query Panel and no display report

    Hi Folks,
    I had an issue with WEBI .
    Iam running the report with few objects at first time , all objects are displayed in the  table format of report.
    I saved and closed the report .
    Later  i opened the report and edited the report by adding new objects into query panel and runing it.
    but this time  i did not find the new objects in display table in report as like DeskI.
    If we find the solution for this , it will be great help to me.
    Thanks
    Mahesh

    The objects will be in the data tab. Objects are not automatically added to your report in Webi, they are made available in the data panel, and you can choose which objects to add.

  • WSA - Report Query Failed

    Hi all,
    Recently, I'm receiving these two alerts from one WSA S370:
    Report Query Failed
          query_id: wsa_monitor_overview_web_proxy_summary
          data_source: WSASimpleTotalRDS
          error: <type 'type'> ('egg/command_client.py send_message|555', "<class 'Commandment.DaemonUnresponsiveError'>", 'S370B.NAME.net: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    AND
    Report Query Failed
          query_id: wsa_monitor_overview_clients_by_blocked_transactions
          data_source: WSACommonRDS
          error: <type 'type'> ('egg/command_client.py call|238', "<class 'reporting.query.exceptions.DatabaseQueryFailure'>", '', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|251] [reportdatasource/CounterReportDataSource.py _run_api_query|482] [query/client.py time_merge_query|454] [query/client.py _call|235] [egg/command_client.py call|238]')
    The code I'm using is 7.1.1-038
    I started receiving the alerts only after upgrading to this code. Have you noticed something similar?
    Thanks a lot for your help!!!
    Fernando

    Hello Everyone,
    I am in Australia (Melbourne) and i am using ironport s160 web security appliance version: 7.1.2-80. Reecently i have started receiving the following warning from ironport proxy.
    The Warning message is:
    Report Query Failed
                    query_id: wsa_monitor_overview_malware_categories
                    data_source: WSACommonRDS
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_suspect_transactions_detected
                    data_source: CounterReportDataSource
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|272] [reportdatasource/CounterReportDataSource.py _parse_api_results|506] [reportdatasource/CounterReportDataSource.py _parse_interval_result_set|525] [query/result.py next|112] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_suspect_transactions_summary
                    data_source: WSASimpleTotalRDS
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_top_application_types
                    data_source: CounterReportDataSource
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_top_url_categories
                    data_source: CounterReportDataSource
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Product: IronPort S160 Web Security Appliance
    Model: S160
    Version: 7.1.2-080
    Serial Number: 0025643CFD42-4GQYHL1
    Timestamp: 14 Jun 2012 14:00:21 +1000
    Thank you for your help.
    Lovedeep

  • 451 4.4.0 DNS query failed. The error was: SMTPSEND.DNS.NonExistentDomain

    Hi,
    I have two Exchange 2010 servers running on Windows 2008 Ent R2.
    These mail servers have been running fine for a few years.
    Today I noticed two things.
    1. users were telling me they were having delays receiving emails from outside of our own domain. The mail gets sent out, but it takes about 15-30 mins for users outside our our domain to get their mail. Mail sent from inside our domain gets delivered right
    away.
    2. An error message that I see when I go to Tools->Queue Viewer in EMC. The error is: 451 4.4.0 DNS query failed. The error was: SMTPSEND.DNS.NonExistentDomain. This error  shows up when you click on the "Queues" tab and then look at the
    "hub version 14" under "next hop domain" column. 
    I'm assuming these two things are related. I don't understand why the problem is just showing up now. As I said, mail delivery has been fine for a while and I haven't done any major updates to the server in a few months.
    Thanks for any ideas and suggestions as to what might be causing it and where I can look.
    Mike

    Hi,
    1. I replaced my Cert with the same exact cert from GoDaddy, just an updated expire date.
    2. We have two exchange servers.
    3. The message I am seeing now, is under "Last Error" for every queue (not individual messages).
    That error message is:  451 4.4.0 Primary Target IP address responded with 421 4.2.1 Unable to connect. Attempted failover to alternate host but that did not succeed.
    OR
    451 4.4.0 DNS query failed. The error was: SMTPSEND.DNS.NonExistentDomain. (This is the same error I mentioned earlier.
    I ran some tests on mxmailbox.com for my domain name.I got the following alerts back when running a DNS check.
    SOA Serial Number format is invalid. ns.rackspace.com Serial XXXXXXXX : Suggested serial format year was 1402 which is before 1970
    AND
    SOA Expire value out of recommended range.  ns.rackspace reported Expire 604800. Expire is recommeded to be between 1209600 and 2419200
    I use Rackspace DNS servers for External lookups.
    Does this point my mail delay problem to Rackspace or something local on my own machine?
    Thanks!
    Mike

  • ERROR: Cannot create authcontext with null org-Naming query failed  code:21

    I use OpenSSO Enterprise 8.0 Update 1 Patch1 Build 6.1(2009-June-9 12:56)
    I try to evaluate the Apache 2.2 web agent.
    It's been installed without errors, and both the OpenSSO and Apache server restarted.
    The agent profile's been created. Also, I use the default (OpenDS) configuration repository
    for OpenSSO, but an external (DSEE) user data directory.
    I think I did all the required steps with regards to both directories, since I don't see any error
    in the LDAP logs, each entry seems to be found as expected, the BIND operations are all
    successfull.
    Also, I use a sub-realm rather than the default top realm, and thus, I've modified the agent configuration
    (in the agent profile) so that the login URL is now ... /UI/Login?realm=myrealm
    When I try to access the Apache homepage, I get an error 500. The most recent OpenSSO server log file
    (...../opensso/debug/Authentication) contains the following message:
    ERROR: Cannot create authcontext with null org
    The most recent agent log file (....../apache22_agent/Agent_001/logs/debug/amAgent) has the following error:
    2009-07-07 17:08:11.992 Error 10513:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    I don't know what else I can do to debug this problem and find a solution. Any idea ?

    Thank you Shubba,
    With all available log details enabled, I now have the following messages on the agent side:
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 all: No value specified for key com.sun.identity.agents.config.profile.attribute.mapping, using default value .
    2009-07-09 10:14:51.731 Debug 5613:80149a50 NamingService: BaseService::doRequest(): Using server: http://portable.antibes.net:8080/opensso/namingservice.
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 NamingService:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <RequestSet vers="1.0" svcid="com.iplanet.am.naming" reqid="10">
    <Request><![CDATA[                                                                                                                      
      <NamingRequest vers="3.0" reqid="2" sessid=""AQIC5wM2LY4SfcyaGFgc5h9Y7/kpf4f//ml82oVfNlbWxQE=@AAJTSQACMDE=#"">                             <GetNamingProfile>                                                                                                                         </GetNamingProfile>                                                                                                                        </NamingRequest>]]> </Request>
    </RequestSet>
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest Request line: POST /opensso/namingservice HTTP/1.0
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Cookie and Headers =Host: portable.antibes.net
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Content-Length =Content-Length: 334
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Header Suffix =Accept: text/xml
    Content-Type: text/xml; charset=UTF-8
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Total chunks: 7.
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Sent 7 chunks.
    2009-07-09 10:14:51.728 Debug 5613:80149a50 NamingService: HTTP Status = 500 (Internal Server Error)
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading headers.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Server: Apache-Coyote/1.1
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Content-Type: text/html;charset=utf-8
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Date: Thu, 09 Jul 2009 08:14:51 GMT
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Connection: close
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading body content of length: 13830487939496281954
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 all: Connection::waitForReply(): returns with status success.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Completed processing the response with status: success
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: <html><head><title>Apache Tomcat/6.0.18 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException: AMSetupFilter.doFilter
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:117)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    com.iplanet.services.comm.server.PLLRequestServlet.doPost(PLLRequestServlet.java:134)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:91)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.18</h3></body></html>
    2009-07-09 10:14:51.729 Warning 5613:80149a50 NamingService: BaseService::doHttpPost() failed, HTTP error = 500
    2009-07-09 10:14:51.729 Debug 5613:80149a50 NamingService: NamingService()::getProfile() returning with error code HTTP error.
    2009-07-09 10:14:51.729 Error 5613:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    In my Tomcat server (OpenSSO server web container), I have the following errors:
    Jul 9, 2009 10:12:35 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 22746 ms
    [Fatal Error] :2:46: Element type "NamingRequest" must be followed by either attribute specifications, ">" or "/>".
    java.lang.NullPointerException
    at com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    at com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    at com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    at ...
    It seems like the problem comes from the couple of closing square brackets in the NamingRequest tag:
    </NamingRequest>]]>
    I don't know where it comes from, so if you've an idea I'd enjoy .
    Cheers,

  • Database Query Failed

    I got this error message instead of weekly report.
    Anybody ever experienced this? How to fix it?
    The Warning message is:
    Report Query Failed
    query_id: mga_overview_incoming_mail_over_time
    data_source: CounterReportDataSource
    error: <type 'type'> ('command_manager/command_client.py call|242', "<class 'reporting.query.exceptions.DatabaseQueryFailure'>", '', '[database/ReportCatalog.py run_report_queries|234] [reportdatasource/CounterReportDataSource.py query|131] [reportdatasource/CounterReportDataSource.py _parse_api_results|216] [reportdatasource/CounterReportDataSource.py _parse_interval_result_set|251] [reportdatasource/CounterReportDataSource.py _parse_interval_result|317] [reportdatasource/CounterReportDataSource.py _parse_standard_interval_result|326] [query/result.py next|239] [query/client.py _call|212] [command_manager/command_client.py call|242]')
    Version: 5.5.1-011

    Yes, I did. Instead of a graph, I got this error message:
    Error while receiving data.
    There may have been an intermittent timeout during the database query.
    Have you tried going onto the GUI interface and going to "Monitor > Incoming Mail", switching the Time range to display a Week and then clicking on the Printable button on the right hand corner.
    I got this error message instead of weekly report.
    Anybody ever experienced this? How to fix it?
    The Warning message is:
    Report Query Failed
    query_id: mga_overview_incoming_mail_over_time
    data_source: CounterReportDataSource
    error: ('command_manager/command_client.py call|242', "", '', '[database/ReportCatalog.py run_report_queries|234] [reportdatasource/CounterReportDataSource.py query|131] [reportdatasource/CounterReportDataSource.py _parse_api_results|216] [reportdatasource/CounterReportDataSource.py _parse_interval_result_set|251] [reportdatasource/CounterReportDataSource.py _parse_interval_result|317] [reportdatasource/CounterReportDataSource.py _parse_standard_interval_result|326] [query/result.py next|239] [query/client.py _call|212] [command_manager/command_client.py call|242]')
    Version: 5.5.1-011

Maybe you are looking for

  • No audio through tv from mac mini

    I recently purchased a Samsung 32" model 5300 Smart TV, and I have a Mac Mini that are connected by a HDMI cord. The audio portion (while in the computer  mode) will not come through the tv only the mac.  I had a non "smart" with no built in wi fi an

  • Finder COVERflow? Is it really COVERflow, or ICONflow?

    In iTunes, I can see my album COVERS and my dvd COVERS, hence the name....COVERflow. But with COVER?flow in Finder, all I can see are ICONS!!!! For example, I have a folder called MOVIES. In this folder are my movies (I'm simple, like that). Now, I a

  • Google earth 3d plug in

    I want to view a 3d fly over map of a golf course at golffrontier.com When I click on it a window comes up saying I need to download the google earth 3d plug in to be able to view the video. Does that plug in cause any problems on the mac computer? M

  • SQL*NET V1 사용 시 ORA-6107 조치 방법

    제품 : SQL*NET 작성날짜 : 2005-11-06 * Windows용 SQL*NET TCP/IP Ver 1.X는 SQLTCP.DLL과 SQLTCP1.DLL 두 개의 DLL이 하나로 구성되어 있다. 이들 DLL은 ORACLE용 연결 스트링이 TCP/IP 프로토콜 스트링으로 확인되면 작업진행중에 OCI DLL에 의해 올려진다. ORACLE Interface DLL은 SQLTCP.DLL을 먼저 올리려고 한다. 이것이 실패하면 DOS TSR 버전

  • Keep getting this error: CE-34788-0

    Hi. I have replaced the HDD, which comes with the PS4 with a PS4 SSD. The problem is, when I go to the safe mode and tries to reinstall the system software with the update on my USB stick, it just gives me this error after a few seconds: CE-34788-0.