Sender as File and receiver as WebService

I have following scenrio to work on but not sure how to do it.Any help on this is greatly apperciated.
I have sender which can post file to XI asynchronously and webService which can process it on the receiving it synchronously.
Is there any way to communicate between asynchronus and synhcronous interfaces.
Thanks,
Samir

Hi Samir, let me try to list down the i/f to be created to acheive ur scenario.
1)u need 1 abstract async i/f to receive the async message from file adapter
2)u need 2 abstract async i/f , one is the request message of the web service & other is the response message of the web service
3)U need 1 abstract sync i/f to be referenced in the send step of ccBPM.
Now, create 3 cotainers in ur BPM process for i/f created in step 1 & 2 above, and u shud now ve an sync-sync bridge mechanism in place.
-Saravana

Similar Messages

  • HT204161 I want to use iCloud for every thing else except for Messages. I do not want to send an iMessage and receive it on both my iPhone and Mac.

    I want to use iCloud for every thing else except for Messages. I do not want to send an iMessage and receive it on both my iPhone and Mac.
    How do I do that?

    Howdy kingtonz,
    If I understand you correctly, you want to limit to limit your use of the Messages application to non-iCloud sources such as text messaging through your phone carrier, is that right?
    You can turn off the use of iMessages in Settings > Messages > iMessage. See this help article -
    Messages settings - iPhone
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Oops...mail wont send large file and I cant get it to stop trying.

    I was sending a ;large file (116 megs) email to my wife by mistake, thinking the file was the resized images I had. I was sending this via .me account. When I open mail now, my .me account still tries to send the files, and I cant make it stop. Its not in my drafts or outbox, but the cog spins forever on my .me account. I then see a folder which says it is a recovered mail folder and those images are in two emails in that folder. Any help? I just want my .me inbox to recieve mail again and to send mail when I need it to. This has been going on for two days now.

    Search using the name of this large file in Spotlight -- anything show up in an unexpected location?
    If you click on Window in the menubar, and choose Activity, what does it says is in process?
    Quit Mail, and hold down the Shift key while clicking to relaunch Mail -- make any difference?
    Ernie

  • Mutiple sender files and receiver files with different file names

    Hi All,
    Following is my scenario: File (FTP) --> XI --> File (NFS actually SAP system)
    I have 5 source files like ABC<b>1</b>_DateTimeStamp, ABC<b>2</b>_DateTimeStamp, ABC<b>3</b>_DateTimeStamp, ABC<b>3</b>_DateTimeStamp and ABC<b>3</b>_DateTimeStamp.
    I can use single sender file FTP adapter with file name ABC* which picks up all 5 files, but can I use single receiver adapter to create 5 different files with the following file names: ABC1, ABC2, ABC3, ABC3 and ABC3 ?? And last 2 files (ABC3 and ABC3....same name) should be created after 30min and 60min of first ABC3 file. We have to do this because we have jobs scedule on SAP side with variants having file names.
    Is it possible to achieve using single sender/receiver file adapter??
    If not any suggestions how to do this scenario?? 
    Thx
    Navin

    Navin,
    I doesn't know whether its feasible for you or not. Please see the below option
    Create 3 Sender  comm.channels and 1 Receiver comm.channel. In Sender /Receiver file adapter check the Adapter Specific Message attributes.
    I'm suggesting the soln using BPM.
    In IR, Create 3 Outbound Interface (Abstract) and create 1 Inbound Interface(Abstract).
    First 2 comm.channel and 2 Oubtound interface refers to file 1 & file2 respectively.
    The 3rd comm.channel and 3 Outbound interfaces refers to file3 & file4& file 5 .
    Please see the BPM design.
    http://www.flickr.com/photo_zoom.gne?id=698877499&size=o
    Note : Navin the above suggestion is my thought, I think it will work. U can juz give a try.
    Best regards,
    raj.

  • How to use  the same channel to send a file and messages to the server

    I'm trying to develop a simple program that will send and receive files from the server and in the same time I need to communicate with the server through the messages
    I'm using TCP Socket
    my problem is
    I have only one channel
    so, I have no option, either I can use it for sending the file itself or sending the message .. but not both !
    my question is : How can I use the same channel for sending and receiving (file & message)
    I would appreciate for any clue or hint
    best

    kajbj wrote:
    kmarwani wrote:
    Thanks for reply
    yes, that what I'm thinking to do
    but, in case of sending binary file, if I attached a flag on its header, will it corrupt the file ?
    bestThe other end would of course need to decode the messages that you get, and only write the "data" part to the file.Thanks
    I'm gonna try to hard-code what you suggest and i will post what happen with me here
    even though I'm not sure how can I add header to a binary file and remove it from the file at other end. (coz I read it as stream and send as array without touching its contents)
    this how I'm sending the file
    ConnSocket = CSocket.accept();
    ToClient = new DataOutputStream(ConnSocket.getOutputStream());
    File myFile = new File("abc.jpg");
    FileInputStream myFileInStream = new FileInputStream(myFile);
    BufferedInputStream mybuffInStream = new BufferedInputStream(myFileInStream);
    myBytArray = new byte[(int) myFile.length()];
    mybuffInStream.read(myBytArray, 0, myBytArray.length);
    ToClient.write(myBytArray, 0, myBytArray.length);
    ToClient.flush();
    myFileInStream.close();best

  • Combine Two Files and sent to webservice

    Hi all,
    I need to read two files and combine in XI and i need to send it to webservice.
    can anyone please tell me which way is the better.
    kind regards,
    Praveen

    hi
    i am reading two different file structures and i need to map it to webservice structure.
    i did all design and config steps including BPM also. i used fork step with two receivers and transformation step and send step.
    but in the mapping iam getting only first file message only.
    This is source message
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:Test_result_MT xmlns:ns1="http://lonmin.co.za/GetServeyData">
             <Details>
                <x>10</x>
                <y>aaa</y>
             </Details>
             <Details>
                <x>20</x>
                <y>bbb</y>
             </Details>
          </ns1:Test_result_MT>
       </ns0:Message1>
       <ns0:Message2>
          <ns1:Test_result_MT xmlns:ns1="http://lonmin.co.za/GetServeyData">
             <Details>
                <x>30</x>
                <y>ccc</y>
             </Details>
             <Details>
                <x>40</x>
                <y>ddd</y>
             </Details>
          </ns1:Test_result_MT>
       </ns0:Message2>
    </ns0:Messages>
    Target Messgae must be like this
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
    <ns0:Message1>
    <ns1:Test_final_MT xmlns:ns1="http://lonmin.co.za/GetServeyData">
         <Details>
         <x>10</x>
         <y>aaa</y>
         </Details>
         <Details>
         <x>20</x>
         <y>bbb</y>
         </Details>
         <Details>
         <x>30</x>
         <y>ccc</y>
         </Details>
         <Details>
         <x>40</x>
         <y>ddd</y>
         </Details>
    </ns1:Test_final_MT></ns0:Message1></ns0:Messages>
    i am giving source and target message can any one please tell me which elements i must map to get this target structure.
    Edited by: Kiran Kumar on Dec 19, 2007 1:21 PM

  • How to send data (file and text both) from jsp to servlet

    upload JSP 
    case 1>> if i am using this  <form enctype="multipart/form-data" the file value is comming on the servlet side
             and other vales are not comming when i am using request.get parameter(....);
    case 2>>  if i am using this <form  type="text/html" the "submissionperiod" and "Types" value is comming on the servlet but the file is not comming ........
         How to resolve this issue .  i need to send all the three parameter on single submit and retrieve the parameter values  in my servlet .
    please help !
    <form enctype="multipart/form-data" name="form" method="post" action="Upload" >
                    <table font size="3" style="color:brown;font-family:Arial" >
                    <tr>
                    <td>Submission Year:    </td>
                    <td><select  name="submissionperiod">
                         <option value="">--select--</option>
                         <option value="2000">2000</option>
                         <option value="2001">2001</option>
                         <option value="2002">2002</option>
                         <option value="2003">2003</option>
                         <option value="2004">2004</option>
                         <option value="2005">2005</option>
                         <option value="2006">2006</option>
                         <option value="2007">2007</option>
                         <option value="2008">2008</option>
                         <option value="2009">2009</option>
                    </select><label class="Required">*</label></br></td>
                    </tr>
                    <tr>
                    <td>Submission Type :    </td>
                    <td><select  name="types"   onchange="showDescription()">
                         <option value="">--select--</option>
                         <option value="CRF">CRF</option>
                         <option value="NIR">NIR</option>
                         <option value="NC">NC</option>
                         <option value="SEF">SEF</option>
                    </select><label class="Required">*</label></br></td>
                   </tr>
                   <tr><td></td><td>
                   <div id="divTypeDetails">
                    <textarea  id= "subTypeDes" name="subTypeDes"  value=""></textarea></br></br>
                  </div>
                  </td>
              </table>     
              <td>Select a file (< 100 MB):   </td>
              <td><input id="importFile" name="importFile" type="file"></br>          
              </td>
              <input type="hidden" name="types">
              <input type="hidden" name="submissionperiod">
              <input type="submit" id="submitButton" name="submit" value="Upload" onclick = "checkUploadValidity();"/>
              <input type="button" name=btncancel id=btncancel value="cancel" onclick= "btncancel_click()"/>
    </form> 

    Both the file and text values are included in the binary inputstream of the request. The parametermap is always empty.
    There exist 3rd party API's to parse multipart/form-data streams, such as [Apache Commons FileUpload API|http://commons.apache.org/fileupload].
    Read at least the 'User Guide' and 'Frequently Asked Questions' sections.

  • I upgraded because they said my files were too big but I've emailed files a lot prior.  now after the upgrade I have a completed file to emial to someone, enter all the data, and there is no "SEND" button.  how do i send these files and why isnt it just l

    I have often sent pdf or other files with adobe by email with no problem.
    this file it said was too big so I'd have to upgrade to send it.   so I upgraded it.  I followed all the instructions, email, etc, etc, and its' ready to go but there is no SEND button.  how do I sent my file?

    Are you still experiencing a problem with Adobe Send?  We inadvertently introduced a problem earlier today (now fixed), but you reported your issue was last night.
    Anyway, can you check again?

  • ABAP proxy client sending to XI   and Receive the data back from the DB

    Hi
    I am new to XI need a clarification on the following scenario
    I have a scenarion where ABAP Proxy (Clinet) from ECC will be sending the data to Data base server via XI,  and needs to return the values back to ECC
    ECC -
    > XI/PI -
    > Remote server  (Database)
          <-- XI/PI <--
    Can anyone give idea how can I develop this scenario.
    I am sure I would be using the Proxy BADI to send the data from ECC to XI in Asyscrounous mode,
    Thanks
    PR

    Hi,
    As you said the data will be sent asynchronously from BAPI to XI which means you will have to split up the scenario into two.
    First One -
    Sender Proxy - XI - Receiver JDBC.
    Second -
    Sender JDBC - XI - Receiver Proxy.
    You can set a flag to"1" when you insert data into table. the run a query on the database which will fetch record whose flay is set to "1" and also simultaneously rest the flag to "0" to indicate that this record is already send to SAP.You can make use of stored procedures too.
    Please award points if the reply is useful.
    Regards,
    Pragati

  • Iphone 4 16gb on verizon is sending blank texts and receiving symbols instead of letters from only certain people

    so i have had an iphone for a year ish and recently replaced it. on both phones from my boyfriend and my grandma (the only ones who have had this problem) i will receive their texts as a bunch of random symbols or gibberish every so often and again every once in a while i will text them a message and it will be blank so i send it again but change the words a little just in case but it still sends blank messages. im tired of this problem and i have no idea how to fix it. any ideas? ive tried turning off the mms messaging and turning it back on, but it still keeps happening. i think it might be a carrier problem??? all three of us are on Verizon. but im not sure.

    Have you tried to factory reset/restore your phone? May be also worth checking all the text carrier settings are correct such as message centre number.

  • TS3276 I am new using a mac product,let alone one which will allow me to sync all my email addresses. Why is is I can send normal email and receive normal email but when I try to forward an email as an attachment it never goes through.?

    I am new to Macbook. I have my email accounts synced; I can received and send all email, but cannot seem to forward an email or attachment, whats the problem? Connection Doc says I am all hooked up.

    Change the email on the old account to another new, current email address.
    An email address can only be linked to one Apple ID.
    It is possible to have content from multiple Apple ID's on a single iDevice.

  • Send xml file and recieve xml in response from servlet

    hi
    i want to send a xml file to http address and in response recieives an xml file from which i want to fetch value in java
    can everybody help me out by giving me some help code
    thanks
    haryy

    I think you can do this with the DOM API .
    Go through this: http://www.javaworld.com/javaworld/jw-07-2000/jw-0728-jdom2.html

  • I never set a password for my acrobat and it is locking my out of changing the password settings. I am trying to send a file and the reciever cannot access

    help

    There are quite a lot of possible things that are going on. Can you let us know
    1. What system you have (e.g. Windows 7, Mac OS Mavericks)?
    2. What version of Acrobat or Adobe Reader you have?
    3. WHO gets the message about a password (you or the receiver, or both)?
    4. What is the full text of the message, if you get it?
    5. If the receiver gets it, what security do you set on the file?

  • Help required for Sender Proxy/RFC and Receiver RFC approach. Urgent please

    Hi All,
    I have one sender R/3 system
    I have two receivers R/3 systems
    Business Partners data from sender R/3 system needs to be repliacted to 2 receivers R/3 systems
    From sender R/3 system one Sync Abap Client Proxy or
    Sync RFC will send Business Partners data to XI.
    For both receivers R/3 systems there is only one RFC Currently there is no flag condition for 2 receivers as this is
    Business Partner replication scenario.
    Also In XI there is restriction that multiple sync receivers cannot be there.
    Please let me know how to make this approach.
    Regards

    Rich,
    Create two O/B Interfaces - Synch. Create Proxy1 for O/B Interface1 , Proxy2 for O/B interface 2.
    So while defining Receiver determinatio, you will define as following,
    Receiver Determination----1
    Sender : Sender_BusinessSystem
    Sender Interface : O/B Interface 1 ( i.e Proxy1)
    Receiver : BusinessSystem_ C
    Interace Determination
    Sender : Sender_BusinessSystem
    Sender Interface : O/B Interface 1 ( i.e Proxy1)
    Inbound Interface: RFC_Rec
    Receiver Determination----2
    Sender : Sender_BusinessSystem
    Sender Interface : O/B Interface 2 ( i.e Proxy2)
    Receiver : BusinessSystem_D
    Interace Determination
    Sender : Sender_BusinessSystem
    Sender Interface : O/B Interface 2 ( i.e Proxy2)
    Inbound Interface: RFC_Rec
    Hope it helps!
    raj.

  • ICal import of .ics file and receive alarms error

    I receive an error import failed, items cannot be deleted from alarms. This only happens every so often. How can I resolve?

    Hi,
    Where do the .ics files come from? I believe iCal during event import scans the file for alarms it considers unsafe (some file action alarms etc.), it is probably an issue of it not being able to remove one of these if the .ics file is not formatted correctly.
    When this happens is there any related information in your Console output (Applications > Utilities > Console). There should be something there that may indicate why it's happening.
    John M

Maybe you are looking for

  • Multi vids in 1 swf

    hi all-          bigtime newbie--- my Q is: is there any reason i couldnt create 1 flash movie which actually contains several diff. videos with  somekindof control(action?-get/goto) to advance to                a specific frame which wud b the begin

  • Custom Function on OO ALV Grid

    I am trying to implement ALV_GRID_XT to enhance the ALV Grid toolbar by adding couple of custom funcitons.As per the SAP documentation I have created 2 methods ON_TOOLBAR - one for adding items on toolbar and the other ON_USER_COMMAND - for processin

  • Three questions: Problem syncing, video problem, podcast problem

    I had a 4GB Nano and now I've upgraded to a 5th gen. 80GB Classic. I'm having 3 issues. The first is after iTunes indicates that the sync is complete, the iPod still says "Do not disconnect." I just disconnect the iPod anyway and it is fine. This doe

  • Flash - batch import question

    I am working with a team on a large flash project for an academic assignment. One member is making a whole bunch of graphical buttons for this, and I wanted to know if there is a way to batch convert a bunch (40ish) of jpeg images to symbols in the l

  • Dynamic names for class and variable

    Hi Folks, How do you make a new instance of a class with a dynamic name. var dynamicname = new dynamicname() i try something var this["test"]:Class = new ["Test"]() but offcourse its not this... I need this couse i have a librairy with SWC fonts they