Evolution: hangs with glibc error

Hi there,
When writing new mail or checking mail (via IMAP), after a couple of minutes Evolution hangs with the following error code in the comand line:
*** glibc detected *** free(): invalid pointer: 0x08ad8e40 ***
The error persists with all users, including root.
I upgraded glibc a while ago (15 March), created the necessary locales, and everything worked like a charm. My last update was on Sunday, when gtk2 was updated (2.8.12-1 -> 2.8.15-1) as well as glib2 (2.8.6-1 -> 2.10.1-1). Might this be the problem? Or where do I start looking for a solution?
Any feedback is much appreciated.
-Sascha
/edit: My system is a clean current/extras installation, no testing.

giorgosc61 wrote:
Hi
I upgraded to evolution 2.6.0-2 and in the place of icons in Evolution show a [X] icon.
What happened?
wouldn't know, but perhaps that's a discussion for it's own thread since it doesn't particularly relate to the problem discussed in this thread

Similar Messages

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • Process chains time outs and hangs with no error msg - in SP13

    Hi all,
    We are having all kind of weird problems after we patched our system with SP13. Our process chain time outs and hangs, but surprisingly we never get any error msg. And scarier part is, the problem seems to be intermittent. PC runs fine on some days and hangs on some.
    Further analysis into the dump – as below
    Termination occurred in the ABAP program "SAPLRSSM" -
    in "RSSM_SLEEP_DEBUG".
    The main program was "SAPMSSY1 ".
    In the source code the termination point is in (Include) program "LRSSMU39".
    This refers to an issue that appears to have been addressed by OSS Note
    934648(meant for SP8). This notes also indicates to populate RSADMIN table to
    exclude "RSSM_SLEEP_DEBUG". Not sure if this note is valid for SP13? However we went ahead and populated the RSADMIN table.
    So now we have no clue what’s going on and where to fix the issue.
    As per SAP suggestion we applied the following notes:
    0000653996  Analyzing lock situations
    0000893563  Correction: Deadlock on completion of a remote chain
    0000994007  Corrections: Deadlock with external status query
    0001005481  Correction: Process successful, but there is no instance
    0001047174  Correction: Incorrect scope when locking in process chains
    0001051957  Correction: TIME_OUT during dialog confirmation of processes
    0001083660  Report for error stack analysis
    Nothing seems to help us. And SAP suggested a few options, which we implemented to no rescue.
    I’m sure that many of the customers have applied SP13, and want some feedback from them, if this is happening in their systems too?
    If so, how did you fix this issue?
    Or this situation is unique to us?Please note that no settings were changed as of SP13 to that of what they were in SP12(unless it is a side effect of the patch itself). Everything worked fine with SP12 and is still working on the BIP system. All the problems are in BIQ patched to SP13.
    Any pointers or insight would be appreciated. We have a customer msg open with SAP, and going back and forth, but nothing seemed to work as of today.
    Thanks,
    Voodi

    Not sure which OSS helped us get past the issue, as SAP asked us to apply a ton of notes. But along which the notes, SAP has some suggestions for us, which we think did the magic. After the implementation of the suggestin we never faced the same issue again. The suggestion by SAP:
    move the process chain callback in a batch job by executing
    program RSSM_TRACE_SWITCH and selecting the flag "verifcation
    of asynchronous processes - execute in batch".
    Lemme know if this doesnt fix the issue, I can give all the notes that SAP asked us to apply.
    Message was edited by:
            voodi

  • Firefox hanging with script error

    firefox 20 has been hanging constantly with a different script error depending on the site visited. "Script: https://s.ytimg.com/yts/jsbin/www-watch-extra-vflEcdvg9.js:329" was encountered on youtube. I have tried safe mode with ad-ons disabled, reset firefox, rolled back versions of flash and java. nothing has worked. I am currently using google Chrome

    plug-ins have been updated, no luck, still hangs

  • Rman  restoration hangs with no errors

    Hi,
    Platform:solaris 10
    oracle version:oracle 10g
    I am restoring the backup from tape using RMAN.
    iWe have production instances in /data1 to /data11; it is connected to TAPE through fibre cable with the speed of 256MBS/sec.
    Our restoration is /aux_data01 to /aux_data11 in the same server.( fairport80)
    But our restoration takes very long time. To restore 900 GB is has taken 42 hrs.
    a) During the validation it has not give any error.
    b) During restoration also it has not give any error (till to time)
    Last update in the restoration log was today morning at 2:00 am. There after the restoration was in stale. It seems that it does not processing. Please assist me.
    We are restoring the database as of 16-oct-2007.
    As of 16-oct-2007 the database size was 1,763GB. It has restored 1742GB, There after no progress at all. (From 2am today)
    Validate.
    During validate it has not given any error
    Restoration.
    During the restoration has not thrown any error at all. But no progress after 24-oct-2007 2:00 am onwards.
    All data files were restored, but control files are not restored.
    Conclusion
    Last time in 30Hrs we hit an error. but now after 84 hrs it is stale.
    Can anyone help in this please
    With Regards
    Boo

    hi,
    can we have a look at your restore command?
    regards
    Alan

  • IChat audio and video hanging with no errors.

    When trying to initiate an iChat video conference, a request never pops up for the receiver. However, when someone tries to initiate a video chat with me, the request pops up but when you accept it, it says starting Video Chat but it just hangs. I've turned off the firewall and turned off internet sharing with no luck. I did a package capture and found that all the checksums are zeros instead of what they normally should be. Any idea what could be causing this?
    Thanks,
    Jeff

    Hi,
    Sounds like the issue is with your routing device.
    The visible Invites are sent and received on port 5678 using the USP Protocol
    If you Buddy is not getting is your router letting it through ?
    It does sound Odd that you are getting Invites though as it would be unusual to Block Outgoing stuff and not Incoming stuff.
    iChat 3 then moves to port 5060 (iChat 4 to port 16402) then uses a group of 4 from a list of 20 ports (16384-16403 for iChat 3) (iChat 4 stays just with port 16402)
    It sounds like these are blocked or not open.
    If they were open was it using Port Forwarding ?
    If so does your computer have the IP the Ports point to ?
    8:05 PM Friday; July 31, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Firefox often hags with an error message somethng like_Script not complete or still running._I cannot uninstall Firefox with the uninstall program routine inthe control panel and the Mozilla uninstall helper.exe will not run either. How do I uninstall Fi

    Firefox hangs with an error message something like - Script not complete or still running.
    I cannot uninstall Firefox with the uninstall program routine in the Control Panel and the Mozilla uninstall helper.exe program will not run either. How do I completely uninstall Firefox so I can make a clean reload?
    == This happened ==
    Every time Firefox opened
    == Not sure but I think it was after the update

    Thanks for the reply.
    I am very new to these forums (or is it fora?).
    I didn't know there was a Tomcat forum.
    How to I find it.
    Ta much & best regards,
    Pete

  • Firefox 31 hangs on startup with no error messages

    Simply put, Firefox hangs right on startup. I see it loading the two generic tabs and then the wheel spins and then it says 'Not Responding' on the top of the window. I have to force close it each and every time, and I've also tried the following solutions in no particular order to alleviate the issue:
    1) Ran SuperAntiSpyware and Malwarebytes last night for any possible infections. Reported back with nothing.
    2) Booted my laptop up in Safe Mode (with networking) and still couldn't get it to operate.
    3) Performed several clean uninstalls and re-installations which also included clearing out the profiles altogether and then trying to open it again, nothing.
    4) Booted up Firefox by holding down the shift key and resetted it to its default settings and then tried firing it up again. Nothing.
    5) Attempted booting up FF in Safe Mode with the shift key, nothing.
    6) Created a new profile and tried booting FF, nothing.
    7) Read this article http://kb.mozillazine.org/Firefox_hangs#Hyper-Threading about Hyper-Threading and followed the instructions which got it to operate, but I can't access the toolbar or the option menus. When I click on options Firefox closes with no error messages. I have a feeling this isn't the issue at hand but I figure I'd try it and at least I can get it to fully load and not hang.
    8) Deleted all Firefox extensions and Plug-ins, nothing.
    9) Enabled Firefox through firewall and antivirus settings, nothing.
    10) Updated my BIOS firmware as suggested in #7, nothing.
    I've done almost 10 different things and I still can't figure out why Firefox keeps hanging on startup. I've looked into Youtube videos for tutorials and others posted about the Java crashing that was happening in an earlier version of FF. Since its not crashing, I'm unable to look into the crash logs and pinpoint a crash number or anything because it just freezes and when I click to close it I get a message saying: 'Close program' or 'Wait for it to respond.'
    I'm running a 64 bit Windows 7 on an HP Pavilion g6-1c44wm Notebook PC
    Microprocessor 2.10 GHz Intel Pentium Processor B950
    Microprocessor Cache 2MB L3 Cache
    Memory 4GB DDR3 SDRAM (1 DIMM)
    Memory Max Maximum supported = 8GB
    Video Graphics Intel HD Graphics
    Video Memory Up to 1696MB
    Hard Drive 500GB 5400RPM)
    I'm trying to be specific as possible! Please help! I'm at the end of my rope here!

    Try to completely uninstall firefox, that means to '''delete''' the [http://kb.mozillazine.org/Installation_directory#Windows Installation directory] located for your 64bit in C:\Program Files (x86)\Mozilla Firefox\ , also, '''delete''' the C:\Users\<username>\AppData\Local\Mozilla\Firefox and '''if exist''', '''delete''' the C:\Users\<username>\AppData\Local\VirtualStore\Program Files\Mozilla Firefox.
    then download and install again a new full installer from : https://www.mozilla.org/en-US/firefox/all/
    disable firewall and antivirus and antispyware for a little bit, and run firefox. any luck ?
    thank you

  • JRE 1.5.0 installation hangs with error 1311

    When I attempt to install JRE 1.5.0 (manual, online) on an IBM NetVista with Windows XP OS the process hangs with error message 1311 [Source file not found.  D:\Documents and Settings\...\...\...\...\...\ja150000[1].cab.] Any ideas on how to get around this?

    Use the offline install - download the file and click it.

  • Hangs with Javascript busy or stopped error on every website I open

    I have firefox 20.0.1 and Java SE 7 U21 10.21.2.11 Plugin installed..I don't have any older versions of Java installed..I have checked and there are no older java consoles or plugins..
    For last couple of day..for any website I open (Facebook.com, Espncricinfo.com, dx.com, even Support.mozilla.org or any mozilla troubleshoot page searched through google).. Firefox hangs..then gives me a popup error window with following message;
    "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete." (message is followed by the path of .js script file..different filename for different site)
    I disabled Java plugin from "extentions" , restarted firefox and opened facebook. I expected to open facebook properly and get a "no java installed or enable java" error at the most but instead same thing happened and got the same error message..
    Even after disabling Java plugin I am getting same error on all websites...
    Infact other than opening google and searching I cannot use firefox for any other website..
    Even this message I am posting using Opera because firefox wont let me open this page also..
    Anyone has any solution?

    I have solved this issue..
    First of all thanks everyone for suggestions...
    Thing is I used to use firefox without any added extensions or add-ons..so my firefox only had plugins/add-ons/extensions installed automatically by programs.. i.e. Flash, Java SE, QuickTime and Foxit Reader plugin..
    As previously stated..disabling any or all of thse plugins was not solving the issue..
    So I backed up my bookmarks..
    I uninstalled firefox... removed all settings and data and profiles...removed any leftover files too...
    Then I re-installed firefox using "Run as Administrator" ....
    And the issue is solved....
    the Flash, QuickTime, Java SE and Reader plugins were automatically enabled after first use...
    And so far I have opened lots of websites (which used to hang and give error window) without any issue..I have also played flash games online...and accessed content that needs Javascript enabled..
    And I am typing this reply using Firefox only...which was not possible when I had the issue...
    I don't know exactly what or why the problem was...but it is solved now..

  • Ipseckey hang with error PF_KEY socket timed out

    When I use ipseckey program (on Solaris8 for intel) to add new SA,
    ipseckey hang with error PF_KEY socket timed out.
    other command like "dump" or "save all" still work
    can anybody help ?
    le huy

    Sorry, but I don't know exactly, it was work of network admin (or sysadmin). I think relation between Application Server and Database Server was corrected - at the server or at the Data Communications Equipment.
    But problem was OUT OF WebCenter Spaces, any adjustments at WebLogic Server, etc... had no results.
    Sorry.

  • HHelp can't sync Calendar.  It hangs with error -"403" to operation CalDAVMigrateToServerQueueableOperation

    HHelp can't sync Calendar.  It hangs with error -"403" to operation CalDAVMigrateToServerQueueableOperation

    Hello, workhorse. 
    Thank you for visiting Apple Support Communities.
    Try removing the preference to sync calendar events in iCloud preferences.  Once this is done enable the preference again and see if this resolves the issue.
    Turn iCloud Calendars off and back on:
    Quit Calendar (or iCal).
    Choose Apple () menu > System Preferences, then select iCloud.
    Deselect the checkbox next to Calendars.
    Close System Preferences and wait about a minute.
    Open System Preferences and select iCloud.
    Replace the checkmark next to Calendars.
    Close System Preferences.
    Open Calendar (or iCal) and test to see if the issue is resolved.
    Restart your computer. This may sound simple, but it reinitializes your network and application settings and can frequently resolve issues.
    If the issue persists, try all remaining steps in the article below.
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999
    Regards,
    Jason H.

  • LV7.1 Strange behavior with Automatic Error Handling occuring when it shouldn't [LV 7.1 Pro on WinXP for Tablet PC's]

    [LV 7.1 Pro on WinXP for Tablet PC's]
    I recently let a rather large LV app of mine run in the development environment while I was out for a couple of days. Upon returning I found that the app had hung for ~22 hours waiting for an answer to an Automatic Error Handling (AEH) dialog proclaiming an Error 7 in New File without any indication of the VI hierarchy that called New File.  I set about ensuring that AEH dialogs would not pop up and have not been able to discover how I could have possibly received one in the first place.
    Subsequent investigation revealed:
    Neither AEH option in Options>Block Diagrams were checked.
    Network problems had occurred around the time that the app had hung.  All file paths are network paths when running in the development environment, so the cause of the error was most likely valid, even if the AEH dialog appearance wasn't.
    My app has only one instance where the New File primitive is used by me. That subVI and all others above it in the hierarchy DO NOT have the AEH property enabled.  The error out cluster of New File in my subvi is wired.
    My app has three instances where New File is called from a vi.lib vi (Open/Create/Replace File.vi, Open Config Data.vi, and Prompt Web Browser Path.vi), none of which have the AEH property enabled.  Nor does any of their calling VI's.  All three instances also have their error out cluster wired.
    A utility to examine the AEH property of all VI's (with all top level and dynamic VI's loaded) in memory reported that only 1 of 308 vi's ( RGT Does File Exists.vi from the Report Generation Toolkit) had that property true.  That vi has no subVI's other than the File/Directory Info primitive and no calling VI's in common with any of the vi's that call New File, except a top level VI.
    As long as 'Enable automatic error handling dialogs' remains unselected in options>block diagram, I am unable to get an AEH dialog for either the New File or File/Directory Info primitives in a test VI with AEH property enabled and their error out clusters unwired no matter what invalid path I pass to the functions.  As soon as the options>block diagram>Enable AEH dialogs' is selected, both primitives fire AEH dialogs with no error out wired and don't when wired. i.e. works as advertised.
    In other words I can find no reason why I should have gotten the problem AEH dialog...
    I cannot afford for this app to hang because of a network problem, other portions of the app that were running concurrently correctly handled the error and, had the AEH dialog not appeared, the app would have made corrections or shutdown in an orderly fashion.
    Any ideas?

    Very good.
    Write Characters to File.vi>Open/Create/Replace File.vi>New File
    New File throws the error.  Open/Create/Replace strips the hierarchy from the source of the error.  Write Characters passes it to the General Error Handler.  I never looked above O/C/R file in the hierarchy except for enable automatic error handling property.  The tip-off should have been to realize that O/C/R file was stripping the hierarchy from the error and look above that. 
    The real irony is that Write Characters was being used to log error cluster data to an error log file...
    Save as... Copy without updating... the OEM 'Write Characters to File' is gone from this app.
    Thanx (a bunch)

  • GUI Hangs with JAVA sneak preview

    Hello all,
    I have SAP NetWeaver 2004s Java Trial Version
    SP09 successfully installed on my WINXP machine.
    Everything is good exept GUI. I cannot be able to use any GUI neither SAP GUI nor JAVA GUI (700). In both cases it hangs without any errors when I try to logon.
    J2EE engine is working properly - portal, VC and so on...
    May be I have to do something else? Please help me with it.
    Regards,
    Max

    there is sneak preview ABAP engine available whichyou can download and use it forBW and integrated planning.
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/b2918eea-0601-0010-6284-e6cb7eee4399 [original link is broken]
    Regards
    Raja

  • Proxy issue with SCM - Error code: 400  ICM_HTTP_CONNECTION_FAILED

    We have recently added an SCM system to our landscape.  I am trying to upload data to BI within SCM.  I have set up the method and tested it and it works fine.  I am pulling the data in to XI from a flat file and converting it to XML, which works fine, I have tested the payload in the message mapping test tab.  When it trys to connect to the SCM system it looks like it hangs forever in sxmb_moni with the error message.
    Error when receiving by HTTP (error code: 400,
    error text: ICM_HTTP_CONNECTION_FAILED)
    I have also created my proxy in SCM, that seems to be fine as well when I test it.
    The communication channels are as follows...
    Transport Protocol: HTTP 1.0
    Message Protocol: XI 3.0
    Adapter Engine:     Integration Server
    Addressing Type:   URL Address
    Target Host:           <hostname>
    Service NUmber:     8000
    Path:                     /sap/xi/engine?type=receiver
    Auth Type:            Use Logon Data for SAP System
    SECOND
    I cannot see any errors on the Runtime either because my communiation is not showing up...  I have saved it and activiated it.  The adapter type is XI.
    Any help would be appreciated.
    Skip Ford

    Hi
    Error when receiving by HTTP (error code: 400,
    error text: ICM_HTTP_CONNECTION_FAILED)
    I have also created my proxy in SCM, that seems to be fine as well when I test it.
    The communication channels are as follows...
    Transport Protocol: HTTP 1.0
    Message Protocol: XI 3.0
    Adapter Engine: Integration Server
    Addressing Type: URL Address
    Target Host: <hostname>
    Service NUmber: 8000
    Path: /sap/xi/engine?type=receiver
    Auth Type: Use Logon Data for SAP System
    I think the parameter Path for the server proxy should be
    /sap/xi/engine?type=entry
    Thanks
    Gaurav

Maybe you are looking for