CFEXCHANGEMAIL not finding attachments for a UID

I run into this same error a while back, and never found a solution for it, and now it is back and becoming more serious so I've got to figure out what is happening.  In a nutshell, I have a CF8 scheduled task that runs once an hour,and looks in various Exchange 2003 inboxes for new unread messages with attachments that need to be detached and passed on via a queue to various SSIS tasks.  For each of the mailboxes it does the following:
Thiscode is inside of a CFTRY and followed by a CFCATCH to be sure that the login is successful.
<cfexchangeconnection action = "open" connection = "exchangeConnection"
  protocol = "http" server = "#msxserver#"
  username = "#thisusername#" password = "#sources.Loginpassword#" />
This should get me a list of the unread emails from the last 10 days
<cfexchangemail action = "get" name = "inboxtemp" connection = "exchangeConnection">
   <cfexchangefilter name="TimeSent" from="#DateAdd("d","#(-1 * url.TimePeriodToCheck)#", Now())#" to="#Now()#">
   <cfexchangefilter name = "maxRows" value = "9999">
   <cfexchangefilter name="isRead" value="false"> 
  </cfexchangemail>
That is just to get a sorted list that I can display
<cfquery name="inboxTot" dbtype="query">
  SELECT * FROM inboxtemp ORDER BY timereceived DESC
  </cfquery>
This is to find only those messages that have attachments
<cfquery name="inbox" dbtype="query">
  SELECT * FROM inboxTot
  WHERE HasAttachment=1
  ORDER BY timereceived DESC
  </cfquery>
Now I try to process each of those messages that has any type of attachment.  The CFEXCHANGEMAIL call is wrapped in a try/catch
<cfloop query="inbox">
     <cfexchangemail action="getAttachments"
     connection="exchangeConnection"
     uid="#inbox.UID#"
     name="attachSummaryX">
*** rest of code goes here ***
</cfloop>
This process works 99.9% of the time.  Recently it started failing on the CFEXCHANGMAIL call inside of the CFLOOP, whose purpose is to get the list of attachments for the specific email (since embedded logos, etc., count as an attachment, and I only want to find the messages that have an actual data file attached to them).  The error that comes back from the CFCATCH is:
Failed to detach attachment:
    Requested Exchange resource was not found on the server.
Which is confusing since the UID that I passed to it is the same UID that Exchange returned in the earlier call to get the inbox contents. 
There is one clue:  This started happening at the same time about a week or two ago, for two different mailboxes, and the UIDs for the failing messages look very similar, and different from most of the others for messages that have no problems.  The incoming messages are coming from the same vendor, and other messages from that vendor work fine, but have very different looking UIDs.  Here is the UID of one of the failing messages (partially sanitized since it contains the vendor's email server name and email address):
[email protected]trics.com
here is a sample from a message that is typical of those that work fine:
[email protected]
Has anyone had any experience with tracking down this sort of problem?  I can log into Outlook Web Access for each of these account, and view all of the messages, including their attachments, with no problems at all.  I don't see any visible differences between the messages that work in CF and those that don't.
Are there any tools that can be used with Exchange 2003 that would allow me to send it the UID that CF is having problems with, to see if maybe there is more diagnostic data available?  Is there some way to get CF to give me more diagnostic info about the failure?
Thanks people!
Reed

It appears that this is a bug in CF8 - I moved my code over to a CF9 box, and it ran with no errors.
-reed

Similar Messages

  • Deserializer error : could not find deserializer for type

    Hi folks,
    I am trying to send a XML file in web service request and trying to get the same back, I am getting the following exception while trying to do this,
    org.xml.sax.SAXException: Deserializing parameter 'echo':  could not find deserializer for type {Echo}echo
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.xml.sax.SAXException: Deserializing parameter 'echo':  could not find deserializer for type {Echo}echo
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}hostname:localhost
    org.xml.sax.SAXException: Deserializing parameter 'echo':  could not find deserializer for type {Echo}echo
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at javax.xml.parsers.SAXParser.parse(Unknown Source)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at com.sel.services.EchoRequest.main(EchoRequest.java:42)
    The following is my client code,
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.ParameterMode;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory;
    import org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory;
    public class EchoRequest {
          * @param args
         public static void main(String[] args) {
              try {
                        String endpoint = "http://localhost:8080/axis/Echo.jws";
                        Service  service = new Service();
                      Call     call    = (Call) service.createCall();
                      call.setTargetEndpointAddress( new java.net.URL(endpoint) );
                      call.setOperationName(new QName(("Echo"),"DataHandler"));
                      QName qName = new QName("Echo" , "echo");
                      DataHandler dhSource = new DataHandler(new FileDataSource("D:/Workspace/Sandbox/Request.xml"));
                      call.registerTypeMapping(dhSource.getClass(),qName,JAFDataHandlerSerializerFactory.class,JAFDataHandlerDeserializerFactory.class );
                      call.addParameter("echo", qName , ParameterMode.IN);
                      call.setProperty(call.ATTACHMENT_ENCAPSULATION_FORMAT, call.ATTACHMENT_ENCAPSULATION_FORMAT_MIME);
                      call.setReturnType(qName);                 
                      Object ret = call.invoke(new Object[] {dhSource});
                        System.out.println();
                    } catch (Exception e) {
                      System.err.println(e.toString());
                      e.printStackTrace();
         }The following is my jws,
    import java.io.Serializable;
    import javax.activation.DataHandler;
    public class Echo implements Serializable{
         public DataHandler echo(DataHandler echo){
              return echo;
    }The following is my deploy.wsdd,
    <deployment     xmlns="http://xml.apache.org/axis/wsdd/"
                           xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"
                           xmlns:ns1="Echo">
         <service name="Echo" provider="java:RPC">
                 <parameter name="className" value="Echo"/>
              <parameter name="allowedMethods" value="echo"/>
              <operation name="echoString" returnQName="returnqName" returnType="ns1:DataHandler">
                     <parameter name="echo" type="ns1:DataHandler"/>
             </operation>
              <typeMapping deserializer="org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory"
                   languageSpecificType="java:javax.activation.DataHandler" qname="ns1:DataHandler"
                      serializer="org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory"
                  encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
           </service>
    </deployment>And following is my server-config.wsdd,
    <?xml version="1.0" encoding="UTF-8"?>
    <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
    <globalConfiguration>
      <parameter name="sendMultiRefs" value="true"/>
      <parameter name="disablePrettyXML" value="true"/>
      <parameter name="adminPassword" value="admin"/>
      <parameter name="attachments.Directory" value="D:\ApacheTomcat5.5.26\webapps\axis\WEB-INF\attachments"/>
      <parameter name="dotNetSoapEncFix" value="true"/>
      <parameter name="enableNamespacePrefixOptimization" value="false"/>
      <parameter name="sendXMLDeclaration" value="true"/>
      <parameter name="attachments.implementation" value="org.apache.axis.attachments.AttachmentsImpl"/>
      <parameter name="sendXsiTypes" value="true"/>
      <requestFlow>
       <handler type="java:org.apache.axis.handlers.JWSHandler">
        <parameter name="scope" value="session"/>
       </handler>
       <handler type="java:org.apache.axis.handlers.JWSHandler">
        <parameter name="scope" value="request"/>
        <parameter name="extension" value=".jwr"/>
       </handler>
      </requestFlow>
    </globalConfiguration>
    <handler name="LocalResponder" type="java:org.apache.axis.transport.local.LocalResponder"/>
    <handler name="URLMapper" type="java:org.apache.axis.handlers.http.URLMapper"/>
    <handler name="Authenticate" type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"/>
    <service name="AdminService" provider="java:MSG">
      <parameter name="allowedMethods" value="AdminService"/>
      <parameter name="enableRemoteAdmin" value="false"/>
      <parameter name="className" value="org.apache.axis.utils.Admin"/>
      <namespace>http://xml.apache.org/axis/wsdd/</namespace>
    </service>
    <service name="Version" provider="java:RPC">
      <parameter name="allowedMethods" value="getVersion"/>
      <parameter name="className" value="org.apache.axis.Version"/>
    </service>
    <service name="Echo" provider="java:RPC">
      <operation name="echoString" returnQName="returnqName" returnType="ns1:DataHandler" soapAction="" xmlns:ns1="Echo">
       <parameter name="echo" type="ns1:DataHandler"/>
      </operation>
      <parameter name="allowedMethods" value="echo"/>
      <parameter name="className" value="Echo"/>
      <typeMapping deserializer="org.apache.axis.encoding.ser.JAFDataHandlerDeserializerFactory" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" qname="ns2:DataHandler" serializer="org.apache.axis.encoding.ser.JAFDataHandlerSerializerFactory" type="java:javax.activation.DataHandler" xmlns:ns2="Echo"/>
    </service>
    <transport name="http">
      <requestFlow>
       <handler type="URLMapper"/>
       <handler type="java:org.apache.axis.handlers.http.HTTPAuthHandler"/>
      </requestFlow>
      <parameter name="qs:list" value="org.apache.axis.transport.http.QSListHandler"/>
      <parameter name="qs:wsdl" value="org.apache.axis.transport.http.QSWSDLHandler"/>
      <parameter name="qs.list" value="org.apache.axis.transport.http.QSListHandler"/>
      <parameter name="qs.method" value="org.apache.axis.transport.http.QSMethodHandler"/>
      <parameter name="qs:method" value="org.apache.axis.transport.http.QSMethodHandler"/>
      <parameter name="qs.wsdl" value="org.apache.axis.transport.http.QSWSDLHandler"/>
    </transport>
    <transport name="local">
      <responseFlow>
       <handler type="LocalResponder"/>
      </responseFlow>
    </transport>
    </deployment>The following is the directory structure which I have in my tomcat for this service
    - axis
    -----WEB-INF
    ----------classes
    ----------jwsClasses
    ----------lib
    ----------deploy.wsdd
    ----------server-config.wsdd
    I am really not sure where I am getting wrong. Please help me with this.
    Thanks
    Edited by: Jadaaih on Jun 19, 2008 1:52 AM

    Ok, this may not be your problem, but I was getting this error as well.
    I had multiple services running, and I was able to use SOAP test clients and connect to them and get responses, no problem.
    I wrote some client code to connect to one, and it worked just fine.
    Then I wrote some client code to connect to the other, and I got an error like
    faultString: org.xml.sax.SAXException: Deserializing parameter 'initiateIn':  could not find deserializer for type {urn:SOAPFulfillmentAPI}DoSomething
    ...I tore my hair out trying to figure out why a service that functions perfectly using other tests would fail in java. Then I realized I was pointing to the end point URL.
    It looks like AJAX tries to deserialize the parameters before it does any of basic sanity check to see the method your looking for even exists (even in debug mode). So instead of getting a useful error like "Cant find method 'DoSomething' " you get some crap about not being able to understand the datatype for an arguement.
    I hope this helps someone one day =)

  • [Error ORABPEL - 10900]... : Can not find definition for element 'process'

    Hi,
    When I try to deploy a bpel process using JDeveloper I'm having the following xml parse error:
    Error(21):
    [Error ORABPEL-10900]: xml parser error
    [Description]: in line 21 of "file:/C:/JDeveloper/jdev/mywork/NERGA/CriarProjectoSA/bpel/CriarProjectoSA.bpel", XML parsing failed because file:/C:/JDeveloper/jdev/mywork/NERGA/CriarProjectoSA/bpel/CriarProjectoSA.bpel<Line 21, Column 63>: XML-24538: (Error) Can not find definition for element 'process'.
    [Potential fix]: Fix the invalid XML.
    I don't understand why... Any idea?

    Ok.
    This is my BPEL code. The sapattern tags are from a program that is generating part of the code. The JDeveloper doesn't show any error, I only get the error when I try to deploy.
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <process name="CriarProjectoSA"
    targetNamespace="http://xmlns.oracle.com/CriarProjectoSA"
    suppressJoinFailure="no"
    xmlns="http://xmlns.oracle.com/CriarProjectoSA"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ns4="http://xmlns.oracle.com/CriarProjectoSA"
    xmlns:ns7="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ns5="http://schemas.oracle.com/xpath/extension"
    xmlns:ns6="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:ns11="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
    xmlns:ns9="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:ns1="http://xmlns.oracle.com/ValidacaoProjectos"
    xmlns:ns3="http://www.nerga.pt" xmlns:ns2="http://tempuri.org/"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:ns10="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:ns8="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    <!--Generated by Telelogic System Architect on 05/01/2007 11:06:18 by easm-->
    <sapattern>
    <guid>41207640-d934-480f-902a-b3764f3d9c9f</guid>
    </sapattern>
    <partnerLinks>
    <partnerLink name="client" partnerLinkType="ns4:CriarProjectoSA"
    myRole="CriarProjectoSAProvider"/>
    <partnerLink name="NergaIS" partnerLinkType="ns2:ServiceSoap_PL"
    myRole="ServiceSoap_Role" partnerRole="ServiceSoap_Role"/>
    <partnerLink name="ValidacaoProjectos"
    partnerLinkType="ns1:ValidacaoProjectos"
    myRole="ValidacaoProjectosRequester"
    partnerRole="ValidacaoProjectosProvider"/>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e728e550-f404-47bf-aa13-72429480cbc6</guid>
    <guid>3111d1af-0b31-4d02-b3fc-73d14ce95405</guid>
    <guid>e9cdca59-888a-4e67-af54-a63ce2347ad3</guid>
    </sapattern>
    </partnerLinks>
    <variables>
    <variable name="outputVariable"
    messageType="ns4:CriarProjectoSAResponseMessage"/>
    <variable name="inputVariable"
    messageType="ns4:CriarProjectoSARequestMessage"/>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>2503e820-3add-4cd1-bbc5-5cc5fff57090</guid>
    <guid>8bcc3532-46b7-4e88-816f-72ecdaee76ab</guid>
    </sapattern>
    <variable name="invocaVP_initiate_InputVariable"
    messageType="ns1:ValidacaoProjectosRequestMessage"/>
    <variable name="recebeVP_onResult_InputVariable"
    messageType="ns1:ValidacaoProjectosResponseMessage"/>
    <variable name="InvocaAdicionarProjecto_InputVariable"
    messageType="ns2:AdicionarProjectoSoapIn"/>
    <variable name="InvocaAdicionarProjecto_OutputVariable"
    messageType="ns2:AdicionarProjectoSoapOut"/>
    </variables>
    <sequence>
    <receive name="recebeTemplate" joinCondition="False" partnerLink="client"
    portType="ns4:CriarProjectoSA" operation="process"
    variable="inputVariable" createInstance="yes">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e728e550-f404-47bf-aa13-72429480cbc6</guid>
    <guid>68e62379-55ac-48eb-b681-aee8f5a7696d</guid>
    </sapattern>
    </receive>
    <scope variableAccessSerializable="no" name="ValidarExigências"
    joinCondition="False">
    <faultHandlers>
    <catchAll>
    <assign name="assignInvalid">
    <bpelx:append>
    <bpelx:from expression="concat(ns8:getVariableData('inputVariable','payload','/ns3:Template/ns3:Projecto/ns3:Observacoes'), string('Projecto inválido!!'))"/>
    <bpelx:to variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto/ns3:Observacoes"/>
    </bpelx:append>
    </assign>
    </catchAll>
    </faultHandlers>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>2e56af66-6622-43e0-9adc-6d5f109cf374</guid>
    </sapattern>
    <sequence name="ValidarExigências" joinCondition="False">
    <assign name="assignVPIn">
    <copy>
    <from variable="inputVariable" part="payload"/>
    <to variable="invocaVP_initiate_InputVariable" part="payload"/>
    </copy>
    </assign>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>2e56af66-6622-43e0-9adc-6d5f109cf374</guid>
    </sapattern>
    <invoke name="invocaVP" joinCondition="False"
    partnerLink="ValidacaoProjectos" portType="ns1:ValidacaoProjectos"
    operation="initiate"
    inputVariable="invocaVP_initiate_InputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>f3bc9c04-f4d2-4e96-acc8-7a6c88a8ced5</guid>
    </sapattern>
    </invoke>
    <receive name="recebeVP" joinCondition="False"
    partnerLink="ValidacaoProjectos"
    portType="ns1:ValidacaoProjectosCallback" operation="onResult"
    createInstance="no" variable="recebeVP_onResult_InputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e9cdca59-888a-4e67-af54-a63ce2347ad3</guid>
    <guid>1eba96a8-330a-4e4d-a14b-cdf6641fa614</guid>
    </sapattern>
    </receive>
    <assign name="assignVPOut">
    <copy>
    <from variable="recebeVP_onResult_InputVariable" part="payload"/>
    <to variable="inputVariable" part="payload"/>
    </copy>
    </assign>
    </sequence>
    </scope>
    <scope variableAccessSerializable="no" name="AdicionarProjecto"
    joinCondition="False">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>89c02eae-7788-4892-a616-e46b65ef1b50</guid>
    </sapattern>
    <sequence name="InvocarISAdicionarProjecto" joinCondition="False">
    <assign name="assignIS">
    <copy>
    <from variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto/ns3:NomeProjecto"/>
    <to variable="InvocaAdicionarProjecto_InputVariable" part="parameters"
    query="/ns2:AdicionarProjecto/ns2:nome"/>
    </copy>
    <copy>
    <from variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto/ns3:TipoProjecto"/>
    <to variable="InvocaAdicionarProjecto_InputVariable" part="parameters"
    query="/ns2:AdicionarProjecto/ns2:tipo"/>
    </copy>
    </assign>
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>89c02eae-7788-4892-a616-e46b65ef1b50</guid>
    </sapattern>
    <invoke name="InvocaAdicionarProjecto" joinCondition="False"
    partnerLink="NergaIS" portType="ns2:ServiceSoap"
    operation="AdicionarProjecto"
    inputVariable="InvocaAdicionarProjecto_InputVariable"
    outputVariable="InvocaAdicionarProjecto_OutputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>76519bd3-c506-4c79-8190-8ff09abdd27d</guid>
    </sapattern>
    </invoke>
    </sequence>
    </scope>
    <assign name="assignOutput">
    <copy>
    <from variable="inputVariable" part="payload"
    query="/ns3:Template/ns3:Projecto"/>
    <to variable="outputVariable" part="payload"/>
    </copy>
    </assign>
    <reply name="devolveProjecto" joinCondition="False" partnerLink="client"
    portType="ns4:CriarProjectoSA" operation="process"
    variable="outputVariable">
    <sapattern>
    <!--The System Architect objects used in the pattern. To ensure traceability to System Architect DO NOT REMOVE-->
    <guid>e728e550-f404-47bf-aa13-72429480cbc6</guid>
    <guid>0dbefef0-3d04-4356-abbc-b291ea40d256</guid>
    </sapattern>
    </reply>
    </sequence>
    </process>

  • .v2.XMLParseException:Can not find definition for element 'descriptor'

    I am getting the following error, while running 'empps.jsp' ...when executing the tutorial given at
    ERROR Details:
    500 Internal Server Error
    javax.servlet.jsp.JspException: javax.faces.el.EvaluationException: Error getting property 'employees' from bean of type jsftoplink.model.EmployeesClient: Exception [TOPLINK-25004] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.XMLMarshalExceptionException Description: An error occurred unmarshalling the documentInternal Exception: Exception [TOPLINK-27101] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.platform.xml.XMLPlatformExceptionException Description: An error occurred while parsing the document.Internal Exception: oracle.xml.parser.v2.XMLParseException: Can not find definition for element 'class-descriptor-type'     at com.sun.faces.taglib.html_basic.DataTableTag.doEndTag(DataTableTag.java:501)     at emps.jspService(_emps.java:629)
    Pls help me in resolving this issue.

    I am still gettng the same error. The xml file is now
    <?xml version="1.0" encoding="UTF-8"?>
    <CUSTOMER xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="" ID="568945">
    <FIRSTNAME>Arnold</FIRSTNAME>
    <LASTNAME>McEriccson</LASTNAME>
    <ADDRESS>
    <LINE1>31, Nomadic Avevnue</LINE1>
    <LINE2>Pasadena Clove</LINE2>
    <CITY>WoolTown, MT</CITY>
    <ZIP>45263</ZIP>
    </ADDRESS>
    <BIRTHDATE>1967-08-13</BIRTHDATE>
    </CUSTOMER>
    The xsd file is:
    <?xml version="1.0" encoding="UTF-8"?><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:element name="CUSTOMER">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="FIRSTNAME" type="xs:string"/> <xs:element name="LASTNAME" type="xs:string"/> <xs:element name="ADDRESS"> <xs:complexType>
    <xs:sequence>
    <xs:element name="LINE1" type="xs:string"/> <xs:element name="LINE2" type="xs:string"/> <xs:element name="CITY"/>
    <xs:element name="ZIP" type="xs:int"/> </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="BIRTHDATE" type="xs:date"/> </xs:sequence>
    <xs:attribute name="ID" type="xs:double"/> </xs:complexType>
    </xs:element>
    </xs:schema>
    There seems to be something fairly obvious that i am missing.

  • Could not find portlet_xml_ref for portlet key 18011

    Hi,
    I just loaded BEA Portal 7.0.4 and created my domain. copied the portal app from another working machine and started the server. This is what I'm getting:
    <Dec 2, 2004 3:59:34 PM CST> <Warning> <EJB> <010004> <The EJB deployment named: abtServer_b2c_abtMail.jar was compiled by a different
    version of the WebLogic Server.>
    <Dec 2, 2004 3:59:35 PM CST> <Warning> <EJB> <010004> <The EJB deployment named: abtServer_b2c_abtECommerce.jar was compiled by a diffe
    rent version of the WebLogic Server.>
    Exception[com.bea.portal.PortalException: Could not find portlet_xml_ref for portlet key 18011]
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalDeletionHelper.removeEntitlementsForPortletForPortalPageP13n(Jdbc
    PortalDeletionHelper.java:2424)
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalDeletionHelper.removePortletFromPageP13n(JdbcPortalDeletionHelper
    .java:1542)
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalDeletionHelper.deleteRemovedItems(JdbcPortalDeletionHelper.java:9
    31)
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalPersistenceManager.deleteRemovedItems(JdbcPortalPersistenceManage
    r.java:805)
    at com.bea.portal.manager.internal.persistence.MainPersistenceManager.deleteRemovedItems(MainPersistenceManager.java:221)
    at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortalModel(PortalPersistenceManager.java:349)
    at com.bea.portal.manager.internal.PortalPersistenceManager.createDataItem(PortalPersistenceManager.java:199)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.handleDataItemMessage(AbstractDataRepository.java:81
    4)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onDataSyncMessage(AbstractDataRepository.java:990)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestResultMessage(AbstractDataRepository.ja
    va:1185)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:261)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestMessage(AbstractDataRepository.java:108
    6)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:257)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepository(AbstractDataRepository.java:706
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onRefreshMessage(AbstractDataRepository.java:912)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:247)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.sendRefreshMessageToThis(AbstractDataRepository.java
    :341)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.addNotifiedDataRepository(AbstractDataRepository.jav
    a:324)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.addNotifiedDataRepository(AbstractDataRepository.jav
    a:304)
    at com.bea.portal.manager.internal.DeploymentManager.initializePortal(DeploymentManager.java:142)
    at com.bea.portal.manager.internal.DeploymentManager.initialize(DeploymentManager.java:101)
    at com.bea.portal.manager.internal.PortalManagerDelegateImpl.<init>(PortalManagerDelegateImpl.java:91)
    at com.bea.portal.manager.PortalFactory.createPortalManagerDelegate(PortalFactory.java:248)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean.ejbCreate(PortalManagerBean.java:147)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean_w6xny9_Impl.ejbCreate(PortalManagerBean_w6xny9_Impl.java:133)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:151)
    at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:188)
    at weblogic.ejb20.manager.StatelessManager.initializePool(StatelessManager.java:376)
    at weblogic.ejb20.deployer.EJBDeployer.initializePools(EJBDeployer.java:1507)
    at weblogic.ejb20.deployer.EJBDeployer.start(EJBDeployer.java:1392)
    at weblogic.ejb20.deployer.EJBModule.start(EJBModule.java:394)
    at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer.java:1043)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1029)
    at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForAllApplications(SlaveDeployer.java:645)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:394)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:242)
    at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:65)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:832)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:300)
    at weblogic.Server.main(Server.java:32)
    2004-12-02 16:00:03,046 [main] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ECommerceConstantsCache Size = 152
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.AbtCacheManagerBeanImpl_3xndmm_Impl - AbtCacheManagerBean crea
    ted.
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    =============== Initializing Logger ======================
    <Dec 2, 2004 4:00:04 PM CST> <Notice> <Management> <141053> <Application Poller not started for production server.>
    2004-12-02 16:00:05,390 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:RelatedPrdItemTypesCache
    2004-12-02 16:00:05,421 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:RelatedPrdItemTypesCache Size = 8
    2004-12-02 16:00:05,421 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:DiscountTypeCache
    2004-12-02 16:00:05,421 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:DiscountTypeCache Size = 1
    2004-12-02 16:00:05,437 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ReturnTypeCache
    2004-12-02 16:00:05,453 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ReturnTypeCache Size = 3
    2004-12-02 16:00:05,453 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:AffiliateFileFormatCache
    2004-12-02 16:00:05,500 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:AffiliateFileFormatCache Size = 5
    2004-12-02 16:00:05,500 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ProductVisibilityCache
    2004-12-02 16:00:05,515 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ProductVisibilityCache Size = 4
    2004-12-02 16:00:05,515 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ManufacturerCache
    2004-12-02 16:00:05,718 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ManufacturerCache Size = 426
    2004-12-02 16:00:05,718 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:InventoryStatusCache
    2004-12-02 16:00:05,750 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:InventoryStatusCache Size = 9
    2004-12-02 16:00:05,750 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CategoryTypeCache
    2004-12-02 16:00:05,765 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CategoryTypeCache Size = 7
    2004-12-02 16:00:05,765 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CustomerTypeCache
    2004-12-02 16:00:05,812 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CustomerTypeCache Size = 3
    2004-12-02 16:00:05,812 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CountryCache
    2004-12-02 16:00:05,843 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CountryCache Size = 4
    2004-12-02 16:00:05,843 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:SeverityLevelCache
    2004-12-02 16:00:05,875 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:SeverityLevelCache Size = 3
    2004-12-02 16:00:05,875 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:PriceTypeCache
    2004-12-02 16:00:05,906 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:PriceTypeCache Size = 8
    2004-12-02 16:00:05,906 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ECommerceConstantsCache
    2004-12-02 16:00:05,921 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ECommerceConstantsCache Size = 15
    2
    2004-12-02 16:00:05,921 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:OccasionCache
    2004-12-02 16:00:05,953 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:OccasionCache Size = 4
    2004-12-02 16:00:05,953 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ExtranetCache
    2004-12-02 16:00:06,078 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ExtranetCache Size = 2
    2004-12-02 16:00:06,078 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:GersDataSyncStatusCache
    2004-12-02 16:00:06,109 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:GersDataSyncStatusCache Size = 3
    2004-12-02 16:00:06,109 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ProductTypeCache
    2004-12-02 16:00:06,140 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ProductTypeCache Size = 6
    2004-12-02 16:00:06,156 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ColorCache
    2004-12-02 16:00:06,171 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ColorCache Size = 9
    2004-12-02 16:00:06,171 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:StateCache
    2004-12-02 16:00:06,218 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:StateCache Size = 52
    2004-12-02 16:00:06,218 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:OrderStatusCache
    2004-12-02 16:00:06,234 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:OrderStatusCache Size = 12
    2004-12-02 16:00:06,234 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CreditCardTypeCache
    2004-12-02 16:00:06,265 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CreditCardTypeCache Size = 5
    2004-12-02 16:00:06,265 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:NewsletterFormatCache
    2004-12-02 16:00:06,296 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:NewsletterFormatCache Size = 4
    2004-12-02 16:00:06,328 [Thread-6] INFO com.abt.servlets.StartDataSyncThreads - startDataSyncThreads = false
    <Dec 2, 2004 4:00:12 PM CST> <Warning> <Security> <090088> <Private key keystore alias is not specified in SSL configuration of server
    abtServer, realm CompatibilityRealm. Assuming 6.x private key configuration. Loading the key from file.>
    <Dec 2, 2004 4:00:20 PM CST> <Warning> <Security> <090120> <Cannot find the file specified by SSL.TrustedCAFileName trusted-ca.pem on s
    erver abtServer.>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000354> <Thread "SSLListenThread.Default" listening on port 7502>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000354> <Thread "ListenThread.Default" listening on port 7501>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000329> <Started WebLogic Admin Server "abtServer" for domain "abtDomain" runni
    ng in Production Mode>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000365> <Server state changed to RUNNING>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000360> <Server started in RUNNING mode>
    Does anyone have any idea why this is happening?
    Any help is greatly appreciated.
    Thank You,
    Albert

    Hi,
    I just loaded BEA Portal 7.0.4 and created my domain. copied the portal app from another working machine and started the server. This is what I'm getting:
    <Dec 2, 2004 3:59:34 PM CST> <Warning> <EJB> <010004> <The EJB deployment named: abtServer_b2c_abtMail.jar was compiled by a different
    version of the WebLogic Server.>
    <Dec 2, 2004 3:59:35 PM CST> <Warning> <EJB> <010004> <The EJB deployment named: abtServer_b2c_abtECommerce.jar was compiled by a diffe
    rent version of the WebLogic Server.>
    Exception[com.bea.portal.PortalException: Could not find portlet_xml_ref for portlet key 18011]
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalDeletionHelper.removeEntitlementsForPortletForPortalPageP13n(Jdbc
    PortalDeletionHelper.java:2424)
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalDeletionHelper.removePortletFromPageP13n(JdbcPortalDeletionHelper
    .java:1542)
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalDeletionHelper.deleteRemovedItems(JdbcPortalDeletionHelper.java:9
    31)
    at com.bea.portal.manager.internal.persistence.jdbc.JdbcPortalPersistenceManager.deleteRemovedItems(JdbcPortalPersistenceManage
    r.java:805)
    at com.bea.portal.manager.internal.persistence.MainPersistenceManager.deleteRemovedItems(MainPersistenceManager.java:221)
    at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortalModel(PortalPersistenceManager.java:349)
    at com.bea.portal.manager.internal.PortalPersistenceManager.createDataItem(PortalPersistenceManager.java:199)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.handleDataItemMessage(AbstractDataRepository.java:81
    4)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onDataSyncMessage(AbstractDataRepository.java:990)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestResultMessage(AbstractDataRepository.ja
    va:1185)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:261)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onSyncRequestMessage(AbstractDataRepository.java:108
    6)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:257)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.notifyDataRepository(AbstractDataRepository.java:706
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.onRefreshMessage(AbstractDataRepository.java:912)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.executeMessage(AbstractDataRepository.java:247)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.sendMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.sendRefreshMessageToThis(AbstractDataRepository.java
    :341)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.addNotifiedDataRepository(AbstractDataRepository.jav
    a:324)
    at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.addNotifiedDataRepository(AbstractDataRepository.jav
    a:304)
    at com.bea.portal.manager.internal.DeploymentManager.initializePortal(DeploymentManager.java:142)
    at com.bea.portal.manager.internal.DeploymentManager.initialize(DeploymentManager.java:101)
    at com.bea.portal.manager.internal.PortalManagerDelegateImpl.<init>(PortalManagerDelegateImpl.java:91)
    at com.bea.portal.manager.PortalFactory.createPortalManagerDelegate(PortalFactory.java:248)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean.ejbCreate(PortalManagerBean.java:147)
    at com.bea.portal.manager.ejb.internal.PortalManagerBean_w6xny9_Impl.ejbCreate(PortalManagerBean_w6xny9_Impl.java:133)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:151)
    at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:188)
    at weblogic.ejb20.manager.StatelessManager.initializePool(StatelessManager.java:376)
    at weblogic.ejb20.deployer.EJBDeployer.initializePools(EJBDeployer.java:1507)
    at weblogic.ejb20.deployer.EJBDeployer.start(EJBDeployer.java:1392)
    at weblogic.ejb20.deployer.EJBModule.start(EJBModule.java:394)
    at weblogic.j2ee.J2EEApplicationContainer.start(J2EEApplicationContainer.java:1043)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1029)
    at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForAllApplications(SlaveDeployer.java:645)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:394)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:242)
    at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:65)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:832)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:300)
    at weblogic.Server.main(Server.java:32)
    2004-12-02 16:00:03,046 [main] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ECommerceConstantsCache Size = 152
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.AbtCacheManagerBeanImpl_3xndmm_Impl - AbtCacheManagerBean crea
    ted.
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - INTERNET_PRICE = 10
    2004-12-02 16:00:03,046 [main] DEBUG com.abt.businessobjects.common.impl.ProductPricingImpl_nzszyh_Impl - STORE_PRICE = 20
    =============== Initializing Logger ======================
    <Dec 2, 2004 4:00:04 PM CST> <Notice> <Management> <141053> <Application Poller not started for production server.>
    2004-12-02 16:00:05,390 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:RelatedPrdItemTypesCache
    2004-12-02 16:00:05,421 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:RelatedPrdItemTypesCache Size = 8
    2004-12-02 16:00:05,421 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:DiscountTypeCache
    2004-12-02 16:00:05,421 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:DiscountTypeCache Size = 1
    2004-12-02 16:00:05,437 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ReturnTypeCache
    2004-12-02 16:00:05,453 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ReturnTypeCache Size = 3
    2004-12-02 16:00:05,453 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:AffiliateFileFormatCache
    2004-12-02 16:00:05,500 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:AffiliateFileFormatCache Size = 5
    2004-12-02 16:00:05,500 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ProductVisibilityCache
    2004-12-02 16:00:05,515 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ProductVisibilityCache Size = 4
    2004-12-02 16:00:05,515 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ManufacturerCache
    2004-12-02 16:00:05,718 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ManufacturerCache Size = 426
    2004-12-02 16:00:05,718 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:InventoryStatusCache
    2004-12-02 16:00:05,750 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:InventoryStatusCache Size = 9
    2004-12-02 16:00:05,750 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CategoryTypeCache
    2004-12-02 16:00:05,765 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CategoryTypeCache Size = 7
    2004-12-02 16:00:05,765 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CustomerTypeCache
    2004-12-02 16:00:05,812 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CustomerTypeCache Size = 3
    2004-12-02 16:00:05,812 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CountryCache
    2004-12-02 16:00:05,843 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CountryCache Size = 4
    2004-12-02 16:00:05,843 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:SeverityLevelCache
    2004-12-02 16:00:05,875 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:SeverityLevelCache Size = 3
    2004-12-02 16:00:05,875 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:PriceTypeCache
    2004-12-02 16:00:05,906 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:PriceTypeCache Size = 8
    2004-12-02 16:00:05,906 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ECommerceConstantsCache
    2004-12-02 16:00:05,921 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ECommerceConstantsCache Size = 15
    2
    2004-12-02 16:00:05,921 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:OccasionCache
    2004-12-02 16:00:05,953 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:OccasionCache Size = 4
    2004-12-02 16:00:05,953 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ExtranetCache
    2004-12-02 16:00:06,078 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ExtranetCache Size = 2
    2004-12-02 16:00:06,078 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:GersDataSyncStatusCache
    2004-12-02 16:00:06,109 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:GersDataSyncStatusCache Size = 3
    2004-12-02 16:00:06,109 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ProductTypeCache
    2004-12-02 16:00:06,140 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ProductTypeCache Size = 6
    2004-12-02 16:00:06,156 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:ColorCache
    2004-12-02 16:00:06,171 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:ColorCache Size = 9
    2004-12-02 16:00:06,171 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:StateCache
    2004-12-02 16:00:06,218 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:StateCache Size = 52
    2004-12-02 16:00:06,218 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:OrderStatusCache
    2004-12-02 16:00:06,234 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:OrderStatusCache Size = 12
    2004-12-02 16:00:06,234 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:CreditCardTypeCache
    2004-12-02 16:00:06,265 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:CreditCardTypeCache Size = 5
    2004-12-02 16:00:06,265 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - About to load cache:NewsletterFormatCache
    2004-12-02 16:00:06,296 [Thread-6] INFO com.abt.businessobjects.common.ValueLookupDAO - Loaded cache:NewsletterFormatCache Size = 4
    2004-12-02 16:00:06,328 [Thread-6] INFO com.abt.servlets.StartDataSyncThreads - startDataSyncThreads = false
    <Dec 2, 2004 4:00:12 PM CST> <Warning> <Security> <090088> <Private key keystore alias is not specified in SSL configuration of server
    abtServer, realm CompatibilityRealm. Assuming 6.x private key configuration. Loading the key from file.>
    <Dec 2, 2004 4:00:20 PM CST> <Warning> <Security> <090120> <Cannot find the file specified by SSL.TrustedCAFileName trusted-ca.pem on s
    erver abtServer.>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000354> <Thread "SSLListenThread.Default" listening on port 7502>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000354> <Thread "ListenThread.Default" listening on port 7501>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000329> <Started WebLogic Admin Server "abtServer" for domain "abtDomain" runni
    ng in Production Mode>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000365> <Server state changed to RUNNING>
    <Dec 2, 2004 4:00:21 PM CST> <Notice> <WebLogicServer> <000360> <Server started in RUNNING mode>
    Does anyone have any idea why this is happening?
    Any help is greatly appreciated.
    Thank You,
    Albert

  • Could not find MessageClient for clientId in pushMessageToClients

    Hello everybody. I was stuck with unpleasent problem using LCDS 2.5.1 and theirs messaging service. My aim is sending real time messages to particular client which already subscribed to the defined destination within java code. I have following situation:
    at first here is my messaging-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="message-service" class="flex.messaging.services.MessageService">
        <adapters>
            <adapter-definition id="messagingAdapter"
                class="com.thomsonreuters.gip.messaging.impl.MessagingAdapterImpl" />
        </adapters>
        <destination id="realTimeMessaging">
            <adapter ref="messagingAdapter" />
            <channels>
                <channel ref="channel-rtmp" />
            </channels>
        </destination>
    </service>
    i am already know id of client consumer and pass it like input argument (Set clientIds)
    actual sending performing in following method:
        protected void sendMessageToClients(Object msgBody, Set clientIds) {
            log.debug("send message to clients [ids = " + clientIds + ", message = " + msgBody + "]");
            // obtain message service by means of message broker
            MessageBroker messageBroker = MessageBroker.getMessageBroker(null);
            MessageService messageService = (MessageService) messageBroker.getService("message-service");
            // create async message with provided message body
            AsyncMessage message = createMessage(msgBody);
            // There I can sure that my client id (clientIds) present in message service subscribers id
            System.out.println(messageService.getSubscriberIds(message, true)); // this statement prints client id in wich i want to send message
            // Now push message to the clients (actualy one client)
            messageService.pushMessageToClients(clientIds, message, false);
    and realy this code doese nothing, message is not recieved by expected user and in logs of lcds a can see following line:
    [LCDS]02/19/2010 15:29:59.567 [DEBUG] [Service.Message] Warning: could not find MessageClient for clientId in pushMessageToClients: [F88813EC-AC0A-EF4D-136CAE2F50EC44EB]
    But id F88813EC-AC0A-EF4D-136CAE2F50EC44EB was already printed by this statement System.out.println(messageService.getSubscriberIds(message, true));
    What I have missed? Or where I should look to resolve this issue?
    Please help me

    Forgot to say. I am able to send message to all clients within following code:
    public void sendMessageToAllClients(Object msgBody) {
            log.debug("send message to all clients: " + msgBody);
            AcknowledgeMessage acknowledgeMessage = MessageBroker.getMessageBroker(null).routeMessageToService(createMessage(msgBody),
                    null);
            log.debug("result: " + acknowledgeMessage);
    In this case all currently subscribed users receiving message.
    here is method which creates AsyncMessage
    private AsyncMessage createMessage(Object msgBody) {
            AsyncMessage msg = new AsyncMessage();
            msg.setClientId(getServerId());
            msg.setTimestamp(System.currentTimeMillis());
            msg.setMessageId(UUIDUtils.createUUID(true));
            msg.setDestination(destination);
            msg.setBody(msgBody);
            return msg;
    And by the way I have my own custom adapter here is code:
    public class MessagingAdapterImpl extends MessagingAdapter {
        private static final Log log = LogFactory.getLog(MessagingAdapterImpl.class);
        @Override
        public Object invoke(Message message) {
            log.debug("sending message " + ToStringBuilder.reflectionToString(message, ToStringStyle.SHORT_PREFIX_STYLE));
            MessageService msgService = (MessageService) getDestination().getService();
            msgService.pushMessageToClients(message, true);
            msgService.sendPushMessageFromPeer(message, true);
            return null;
        @Override
        public Object manage(CommandMessage commandMessage) {
            if (CommandMessage.SUBSCRIBE_OPERATION == commandMessage.getOperation()) {
                log.debug("subsriber is registered [" + commandMessage.getClientId() + "]");
            if (CommandMessage.UNSUBSCRIBE_OPERATION == commandMessage.getOperation()) {
                log.debug("subsriber is unregistered [" + commandMessage.getClientId() + "]");
            return null;
        @Override
        public boolean handlesSubscriptions() {
            return true;

  • Satellite A205 S4797 - can not find drivers for my drive

    I have recovery disks and Windows Vista installation disk. When I try to install error meesage says it can not find drivers for my drive.
    I tried scannong CD drive and it cannot find them do 32-bit, 64-bit all have different drivers and if so where do I get the one I need if not from the install disk or recovery disk from manuf.?

    If you cannot use original Toshiba recovery DVD for OS installation I can imagine there is some problem with DVD itself (some missing file or scratch) but Microsoft Vista installation MUST work on this notebook model.
    If this doesnt work too there must be some problem with HDD. Just if you want to install WXP you need to load SATA driver at start-up but Vista must work.
    Can you please tell me what happen when you try to install Vista from Microsoft Vista installations DVD?

  • [ERROR] could not find source for resource bundle modules.

    We are in the process of upgrading our flex application from SDK3.6 to SDK4.5.0.17899.
    Flexmojos version used for compilation is 3.9.
    The flex library project is complied with SDK4.5.0 version but BUILD is not getting SUCESS from maven.
    The following is the reason is showing and unable to find out the root cause.
    [ERROR] could not find source for resource bundle modules.
    Can you please help me out.
    Thanks,

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Error: could not find source for resource bundle charts

    I am trying to upgrade from Flex SDk 3.4 to 3.5.
    I have copied the Data Visualisation SWCs under libs, locale and rlsls folders as suggested by adobe.
    I get the following error when building the application
    flex-library:
         [java] Loading configuration file /usr/local/lib/flex_sdk/3.5.0/frameworks/flex-config.xml
         [java] Error: could not find source for resource bundle charts.
         [java]
    What am I missing? Any help is highly appreciated.
    Thanks

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Error: Error writing stream: Could not find prefix for namespace:

    Hi all,
    I am getting this error while doing topdownAssemble using WSA. The error seems as if the name space definitions do not have proper prefixs, but I have prefixes for all the name spaces.
    Any idea what else might be causing the problem ?
    Thanks,
    --venkat
    + java -jar /opt/oc4j_extended_101310/webservices/lib/wsa.jar -topDownAssemble -wsdl parlayx_third_party_call_service.wsdl -unwrapParameters false -className oracle.sdp.parlayx.ThirdPartyCallImpl -input classes -output gen -ear dist/tpcall.ear -mappingFileName src/ThirdPartyCallService-java-wsdl-mapping.xml -packageName oracle.sdp.parlayx -fetchWsdlImports true -debug
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_third_party_call_service.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_third_party_call_interface.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_common_faults.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_third_party_call_service.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_third_party_call_interface.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_common_faults.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_third_party_call_interface.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_common_faults.wsdl
    FINE: OWS-11015 Trying to Access Resource at URL: file:/home/vayyagar/IdeaProjects/ParlayX/parlayx_common_faults.wsdl
    Error: Error writing stream: Could not find prefix for namespace: http://www.csapi.org/wsdl/parlayx/common/v2_0/faults
    Error writing stream: Could not find prefix for namespace: http://www.csapi.org/wsdl/parlayx/common/v2_0/faults: java.io.IOException: Could not find prefix for namespace: http://www.csapi.org/wsdl/parlayx/common/v2_0/faults
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeAttValFromQName(WSDLWriterImpl.java:660)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeFault(WSDLWriterImpl.java:577)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeOperation(WSDLWriterImpl.java:563)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writePortType(WSDLWriterImpl.java:422)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeDefinition(WSDLWriterImpl.java:186)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeWSDL(WSDLWriterImpl.java:93)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeWSDL(WSDLWriterImpl.java:83)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.writeOutWSDL(WSDLImportLocalizer.java:637)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.writeOutTo(WSDLImportLocalizer.java:568)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.localize(WSDLImportLocalizer.java:278)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.localize(WSDLImportLocalizer.java:162)
    at oracle.j2ee.ws.tools.wsa.Assembler.topDownAssemble(Assembler.java:828)
    at oracle.j2ee.ws.tools.wsa.cli.Processor.execute(Processor.java:320)
    at oracle.j2ee.ws.tools.wsa.cli.Processor.execute(Processor.java:169)
    at oracle.j2ee.ws.tools.wsa.Main.mainNoSystemExit(Main.java:83)
    at oracle.j2ee.ws.tools.wsa.Main.main(Main.java:48)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeWSDL(WSDLWriterImpl.java:95)
    at oracle.j2ee.ws.wsdl.xml.WSDLWriterImpl.writeWSDL(WSDLWriterImpl.java:83)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.writeOutWSDL(WSDLImportLocalizer.java:637)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.writeOutTo(WSDLImportLocalizer.java:568)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.localize(WSDLImportLocalizer.java:278)
    at oracle.j2ee.ws.common.wsdl.WSDLImportLocalizer.localize(WSDLImportLocalizer.java:162)
    at oracle.j2ee.ws.tools.wsa.Assembler.topDownAssemble(Assembler.java:828)
    at oracle.j2ee.ws.tools.wsa.cli.Processor.execute(Processor.java:320)
    at oracle.j2ee.ws.tools.wsa.cli.Processor.execute(Processor.java:169)
    at oracle.j2ee.ws.tools.wsa.Main.mainNoSystemExit(Main.java:83)
    at oracle.j2ee.ws.tools.wsa.Main.main(Main.java:48)

    HI,
    Seems known issue. I would suggest to raise an Service Request with the test case.
    GD,
    Ashish

  • SFTP Seeburger adapter - Could not find channel for report handling between

    Hello Friends ,
    We have R3 -> PI-> SFTP scenario . The messages are transferred successfully and the file is successfully received at the receiving end . But when we do communication channel monitoring , we see errors in Receiver CC . The Reciever CC contains SFTP adapter (Seeburger) . Recently the Seeburger adapter is upgraded and the below error has started occuring then onwards .
    Error Message which we see in CC monitoring for Receiver CC (SFTP) is as below .
    Initiation of Transmission Report( job id: da405030-30c6-11df-8b6e-797b8921162c milestone: 290) failed! Exception occured: Error while preparing XI message. Error: Could not find channel for report handling between parties: fromParty, toParty: Itella) - com.seeburger.xi.connector.fw.ConfigurationException: Error while preparing XI message. Error: Could not find channel for report handling between parties: fromParty, toParty: Itella) [3/16/10 8:40 AM]
    Could experts help me ...
    Thanks for your time .
    Regards,
    Laxman Nayak .

    Hi,
    I also have the error you mentioned but we're implementing the Seeburger SFTP adapter for the first time.
    I've requested transport acknowledgements in my ABAP proxy and have checked the 'Deliver transmission report' flag in the adapter but I don't know what else I must do.
    Any help would be greatly appreciated.
    Thanks,
    Alan

  • Hi there, i erased my macbook and trying to reinstall it, i keep getting an error message"could not find installation for this machine" please what can i do?

    Hi There,
    I erased my macbook and trying to reinstall it, i keep getting an error message "could not find installation for this machine" what must i do please?

    It is the internet connection.
    Try again or another internet connection.

  • Could not find IUIBaseCommand for alias Error

    Hi everyone,
    I developed a new UI Command in KM, but I get the following error in the "default trace":
    Could not find IUIBaseCommand for alias
    What does mean ?
    Thanks & Regards,
    Hassan

    Hi,
    most probably that means you are trying to use command (in some command group or so) which does not exist or is wrongly registered with different alias. It should be logged in the error message what is the alias it can not find.
    Best,
    --epexpert

  • U401 touch windows 8 audio driver unable to install error could not find divice for this driver

    u401 touch windows 8  audio driver unable to 0wau05w8.exe install error could not find device for this driver
    kindly advise

    hi karthi2lenovo,
    Welcome to the Forums.
    If the conexant audio drivers from the lenovo website doesn't detect the device, can you try to:
    1. Open Device Manager (press Winkey+R > type devmgmt.msc)
    2. On the device manager, open Sound, video, and game controllers and Other Devices then check the status (if there's a yellow exclamation mark, error codes, etc.)
    3. As an alternative, try this conexant driver from station-drivers:
    Conexant High Definition Smart Audio
    Version 8.64.59.52 (Win8)
    Let me know your findings,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • RV120W [IKE] ERROR: Could not find configuration for X.X.X.X

    All
    I setup the RV120W to allow my MAC desktops to connect in over the internet. MAC;s are running IPSecuritas or VPNTracker. Both don't work.
    Setup is
    Basic VPN Setup Default Values for IKE:
    Gateway Policies
    Client Policies
    Exchange Mode:
    Main
    Aggressive
    ID Type:
    Local WAN (Internet) IP
    FQDN
    Local WAN (Internet) ID:
    Local WAN (Internet) IP
    remote.com
    Remote WAN (Internet) ID:
    Remote WAN (Internet) IP
    local.com
    Encryption Algorithm:
    3DES
    3DES
    Authentication Algorithm:
    SHA-1
    SHA-1
    Authentication Method:
    Pre-Shared Key
    Pre-Shared Key
    Key-Group:
    DH-Group 2 (1024 Bit)
    DH-Group 2 (1024 Bit)
    Lifetime:
    8 Hours
    8 Hours
    Basic VPN Setup Default Values for VPN:
    Encryption Algorithm:
    3DES
    Authentication Algorithm:
    SHA-1
    Lifetime:
    1 Hours
    PFS Key Group:
    DH-Group 2 (1024 Bit)
    NETBIOS:
    Enabled (Gateway Policies)
    Disabled (Client Policies)
    When my clients try and login. All I see in the logs is
    011-11-28 10:05:43: [rv120w][IKE] ERROR:  Could not find configuration for 212.183.140.51[65212]

    The error that you are getting that shows in the log file by the "pings being blocked" it refers to the connection being block by the firewall or security on your computer.
    Things that you should look for is: What type of internet security software you are using will a lot of the time block QVPN from working.
    With Windows 7 it has a lot of added security so the windows 7 Firewall has to be on because soon as the firewall is turn off or another firewall is loaded that turns off Win7 firewall, the Win7 OS turns off IPSEC and that is needed for quick VPN to work. Hope this has been helpful and gave you some more understanding.

Maybe you are looking for

  • No data from BW-Query in BO-tools

    Hello all On a newly installed BO XI 3.1 with the SAP integration kit I cannot get data from my existing BW queries. For example, if I start Xcelsius and add my BW-system as connection I can get the structure of the query (headings) but no data is di

  • How to Create a PDF file from database package/procedure in 10g?

    Hi, Is there a way to create a pdf file in 10g Application Server using PL/SQL package/procedure in 10g database? Thanks in advance. Regards Vishnu Nekkanti

  • Delete Adjacent Records in DTP execuetion

    Hi , I just want to delete adjacent records while loading DTP ,since Start routine logic was incorporated. Adjacent Records are not getting deleted because of the comparison takes place in different data packages. Pls. let me know if u have some idea

  • HELP!!! MacBook wont print on wireless computer

    New to Macs. I have a Lexmark X7550 wireless printer that was set up on our wireless network and works fine with three other PCs. But I can't get the MacBook to print or find it when i go through System Preferences. But I can see the printers name on

  • How to create subfolders for Albums?

    everytime i add a new albums to that long list, it gets very hard to find them again. sometimes i dont even know what im looking for because its just a random list. is there any way to improve it? i still wanna keep the albums as they are instead of