AMSN 0.97-2 - Anyone got it working?

Hello,
I have been using Arch for 2 days but I am struggling on this one.
Apparently, the MSN 9 protocol needs TLS, which I did install as required. I also have edited the file /usr/lib/tls1.50/pkgIndex.tcl as mentioned in the amsn wiki but still the same issue. When launching asmn, I get the dialog telling me about TLS and I am stuck there
I have been trying everything I could think of, so if anyone of you did manage to get it working, I will be very happy to hear how
Thanks in advance.
Ludo

Condex wrote:
Try this one Coume:
Edit as root the /usr/lib/tls1.50/pkgIndex.tcl file.
Change the line so that looks like this one:
package ifneeded tls 1.50 "[list load [file join $dir .. libtls1.50.so] ] ; [list source [file join $dir tls.tcl] ]"
I was having the same problem, as I can remember it is a problem with the "1.5", that needs to be set to "1.50". I found the solution on the net, but I don't remember where...:(
In my system(i686) it worked...
Hope it helps
Thanks for answering.
But after reading the amsn forums, I did do the same tweaking in this file but it does not help
# cat /usr/lib/tls1.50/pkgIndex.tcl
# pkgIndex.tcl -
#    A new manually generated "pkgIndex.tcl" file for tls to
#    replace the original which didn't include the commands from "tls.tcl".
package ifneeded tls 1.50 "[list load [file join $dir .. libtls1.50.so] ] ; [list source [file join $dir tls.tcl] ]"
I am really starting to get frustated because I tried everything which is mentioned online and I can't get any where... That's why I started to wonder if the issue could not be related to my arch x86_64
Anyone under x86_64 got it working??
Thanks
Ludo

Similar Messages

  • Has anyone got iFS working in Tomcat ?

    iFS 1.1.9
    We have a urgent need to get iFS running in a Servlet 2.2 container and OC4J does not support iFS yet. I know this is not supported but has anyone got iFS working in Tomcat ? If so, pls do me a BIG favour by letting me have your config files, such as
    - server.xml
    - <tomcat home>\conf\web.xml
    - web.xml for the tomcat context)
    - wrapper.properties (if you are using tomcat as an NT service)
    - tomcat-apache.conf (or equivalent)
    - <oracle home>/apache/apache/conf/httd.conf
    - A listing of relevant environment variables (by doing a "set>env.lis" or similar)
    - and any other files you might think is relevant
    Thanks a million in advance.
    null

    iFS 1.1.9 / Oracle 8.1.7 / Tomcat 4.0.1 / Windows 2000
    After several hours of fiddling around with the configuration
    files, I finally got the iFS up and running on my test machine.
    Briefly here's what I did:
    1) create application directories
    <tomcat_home>/ifs/files/WEB-INF/classes
    <tomcat_home>/ifs/files/WEB-INF/lib
    2) Add the following to <tomcat_home>/conf/server.xml:
    <Context path="/ifs/files" docBase="ifs/files"
    debug="0" reloadable="true">
    <!-- got this from jserv.properties -->
    <Environment name="ORACLE_HOME" type="java.lang.String"
    value="oracle_home"/>
    <Environment name="ORACLE_SID" type="java.lang.String"
    value="sid"/>
    <Environment name="LD_LIBRARY_PATH" type="java.lang.String"
    value="oracle_home/lib:oracle_home/ctx/lib"/>
    <Environment name="NLS_LANG" type="java.lang.String"
    value=".UTF8"/>
    </Context>
    Please replace oracle_home with your installation directory and
    fill in your SID as well.
    3) create <tomcat_home>/<tomcat_home>/ifs/files/WEB-INF/web.xml
    with the following definitions:
    <servlet>
    <servlet-name>oracle-jsp</servlet-name>
    <servlet-class>oracle.jsp.JspServlet</servlet-class>
    <init-param>
    <param-name>logVerbosityLevel</param-name>
    <param-value>WARNING</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <servlet-
    class>oracle.ifs.protocols.dav.impl.IfsDavServlet</servlet-class>
    <init-param>
    <param-name>classpath</param-name>
    <!-- this classpath is crucial for JSP compilation.
    | The value has to be in one single line without
    | linebreaks and spaces !!!
    -->
    <param-value>
    tomcat_home/webapps/ifs/files/WEB-INF/lib/ojsp.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/webui.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/adk.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/http.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/repos.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/email.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/release.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/utils.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/settings.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/classes;
    tomcat_home/lib/xmlparserv2.jar;
    tomcat_home/lib/classes12.jar;
    tomcat_home/common/lib/servlet.jar;
    </param-value>
    </init-param>
    <init-param>
    <param-name>ifs.dav.servicepassword</param-name>
    <param-value>manager</param-value>
    </init-param>
    <init-param>
    <param-name>encode_to_java</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>page_provider</param-name>
    <param-
    value>oracle.ifs.protocols.dav.impl.jsp.IfsJspResourceProvider</p
    aram-value>
    </init-param>
    <init-param>
    <param-name>page_repository_root</param-name>
    <param-value>ifs_home/ifsjsps</param-value>
    </init-param>
    <init-param>
    <param-name>unsafe_reload</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>developer_mode</param-name>
    <param-value>true</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
    <servlet-name>oracle-jsp</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    tomcat_home and ifs_home must be replaced with your installation
    directories.
    4) Copy the iFS and Oracle JARs to the locations specified in
    web.xml
    You may choose either the applications lib directory or the more
    general tomcat_home/lib for that purpose.
    One hint on libraries: Tomcat will ignore ZIP files, you have to
    use JAR. I renamed Oracle's classes12.zip to classes12.jar for
    that reason.
    5) Create settings.jar
    This was the most tricky part. I packed everything under
    ifs_home/settings into the file settings.zip, renamed this to
    settings.jar and moved it to the WEB-INF/lib directory. Seems a
    bit of a kludge to me, anyone with a better solution is welcome.
    6) Start tomcat
    7) try http://yourtomcathost:8080/ifs/files/index.html
    You should see the ifs login screen then.
    One word about the application environment. In this
    configuration every user class has to go into
    <tomcat_home>/ifs/files/WEB-INF/classes, the
    ifs_home/user_classes is of no use here. And don't try to set
    the classpath within catalina.bat, tomcat will completely ignore
    this setting.
    Finally, I know that this environment is not supported but as
    long as the iFS servlet meets the standards, every standard
    compliant servlet engine should do the job.
    Good luck

  • Back to Mac - Has anyone got it working?

    I've hooked my laptop up to another ISP and i can't see my desktop in the Shared Section. When i'm on the same network I can see the desktop, share the screen and all that fun stuff. Has anyone got it working? Could it be my network configuration?

    I had a read through the manual that came with Leopard last night and was a little dissapointed to read this part in regard to Back to My Mac:
    With your .Mac membership, an internet connection, and Back to My Mac and sharing services turned on, you can access any of your computers from anywhere on the internet."
    Sounds like you might need a .Mac account for Back to My Mac. I think you can do the same kind of thing with iChat though so i guess you can still take control of someones Mac over the net to help them fix a problem. But you may need .Mac account to, for example, access your home computer from your work computer.
    I could be completely wrong and im certain someone will point this out if i am wrong. Im still getting to grips with all the new features here.

  • Anyone got NTP working with a Windows 2008 NTP server?

    Hello,
    I'm trying to sync the time on our routers and swithces with a Windows 2008R2 server, but it doesn't work.  Has anyone managed to do this:
    Config:
    ntp master
    ntp update-calendar
    ntp server 192.168.2.164
    sh ntp associations
      address         ref clock         st   when   poll   reach    delay    offset     disp
    *~127.127.1.1     .LOCL.         7     11     16      377      0.000   0.000      0.225
    ~192.168.2.164  .INIT.          16      -      1024     0       0.000    0.000    15937.
    Windows 2008R2 server
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]"
    "Enabled"=dword:00000001
    restart server
    w32tm /config /manualpeerlist:uk.pool.ntp.org,0x8 /syncfromflags:MANUAL
    net stop w32time
    net start w32time
    Doesnt work
    Woudl Linux like Ubuntu be better?
    Thanks

    I got this working from a cisco 2911 router to Windows 7 computer.
    As per many articles, you are missing:-
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
    "AnnounceFlags"=dword:00000005
    But the one that allows Cisco kit to Sync is:-
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
    "LocalClockDispersion"=dword:00000000
    This article http://www.cisco.com/c/en/us/support/docs/ip/network-time-protocol-ntp/108076-ntp-troubleshoot.html talks about having a root-dispersion higher than 1000ms (1 second) causing Cisco IOS-NTP to unsynchronizes itself.
    This article http://htluo.blogspot.co.uk/2009/02/ntp-network-time-protocol.html#comment-form was the only one I found that added to the normal enable ntp server registry keys information, stating to change ‘HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\LocalClockDispersion’  from 10 to 0
    There was also articles that said that the Windows NTP implementation was version 3, and therefore you had to append ‘version 3’ to the routers ‘ntp server x.x.x.x’ command. This may be perhaps true for earlier windows versions?, but was NOT required for Windows 7.

  • Smart profile s60 3rd edition. anyone got it worki...

    has anyone got the S60 3rd edition version of this working? it installs but just hangs on initialising? any ideas?
    testing this out on a N91
    http://my-symbian.com/s60v3/software/applications.php?fldAuto=277&faq=1
    Nexu 5

    hello,
    for testing porposes or for final distributions, you don't
    need to get developer cert. a self certificate will work.
    i have posted a reply to similar question at
    http://www.orison.biz/support/viewtopic.php?id=81
    hope it helps,
    // chall3ng3r //

  • Intel 82845G and xorg 1.8 - anyone got it working?

    By 'working' I mean 'not crashing'. I can install xorg 1.8 just fine, but rebooting every half an hour is not my thing. The crashes happen even if I'm just typing away at the xterm.
    [karol@black ~]$ lspci -v | grep -i -A8 VGA
    00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01) (prog-if 00 [VGA controller])
    Subsystem: IBM NetVista A30p
    Flags: bus master, fast devsel, latency 0, IRQ 16
    Memory at 88000000 (32-bit, prefetchable) [size=128M]
    Memory at 80000000 (32-bit, non-prefetchable) [size=512K]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    Kernel modules: i915
    There are some bug reports in both our and upstream bugtrackers but the issues are still open.
    I'm quite happy w/ xorg 1.6 I have so it's not a life-or-death situation by any means. If you got it working, please tell me how you did it - there's a myriad of "switches" to flip and I'm too lazy / busy to try them all out. I've tried a few and got nowhere, so I'm asking you, my fellow Archers.

    Same hardware here, having this issue for about two years now with linux in general, about six months ago I start using arch, to my surprise it didn't crash that much and when it did a least it took me to the console login, so no data was lost. a month ago I switch to arch completely and just for the fun of it I have four arch DE in my single computer the results are as follow:
    Gnome=no crashes smooth performance even with composite enabled (the simple one build in gnome)
    KDE=freezes on some heavy loaded webpages with flash media, a strange garbaged screen occurs when I am using some software in root mode like dolphin then it crash and takes me to login window. this could be kde I have no idea.
    Xfce=freezes with heavy flash media once in a while. can be restarted by killing x.
    LXDE=no crashes/freezes (I use it just for internet surfing)
    all of the above with up to date software.
    Coming from Ubuntu lucid I may said that the driver has been improved, and probably cutting the fat out of the system may improve performance. I use gnome as my main system and all I can say is that finally I can use my computer for something else other than trying to fix xorg and intel. I was really moved to buy a new one but Arch just give me some more juice out of this old machine. same intel card than described in the first post. this is definitely not my Ubuntu 8.04 which was flying in amazing compositing effects but a least is back to a tool I can work on.
    All of my systems are fresh installs, all of them with the xorg 1.8 and the ..34.. kernel since the beginning, there is no xorg.conf file on any, I haven't had a crash in which I need to do a hard restart.

  • ATI driver for win7 Macbook pro 2010 anyone got it working?

    I'm trying to get the windows7 ati driver to work. Loaded the bootcamp drivers but the display driver is just the generic monitor resolution 1280 x 1024.

    sorry its Nvidia and I finally got it working. Had to remove and then reinstall bootcamp drivers.

  • Front Row in Lion. Has anyone got it working with iTunes 10.5 yet?

    I've got it working with pics and movies by using the method in the link below, but not with the library in iTunes 10.5.
    http://www.cultofmac.com/106874/use-front-row-in-os-x-lion-video-how-to/

    Yes I know. I'm very annoyed that Apple have dropped Front Row from Lion, it removes quite a bit of functionality from my iMac. I use it a lot. I've tried Plex, but don't like it at all.

  • Anyone got facelets working ?

    Hi,
    I have been trying to get Facelets working with the JSF portlet support in portal 9.2, but without success. I get a "java.lang.InternalError: erroneous handlers" error, which doesn't tell me much, besides that it is actually doing something with Facelets. Anybody got this working and if so what did it take ?
    /Steen

    Hi,
    I have been trying to get Facelets working with the JSF portlet support in portal 9.2, but without success. I get a "java.lang.InternalError: erroneous handlers" error, which doesn't tell me much, besides that it is actually doing something with Facelets. Anybody got this working and if so what did it take ?
    /Steen

  • Tomcat 5.5 issues, has anyone got JSF working with tomcat 5.5 yet?

    Hi,
    Firstly I'm wondering if anyone has got JSF 1.1 working with tomcat 5.5 yet.
    I'm trying to move from tomcat 5.0.25 to 5.5.4 and my JSF webapps have not liked the move at all.
    The classpath doesn't seem to be a problem as I have all the .jars that are required in the classpath of tomcat just like before.
    I see the error log in stdout.log (catalina.out on linux) have been reduced to only show the precise error. Or at least is seems at lot easier to read.
    My error is simply
    SEVERE: Error listenerStart
    SEVERE: Context startup failed due to previous errors
    I reverted back to using the examples provided like jsf-guessNumber and the car-demo but neither of these will start-up.
    This issue seems to have occurred to lots of other people previously but I couldn't find a particular fix or direct compatability issue with tomcat.
    Has anyone encountered this before?

    Back again,
    Allright well after a little thought I concluded that this issue had to be some to do with the classpath and the changes between the two tomcat versions.
    I had a look at
    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES.txt
    and noticed that tomcat 5.5 leaves out some important .jar as they are only needed for java 1.4.
    -------------------- EXTRACT ------------------------
    Installing the compatibility package will add the following to the list, which are
    needed when running on J2SE 1.4:
    * jmx.jar (Java Management Extensions API 1.2 or later)
    * xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
    --------------------END EXTRACT ------------------------
    Therefore I tried putting xercexImpl.jar back onto the tomcat classpath and JSF works once again.
    Ah what a relief.

  • Anyone got Oracle working on a V40z?

    From what I understand Oracle 10g is certified or will be certified for Solaris 10 x86. I plan to intall Oracle on a 4CPU V40z with > 4GB RAM.
    Has anyone else got this to to work on a V40z. Oracle is currently x86 32bit - I don't need more than 2GB for this app. Can I get this to run correctly on a Solaris 10 box with >4GB RAM on AMD64 which I assume needs to run in 64 bit mode due the quantity of RAM on board.
    thanks in advance

    Anyone?

  • JSTL  Has anyone got this working successfully

    Has anyone gotten JSTL or any third party tags to work successfully if so how?  I will award points for good answers

    Basically you can not work with jstl within sap portal. However, if you are willing to do some work, here is what i did:
    At first you have to understand the problem, so here a brief snippet of the generated java source
                 try {
                              int _jspx_eval_hbj_page_2 = _jspx_th_hbj_page_2.doStartTag();
                              if (_jspx_eval_hbj_page_2 == Tag.EVAL_BODY_INCLUDE)
                                throw new JspTagException("Since tag handler class com.sapportals.htmlb.taglib.PageTag implements BodyTag, it can't return Tag.EVAL_BODY_INCLUDE");
                               if (_jspx_eval_hbj_page_2 != Tag.SKIP_BODY) {
                                 try {
                                   if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE) {
                                     out = pageContext.pushBody();
                                     _jspx_th_hbj_page_2.setBodyContent((BodyContent) out);
    snip some parts
                             } finally {
                                  if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE)
                                       out = pageContext.popBody();
                        if (_jspx_th_hbj_page_2.doEndTag() == Tag.SKIP_PAGE)
                             return;
                   } finally {
                     _jspx_th_hbj_page_2.getBodyContent().close();
                     _jspx_th_hbj_page_2.release();
    The generated code is bad and not foolproof:
    1. sap wrongly assumes that EVERY tag implements BodyTag. This is just not the case
    2. If, for whatever reasons, doStart() throws an exception, the finally block will call getBodyContent().close(), and throw an NullPointerException...
    Basically i had to write wrappers of my own, that implemented BodyTag and replace the used classes in the tld-file to point my wrapper classes.
    Because of the deficiencies in doStart() your wrapper must not ever return null upon calls to getBodyContent(), even if it has not been initialized.
    Of course, this wont get you anywhere near reading your resource bundles within a tag, but thats another story.

  • X-fi Titanium and Sonar on Vista64 - Anyone got it worki

    The Titanium doesn't show up in my Cakewalk Sonar?list of inputs and outputs. Is this normal? Going to be fixed? I really want to try out the supposed low latency, but it won't let me. :angry:

    Finally got an answer. No 64-bit ASIO for X-Fi Titanium.
    From?Creative Support:?
    Current sound cards such as the Creative X-Fi Titanium Fatalty Pro
    Series have x64 drivers, but the ASIO implementation will only work with
    32bit applications, not nati've 64bit ap
    ps.
    This may change as more
    nati've drivers for ASIO 2.2 becomes available though. Please check our
    website regularly for future driver updates. We apologize for any
    inconvenience.
    Another note to Creative:? Please try to be clear on your packaging and technical specs. Besides driver problems, judging from the content of these forums, this appears to be a big problem for consumers of Creative products. No one knows just what it is they are getting. It's very frustrating for the consumer.

  • I can't export .oam files any more. What gives? A big bad bug? Anyone got a work around?

    I was doing great with Edge until last night...when the .oam publishing feature vanished. I'm pasting small animations into my Muse pages, so this was a great thing, in theory, anyway. Tried restarting the app, tried restarting the computer, always opened the .an doc to work on the project. Thing is, it works once in a while...like once in 20 tries. Why? What's the deal? This app just not ready for the real world yet?

    Hi, sdotkling-
    A couple of questions:
    Are you saving first?  We don't allow publish for new, unsaved files.  (It seems like you're working on an an file first)
    Do you have any errors in the warnings panel?  Look in the lower right hand corner in the Stage panel.
    If neither of these are the case, please post your entire project file on a file sharing site so that we can take a look at what you're trying to do and advise you.
    Thanks,
    -Elaine

  • Has anyone got iSight working when a firewire drive is connected?

    I have tried numerous drives but they all stop iSight working. For sure I would not have bought it had I known this. It will work if I disconnect all drives. Irony is that the internal is so slow that I run off a firewire.

    I have had problems with connecting an external firewire hard drive and isight camera at the same time. I have problems copying or reading files off my hard drive when my isight camera is connected at the same time. Just the other day, I forgot to disconnect my isight camera when I hooked up my external hard drive to view some old family photos that I scanned in and saved to that hard drive months ago. I kept getting a message that the files could not be read and had an error message. I thought that I had lost all the photos or had not scanned them properly or that my hard drive was going bad. Luckily I remembered that there is a firewire problem when my isight is connected and I disconnected the camera and was able to open the files. It would be nice if Apple could address this problem. I also have problems copying files to my idisk on occassion when my isight camera is connected. It tends to be slow and sometimes the wheel spins for a very long time. Also have noticed that when I copy large number of files at one time to a CD that things seem to never work right. I have learned to copy files in smaller lots and this seems to help.
    I love my isight camera and it is so much better than my ibot camera, but wish they could fix the issues with the firewire.
    -Joan
    PowerBook G4   Mac OS X (10.4.2)  

Maybe you are looking for

  • Campos de valor do icms e base de cálculo icms linha de itens

    Boa noite a todos, Alguém saberia me informar se o B1 grava em alguma tabela o valor do icms e a base de cálculo do icms na linha do item da nota fiscal?  Preciso destas informações para montar um pld de um danfe. Desde já agradeço, Atenciosamente, A

  • [CS5.5] issue with stacking order on spreads when pages change

    Have recently had a situation where items on a right hand page have "disappeared" behind an item placed over the reader's spread in a layout using facing pages. For example, this spread has 3 elements: an item of type per page, both brought to front;

  • How to fill controlrecord in File to Idoc scenario

    Dear experts, Currently I have a working file->Idoc scenario in which I fill Idoc-controlrecordvariables as follows: - field SNDPOR: name of XI developmentsystem (via a constant) - field RCVPOR: name of SAP developmentsystem (also via a constant) - s

  • How to lookup EJBs deployed in OC4J from a standalone client application

    Hello all, I am trying to lookup an EJB deployed in OC4J 10.1.3 from a standalone client application using the following code: Hashtable env = new Hashtable(); env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory

  • Error message when searching for an object link within EasyDMS

    Hello, I have a problem with the easydms system. Everything works fine except searching in the object links. When I want to define an object link and I don't know the name of the object I try to find it with the help of the search function within eas