[
https://issues.apache.org/jira/browse/TINKERPOP-1945?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16470314#comment-16470314
]
ASF GitHub Bot commented on TINKERPOP-1945:
-------------------------------------------
Github user spmallette commented on the issue:
https://github.com/apache/tinkerpop/pull/842
> gx:InetAddress - I'm not sure what we can expect to get in @value here as
the example shows localhost
There's not much more to it than that. We use the standard Jackson
serializer to handle that and it pretty much does this:
```text
gremlin> i = InetAddress.getByName("java.sun.com")
==>java.sun.com/156.151.59.19
gremlin> mapper = GraphSONMapper.build().create().createMapper()
==>org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper@76b224cd
gremlin> mapper.writeValueAsString(i)
==>"java.sun.com"
```
> Add support for extended GraphSon types to Gremlin.net
> ------------------------------------------------------
>
> Key: TINKERPOP-1945
> URL: https://issues.apache.org/jira/browse/TINKERPOP-1945
> Project: TinkerPop
> Issue Type: Improvement
> Components: dotnet
> Reporter: Daniel C. Weber
> Priority: Minor
>
> While Gremlin.net can properly serialize and deserialize all of the core
> GraphSon types, support for most of the extended types as described
> [here|[http://tinkerpop.apache.org/docs/3.3.2/dev/io/#_extended]] is lacking.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)