Re: [Yxa-devel] Status

2012-09-05 Thread CGS
I will do it this evening. CGS On Wed, Sep 5, 2012 at 12:03 AM, Mikael Magnusson mikma...@gmail.comwrote: On 08/31/2012 09:00 PM, CGS wrote: Here it is: Repo: https://github.com/cgsmcmlxxv/**yxa.githttps://github.com/cgsmcmlxxv/yxa.git Branch: otp-r15a (git fetch

Re: [Yxa-devel] Status

2012-09-05 Thread CGS
It was a problem with my branch because I couldn't compare my branch with the master branch. It should work now. CGS On Wed, Sep 5, 2012 at 12:03 AM, Mikael Magnusson mikma...@gmail.comwrote: On 08/31/2012 09:00 PM, CGS wrote: Here it is: Repo:

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
Hi Manuel, I was wondering the same for some time. I will follow this thread for the replies from devs. CGS On Fri, Aug 31, 2012 at 1:42 PM, Manuel A. Rubio Bombadil bomba...@bosqueviejo.net wrote: Hi to all, I'm new in the list, I've reviewed the YXA code and I'd like to know the

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
I tried a test, but firstly it needs to be brought up to the latest version of Erlang. R13B01 is obsolete version and many things are changed in Erlang since then. CGS On Fri, Aug 31, 2012 at 2:01 PM, Manuel A. Rubio Bombadil bomba...@bosqueviejo.net wrote: ** And ... are you usign YXA in

Re: [Yxa-devel] Status

2012-08-31 Thread Mikael Magnusson
On 08/31/2012 02:13 PM, CGS wrote: I tried a test, but firstly it needs to be brought up to the latest version of Erlang. R13B01 is obsolete version and many things are changed in Erlang since then. CGS There is a branch for R14, maybe it works better with the latest Erlang version.

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
Just tried it and I got this with Erlang R15B01 (erts-5.9.1): configure: error: 5.9.1 found, 5.7.2 (Erlang/OTP R13B-1) required If I will change the configure, do you think it won't affect the code further? CGS On Fri, Aug 31, 2012 at 2:16 PM, Mikael Magnusson mikma...@gmail.comwrote: On

Re: [Yxa-devel] Status

2012-08-31 Thread Mikael Magnusson
On 08/31/2012 02:24 PM, CGS wrote: Just tried it and I got this with Erlang R15B01 (erts-5.9.1): configure: error: 5.9.1 found, 5.7.2 (Erlang/OTP R13B-1) required If I will change the configure, do you think it won't affect the code further? There should be a parameter to configure that

Re: [Yxa-devel] Status

2012-08-31 Thread Mikael Magnusson
On 08/31/2012 02:01 PM, Manuel A. Rubio Bombadil wrote: And ... are you usign YXA in some areas? dev? production? test? I have used YXA for connecting to VoIP services. But most recently I used it as a production presence server with Twinkle as clients. Unfortunately the YXA presence

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
I changed it in configure.ac and configure script finished without error. Unfortunately, make reports errors: ssl_util.erl:27: can't find include lib ssl/include/OTP-PKIX.hrl ssl_util.erl:179: record 'AttributeTypeAndValue' undefined ssl_util.erl:182: record 'AttributeTypeAndValue' undefined

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
For example, https://github.com/mikma/yxa/blob/otp-r14a/src/eldap/eldap.erl(line 66): open(Hosts, Opts) when list(Hosts), list(Opts) - list/1 should be is_list/1. CGS On Fri, Aug 31, 2012 at 3:33 PM, Mikael Magnusson mikma...@gmail.comwrote: On 08/31/2012 03:31 PM, CGS wrote: Well, it

Re: [Yxa-devel] Status

2012-08-31 Thread Mikael Magnusson
On 08/31/2012 04:10 PM, CGS wrote: OK! I managed to compile it with only one warning (error/2 is not used; I set eldap:parse_error/2 which does the same). I started the tests, but I got the following error: ssl_util: failed (test SSL certificates - 0, line 419) - Error:

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
BINGO! :D I changed ssl_util.erl to use ssl:peercert/1 and {ok, TestCert1} with TestCert1 and all the tests are passed now. I attached here the archive with the changes for Erlang/OTP R15B01. If you prefer it, I can make a git repo for it. CGS On Fri, Aug 31, 2012 at 4:58 PM, Mikael Magnusson

Re: [Yxa-devel] Status

2012-08-31 Thread Mikael Magnusson
On 08/31/2012 05:26 PM, CGS wrote: BINGO! :D I changed ssl_util.erl to use ssl:peercert/1 and {ok, TestCert1} with TestCert1 and all the tests are passed now. I attached here the archive with the changes for Erlang/OTP R15B01. If you prefer it, I can make a git repo for it. CGS I prefer

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
I am not sure, but I suppose in R14B04 is already set as a warning (I will check). Nevertheless, there is a repo for R15B01 already compiled: https://www.erlang-solutions.com/downloads/download-erlang-otp I make my installations by myself, but I heard that those packages are fully compiled (with

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
As far as I could discover, ssl:peercert/1 is supported since 2009, so, definitely, it should work with R14B04 or even with R14B03. See the old documentation at http://demo.erlang.org/documentation/doc-5.7.4/lib/ssl-3.10.7/doc/html/new_ssl.html#peercert-1 which is from 2009. Presently,

Re: [Yxa-devel] Status

2012-08-31 Thread CGS
Could give more details here, maybe I can help. CGS On Fri, Aug 31, 2012 at 2:31 PM, Mikael Magnusson mikma...@gmail.comwrote: On 08/31/2012 02:01 PM, Manuel A. Rubio Bombadil wrote: And ... are you usign YXA in some areas? dev? production? test? I have used YXA for connecting to VoIP