[Neo4j] Neo4J server with my embedded server

2010-11-22 Thread Balazs E. Pataki
Hi,

I see there's the Neo4j Server  in M4, and it looks really cool, 
especially with its administration console.

My question is: is it possible to have an embedded server (a server that 
I configure from java, with my own settings, indexers, etc) and have 
this same "Neo4j Web Administration" tool working with this embedded 
server? If possible, how?

Thanks for any help or tips!
---
balazs
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Neo4J server with my embedded server

2010-11-22 Thread Peter Neubauer
Balazs,
Yes, this is possible via the RemoteGraphDB RMI connector. However, in
order to take one bite at a time, it is not included in the first
version of the server, mainly due to current limitations in the remote
component for the admin part. This will be added in later versions. If
you really want it, you can always take the source code and work on it
before anyone else has time - a lot of the code is already in the
neo4j server component. Before enabling remote connections to embedded
neo4j instances as part of a release, we want to make sure things are
tested and have some more features...

If you try, let the community know how it goes so we can support you!

/peter

On Monday, November 22, 2010, Balazs E. Pataki  wrote:
> Hi,
>
> I see there's the Neo4j Server  in M4, and it looks really cool,
> especially with its administration console.
>
> My question is: is it possible to have an embedded server (a server that
> I configure from java, with my own settings, indexers, etc) and have
> this same "Neo4j Web Administration" tool working with this embedded
> server? If possible, how?
>
> Thanks for any help or tips!
> ---
> balazs
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Neo4J server with my embedded server

2010-11-22 Thread Mattias Persson
It may also be desirable to just have the webadmin part in an otherwise
embedded environment, that's what you're really looking for, right? Is that
possible (now/soon)?

2010/11/23 Peter Neubauer 

> Balazs,
> Yes, this is possible via the RemoteGraphDB RMI connector. However, in
> order to take one bite at a time, it is not included in the first
> version of the server, mainly due to current limitations in the remote
> component for the admin part. This will be added in later versions. If
> you really want it, you can always take the source code and work on it
> before anyone else has time - a lot of the code is already in the
> neo4j server component. Before enabling remote connections to embedded
> neo4j instances as part of a release, we want to make sure things are
> tested and have some more features...
>
> If you try, let the community know how it goes so we can support you!
>
> /peter
>
> On Monday, November 22, 2010, Balazs E. Pataki 
> wrote:
> > Hi,
> >
> > I see there's the Neo4j Server  in M4, and it looks really cool,
> > especially with its administration console.
> >
> > My question is: is it possible to have an embedded server (a server that
> > I configure from java, with my own settings, indexers, etc) and have
> > this same "Neo4j Web Administration" tool working with this embedded
> > server? If possible, how?
> >
> > Thanks for any help or tips!
> > ---
> > balazs
> > ___
> > Neo4j mailing list
> > User@lists.neo4j.org
> > https://lists.neo4j.org/mailman/listinfo/user
> >
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>



-- 
Mattias Persson, [matt...@neotechnology.com]
Hacker, Neo Technology
www.neotechnology.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Neo4J server with my embedded server

2010-11-23 Thread Balazs E. Pataki
Yes, I would like to have what Mattias just described: the webadmin with 
my embedded environment. I usually have an EmbeddedGraphDatabase, which 
I access via our own REST interface run in Tomcat. So I have a Tomcat, 
and in case the webadmin is a a plain servlet it would be nice to 
configure it to use my instance of EmbeddedGraphDatabase for administration.
---
balazs

On 11/23/10 12:50 AM, Mattias Persson wrote:
> It may also be desirable to just have the webadmin part in an otherwise
> embedded environment, that's what you're really looking for, right? Is that
> possible (now/soon)?
>
> 2010/11/23 Peter Neubauer
>
>> Balazs,
>> Yes, this is possible via the RemoteGraphDB RMI connector. However, in
>> order to take one bite at a time, it is not included in the first
>> version of the server, mainly due to current limitations in the remote
>> component for the admin part. This will be added in later versions. If
>> you really want it, you can always take the source code and work on it
>> before anyone else has time - a lot of the code is already in the
>> neo4j server component. Before enabling remote connections to embedded
>> neo4j instances as part of a release, we want to make sure things are
>> tested and have some more features...
>>
>> If you try, let the community know how it goes so we can support you!
>>
>> /peter
>>
>> On Monday, November 22, 2010, Balazs E. Pataki
>> wrote:
>>> Hi,
>>>
>>> I see there's the Neo4j Server  in M4, and it looks really cool,
>>> especially with its administration console.
>>>
>>> My question is: is it possible to have an embedded server (a server that
>>> I configure from java, with my own settings, indexers, etc) and have
>>> this same "Neo4j Web Administration" tool working with this embedded
>>> server? If possible, how?
>>>
>>> Thanks for any help or tips!
>>> ---
>>> balazs
>>> ___
>>> Neo4j mailing list
>>> User@lists.neo4j.org
>>> https://lists.neo4j.org/mailman/listinfo/user
>>>
>> ___
>> Neo4j mailing list
>> User@lists.neo4j.org
>> https://lists.neo4j.org/mailman/listinfo/user
>>
>
>
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Neo4J server with my embedded server

2010-11-23 Thread Mattias Persson
2010/11/23 Balazs E. Pataki 

> Yes, I would like to have what Mattias just described: the webadmin with
> my embedded environment. I usually have an EmbeddedGraphDatabase, which
> I access via our own REST interface run in Tomcat. So I have a Tomcat,
> and in case the webadmin is a a plain servlet it would be nice to
> configure it to use my instance of EmbeddedGraphDatabase for
> administration.
>

But what you just described here is the Neo4j Server with your own extension
that you load server-side. Do you access your db from other endpoints than
REST?


> ---
> balazs
>
> On 11/23/10 12:50 AM, Mattias Persson wrote:
> > It may also be desirable to just have the webadmin part in an otherwise
> > embedded environment, that's what you're really looking for, right? Is
> that
> > possible (now/soon)?
> >
> > 2010/11/23 Peter Neubauer
> >
> >> Balazs,
> >> Yes, this is possible via the RemoteGraphDB RMI connector. However, in
> >> order to take one bite at a time, it is not included in the first
> >> version of the server, mainly due to current limitations in the remote
> >> component for the admin part. This will be added in later versions. If
> >> you really want it, you can always take the source code and work on it
> >> before anyone else has time - a lot of the code is already in the
> >> neo4j server component. Before enabling remote connections to embedded
> >> neo4j instances as part of a release, we want to make sure things are
> >> tested and have some more features...
> >>
> >> If you try, let the community know how it goes so we can support you!
> >>
> >> /peter
> >>
> >> On Monday, November 22, 2010, Balazs E. Pataki
> >> wrote:
> >>> Hi,
> >>>
> >>> I see there's the Neo4j Server  in M4, and it looks really cool,
> >>> especially with its administration console.
> >>>
> >>> My question is: is it possible to have an embedded server (a server
> that
> >>> I configure from java, with my own settings, indexers, etc) and have
> >>> this same "Neo4j Web Administration" tool working with this embedded
> >>> server? If possible, how?
> >>>
> >>> Thanks for any help or tips!
> >>> ---
> >>> balazs
> >>> ___
> >>> Neo4j mailing list
> >>> User@lists.neo4j.org
> >>> https://lists.neo4j.org/mailman/listinfo/user
> >>>
> >> ___
> >> Neo4j mailing list
> >> User@lists.neo4j.org
> >> https://lists.neo4j.org/mailman/listinfo/user
> >>
> >
> >
> >
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>



-- 
Mattias Persson, [matt...@neotechnology.com]
Hacker, Neo Technology
www.neotechnology.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Neo4J server with my embedded server

2010-11-23 Thread Balazs E. Pataki
I only want to access it via REST, but I don't want to publish (make 
accessible) the Neo4J REST API, only my own REST calls (which implements 
my business logic with neo4j storing my domain objects).

I will take a deeper look into the Neo4J Server and see if I can somehow 
integrate my extensions into it.
---
balazs

On 11/23/10 11:31 AM, Mattias Persson wrote:
> 2010/11/23 Balazs E. Pataki
>
>> Yes, I would like to have what Mattias just described: the webadmin with
>> my embedded environment. I usually have an EmbeddedGraphDatabase, which
>> I access via our own REST interface run in Tomcat. So I have a Tomcat,
>> and in case the webadmin is a a plain servlet it would be nice to
>> configure it to use my instance of EmbeddedGraphDatabase for
>> administration.
>>
>
> But what you just described here is the Neo4j Server with your own extension
> that you load server-side. Do you access your db from other endpoints than
> REST?
>
>
>> ---
>> balazs
>>
>> On 11/23/10 12:50 AM, Mattias Persson wrote:
>>> It may also be desirable to just have the webadmin part in an otherwise
>>> embedded environment, that's what you're really looking for, right? Is
>> that
>>> possible (now/soon)?
>>>
>>> 2010/11/23 Peter Neubauer
>>>
 Balazs,
 Yes, this is possible via the RemoteGraphDB RMI connector. However, in
 order to take one bite at a time, it is not included in the first
 version of the server, mainly due to current limitations in the remote
 component for the admin part. This will be added in later versions. If
 you really want it, you can always take the source code and work on it
 before anyone else has time - a lot of the code is already in the
 neo4j server component. Before enabling remote connections to embedded
 neo4j instances as part of a release, we want to make sure things are
 tested and have some more features...

 If you try, let the community know how it goes so we can support you!

 /peter

 On Monday, November 22, 2010, Balazs E. Pataki
 wrote:
> Hi,
>
> I see there's the Neo4j Server  in M4, and it looks really cool,
> especially with its administration console.
>
> My question is: is it possible to have an embedded server (a server
>> that
> I configure from java, with my own settings, indexers, etc) and have
> this same "Neo4j Web Administration" tool working with this embedded
> server? If possible, how?
>
> Thanks for any help or tips!
> ---
> balazs
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

>>>
>>>
>>>
>> ___
>> Neo4j mailing list
>> User@lists.neo4j.org
>> https://lists.neo4j.org/mailman/listinfo/user
>>
>
>
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Neo4J server with my embedded server

2010-11-23 Thread Peter Neubauer
Balazs,
Yes, this is possible via the RemoteGraphDB RMI connector. However, in
order to take one bite at a time, it is not included in the first
version of the server, mainly due ti limitations in the remote
component. This will be added in later versions. Ifnyou really want
it, you can always take the source code and work on it before anyone
else has time - a lot of the code is already in the neo4j server
component. Before enabling remote connections to embedded neo4j
instances as part of a release, we want to make sure things are tested
and have some more features...

If you try, let the community know how it goes, I can give you some pointers !

/Peter

On Monday, November 22, 2010, Balazs E. Pataki  wrote:
> Hi,
>
> I see there's the Neo4j Server  in M4, and it looks really cool,
> especially with its administration console.
>
> My question is: is it possible to have an embedded server (a server that
> I configure from java, with my own settings, indexers, etc) and have
> this same "Neo4j Web Administration" tool working with this embedded
> server? If possible, how?
>
> Thanks for any help or tips!
> ---
> balazs
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user