PI 7.11 process SOAP message  with Attachments failed

Hello,
we have a scenario where the sender (3rd-Party) start a sync call via PI to a receiver (SAP BW system).
The receiver send a response with attachment. SAP processed the message successfully but sender could not processed message because the SOAP header do not have the attribut Content-Transfer-Encoding.
with this attribut I could tell the sender that the attachments are more then 7bit.
How to can I set this attribut into the SOAP header in the SAP PI?
Or have someone an other idee?
Thanks and regards
Martin

Have a look at at MultipartHeaderBean and MessageTransformBean at [http://help.sap.com/saphelp_nwpi711/helpdata/en/cd/5af7c0c994e24fb0d0088443513de2/frameset.htm|http://help.sap.com/saphelp_nwpi711/helpdata/en/cd/5af7c0c994e24fb0d0088443513de2/frameset.htm]
It talks about content ID, content description, content type, content disposition but it does not mention Content-Transfer-Encoding.
Regards
Asif

Similar Messages

  • How to send a SOAP message with attachments

    How to send a SOAP message with attachments thru webservice using axis-1_3 can any one sujjest.............................

    Please refer
    http://www.javaworld.com/javaworld/jw-09-2003/jw-0912-webservices.html
    http://xml.sys-con.com/read/40315.htm

  • Does Workshop deal with SOAP Messages with Attachments

    I try to send back an image from my web service. Is there a way to make a SOAP Messages
    with Attachments using BEA Workshop?
    Thanks,
    Jerome.

    Hi Jerome,
    I'm pretty sure that Workshop doesn't support SwA (SOAP with Attachments) yet. The
    product manager says that it is being considered for a future version, though :-)
    In the meantime, I don't see any reason why you can't just use a Java class that
    uses the JavaMail API to construct a Multipart MIME message. The MimeMultipart class
    (the one that acts as a container for a multipart/related document) has a writeTo()
    method that you can use to populate a ByteArrayOutputStream. Afterwards, you should
    be able to use the toByteArray() method on this ByteArrayOutputStream, to create
    the byte[] that maps to a xsd:base64Binary data type. The nice thing about this,
    is that the target web service has complete access to the SOAP message (in the first
    Body part), and all the attachments :-)
    Just a thought...
    Mike Wooten
    "Jerome Sonnet" <[email protected]> wrote:
    >
    I try to send back an image from my web service. Is there a way to make
    a SOAP Messages
    with Attachments using BEA Workshop?
    Thanks,
    Jerome.

  • How to send SOAP Message with attachments?

    Hi All,
    I am working on a SOAP to RFC Scenario With specific requirement of handling the attachment(Mainly Excel Attachments) at the Sender SOAP Adapter.
    Kindly Suggest.
    I found lot of theoritical stuff but no practical scenario.
    Regards,
    Sachi

    Hi Sachi,
    To handle attachment in SOAP sender adapter  first of all you will have to use the AXIS message protocol.
    Then by using MessageTransformBean you can handle the attachment.
    1) Check this link for the module processing sequence used to get the attachment from SOAP
    SOAP Axis sender with CSV file attachment
    2) Check this blog which will help you on the usage of MessageTransformBean
    Solve Key Field Problem using StructPlain2XML in MessageTransformationBean!!
    http://help.sap.com/saphelp_nw04/helpdata/en/24/4cad3baabd4737bab64d0201bc0c6c/frameset.htm
    using MessageTransformBean you can handle only the text file attachments like comma separated file, pipe separated, fixed lengths etc. But if you are looking to handle a excel file you will have to use a java mapping to get the data from excel attached file. for this have a look at this following blog by Shabarish:
    Excel Files - How to handle them in SAP XI/PI (The Alternatives)
    Do remember to use SOAP Axis adapter and to tick the keep attachment option.
    Hope this helps.
    Regards,
    Aravind

  • How to send SOAP Message with Oracle B2B

    Hi everyone,
    I need your help to send out from Oracle B2B a SOAP message with attachment of any type of file (image, pdf, etc.). Possibly using a SOA composite application or another way, it doesn't matter. I already create an ebMS partnership with a custom document protocol and I already create a working SOA composite application to send only text message to my trading partner. I have tried this solution: http://anuj-dwivedi.blogspot.it/2011/04/ebms-attachment-handling-in-oracle-b2b.html but it doesn't work for my case... It is to be noticed that I don't give any schema to my component in the SOA application explained firstly, and I select opaque as schema.
    Thanks to all, regards
    Nello

    Hi Anuj and thanks for your help,
    I need to send an ebXML message, with SOAP, and I try to send it with a .war application written in jsp connecting to http://10.85.28.24:8001/b2b/transportServlet to send the SOAP message. The errors reported is:
    javax.xml.soap.SOAPException: Unable to receive message. Received a response from url: http://10.85.28.24:8001/b2b/transportServlet with HTTP status 200 and SOAP content-type: null.
    the code I write is the following (to evaluate the two "null" in the super constructor)
    <%!
    public class EBMSSender extends SOAPRunner
    private String cpaId;
    private String service;
    private String action;
    private String mess;
    private ArrayList<String> allegati=null;
    public EBMSSender(String cpaId, String service, String action, String mess, ArrayList<String> file)
    super("http://10.85.28.24:8001/b2b/transportServlet","null", "null");
    this.cpaId = cpaId;
    this.service = service;
    this.action = action;
    this.mess=mess;
    this.allegati=file;
    @Override
    protected void prepareRequest(SOAPMessage soapMessage, SOAPBody soapBody) throws SOAPException
    soapBody.addChildElement(SOAPUtility.createElement("CPAId", getNsPrefix(), getNsURI(),"agr3"));
    soapBody.addChildElement(SOAPUtility.createElement("service", getNsPrefix(), getNsURI(),"OracleService"));
    soapBody.addChildElement(SOAPUtility.createElement("action", getNsPrefix(), getNsURI(),"Oracletohermesb"));
    soapBody.addChildElement(SOAPUtility.createElement("serviceType", getNsPrefix(), getNsURI(),"OracleServiceType"));
    soapBody.addChildElement(SOAPUtility.createElement("convId", getNsPrefix(), getNsURI(), "convId"));
    soapBody.addChildElement(SOAPUtility.createElement("fromPartyId", getNsPrefix(), getNsURI(), "Oracle"));
    soapBody.addChildElement(SOAPUtility.createElement("fromPartyType", getNsPrefix(), getNsURI(), "Name"));
    soapBody.addChildElement(SOAPUtility.createElement("toPartyId", getNsPrefix(), getNsURI(), "Hermes-b"));
    soapBody.addChildElement(SOAPUtility.createElement("toPartyType", getNsPrefix(), getNsURI(), "Name"));
    attach(soapMessage);
    protected void attach(SOAPMessage soapMessage)
    String h=mess;
    DataHandler dh;
    AttachmentPart ap = soapMessage.createAttachmentPart(h,"text/plain");
    soapMessage.addAttachmentPart(ap);
    if(allegati!=null)
    for(int i=0; i<allegati.size();i++)
    dh=new DataHandler(new FileDataSource(new File(allegati.get(i))));
    ap=soapMessage.createAttachmentPart(dh);
    ap.setContentType(new MimetypesFileTypeMap().getContentType(allegati.get(i)));
    ap.setContentLocation(allegati.get(i));
    soapMessage.addAttachmentPart(ap);
    @Override
    protected void processFault(SOAPFault soapFault) throws SOAPException{}
    @Override
    protected Object processResponse(SOAPMessage responseMessage,SOAPBody responseBody) throws SOAPException
    SOAPElement messageId = SOAPUtility.getChild(responseBody, "message_id", getNsURI());
    return null;
    %>
    The code works fine on the other trading partner side to send ebXML message to Oracle B2B. Apart from this solution (however,it would be my favorite), I find your blog and I try to implement your solution. It works: it sends files with only text payload to the other trading partner without any problem, but if I try to send for example an image in byte array written in a file .txt, the ebxml file received has the byte array with wrong characters. it may be that I have not provided the xsd schema? in case if I wanted to send an ebXML message with text and attachments, what xsd schema do I need to provide?
    or is there another way to implement a SOA composite application to send SOAP messages with attachments?
    Thank for your help!, regards
    Nello

  • Outbound SOAP Message with Attachment

    The requirement is to invoke a web service by sending attachments in the outbound SOAP message. The attachment body needs to be assigned in the message flow, using an element E1 extracted from the message incoming into the flow.
    I am trying to use attachments variable to set content-type (text/xml) and body using E1. However, these are not getting assigned to attachments variable, as seen by logging the variable.
    I was told that $attachments cannot be changed inside the flow (it is marked black in the console unlike the header and body that are marked green). If that is the case, how do we invoke services using attachments from a message flow?
    Any pointers would be appreciated.

    Hi,
    A SOAP message may need to be transmitted together with attachments of various sorts, ranging from facsimile images of legal documents to engineering drawings. Such data are often in some binary format. For example, most images on the Internet are transmitted using either GIF or JPEG data formats. In this document we describe a standard way to associate a SOAP message with one or more attachments in their native format in a multipart MIME structure for transport.
    yes it is possible to send attachment with the SOAP.
    SOAP Message Packages
    A "SOAP message package" contains a primary SOAP 1.1 message. It may also contain additional entities that are not lexically within the SOAP message but are related in some manner. These entities may contain data in formats other than XML. The primary SOAP 1.1 message in a message package may reference the additional entities. Such additional entities are often informally referred to as "attachments." This section describes how to construct SOAP message packages and how SOAP processors will process them.
    A SOAP message package is constructed using the Multipart/Related media type, which is defined in RFC 2387. The rules for the construction of SOAP message packages are as follows:
    The primary SOAP 1.1 message must be carried in the root body part of the Multipart/Related structure. Consequently the type parameter of the Multipart/Related media header will always equal the Content-Type header for the primary SOAP 1.1 message, i.e., text/xml.
    The MIME Multipart/Related encapsulation of a SOAP message is semantically equivalent to a SOAP protocol binding in that the SOAP message itself is not aware that it is being encapsulated. That is, there is nothing in the primary SOAP message proper that indicates that the SOAP message is encapsulated .
    For more details you can refer these links
    http://www.w3.org/TR/SOAP-attachments
    http://www.w3.org/TR/soap12-af/
    regards
    Aashish Sinha
    PS : reward points if helpful

  • Soap message with Attachment

    Hi All,
    I have a requirement wherin I have to send an attachment(image) along with the soap payload.i.e. the soap message contains the payload and an attachment.For eg. the soap message is as shown below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP-ENV:Body>
        <ns1:MT_Soap xmlns:ns1="http://www.adc.com/sample">
             <Record>
                <FieldXML>abc</FieldXML>
                <FieldAthmt />
             </Record>
          </ns1:MT_Soap>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    How can I include the attachment(which is on a local machine) in the above soap message?
    Is it posssible to send the attachment in the field "FieldAtthmt"?
    If it is possible to send an attachment with the soap message then how can that attachment be handled in XI?
    Thanks in advance,
    Vikram

    Hi,
    A SOAP message may need to be transmitted together with attachments of various sorts, ranging from facsimile images of legal documents to engineering drawings. Such data are often in some binary format. For example, most images on the Internet are transmitted using either GIF or JPEG data formats. In this document we describe a standard way to associate a SOAP message with one or more attachments in their native format in a multipart MIME structure for transport.
    yes it is possible to send attachment with the SOAP.
    SOAP Message Packages
    A "SOAP message package" contains a primary SOAP 1.1 message. It may also contain additional entities that are not lexically within the SOAP message but are related in some manner. These entities may contain data in formats other than XML. The primary SOAP 1.1 message in a message package may reference the additional entities. Such additional entities are often informally referred to as "attachments." This section describes how to construct SOAP message packages and how SOAP processors will process them.
    A SOAP message package is constructed using the Multipart/Related media type, which is defined in RFC 2387. The rules for the construction of SOAP message packages are as follows:
    The primary SOAP 1.1 message must be carried in the root body part of the Multipart/Related structure. Consequently the type parameter of the Multipart/Related media header will always equal the Content-Type header for the primary SOAP 1.1 message, i.e., text/xml.
    The MIME Multipart/Related encapsulation of a SOAP message is semantically equivalent to a SOAP protocol binding in that the SOAP message itself is not aware that it is being encapsulated. That is, there is nothing in the primary SOAP message proper that indicates that the SOAP message is encapsulated .
    For more details you can refer these links
    http://www.w3.org/TR/SOAP-attachments
    http://www.w3.org/TR/soap12-af/
    regards
    Aashish Sinha
    PS : reward points if helpful

  • Mail message with attachments

    I use iMacs for work.  I often send email messages with attachments using Mail.  Often, when sending email messages to Windows users (they are out there still), they will reply that they cannot open "the second attachment."  The message seems to "pick up" a second apparent attachment, which is generally just a few K in size, and is not part of the original message or attachment.  Unfortunately, though, it tricks the recipient into thinking that there are two attachments and the second one is meaningful  So then they respond and I have to assure them that the second attachment is irrelevant and can be ignored. 
    Any thoughts on how to fix this, so outgoing email messages will only present the intended attachment?

    That's a great question.  I do use a signature, but inasmuch as it is simply text pre-inserted in the email message, I would be surprised if the signature somehow became stripped out and converted to an attachment. Nonetheless, I will try deleting the signature to see if that makes any difference. 

  • How to send SOAP message with attachment?

    Hi Experts,
    How do I simulate to send a SOAP message with an attachment? Can I use XMLSpy?
    Please help.
    Thanks,
    Shobhit

    Ravi,
    With the generic SOAP client, it asks for the http based wsdl file location. But my wsdl has been generated by XI and I have the file stored on my desktop.
    Something to do with the path http://zpidd01:8030/XISOAPAdapter/MessageServlet?channel=NetworkPartners:NP_Order_BS:NP_SOAP_Sender_CC ??
    Stefan,
    my scenario is to send a SOAP request with attachment and post the attachment in ECC through the ABAP server proxy.
    WebService Client -
    SOAP----> XI -
    ABAP PROXY CALL ---> ECC
    Need further assistance from both of you how to achieve this scenario.
    Thanks,
    Shobhit
    Edited by: Shobhit Swarup Mathur on Jul 24, 2008 4:34 AM

  • I want messages with attachments to not be sorted and I want to see the attachment icon

    Thanks for sending me the information on showing the attachment icon. I did what you suggested, and it did not work. And now, if I get an email with an attachment, I don't see the email--it is buried somewhere in my inbox. I used to be able to get messages with attachments and they would come in chronological order, and there would be an attachment icon. Can you please help?

    Click on the header label DATE to sort by date. Click DATE a 2nd time to reverse the sort order.
    This works on any header. The one to click on is where it is going to sort.
    Do you have the attachment column showing? See image.
    If not click the circled icon and add it.

  • Mail crashes on opening any message with attachments

    mail crashes on opening any message with attachments
    this started happening about a month ago. I thought the problem was that there was too much mail in the program -
    so, I acquired a program called MAILSTEWARD (which I recommend!) and it stores & saves my old mail.
    I reset MAIL, so it kept my address and smart folder instructions etc, but all the mail itself was gone (I forget how I did that - I probably will try it again...)
    for a few weeks, everything was fine - I could open an eMail with an attachment, and it worked.
    but now it started crashing again everytime there's an attachment!
    don't know what to do - there's only a month's worth of mail in there (which I should clean out anyhow) - but it seems to me that's not too much...
    thanks!
    w

    that's it - I ran the updater - and I believe I have been able to use it all day without the program crashing when it encounters an attachment.
    one goofy thing I noticed, for the first time, there appear to be two applications folders on my start-up drive (1) in my user folder (2) in the "main" hard drive folder.
    MAIL is in both - I believe the "main" one was updated; when I turned on the "user" MAIL it crashed when I opened an eMail with an attachment; when I opened the same eMail with the "main" mail there was no problem.
    now what does this tell us?
    thanks again!
    will

  • Exchange 2007 server will not send intra-organisation messages with attachments

    Hi we have a problem with the Intra-Organisation connector between out Dubai and London office.
    If they send us a plain message it is delivered OK, however if there is any attachment most of the time the message sits in the queue and continually retries. On some occasions messages do get delivered.
    The errors vary between Connection Timed Out, Connection Dropped and 10061, No connection could be made because the target machine actively refused it.
    As Dubai have a dynamic IP address they route all of their external mail via London and that is all going through OK. All of the other sites can send and receive OK with attachments both internally and externally.
    To me this looks like I have a problem with the Intra-Organisation SMTP Send Connector on the Dubai server but I cannot spot anything that might be causing this issue.
    They have worked previously however another issue did involve removing the Dubai server from the domain and adding it back in. Since then we have had this problem.
    I have checked message size limits on the Send connector (100Mb) and the Transport settings (100Mb). I have checked the message size limits on the Intra-Organisation SMTP Send Connector (unlimited) and even on the user's mailbox (unlimited).
    Any idea where I should be looking next?
    Many thanks, Eddie

    Hi Ed,
    I think you may have hit on the problem - this is all one org so having read up more on this it should not be using this.
    I spotted that the server was using this connector when I was looking the message tracking for the server and started looking into what it does and how to control it.
    I used the Set-TransportServer command to set protocol logging on this to verbose, it get entries in the SMTP send logs like this:
    2014-09-18T14:51:52.154Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,0,,192.168.4.5:25,*,,attempting to connect
    2014-09-18T14:51:52.300Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,1,192.168.5.1:52766,192.168.4.5:25,+,,
    2014-09-18T14:51:52.423Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,2,192.168.5.1:52766,192.168.4.5:25,<,"220 <remote server FQDN> Microsoft ESMTP MAIL Service ready at Thu, 18 Sep 2014 15:51:51 +0100",
    2014-09-18T14:51:52.443Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,3,192.168.5.1:52766,192.168.4.5:25,>,EHLO <local server FQDN>,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,4,192.168.5.1:52766,192.168.4.5:25,<,250-<remote server FQDN> Hello [192.168.5.1],
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,5,192.168.5.1:52766,192.168.4.5:25,<,250-SIZE,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,6,192.168.5.1:52766,192.168.4.5:25,<,250-PIPELINING,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,7,192.168.5.1:52766,192.168.4.5:25,<,250-DSN,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,8,192.168.5.1:52766,192.168.4.5:25,<,250-ENHANCEDSTATUSCODES,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,9,192.168.5.1:52766,192.168.4.5:25,<,250-STARTTLS,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,10,192.168.5.1:52766,192.168.4.5:25,<,250-X-ANONYMOUSTLS,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,11,192.168.5.1:52766,192.168.4.5:25,<,250-AUTH NTLM,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,12,192.168.5.1:52766,192.168.4.5:25,<,250-X-EXPS GSSAPI NTLM,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,13,192.168.5.1:52766,192.168.4.5:25,<,250-8BITMIME,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,14,192.168.5.1:52766,192.168.4.5:25,<,250-BINARYMIME,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,15,192.168.5.1:52766,192.168.4.5:25,<,250-CHUNKING,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,16,192.168.5.1:52766,192.168.4.5:25,<,250-XEXCH50,
    2014-09-18T14:51:52.576Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,17,192.168.5.1:52766,192.168.4.5:25,<,250 XRDST,
    2014-09-18T14:51:52.591Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,18,192.168.5.1:52766,192.168.4.5:25,>,X-ANONYMOUSTLS,
    2014-09-18T14:51:52.723Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,19,192.168.5.1:52766,192.168.4.5:25,<,220 2.0.0 SMTP server ready,
    2014-09-18T14:51:53.072Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,20,192.168.5.1:52766,192.168.4.5:25,*,,Received certificate
    2014-09-18T14:51:53.072Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,21,192.168.5.1:52766,192.168.4.5:25,*,FC006F5961FE665AD4FC1C0123FCEB6C0A477A49,Certificate thumbprint
    2014-09-18T14:51:53.074Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,22,192.168.5.1:52766,192.168.4.5:25,>,EHLO <local server FQDN>,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,23,192.168.5.1:52766,192.168.4.5:25,<,250-<remote server FQDN> Hello [192.168.5.1],
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,24,192.168.5.1:52766,192.168.4.5:25,<,250-SIZE,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,25,192.168.5.1:52766,192.168.4.5:25,<,250-PIPELINING,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,26,192.168.5.1:52766,192.168.4.5:25,<,250-DSN,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,27,192.168.5.1:52766,192.168.4.5:25,<,250-ENHANCEDSTATUSCODES,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,28,192.168.5.1:52766,192.168.4.5:25,<,250-AUTH NTLM,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,29,192.168.5.1:52766,192.168.4.5:25,<,250-X-EXPS EXCHANGEAUTH GSSAPI NTLM,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,30,192.168.5.1:52766,192.168.4.5:25,<,250-X-EXCHANGEAUTH SHA256,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,31,192.168.5.1:52766,192.168.4.5:25,<,250-8BITMIME,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,32,192.168.5.1:52766,192.168.4.5:25,<,250-BINARYMIME,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,33,192.168.5.1:52766,192.168.4.5:25,<,250-CHUNKING,
    2014-09-18T14:51:53.209Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,34,192.168.5.1:52766,192.168.4.5:25,<,250-XEXCH50,
    2014-09-18T14:51:53.210Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,35,192.168.5.1:52766,192.168.4.5:25,<,250 XRDST,
    2014-09-18T14:51:53.225Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,36,192.168.5.1:52766,192.168.4.5:25,>,X-EXPS EXCHANGEAUTH SHA256 ,
    2014-09-18T14:51:53.225Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,37,192.168.5.1:52766,192.168.4.5:25,>,<Binary Data>,
    2014-09-18T14:51:54.132Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,38,192.168.5.1:52766,192.168.4.5:25,<,235 <authentication information>,
    2014-09-18T14:51:54.143Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,39,192.168.5.1:52766,192.168.4.5:25,*,SMTPSendEXCH50 SendRoutingHeaders SendForestHeaders SendOrganizationHeaders,Set Session Permissions
    2014-09-18T14:51:54.163Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,40,192.168.5.1:52766,192.168.4.5:25,*,3757,sending message
    2014-09-18T14:51:54.164Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,41,192.168.5.1:52766,192.168.4.5:25,>,MAIL FROM:<[email protected]> SIZE=98854 BODY=BINARYMIME,
    2014-09-18T14:51:54.169Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,42,192.168.5.1:52766,192.168.4.5:25,>,RCPT TO:<[email protected]>,
    2014-09-18T14:51:54.298Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,43,192.168.5.1:52766,192.168.4.5:25,<,250 2.1.0 Sender OK,
    2014-09-18T14:51:54.300Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,44,192.168.5.1:52766,192.168.4.5:25,<,250 2.1.5 Recipient OK,
    2014-09-18T14:51:54.316Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,45,192.168.5.1:52766,192.168.4.5:25,>,BDAT 98856 LAST,
    2014-09-18T15:05:12.690Z,Intra-Organization SMTP Send Connector,08D1A167376C6407,46,192.168.5.1:52766,192.168.4.5:25,<,250 2.6.0 <23B7E7C020C8304085B1502492A968D13F75EA450D@localserver>
    Queued mail for delivery,
    So it does appear for some reason that the local mail server thinks it needs to use the wrong connector even though both servers that are in the same domain. It is odd that it only seems to affect messages with attachments.
    Can you give me any suggestions to try and find the root cause of this problem?
    Many thanks, Eddie

  • Sequential processing of messages with bpm process

    hi,
    i have a bpm process that i want to process my messages sequential. for this i initially have played around with crerating my own queue but that didn t work. then i mocved to use the collect pattern and then process the messages. this works only for around 150 messages and the others are staying stuck in the queue for the bpm process the queue is in status stop. if a drop in another file then the queue get cleared and the new messages are placed in it and it still stays in stop and i need to delete queu and start again. Is there a solutio for this that the queue will collect the messages and when the bpm proces is finished it will start again ?
    i have tried to avoid using the collect pattern and worked with my bpm process to let it use a specific queue  but that also didn t work. i can process 1 message and then the rest stays in the queue? any help would be welcome

    Hey
    is there any reason specific reason for using BPM?
    you can use EOIO to transfer your files sequentially.
    thanx
    ahmad

  • PL/SQL process returning message with more than 4000 chars

    In our apex application we are using a pl/sql process returning a message.
    This message should be shown to the user.
    Our problem is now, that the application items in APEX seem to be limited to 4000 chars and the message can be longer.
    We are also not able to use a collection, because we can't print the content of a collection in the "Process Success Message".
    Here is the content of a page process which is running on page load after header:
    Name - Type:     PL/SQL anonymous block
    Source - Process: :AI_TEST := p0001_pkg.get_text;
    Messages - Process Success Message: &AI_TEST.
    Image from process [https://twitter.com/OliverLemm/status/324058809138032640/photo/1/large]
    If the page is called the result is this error message:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Technical Info (only visible for developers)
    is_internal_error: false
    ora_sqlcode: -6502
    ora_sqlerrm: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    component.type: APEX_APPLICATION_PAGE_PROCESS
    component.id: 16433072916569237418
    component.name: get_text
    error_backtrace:
    ORA-06512: at "APEX_040200.WWV_FLOW_PROCESS", line 100
    ORA-06512: at "APEX_040200.WWV_FLOW_PROCESS", line 141
    Edited by: Oliver L on 16.04.2013 09:17

    no an item like P0_TEST on page 0 / global page also does not help.
    But the error is not the application item / page item it's the problem that the "Process Success Message" can't handle more than 4000 chars.
    I tried to paste a string into the process success message, but the error "Error processing row. ORA-01461: can bind a LONG value only for insert into a LONG column" occured even when i filled the textarea and saved the process.
    So there's no problem with the application item or page item.
    Edited by: Oliver L on 16.04.2013 10:00

  • Monitoring SOAP messages with JWSDP?

    Hi!
    Is it possible to monitor SOAP messages generated from the JWSDP during the connection between a client and the Web Service?
    Thank you.

    A useful standalone tool is TcpTrace (http://www.pocketsoap.com/tcptrace/)
    This is a windows program and I have found it very useful.
    The easiest way I have found to use it with JWSDP is to modify the tomcat port in JWSDP_HOME\conf\server.xml, and then configure TcpTrace to listen on the original tomcat port value, and forward to the new one.
    But if you do this, TcpTrace must be running whenever you attempt to install or modify anything which requires contacting the tomcat server.
    //Daniel.

Maybe you are looking for