Possible to catch all XI error message?

Is it possible to catch all XI errror  and save it, including abap proxy runtime, j2ee adapters.
anybody give me a clue?

Hi Shen Peng,
Please refer to below table for logs. Ideally you are not recommendated to make any changes to these tables.
If you are looking to show all possible errors to your customer then, prepare a report based on the Early Watch Alert report and show it your customer at high level and if you try to show every alert/log that generated in the system to the customer then you it will be high task for you to explain each and every entry.....I rather suggest you give the high level report.
Because many alerts/logs are temporary and not that critical to explain to the customer unless it's impacting the business.
ABAP -Syslog entries
TSL1D and TSL1T - syslog entries
Java related log files
XI_AF_MSG_AUDIT  audit log entries
BC_MSG_AUDIT  PI 7.1 audit log entries (**) 
SXMSALERTLOGGER  XI alerts log 
I hope this info helps you.
Regards
Sekhar

Similar Messages

  • How can I put all output error message into a String Variable ??

    Dear Sir:
    I have following code, When I run it and I press overflow radio button, It outputs following message:
    Caught RuntimeException: java.lang.NullPointerException
    java.lang.NullPointerException
         at ExceptionHandling.ExceptTest.actionPerformed(ExceptTest.java:72)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)Caught RuntimeException: java.lang.NullPointerException
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)I hope to catch all these error message into a String Variable such as StrErrorMsg, then I can use System.out.println(StrErrorMsg) to print it out or store somewhere, not only display at runtime,
    How can I do this??
    Thanks a lot,
    See code below.
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.FileInputStream;
    import javax.swing.ButtonGroup;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JRadioButton;
    public class ExceptTest extends JFrame implements ActionListener {
        private double[] a;
      private JRadioButton divideByZeroButton;
      private JRadioButton badCastButton;
      private JRadioButton arrayBoundsButton;
      private JRadioButton nullPointerButton;
      private JRadioButton negSqrtButton;
      private JRadioButton overflowButton;
      private JRadioButton noSuchFileButton;
      private JRadioButton throwUnknownButton;
      public ExceptTest() {
        JPanel p = new JPanel();
        ButtonGroup g = new ButtonGroup();
        p.setLayout(new GridLayout(8, 1));
        divideByZeroButton = addRadioButton("Divide by zero", g, p);
        badCastButton = addRadioButton("Bad cast", g, p);
        arrayBoundsButton = addRadioButton("Array bounds", g, p);
        nullPointerButton = addRadioButton("Null pointer", g, p);
        negSqrtButton = addRadioButton("sqrt(-1)", g, p);
        overflowButton = addRadioButton("Overflow", g, p);
        noSuchFileButton = addRadioButton("No such file", g, p);
        throwUnknownButton = addRadioButton("Throw unknown", g, p);
        getContentPane().add(p);
      private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
        JRadioButton button = new JRadioButton(s, false);
        button.addActionListener(this);
        g.add(button);
        p.add(button);
        return button;
      public void actionPerformed(ActionEvent evt) {
        try {
          Object source = evt.getSource();
          if (source == divideByZeroButton) {
            a[1] = a[1] / a[1] - a[1];
          } else if (source == badCastButton) {
            Frame f = (Frame) evt.getSource();
          } else if (source == arrayBoundsButton) {
            a[1] = a[10];
          } else if (source == nullPointerButton) {
            Frame f = null;
            f.setSize(200, 200);
          } else if (source == negSqrtButton) {
            a[1] = Math.sqrt(-1);
          } else if (source == overflowButton) {
            a[1] = 1000 * 1000 * 1000 * 1000;
            int n = (int) a[1];
          } else if (source == noSuchFileButton) {
            FileInputStream is = new FileInputStream("Java Source and Support");
          } else if (source == throwUnknownButton) {
            throw new UnknownError();
        } catch (RuntimeException e) {
          System.out.println("Caught RuntimeException: " + e);
          e.printStackTrace();
          System.out.println("Caught RuntimeException: " + e);
        } catch (Exception e) {
          System.out.println("Caught Exception: " + e);
      public static void main(String[] args) {
        JFrame frame = new ExceptTest();
        frame.setSize(150, 200);
        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        frame.show();
    }

    yes, I update as follows,
    but not looks good.
    import java.io.*;
    public class UncaughtLogger implements Thread.UncaughtExceptionHandler {
        private File file;
        private static String errorMessage;
        public UncaughtLogger(File file) {
            this.file = file;
            //Thread.setDefaultUncaughtExceptionHandler(this);
        public UncaughtLogger(String str) {
            this.errorMessage = str;
            Thread.setDefaultUncaughtExceptionHandler(this);
        //@Override()
        public void uncaughtException(Thread t, Throwable e){
            try {
                log(e);
            } catch (Throwable throwable) {
                System.err.println("error in logging:");
                throwable.printStackTrace();
        private void log(Throwable e) throws IOException {
            PrintWriter out = new PrintWriter(new FileWriter(file, true));
            try {
                e.printStackTrace(out);
            } finally {
                out.close();
        private static UncaughtLogger logger = new UncaughtLogger(new File("C:/temp/log.txt"));
        private static UncaughtLogger logger2 = new UncaughtLogger(errorMessage);
        public static void main(String[] args) {
                String s1 = "Hello World!";
                s1 = null;
                String s2 = s1.getClass().getName();
                System.out.println(s1);
                System.out.println(s2);
                System.out.println("errorMessage =" + errorMessage);
    }

  • Itunes Wont Start At All No Error Messages Nothing HELP ME!!!!!!!!!!!!!!!

    My Itunes Wont Work At All No Error Message Comes Up NOTHING ive Uninstalled , Deleted the Files in c Drive and Re Installed it Over and Over Again Quicktime Works Fine But When i Open Quicktime My Itunes is on there :S its very Confusing But i still cant Sync music Onto my Ipod or Buy Any Music Please Help Me!!!!!!!

    Does iTunes.exe persist in the task manager or disappear again quickly. This can be a clue to the cause of the problem.
    If iTunes persists this points to either firewall blocking or a damaged configuration file.
    Try briefly turning off your firewall to see if iTunes will launch. Otherwise the link I will give at the end tells you how to delete the configuration file.
    If iTunes doesn't appear or appears briefly and then disappears this may be a digital signing issue, also dealt with in the link.
    It is a good idea to scan your PC for viruses and spyware, as malware can cause problems.
    Apple article on troubelshooting launch problems:
    XP version
    http://docs.info.apple.com/article.html?artnum=302856
    Vista version
    http://docs.info.apple.com/article.html?artnum=305491
    If the things I suggested above don't wiork, try working through the whole article.
    All this is on the assumption that your Quicktime is working normally. I am a bit worried that you have been installing and uninstalling different versions, it just complicates the issue.

  • I can't open my iPod library in iTunes, the app doesn't show the device at all, no error message, nothing, but windows 8 opens it like it would a flash drive. It has worked for me before just fine and both have the most updated software versions.

    I can't open my iPod library in iTunes, the app doesn't show the device at all, no error message, nothing, but windows 8 opens it like it would a flash drive. It has worked for me before just fine and both have the most updated software versions. HELP PLEASE!

    yeah i plugged in my iphone to my computer and itunes does not even notice that i plugged it in.

  • How to Inscribe all the error messages into a single package ??

    Hi,
    I want to Inscribe all the error messages into a single package., and call the concern package from the exception block in every sp by passing the error code to that package, which will return the Concern error message to the calling Sp.,
    Can any one help me out how to accomplish this ., ?
    regards
    Raja

    I want to Inscribe all the error messages into a single package., Why do you want to inscribe all the messages in a package?
    I would suggest you to store them in a table instead and you can write a functin to retrive the error messages required.
    But if your requirement is for 'Package' then assuming that you store all the error messages in a table 'error_table' (say) following code may help you .
    CREATE TABLE Error_Table (
      Error_Code VARCHAR2(10),
      Error_Desc VARCHAR2(1024));Now insert your error codes and descriptions in this table.
    CREATE OR REPLACE PACKAGE pkg_Error_Handler
    AS
      FUNCTION f_Get_Error_Message(p_Error_Code  Error_Table.Error_Code%TYPE) RETURN VARCHAR2;
    END pkg_Error_Handler;/
    CREATE OR REPLACE PACKAGE BODY pkg_Error_Handler
    AS
      FUNCTION f_Get_Error_Message
           (p_Error_Code  Error_Table.Error_Code%TYPE)
      RETURN VARCHAR2
      IS
        lv_Error_msg  Error_Table.Error_desc%TYPE;
      BEGIN
        BEGIN
          SELECT Error_desc
          INTO   lv_Error_msg
          FROM   Error_Table
          WHERE  Error_Code = p_Error_Code;
        EXCEPTION
          WHEN No_Data_Found THEN
            lv_Error_msg := 'No such error code '
                            ||p_Error_Code
                            ||' defined in the system';
          WHEN OTHERS THEN
            lv_Error_msg := p_Error_Code;
        END;
        RETURN lv_Error_msg;
      END f_Get_Error_Message;
    END pkg_Error_Handler;
    /and you can call this packaged funtion from any exception block to get the error description.
    Regards,
    Abhijit.
    N.B.: Code not tested

  • Please help me how concatenate all the error messages and send it as out parameter value.

    Hi Experts,
    Please help me how concatenate all the error messages and send it as out parameter value.
    Thanks.

    Agree with Billy, exception handling is not something that is done by passing parameters around.
    PL/SQL, like other languages, provides a suitable exception handling mechanism which, if used properly, works completely fine.  Avoid misuing PL/SQL by trying to implement some other way of handling them.

  • My microsoft office programs (Home and Business 2013) all desplay error message at startup stating " non-commercial use, not licenced product". How do I fix this?

    Hi,
    Whenever I start any of my microsoft programs I get an error message stating "non-commercial use, not licenced product" and I cannot do anything in the programs. I havve the Home and Business 2013 version.
    My husband bought the office programs for his and my computer and so they are both registered to his name however my email is the login, I dont know if this is relevant.
    How do I fix this?

    Hi,
    Based on your description, several possibilities come to my mind.
    1. You mentioned your husband bought the Office Suite for you, did he purchase one product key or two? We need to confirm if the product key can be installed on multiple machines, if a product key can be only installed once and he installed it
    on his computer first, you should purchase a new product key to activate your Office.
    Since the policy differs in different areas, to confirm how many machines the product key can be installed on, let your husband ask the retailer or contact the local customer service to get the answer:
    http://support2.microsoft.com/gp/customer-service-phone-numbers/en-us
    2. Please confirm your Office version. Based on the message "non-commercial use", I found this kb:
    http://support.microsoft.com/kb/937676/
    But it's for Office Home and Student instead of Office Home and Business, we can perform the steps below to find the Microsoft Software License Terms:
    1. Start and Office program.
    2. On the File (Backstage) tab, click Account.
    3. Click About (Product name: Word, Excel etc..), in the window that opens, click
    View the Microsift Software License Terms link.
    3. If your Office is a trial version or the product key is not for the version that you are using, consider to uninstall it first, and install the appropriate version. You can probably get the installation media from your husband.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Update failures all apps - error message U44M1P36

    had not updated in some time. downloaded Creative Cloud and tried only to get the above error message.  What does it mean?  How can I update?

    Hi Roger3322,
    Please refer the article: http://helpx.adobe.com/photoshop/kb/photoshop-cs6-updates-dont-install.html and attach the log files.
    Regards,
    Romit Sinha

  • Is it possible to block a specific error message in javascript?

    Is it possible to block this message with javascript?
    I've already tried the following:
    app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    This won't work.
    Cheers Daniel

    Don't like it when nobody answers… So I will be the bearer of not so good news… I thoughts are there are 2 types/levels of app dialogs warning & error the first you can dismiss as your example… The second you might be able to wrap in a try, catch, finally… I know that for Photoshop several scripters said they would prefer script not to stop… and throw the error… Do you have many files that will be like this ( never had this dialog myself ) Single out specific errors may be CS8…

  • Is it possible to catch 400 rows exceeded message( system generated )

    Hi all,
    I want to catch the exception throw by the system when the no of rows in VO exceeds the profile value say 400, and want to display a custom message or a popup window.
    Thanks
    Babu

    in that case..
    First get some unique identifier for the Exception (Lets use error code)
    How??...this way..
    Surrond the whole processFormRequest code with try catch block
    (catch OAExceptiopn e).
    throw new OAException ("Original Exception error code="+e.getErrorCode());
    this will print the error code as an identifier to the original exception.Say it prints something like "Original Exception error code=CodeXX-00"
    Now we have the error code, hence now you can modify catch block as
    (catch OAExceptiopn e).
    if("CodeXX-00".equals(e.getErrorCode()))
    throw new OAException (""Here comes your custom message");
    else
    throw e;
    Now in this approach, you may like to use some other identifier like message Text as to identify that this exception has occured.
    Also if OAException is not caught, try to use the base class Exception.

  • Clear all recents error message l

    clear all messages freezes mail; cancel does not work

    Triple click the Home button to bring up the multitasking bar as some call it.
    Press and hold the Mail icon in the bar until it wiggles and you get the cross appear.
    Shut it down that way.
    Wait a minute and reopen Mail again.

  • I just downloade FF 5 and I hate it - I want my old version back - whatever it was. Websites take forever to load if at all - then error message. I lost all my settings. How to revert to LAST version. How do I know last version?

    All my settings gone, my 9 most popular visited websites gone. AFter reading through other HELP questions, same thing happened when upgrade to FF4. I want my old version back - and how do I know what my last versionwas?

    I don't know what your previous version was. If it was before version 4 then finding 3.6 or so maybe hard to find. You might run a search on Google for Firefox 3.6.
    Firefox 4 can be downloaded here if you don't have in your download file.
    http://downloads.yahoo.com/firefox/

  • Possible cause of wccp v2 error message WCCP-EVNT:D60

    I have wccp configured on a pair of 6509s trying to establish a relationship with a couple of Bluecoat proxies. We are trying to use L2 redirection. I keep getting this message:
    WCCP-EVNT:D60: Here_I_Am packet from w.x.y.z w/bad rcv_id 00000000
    I have set this up in two other locations using 3750s and the same proxies. Everything looks the same both on the switches and on the proxies. Any suggestions for where to check would be welcome.

    Hi Dan,
    Here is what we have configured:
    ip wccp 60 redirect-list Proxy_traffic group-list Bluecoat
    Standard IP access list Bluecoat
    20 permit 10.230.62.6
    10 permit 10.230.62.4
    Extended IP access list Proxy_traffic
    10 permit tcp host 10.230.14.96 any eq www
    20 permit tcp host 10.230.14.96 any eq 443
    30 permit tcp host 10.230.14.96 any eq 554
    40 permit tcp host 10.230.14.96 any eq 1755
    50 permit tcp host 10.230.21.103 any eq www
    60 permit tcp host 10.230.21.103 any eq 443
    70 permit tcp host 10.230.21.103 any eq 554
    80 permit tcp host 10.230.21.103 any eq 1755
    interface Vlan254
    ip address 10.230.254.252 255.255.255.0
    no ip redirects
    no ip proxy-arp
    ip wccp 60 redirect out
    ip route-cache flow
    glbp 1 ip 10.230.254.254
    glbp 1 timers msec 250 msec 900
    glbp 1 preempt delay minimum 30
    end
    This is exactly how we have set it up on two sets of 3750s at different locations and they are working fine (except for the redirect out which I have read your warnings about).
    Here is what I continue to see from the switch with debug event and debug packet turned on:
    Dec 9 12:58:24.800 PST: WCCP-EVNT:wccp_update_assignment_status: enter
    Dec 9 12:58:24.800 PST: WCCP-EVNT:wccp_update_assignment_status: exit
    Dec 9 12:58:24.800 PST: WCCP-EVNT:wccp_copy_wc_assignment_data: enter
    Dec 9 12:58:24.800 PST: WCCP-EVNT:wccp_copy_wc_assignment_data: reuse orig mask info (1052 bytes)
    Dec 9 12:58:24.800 PST: WCCP-EVNT:wccp_copy_wc_assignment_data: exit
    Dec 9 12:58:24.800 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad return method 00000002, was offered 00000001
    Dec 9 12:58:24.800 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 with incompatible capabilites
    Dec 9 12:58:24.800 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 00000006
    Dec 9 12:58:25.788 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000005
    Dec 9 12:58:25.792 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 00000007
    Dec 9 12:58:26.792 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000005
    Dec 9 12:58:26.792 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 00000008
    Dec 9 12:58:32.792 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000005
    Dec 9 12:58:32.792 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 00000009
    Dec 9 12:58:42.792 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000005
    Dec 9 12:58:42.792 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 0000000A
    Dec 9 12:58:52.792 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000005
    Dec 9 12:58:52.792 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 0000000B
    Dec 9 12:59:02.793 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000000
    Dec 9 12:59:02.793 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 0000000C
    Dec 9 12:59:12.793 PST: WCCP-EVNT:D60: Here_I_Am packet from 10.230.62.4 w/bad rcv_id 00000000
    Dec 9 12:59:12.793 PST: WCCP-PKT:D60: Sending I_See_You packet to 10.230.62.4 w/ rcv_id 0000000D
    thanks for your help.
    Craig

  • All the error messages!

    my ipod won't connect to my mac anymore. if I plug it in it doesn't register, it says 'charging please wait' for a while and then eventually says 'ok to disconnect'. when plugged in the 'ok to disconnect' screen shows full battery; when I do disconnect it, the battery icon empties and then it freezes on that screen till I reset it. Does anyone know why this is? I think it's a classic - it's 80gb, I bought it second hand but it worked fine for over a year. I didn't use it for a while, about six months, up until now when it's not working haha

    Hi annaelizabeth26,
    If you are having issues with your iPod Classic that aren't resolved by a simple reset, you may find it helpful to go through the following Troubleshooting Assistant:
    Apple Support: iPod Classic Troubleshooting Assistant
    http://www.apple.com/support/ipod/five_rs/classic/
    Cheers,
    - Brenden

  • Catching System Error Message in Abap Proxy.

    Hi all,
        I want to know whether it is possible to catch the system error message from SXMB_MONI in proxy scenario's.
        The error i am getting is :
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">HTTP_RESP_STATUS_CODE_NOT_OK</SAP:Code>
      <SAP:P1>403</SAP:P1>
      <SAP:P2>Forbidden</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>Service is not active</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>HTTP response contains status code 403 with the description Forbidden Error when sending by HTTP (error code: 403, error text: Forbidden)</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    Is it possble to catch the above message text.
    Regards,
    Keith

    Hi Keith,
    Check this forums also should be definitely help u..
    Error message handling in Integration Process
    and
    http://help.sap.com/saphelp_nw04/helpdata/en/dd/b7623c6369f454e10000000a114084/content.htm
    also refer
    Check this weblog once ... sure it will give u an idea..
    /people/sap.user72/blog/2006/01/16/xi-propagation-of-meaningful-error-information-to-soap-client
    and also go through this
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    Regards,
    Sridhar

Maybe you are looking for

  • Adobe air for tablet

    I have tried to install Adobe Air on my samsung 10.1 and was unable to do so and now I have just purchased the windows surface rt and I am having the same problem. S o my question is does Adobe Air run on any tablets as I need this program to run a p

  • Can't view adobetv after flash update

    I am having this problem now after today's flash update. I uninstalled flash and reinstalled it. I have checked settings, deleted my browser cache, deleted my flash cache before I uninstalled it, rebooted and reinstalled it. I am unable to view anyth

  • ABAP Programming Error

    Category               ABAP Programming Error Runtime Errors         MESSAGE_TYPE_X ABAP Program           CL_RSBM_LOG_DTP_DP============CP Application Component  BW-WHM-DST Date and Time          28.04.2014 15:08:07 Short text      The current appli

  • Web service Accessing error

    Hi Expert My scenario is  SOAP -XI- RFC . After  genrating the WSDL from ID and accesing it through explorer i am getting the following error. The url  that i am using is  http://Host:Port/XISOAPAdapter/MessageServlet?channel=:DEWALL36R3I800:CC_SENDE

  • Activation not going through?

    I got my new Droid Razr earlier today and followed the instructions to activate the 4G SIM card.  As of 8:17 PM Eastern time it has been roughly 7 hours.  I've already been on the phone with customer service and they said that they are a little behin