Hello,
I am trying to create a Monodroid wrapper for the TouchDB project available 
here (https://github.com/couchbaselabs/TouchDB-Android/)

TouchDB is a lightweight embedded database that supports sync to cloud based 
couchbase DB's such as http://www.iriscouch.com

I am just now learning about Java Bindings projects in Monodroid and figured I 
might as well do so on an open source project. The TouchDB-Monodroid project is 
available to everyone at: http://github.com/nsainaney/TouchDB-Monodroid.

I have already run into some issues. The TDListener class in 
TouchDB-Android-Listener project exposes the following constructor:

public TDListener(TDServer server, int port) {
        this.server = server;
        this.httpServer = new TDHTTPServer();
        this.httpServer.setServer(server);
        this.httpServer.setListener(this);
        this.httpServer.setPort(port);
    }

However, the Binding Project generates:

protected TDListener (IntPtr javaReference, JniHandleOwnership transfer) : base 
(javaReference, transfer) {}

The TDHTTPServer and TDHTTPServlet classes are not mapped. I am assuming I'm 
missing some sort of reference however, I have all the appropriate 
ReferenceJars so I'm not entirely sure what's wrong.

I'd appreciate any help with the above issue. Also, if you are interested in 
the TouchDB database and would like to contribute to the Monodroid wrapper 
project, you're more than welcome to do so.

Thanks,
Narayan

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to