Do we need to mapp the SOAP Response to any thing in mapping???

Hi,
I have a scenario like IDOC----SOAP
In this we have the WSDl file for SOAP webservice, this contains Request and the response structures.
We are not mapping the response to any thing, why because we dont want any response and the IDOC is not ment for Sync process.
So what will happen in this case, any error will occure??
Regards
Suman

Hi,
i have one more doubt on this scenario,
Our Webservice team is saying that you dont mapp the Response structure in mapping and we will send the response msg to XI and Xi will show u the response msg in XI.
Is this possible by any chance
Regards
Suman

Similar Messages

  • Sending the SOAP request back in the SOAP response

    Hi,
    I have a requirement in which I need to update a database from the information I receive in a SOAP request. Now my database will respond back with the number of records that are updated. Now I need to send back a SOAP response which should have the details that I received in the SOAP request.
    Can anyone help me on how to send the SOAP request details back in the SOAP response again? I don't want to use a BPM to do this. Also I know that I can use a select statement to get the records that are updated in my response mapping program. Any options other than these?
    - Ram

    Hi Stish,
      I do have exactly the same need, just with the difference that I'm sendind data from JDBC as sender and RFC as receiver, the RFC receive an ID fot example and return some data as a response and I want to update the DB with that response but I dont know how to merge the ID from the request and the data from the response in order to send it back and update the DB. I'm willing to do it with BPM but I don't know how to keep the request and the response and then merge them into the new message that will be sent to the JDBC, can you give me some specific steps?
    Thanks in advance.
    Gustavo Balboa.

  • Details:  i can not buy any thing from the app store and any thing from in side any games pls fix my problem urgent and as soon

    Details:
    Hi i can not buy any thing from the app store and any thing from in side any games pls fix my problem urgent and as soon
    Note this is second email pls answer and fix my problem
    <Email Edited by Host>

    These are public forums, you are not talking to iTunes Support here (most of the people here, including myself, are fellow users) - I've asked the hosts to remove your email address from your post
    If you are getting a message to contact iTunes support then you can do so via this page and ask them why the message is appearing (we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If it's a different problem ... ?

  • Oracle ESB 10g : Blank namespace in the SOAP Response from DB adapter

    Hi All,
    I am currently working on a ESB project to route input XML file as a parameter to a DB Function.
    This Function has a input parameter of type XMLTYPE and returns VARCHAR2 values.
    I have configured the DB Adapter to invoke this function and return the result as a SOAP response.
    The WSDL of DB adapter contains XML_DATA as input and XMLMAIN as the output result.
    The ESB project works fine as expected. But in the result from DB adapter contains a blank namespace [xmlns=""] for the XMLMAIN element .
    I hereby attach the output XML.
    Please help how to remove this blank namespace from the output.
    We are using SOA Suite 10g 10.1.3.5
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/XXWEB/XMLMISCRCPTINSERTPKG/XMLMAIN/">
    <OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <XMLMAIN xmlns="">100</XMLMAIN>
    </OutputParameters>
    </env:Body>
    </env:Envelope>
    Thanks and Regards,
    Justin Michael Raj

    well..the problem is..the db adapter has it's own transaction..so the transactions fails or not.
    you're just not capable of checking if the transaction went ok...and return 'process completed ok' or when the transaction failed for some reason return 'the process aborted'.
    So you just need some extra steps for it to be able to return some response-message

  • Give a file with the SOAP response

    Hello experts!
    I'd like to ask you about the next situation on our PI 7.0:
    I have to make a scenario like this: SOAP -> XI -> RFC
    After a validation on the ECC side, in the the response.. I have to pick up a File (that come as the request from the webservice with his directory) and give it back to the Web Service.
    At the start I thought to do it with a BPM.. but the the issue is that the FileName and Direcory will be dynamic (the WS is going to request different files from diff. directories) and also, the WS response need the file, for example, lile a byte array.
    Is it possible?
    Please if it isn't fully explained tell me.
    Thanks,
      Juan

    I've seen in here:
    http://help.sap.com/saphelp_nw04/helpdata/en/cd/5af7c0c994e24fb0d0088443513de2/content.htm
    that:
    SOAP Adapter
    ●      In the sender adapter, you cannot add your own modules.
    Is this a constraints for what I posted above?
    Regards,
      Juan

  • Error when trying to read the SOAP Response

    Hai,
    iam trying to access the web service of DUBAI international Airport
    GetFlightSchedulebyDateRange at http://dca.gov.ae/WebServices/Flights
    This is my program
    package MyClient3;
    import java.io.FileOutputStream;
    import java.net.URL;
    import java.util.Iterator;
    import javax.xml.soap.MessageFactory;
    import javax.xml.soap.MimeHeaders;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPBody;
    import javax.xml.soap.SOAPBodyElement;
    import javax.xml.soap.SOAPConnection;
    import javax.xml.soap.SOAPConnectionFactory;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPFactory;
    import javax.xml.soap.SOAPFault;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.soap.SOAPMessage;
    import javax.xml.soap.SOAPPart;
    public class Client3 {
    public static void main(String arg[]){
    try{
    MessageFactory factory = MessageFactory.newInstance();
    SOAPMessage message = factory.createMessage();
    SOAPPart soapPart = message.getSOAPPart();
    SOAPEnvelope envelope = soapPart.getEnvelope();
    SOAPHeader header = envelope.getHeader();
    SOAPBody body = envelope.getBody();
    // header.detachNode();
    SOAPFactory soapFactory = SOAPFactory.newInstance();
    Name bodyName = soapFactory.createName("GetFlightSchedulebyDateRange",null,"http://dca.gov.ae/WebServices/Flights");
    SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
    Name name = soapFactory.createName("Todate");
    SOAPElement symbol = bodyElement.addChildElement(name);
    //symbol.addTextNode("2007-05-25T00:00:00.0000000+04:00");
    symbol.addTextNode("2007-05-27");
    name = soapFactory.createName("Fromdate");
    symbol = bodyElement.addChildElement(name);
    //symbol.addTextNode("2007-05-25T00:00:00.0000000+04:00");
    symbol.addTextNode("2007-05-27");
    MimeHeaders hd = message.getMimeHeaders();
    hd.addHeader("SOAPAction", "http://dca.gov.ae/WebServices/Flights/GetFlightSchedulebyDateRange");
    SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
    SOAPConnection connection = soapConnectionFactory.createConnection();
    message.writeTo(System.out);
    System.out.println();
    System.out.println(soapPart.toString());
    String endpoint = "http://dubaiairport.com/dcaflightinfo/fis/flights.asmx?WSDL";
    URL url = new URL(endpoint);
    SOAPMessage response = connection.call(message, url);
    response.writeTo(System.out);
    SOAPPart part = response.getSOAPPart();
    SOAPEnvelope env = part.getEnvelope();
    connection.close();
    System.out.println("\n\nIterating through the response object to get the values:\n\n");
    // SOAPBody se = response.getSOAPBody();
    }catch(Exception e){System.out.println("+++++++++++++++++++++++++"+e);}
    i am getting the error
    ERROR: 'Character reference "&#x1B" is an invalid XML character.
    in the statement
    SOAPEnvelope env = part.getEnvelope();
    can some help me to solve this problem, iam using JAX-WS 2.0, and netbeans

    I got the solution, there was a Invalid char in SOAP response message, i stored the SOAP res msg to a file, parsed that file to remove the invalid char , ans used the soap msg from the file,
    it worked perfectly fo me

  • Can't retrieve the result from the soap response

    We are trying to send and retrieve audio files using j2me web services. What we did is to convert the byte array (recorded audio) to hex string before sending it to the server. We used the sun java platform 9 for our web service, sun java wireless toolkit 2.2,mysql.
    We successfully saved and sent audio files that is recorded up to 39 seconds long. Longer than that, the application does not continue running the program. In retrieving the audio file from the database, the application could retrieve and play an audio file up to 2 seconds long. Any audio file longer than 2 seconds, the application does not complete the retrieval.
    We already looked on the memory usage of the emulator and it doesn't use the whole phone memory to retrieve a 3 seconds audio file. We also looked on the soap message response and it showed that it retrieves the whole audio file which is in hex string even if it is a 3 seconds audio file.
    We don't know why the phone/emulator could not retrieve the whole audio file (if it's longer than 2 seconds) from the server. What could be the cause of the problem?

    Hello,
    I am not sure that we have lot of HTMLDB experts monitoring this forum, this is why I am inviting you to post your question in the Oracle Application Express (APEX) (fka: HTMLDB)
    Regards
    Tugdual Grall

  • HT201210 i have a ipone4s and am trying to update to the latest version. There has been a error and now all i can get is a iTunes logo with a connection arrrow pointing up. i cannot get the phone to do any thing.

    I am trying to updated my Iphone 4s and there is a erroe while updating. My phone has now got a iTunes icon with a arrow below it and a picture of a connectione cable below that.  I cannot get the phone to respond to any thing.

    Here's a few things to check
    1. Make sure you are using the original usb cable provided by apple
    2. Try re-installing iTunes preferrably uninstall then install a new version
    3. Try different usb ports
    4. If all goes wrong, install itunes on a different computer and update it on the other computer, then you can always plug it up again on yours and restore your information

  • My free Adobe subscription is expired. I tried uninstalling the Reader and installing the new free Reader, but my system will not let me open a file and states I need to purchase the Adobe Reader. Any other way to view a PDF file?

    My free Adobe Reader has expired. I tried uninstalling the Reader and installing the new Free Reader trial, but my system still will not open a PDF file and states I need to subscribe to Adobe. Any way around this?

    Thank you.
    On Thu, Jun 26, 2014 at 9:44 AM, Bernd Alheit <[email protected]>

  • I can't seem to download what's needed to watch the latest movie trailers,any ideas?

    I've tried loading the latest Adobe Flash but my PowerBook G4 won't accept it. Not sure why, any ideas?

    What version are you trying to install? The max version for Tiger is v10.1. You can donnload here:
    http://prodesigntools.com/adobe-flash-player-10-1-direct-download-links-for-wind ows-mac.html
     Cheers, Tom

  • I keep getting an error on my pc part way through the setup than it reverts it's self so I can't even get to the apps to sync any thing an help.

    I get an error when I run iCloud setup so I can't get into it on my windows 8 pc. the error comes up : the error during the installation of assembly "microsoft.VC80.CRT,type="win32",version="8.050727.6195",publickeytoken="1fc8b3 b9a1e8e3b",process or architecture="amb64". please refer to help nad support for more information. HRESULT:0x80070570.  Any clue to what that means and how to fix it?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • I have my foctory unlocked iphone 4s , I over seas for vication tried to use SIM card to activate that but it did not activate, i tried to restore it also ,now the iphone did not show any of the i cons or any thing the only thing it shows SIM Not Valid so

    Hi this my consorn about my iphone i m over seas now for vacation and have hard time to activate my SIM card and when I restore my iphone and update the new soft wear ios6 shows just like it is not working

        We need to get your service up and running drakewit! Thanks for all the thorough information and everything you've tried. Let's start here, where did you get the HTC 8X? Did you purchase from VZW? We need to make sure the phone isn't on a lost/stolen list, or active on another account.
    Please Follow me and send a Private Message with the full name on account, as well as your 10-digit mobile number so I can access your account and check things out. If you could also include a number to follow up with you, if needed, it would be great!
    Thank you,
    Vanessa_VZW
    Please follow us on twitter @VZWSupport

  • I was syncing my iPad, must un-plug too early. iPad is frozen, just an apple symbol and a line. Won't response to any thing. Any suggestions?

    I was syncing my iPad, must un-plug too early. iPad is frozen, just an Apple symbol and a line on the screen. Won't response to anything. Any suggestion?

    Hold the Home button and the Power button at the same time until the iPad restarts.
    If that won't work, just let the battery completely drain before you plug the iPad into a power source again.
    Lastly, you could plug the iPad back in, startup iTunes and do a full restore.
    Hope this helps.

  • I can't see the page to by any thing because it has change for the way it was to black backround making it hard fore me, i can't see the page to by any thing because it has change for the way it was to black backround making it hard fore me

    i can't see the page to by anything because it has change from the way it was to a black backround making to hard to type the right info for payment detals

    This is a user to user help forum only. You are not addressing Apple here.
    My iPhone 4S, iPhone 5, and iPad 2 are running 6.1.3 with no such problem and the same with the overwhelming majority of iOS devices running 6.1.3.

  • Editing SOAP Response

    Hi,
    I have a requirement in which I need to edit the soap response before sending it back to client. Here is the code snippet.
    @Resource
    WebServiceContext context;
    @WebMethod
    public QueryByExampleOutput QueryByExample( QueryByExampleInput input ) {    
    QueryByExampleOutput output = new QueryByExampleOutput ();
    try
    output = adptInst.mQueryByExample(input); ---> this is another web service(Siebel) method
    //this is where I need to intercept the SOAP response before sending it back to client
    catch(lException se) {
    return output;
    How to achive this? I tried to use XMLStreamWriter but in vain.
    I am using WebLogic server 10.3 and JAX-WS stack.
    Thanks,
    Sudha.
    Edited by: user519950 on Jun 26, 2009 3:05 AM

    I tried the following steps. Still was not able to hit the handleMessage code during the webservice call.
    1.     Created a new class which extends SOAPHandler<SOAPMessageContext>
    public class SessionTokenHandler implements SOAPHandler<SOAPMessageContext>
    2.     Implemented getHeaders, close, handleFault & handleMessage in the above file
    3.     Created a new handlers.xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <handler-chains xmlns="http://java.sun.com/xml/ns/javaee">
    <handler-chain>
    <handler>
    <handler-name/>
    <handler-class>com.SessionTokenHandler</handler-class>
    </handler>
    </handler-chain>
    </handler-chains>
    4.     Included Handler annotation @HandlerChain(file = "handlers.xml") at the beginning of my Web Service class
    Am I missing something here?
    Thanks,
    Sudha.

Maybe you are looking for