[Gnoga-list] Changes to build - new components directory

2015-07-14 Thread Rabbi David Botton
As part of moving towards a component model for new Gnoga plugins and
modules, I am moving everything out of the base Gnoga tree that is a plugin
under components

To install a component to your global libgnoga.a you cd to the component
and run make install then in the root for Gnoga run make gnoga again to
rebuild the gnoga static library.

If you want to use a component only in your local project, you just create
a directory called components and copy the component in to that directory
and run make install locally.

It is not a super sophisticated system, but works.

In the future some tools will be able to download or git clone components
listed in some central repo for Gnoga components.

So in the future you would set up your project with say gnoga_make then use
that command to add more components as needed. (Or just use that future
command to add to the global Gnoga system).

make uninstall will remove components.

David Botton
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] gnoga (or ada) and LDAP

2015-07-14 Thread Rabbi David Botton
test/demo.adb has an example of interacting with parser. The templates are
pure Python so you can just call the parser with your params and get back
the results of the call. Not saying ideal, using direct code usually a
better option, but there if needed.

David Botton


On Tue, Jul 14, 2015 at 7:24 PM Björn Lundin  wrote:

> On 2015-07-15 00:26, Rabbi David Botton wrote:
> > BTW as an interesting aside, you could also use python's bindings if
> > nothing else works out directly with Ada via Gnoga's python templates.
> >
>
> Is the example to look at the template parser?
>
>
> --
> Björn
>
>
> --
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] gnoga (or ada) and LDAP

2015-07-14 Thread Björn Lundin
On 2015-07-15 00:26, Rabbi David Botton wrote:
> BTW as an interesting aside, you could also use python's bindings if
> nothing else works out directly with Ada via Gnoga's python templates.
> 

Is the example to look at the template parser?


--
Björn

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] gnoga (or ada) and LDAP

2015-07-14 Thread Björn Lundin
On 2015-07-15 00:14, Rabbi David Botton wrote:
> I'll take a look, btw there is no issue with using AWS along side Gnoga
> (except obviously if you overlap server ports).

No,no - aws.ldap is clientside code


> Doesn't hurt to ask on CLA as well.

Ok, I'll do that in the week.



--
Björn

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] gnoga (or ada) and LDAP

2015-07-14 Thread Rabbi David Botton
BTW as an interesting aside, you could also use python's bindings if
nothing else works out directly with Ada via Gnoga's python templates.

David Botton


On Tue, Jul 14, 2015 at 6:14 PM Rabbi David Botton  wrote:

> I'll take a look, btw there is no issue with using AWS along side Gnoga
> (except obviously if you overlap server ports).
>
> Doesn't hurt to ask on CLA as well.
>
> David Botton
>
>
> On Tue, Jul 14, 2015 at 4:48 PM Björn Lundin  wrote:
>
>>
>> I want to authenticate users via LDAP from a gnoga application.
>> I know that AWS has an LDAP part.
>> Has anyone used that successfully?
>>
>> I mean, I have tried it, asked an LDAP query long time ago,
>> but how does one use it for authentication?
>>
>> Or I should perhaps take it to c.l.a ?
>>
>> --
>> Björn
>>
>>
>> --
>> Don't Limit Your Business. Reach for the Cloud.
>> GigeNET's Cloud Solutions provide you with the tools and support that
>> you need to offload your IT needs and focus on growing your business.
>> Configured For All Businesses. Start Your Cloud Today.
>> https://www.gigenetcloud.com/
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>
>
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] JDBC executeUpdate.

2015-07-14 Thread Rabbi David Botton
Modify the abstract class and you will see. The compiler complains about
ambiguities when you try and use the code as in the tests, etc.

David Botton


On Mon, Jul 13, 2015 at 4:18 PM Pascal  wrote:

> Hello David,
>
> What is wrong? Could you be more specific?
>
> Regards, Pascal.
> http://blady.pagesperso-orange.fr
>
>
> Le 29 juin 2015 à 21:57, Rabbi David Botton  a écrit :
>
> > When I modify the abstract class in Gnoga.Server.Database things do not
> work.
> >
> > On Fri, Jun 5, 2015 at 4:26 PM Pascal  wrote:
> > Hello David,
> >
> > I've changed Query to Execute_Query with no compilation issue.
> > See attached diff file:
> >
> >
> >
> > I've also executed tutorial 10 with success.
> >
> > Is it correct for you?
> >
> > Regards, Pascal.
> > http://blady.pagesperso-orange.fr
> >
> >
> > Le 17 mai 2015 à 03:50, Rabbi David Botton  a écrit :
> >
> > > Not sure why it is the case, but you can give a try, change Query for
> Recordset to Execute_Query and can see the issue.
> > >
> > > David Botton
> > >
> > >
> > > On Sat, May 16, 2015 at 3:09 AM Pascal  wrote:
> > > Thanks David,
> > > Though they have the same name and parameters, It is curious as one is
> a procedure and the other is a function.
> > > Isn't it?
> > >
> > > Regards, Pascal.
> > > http://blady.pagesperso-orange.fr
> > >
> > >
> > > Le 15 mai 2015 à 20:09, Rabbi David Botton  a écrit
> :
> > >
> > > > I've change Next to have the mode "in out"
> > > >
> > > > If Execute_Query and Query share the same sub program name the
> compiler has difficulty resolving which to use with out further
> qualification. So I am going to leave them as is.
> > > >
> > > > I have added Execute_Update that combines the call to Execute_Query
> and Affected_Rows in one function.
> > > >
> > > > David Botton
> > > >
> > >
> > >
> > >
> --
> > > One dashboard for servers and applications across
> Physical-Virtual-Cloud
> > > Widest out-of-the-box monitoring support with 50+ applications
> > > Performance metrics, stats and reports that give you Actionable
> Insights
> > > Deep dive visibility with transaction tracing using APM Insight.
> > > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
> > > ___
> > > Gnoga-list mailing list
> > > Gnoga-list@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/gnoga-list
> > >
> --
> > > One dashboard for servers and applications across
> Physical-Virtual-Cloud
> > > Widest out-of-the-box monitoring support with 50+ applications
> > > Performance metrics, stats and reports that give you Actionable
> Insights
> > > Deep dive visibility with transaction tracing using APM Insight.
> > >
> http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
> > > Gnoga-list mailing list
> > > Gnoga-list@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/gnoga-list
> >
> >
> --
> > ___
> > Gnoga-list mailing list
> > Gnoga-list@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gnoga-list
> >
> --
> > Don't Limit Your Business. Reach for the Cloud.
> > GigeNET's Cloud Solutions provide you with the tools and support that
> > you need to offload your IT needs and focus on growing your business.
> > Configured For All Businesses. Start Your Cloud Today.
> >
> https://www.gigenetcloud.com/___
> > Gnoga-list mailing list
> > Gnoga-list@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
>
>
> --
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] gnoga (or ada) and LDAP

2015-07-14 Thread Rabbi David Botton
I'll take a look, btw there is no issue with using AWS along side Gnoga
(except obviously if you overlap server ports).

Doesn't hurt to ask on CLA as well.

David Botton


On Tue, Jul 14, 2015 at 4:48 PM Björn Lundin  wrote:

>
> I want to authenticate users via LDAP from a gnoga application.
> I know that AWS has an LDAP part.
> Has anyone used that successfully?
>
> I mean, I have tried it, asked an LDAP query long time ago,
> but how does one use it for authentication?
>
> Or I should perhaps take it to c.l.a ?
>
> --
> Björn
>
>
> --
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


[Gnoga-list] gnoga (or ada) and LDAP

2015-07-14 Thread Björn Lundin

I want to authenticate users via LDAP from a gnoga application.
I know that AWS has an LDAP part.
Has anyone used that successfully?

I mean, I have tried it, asked an LDAP query long time ago,
but how does one use it for authentication?

Or I should perhaps take it to c.l.a ?

--
Björn

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] ssl and apache 2.4 on debian

2015-07-14 Thread Björn Lundin
On 2015-07-12 10:50, Björn Lundin wrote:
> Now, I need to make my friend fix the proxy-part.
> 

And now, that works too.
https via apache proxy is working :-)


we plan to use LDAP for user authentication.
I'll open another thread for that

--
Björn

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


[Gnoga-list] Change to build system

2015-07-14 Thread Rabbi David Botton
I've modified the build system for Gnoga so that when not install gnoga as
standard lib in gnat static libs are still used for faster builds (in
particular on Windows).

So if you have not use make install (or it doesn't work on your platform)
then with the gnoga.gpr file in the lib directory instead of the src
directory to always use the libgnoga.a for faster builds.

David Botton
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list