GithubHelp home page GithubHelp logo

android-couchbase's People

Contributors

apage43 avatar daleharvey avatar ingenthr avatar mattadams avatar mschoch avatar tleyden avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

android-couchbase's Issues

Mobile futon doesnt display the views

I work for a small IT company in Ghana. We are trying to use couch as our platform to build apps for clients. We are currently facing a problem with the mobile futon permanent views in the database. It does not return the view any time we request for it

Android - Library com_google_ase_Exec not found

Hello.

My company is evaluating this product. The iOS version worked out of the box. The Android experience has been very frustrating.

** System being used **

Mac OS X version 10.6.8. Eclipse 3.6.1.

** Steps to reproduce problem **

08-29 08:44:00.777: ERROR/AndroidRuntime(21797): Caused by: java.lang.UnsatisfiedLinkError: Library com_google_ase_Exec not found

Would someone please recommend how I should resolve this? I am hesitant to potentially proceed with using the Android NDK as I've already spent much time working on this. It would be nice if there were a simple fix to apply.

Thanks for reading this far.

gf

Error while replication on Android device

Hi,

We use cloudantdata and replicate the same on android device. We have android device contacting nodejs proxy on heroku and that routes to cloudant. This is all through ssl. It works fine. However when I move the proxy from heroku to other machines on S3 or in our local environment, and start working without ssl, we get the following error on client side while replication through _changes feed. Can you please throw some light on this.

05-06 12:47:55.474: ERROR/CouchDB(1025): [error] [<0.115.0>] Error in replication 54f5314f299f1bb808b560584eafe1b6+continuous (triggered by document cloud2airline): {worker_died,<0.2716.0>,
{process_died,<0.2731.0>,
{function_clause,
[{string,tokens1,[undefined,";",[]]},
{mochiweb_util,parse_header,1},
{couch_httpd,get_boundary,1},
{couch_httpd,parse_multipart_request,3},
{couch_api_wrap,'-open_doc_revs/6-fun-1-',4},
{couch_api_wrap_httpc,process_stream_response,5},
{couch_api_wrap,'-open_doc_revs/6-fun-2-',4}]}}}
Restarting replication in 5 seconds.

This is our proxy code
'use strict';
/*!

  • Middleware for forwarding a request to CouchDB.
    */

/**

  • Module dependencies.
    */

var httpProxy = require('http-proxy'),
util = require('./util');

module.exports = function(couch) {
var proxy = new httpProxy.HttpProxy(couch),
couchTarget = couch.target;
httpProxy.setMaxSockets(200);

return function(req, res, next) {
req.headers['host'] = couchTarget.host + ':' + couchTarget.port;
req.headers['authorization'] = couch.credentials;
req.headers['x-forwarded-ssl'] = util.isSecureForwardedRequest(req);
var forwardedFor = req.headers['x-forwarded-for'];
req.headers['x-real-ip'] = forwardedFor
? forwardedFor.split(',',1)[0]
: req.connection.remoteAddress;
req.url = couch.path + req.url;
console.log(req.headers['x-forwarded-for']);
console.log(req.headers['x-real-ip']);
console.log(couchTarget.host + ":" + couchTarget.port + req.url);
return proxy.proxyRequest(req, res);
}
}

Nandish

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.