How to send the message from front end to XI in sender webservice

Hi All,
I am doing webservice to proxy scenario, we want to send the message from front end to XI, front end is java application. can any one please guide me the steps need to done for front end to XI.
1) we wrote a webservice
2) i have created data type message type and message interface in IR
3) i have created sender soap adapter with interface name and namespace.
4) i have generated webservice in ID
but how can we send the message from front end to XI sender soap adapter.
Kind Regards,
Kiran

Hi,
Before going with the SOAP Adapter i suggest you to go through this Disscussion
Re: about http and soap
If you are going with the SOAP Adapter means
>>but how can we send the message from front end to XI sender soap adapter.
you have to use the XI  Server URL( http://host name:j2ee port/
Use this as Refference
http://help.sap.com/saphelp_nw70/helpdata/EN/ae/d03341771b4c0de10000000a1550b0/frameset.htm
Regards
Seshagiri

Similar Messages

  • I have three iPads and one iPod and one iPhone.  How can I message between them without sending the message to all of them.  You send the message to your email address but all of them are set up und one account.

    I have three iPads and one iPod and one iPhone.  How can I message between them without sending the message to all of them.  You send the message to your email address but all of them are set up under one account.

    You can have a different receiving email in the Messages app on each device : Settings > Messages > Receive At . I'm not sure that there is a different way to have the message only go to one device.

  • How to delete the messages from SXMB_MONI which are already cancelled .

    Hi All,
    The messages were earlier in System error(Red flag) state so i cancelled it manually.
    I want to know how to delete the messages from sxmb_moni which are already cancelled manually using ctrl+f8.
    if not possible , then i want to see them in earlier state i.e.., in System error(Red flag).
    can any tell me the procedure of doing it.
    thanks
    Sai.

    Hi AmitSri,
    Thanks for u r reply,
    What is retention period, where can i find this option.
    And i don't have authorizations to sxmb_adm --> configure delete procedure
                                                                             --> Define interfaces for archiving and retention period.
    and to RSXMB_DELETE_MESSAGES in se38 , i don't have authorizations to run
    Is there any way to delete the messages or make them to System error( Red flag) which are manually cancelled.
    Thanks
    Sai.
    Edited by: sai_SHA on Aug 17, 2011 12:29 AM

  • How to delete the messages from sxmb_moni with status cancelled

    Hi ,
    how to delete the messages from sxmb_moni with status cancelled
    Is there any report for this
    Regards
    Suman

    I think just for deleting the jobs you can do this only
    Scheduling Delete Jobs
    To schedule delete jobs, proceed as follows:
           1.      In the Integration Engine -
    > Administration menu, choose Schedule Delete Jobs.
           2.      Select the job(s) to be scheduled.
           3.      Specify the start time and date.
           4.      Specify the period you want to use and choose Schedule.
    For an overview of all jobs, choose Jobs.

  • How to delete the messages from JMS Queue

    Hi,Can anybody help how to delete the messages from the JMS Queue.Thanks in advance.

    You can dequeue the message using a JMS client or delete it using Weblogic Admin Console -
    http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e13952/taskhelp/jms_modules/queues/ManageQueues.html
    Regards,
    Anuj

  • How 2 move the message from memory card 2 phone me...

    did anyone know in nokia N73 how 2
    move the message from memory card move
    to phone memory???? did anyone know
    how 2 move it??? teach me plz.....

    Here is an easy way to move your messages from Phone Memory to Memory Card or from Memory Card to Phone memory In Nokia models.
    1- Install latest version of Nokia PC Suite and connect your set.
    2- Open Nokia Communication Centre. (Select Phone Memory or Memory Card from which you want to move messages to other memory)
    3- Select all messages in a single folder (Inbox/Sent Items or from My Folders) and click on file> export. This will create *.csv file.
    4- Download NBU Explorer 1.8 from http://www.soft82.com/download/windows/nokia-nbuex​plorer/  (You must have installed Windows Installer 3.1 and Microsoft .Net Framework 3.5 to run NBU Explorer. You can easily download these from Microsoft Site,)
    5- Open *.csv file in NBU Explorer and click File > Export All. (Your all messages will be exported as *.vmg files.)
    6- Disconnect and connect your phone again in Nokia PC Suite.
    7- Now set your target memory in your phone for messages.
    8- Open Communication Centre and Select your desired folder then click on file > Import messages by selecting multiple messages *.vmg files. (You don’t have to import messages one by one but you can import all messages in a single folder at once)
    9- And you have done it.
    10- You can import *.csv list in Nokia PC Suite rather *.vmg files, but in this case, all the spaces (blank spaces) in your messages will be lost. All the text of your messages will be merged to a single line. So exporting via NBU Explorer is recommended.  
    11- Any query?  Contact me at ********@yahoo.com.
    MODERATOR'S NOTE:
    E-mail address has been removed from this post as it is unwise to post such personal information in a public web forum. This is for your personal safety and privacy.
    Edited by: Aikin19

  • Error message when sending mail : sending the message failed because you have exceeeded your sending limit"

    I was trying to email a link from a webpage I loaded in safari.  The email sits in my outbox with a red exclamation point.  WIll not send.  Keeping getting an error message sending the message failed because you have exceeded your sending limit

    "I keep getting a "you have exceeded your limit" on my email."
    No explanation, makes no sense, it's happening with others.
    I have to change (in my outgoing/unsent folder) my sending address from .mac to me.com. After reading the following helpful post:
    To get outbox individual mails sent, Try going to outbox, opening each email to edit and change sending email to [email protected] by clicking arrow in from line.  If [email protected] account does not show, go to settings > mail > icloud account > add "[email protected]"  And, until this issue is resolved, set mail to send from [email protected]
    (and you should be using smtp.mail.me.com)

  • How to get the message from a Runnable class

    The Schedule class is actually a JFrame, what I want to do is to "get" the message from Scheduler Class and display it in a JTextField, to let user know what is doing.
    How can I approach this?
    public class Schedule {
        @SuppressWarnings("static-access")
        public static void main(String args[]) throws InterruptedException {
            final Scheduler s = new Scheduler();
            Thread t = new Thread(s);
            t.start();
    public class Scheduler implements Runnable{
    private static int actionType;
    private static String msg;
        public static void setMsg(String msg) {
            Scheduler.msg = msg;
        public static String getMsg() {
            return msg;
        public void run() {
            //System.out.println((int)(Math.random() * 1000));
            actionType = 1;
            while(true){
                try {
                    switch(actionType){
                        case 1:
                            setMsg("Process actionType: "+actionType);
                            break;
                            case 2:
                            Thread.sleep(2000L);
                            setMsg("Process actionType: "+actionType);
                            break;
                            case 3:
                            Thread.sleep(2000L);
                            setMsg("Process actionType: "+actionType);
                            break;
                            case 4:
                            Thread.sleep(2000L);
                            setMsg("Process actionType: "+actionType);
                            break;
                    actionType++;
                    if(actionType>4){
                        actionType = 1;
                } catch (InterruptedException ex) {
                    System.out.println("Scheduler.run:"+ex.toString());
    }

    Or with only one loop:
            int actionType = 0;
            while (true)
                actionType = (actionType % 4) + 1;
                msg = "Process actionType: " + actionType;
                try
                    Thread.sleep(2000L);
                catch (InterruptedException ex)
                    System.out.println("Scheduler.run:" + ex.toString());
            }

  • How to Clear the history in Front End for one or more users

    Hi All,
    Need small help. Can any body tell how to clear/delete the history for a user in the BW front ends for example for a Query Designer or a Reporting user.
    I tried, but didn't work.
    Thanks for the help.
    Regards,
    Venkat

    Venkat,
    History is stored in DSO 0PERS_BOD. You can do a selective delete of data based on the user name from this DSO to delete history.
    HD

  • How to display error message in front end application

    Hi Expert,
         I have one concurrent program that used to activate and deactivate the responsibilities ,
    I want that if any error occured in this program then how can I display the error message in application front end.
    Thanks in advance.

    Hi Paul,
    In the DOC_CHECK or DOC_SAVE BADI, you have a global internal table named et_messages. The structure of this table is 'bbp_smessages_badi'. You can append your error message here by inputting the message type, ID and number. The message type is either 'E' for error or 'W' for warning and the number would depend on your message class(ID). You will be able to see the error message on top of the screen, can be a red or yellow highlight depending on your appended message. I don't think creating the error message via the MESSAGE syntax will be successful, maybe this is why you are getting a runtime error.
    Regards,
    Noel

  • How to read the messages from the processed Batch session log

    Hi All,
    I am posting an accounting document through FB01 by submitting the report RFBIBL00 along with the file through which a Batch session gets generated in SM35.The Batch session is then processed by submitting the report RSBDCSUB. My code is as shown below:
    SUBMIT rfbibl00 WITH  ds_name = co_file_output
                      WITH callmode = co_batch AND RETURN.
    Process Batch session
      SUBMIT rsbdcsub
        WITH mappe = gv_name_jd
        WITH von   = sy-datlo
        WITH bis   = sy-datlo
         AND RETURN
    My requirement is to capture the document number from the log of the processed batch session. Can anyone suggest me how to go about this.
    Thanks in Advance,
    Vinay B

    Hi,
    check the routine read_bdc_log_plain in program rsbdc_protocol.
    get the data from table APQL and then use the logic.
            bapiret2-id = logtable-logmessage+74(16).
            bapiret2-number = logtable-logmessage+94(3).
            bapiret2-message_v1 = logtable-logmessage+100(20).
            CALL FUNCTION 'BAPI_MESSAGE_GETDETAIL'
              EXPORTING
                id         = bapiret2-id
                number     = bapiret2-number
                textformat = 'ASC'
                message_v1 = bapiret2-message_v1
              IMPORTING
                message    = bapiret2-message.
            WRITE: (60) bapiret2-message.
    Edited by: Keshav.T on Apr 7, 2010 4:23 PM

  • How to disable the message from setUser and setPassword

    When I call OracleConnectionCacheImpl.setUser and setPassword,
    I get some message like this:
    Setting the user name and passwwdd xxxx xxxxx
    How can I disable this message?

    You are correct.  The only way to stop it, is to turn off iMessage.  Your frustration is actually the reason they made iMessage.  It was designed so you could be working on your Mac, and if you recieved a text message, you could reply with out having to locate your phone.  I understand it can be frustrating because in my expeirence, when I'm away from my desk, anyone with access to my computer can then sit there and enjoy my conversation with out me knowing about it... I have since started logging out of Messages on my Mac when I walk away.  then no one can see it, and when I log back in, the messages are synced back up again.  Good luck!!  Cheers!

  • How to make the messages from ONE contact only sil...

    Hello,
    is there any way, even with paid 3rd party software, to make the messages that come only from one contact silent? That means that i want to have the profil to outdoor or general or whatever, when people call me or send me messages the phone to ring, when the contact X will call me to ring, but when this particular contact X send me messages the phone to be silent.
    I have the nokia E6-00

    http://www.apple.com/feedback/iphone.html

  • How to track the APEX Web front-end Users ?

    Hi All,
    I would like to track who uses my Web front-end and hence, would like capture a list of all NT logins when they login for the first time. I would also like to capture the date they last logged in.
    Can I keep this record somewhere in the background where it can be accessed by key people.
    Please suggest the way out for this?
    Thanks,
    Himanshu Tiwari

    Hi,
    Yes you could quite easily incorporate this as part of your own custom Authentication routine, you can read more about writing your own authentication routine here -
    http://www.oracle.com/technology/products/database/application_express/howtos/how_to_change_auth_method.html

  • Unable to send the message from XI to ECC

    Hi experts,
    I am having a issue whereby the message of my XI server (I have login into the XI server) is shown as below in SXMB_MONI.
      <SAP:Category>XIProxy</SAP:Category>
      <SAP:Code area="ABAP">INTERFACE_REGISTRATION_ERROR</SAP:Code>
      <SAP:P1>ifmmessif</SAP:P1>
      <SAP:P2>MI_ApArSource2SAP</SAP:P2>
      <SAP:P3>http://com.starhub/sapapar</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>No implementing class registered for the interface (ABAP interface, request message MI_ApArSource2SAP, request message, namespace http://xxx/sapxxx)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    I believe it's not the problem of one of my interface, since I have tried other interface as well, all having the same error. I suspect there is something wrong with the integration server.
    Pls advice. Need it desperately.
    Thanks.
    Cheers,
    Isaac.

    Hi,
    Go to SXMB_ADM.
    Execute Integration Engine
    EDIT-> Change Global configuration data
    Select the Role of Business System is Integration Server.
    Regards,
    Sreenivas

Maybe you are looking for

  • Sending email using CL_BCS in the background with subject line 255 chars

    Hello Gurus,        Following is the sample code,. When I run in the foreground, I am getting the mail, with proper subject line. However my output medium type is '5-'External Send#. When I am trying to run this in my output program, it is resulting

  • Jakarta struts and validation

    I have a working validatorform form that uses the struts validation framework (mostly handled through xml files). but i want it to instead of just saying "email is invalid"... i want it to also highlight the text infront of the field in red. any idea

  • Custom Item Type Icon not displayed

    I have created a custom Item type from the base File type for PDF files. I have asociated a PDF Icon with this type. When I create folder object of my new PDF Type, my Icon does not ever seem to show up. Why? I must change the image associated with e

  • Add Symbol to User Defined Symbol Library

    How do I add new symbol to an exsiting user defined symbol library? AI CS5.5, Mac.

  • Reverse Error

    All,, I'm trying to do a reverse of Hyperion planning in 11g and getting the below error....Any suggestions plz.. org.apache.bsf.BSFException: exception from Jython: Traceback (innermost last): File "<string>", line 17, in ? IndexError: index out of