Re: [jira] [Updated] (TINKERPOP3-740) Serializer Handshake

2015-06-29 Thread David Brown
Would this information be sent as part of the Sec-WebSocket-Protocol in the handshake header? On Mon, Jun 29, 2015 at 8:53 AM, stephen mallette (JIRA) wrote: > > [ > https://issues.apache.org/jira/browse/TINKERPOP3-740?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel > ] >

Re: [jira] [Updated] (TINKERPOP3-740) Serializer Handshake

2015-06-29 Thread David Brown
ly be useful to those > drivers that are JVM based and use gryo. GraphSON serializers pipe > everything to generic Map/List constructs which make it easy for non-JVM > languages to deserialize and thus don't require any special configuration. > > On Mon, Jun 29, 2015 at 2:32 PM, Da

Re: [jira] [Updated] (TINKERPOP3-740) Serializer Handshake

2015-06-29 Thread David Brown
e to send back > serializer configuration information which is more hierarchical if i want > to dynamically try to instantiate the right serializers on the driver side. > > On Mon, Jun 29, 2015 at 4:04 PM, David Brown wrote: > > > Ah, I must have misunderstood the protocol. I thought t

Re: [TinkerPop] Re: [RELEASED] Apache TinkerPop 3.0.1-incubating (A Gremlin Rāga in 7/16 Time)

2015-09-17 Thread David Brown
" (languages/systems), a few test case renames/etc. might cause a > burp here and there. > > Thanks, > Marko. > > http://markorodriguez.com > > On Sep 17, 2015, at 8:17 AM, David Brown > > wrote: > > Congratulations! Time to update the clients. > >

Re: [RELEASED] Apache TinkerPop 3.0.1-incubating (A Gremlin Rāga in 7/16 Time)

2015-09-17 Thread David Brown
Congratulations! Time to update the clients. On Wednesday, September 16, 2015 at 1:17:24 PM UTC-4, Stephen Mallette wrote: > > Hello TinkerPoppers, > > TinkerPop is happy to announce the release of 3.0.1-incubating. > > TinkerPop 3.0.1-incubating (http://tinkerpop.incubator.apache.org/) > > Doc

Re: [TinkerPop] Re: [RELEASED] Apache TinkerPop 3.0.1-incubating (A Gremlin Rāga in 7/16 Time)

2015-09-18 Thread David Brown
under the impression that it was configured to work out of the box with this user and pass. However, I get a 401 response from the server. Do I need to expressly create a user in the credentials graph? Or is there something else I am missing here? Thanks! Dave On Thursday, September 17, 201

Re: [TinkerPop] Re: [RELEASED] Apache TinkerPop 3.0.1-incubating (A Gremlin Rāga in 7/16 Time)

2015-09-18 Thread David Brown
va.lang.String cannot be cast to [B ". I think these problems have to do with serialization on my end, but a bit of clarification would be great! Thanks again for the help. Dave On Friday, September 18, 2015 at 2:27:21 PM UTC-4, David Brown wrote: > > Hi guys, > > Almost

Gremlin Sever behaviour using SASL with sessions

2015-11-04 Thread David Brown
I am having a bit of trouble getting my SessionClient tests running using Gremlin Server 3.0.2-incubating when I use the conf/gremlin-server-secure.yaml. Maybe I am missing something, so any help would be appreciated. When using the regular conf/gremlin-server.yaml config, I send a series of messa

Re: Gremlin Sever behaviour using SASL with sessions

2015-11-04 Thread David Brown
the tests to the integration suit for gremlin-server > and > > > > couldn't recreate this behavior using gremlin-driver (both tests I > set > > up > > > > pass). > > > > > > > > I'm not really sure why this is happening at this

Re: Gremlin Sever behaviour using SASL with sessions

2015-11-09 Thread David Brown
uld be different > > > > > > > > On Wed, Nov 4, 2015 at 4:41 PM, Dylan Millikin < > > dylan.milli...@gmail.com > > > > > > > > wrote: > > > > > > > > > I added the two gremlin-driver tests here : >

Re: [VOTE] TinkerPop 3.1.0-incubating Release

2015-11-18 Thread David Brown
-aiogremlinclient tests pass (now works with SASL also) -gremlinclient tests pass -gremlinrestclient tests pass VOTE: +1 (non-binding) On Wed, Nov 18, 2015 at 10:36 AM, Daniel Kuppitz wrote: > Spent some time today using the release to work on some stuff; no issues at > all, everything worked

Re: question for driver developers

2016-01-30 Thread David Brown
Hi Stephen, I haven't tested this yet, but I am currently working on a fairly serious client implementation now with gremlinclient (it will surpass aiogremlin in support, functionality, and documentation) and I will be sure to include it in the tests. I assume you are already testing this with the

Re: [VOTE] TinkerPop 3.1.1-incubating Release

2016-02-10 Thread David Brown
+1 (non-binding) gremlinclient and aiogremlin tests run against apache-gremlin-server-3.1.1-incubating w/default conf settings gremlinrestclient runs w/gremlin-server-rest-modern.yaml conf Thanks for all the hard work! Best, Dave On Wed, Feb 10, 2016 at 4:51 PM, Jean-Baptiste Musso wrote: >

Re: question for driver developers

2016-02-15 Thread David Brown
This seems to be working well, for example I can send a message like this: 'args': {'gremlin': 'x.b'', 'bindings': {'x': {'f': {'foo': 'bar'}, 'b': ['bar', None, 1.5, {'b': 1}]}}, aliases': {}, 'language': 'gremlin-groovy'}, 'processor': '', 'op': 'eval', 'requestId': '7a19dc71-0fec-4468-abb4-587

Re: [VOTE] TinkerPop 3.2.0-incubating Release

2016-04-11 Thread David Brown
Tests pass for Python drivers: gremlinclient gremlinrestclient aiogremlin VOTE +1 (non-binding) Thanks for the hard work! Dave On Mon, Apr 11, 2016 at 1:39 AM, pieter-gmail wrote: > mvn clean install -DincludeNeo4j > > Upgrade Sqlg to 3.2.0-incubating and ran > > Custom tests, > > Structure

Re: Creating a host language embedded Gremlin language variant.

2016-04-12 Thread David Brown
Thanks for this Marko. The original Python OGM mogwai included a limited subset of this sort of functionality that allowed the user to create traversals (always with a start node) using an interface that mirrored the Blueprints API. In my initial port to TP3 (Goblin) [1] , I changed this to class

Re: [TinkerPop] Creating a host language embedded Gremlin language variant.

2016-04-15 Thread David Brown
On Fri, Apr 15, 2016 at 6:49 AM, Stephen Mallette wrote: > David Brown mentioned Goblin to me. I feel like there seems to be a fair > bit of fragmentation in the TinkerPop+Python land. Maybe it's just because > I don't know Python, but there are a ton of libraries out there a

Re: [TinkerPop] [STEPHEN] Fwd: emehrkay added you to incubator-tinkerpop

2016-04-21 Thread David Brown
Cool stuff Marko! I'll make sure to reference this from the docs of the projects I maintain. On Thu, Apr 21, 2016 at 10:52 AM, Marko Rodriguez wrote: > Hello, > > So, I had to move the tutorial to 3.2.x+ branch because it uses the new > TraversalSource API. Thus, the new URL for the DRAFT tutori