Questions tagged [remoteapi]

69 questions
2
votes
0 answers

How to connect to the remote Google Datastore from localhost using dev_appserver.py?

I simply need an efficient way to debug GAE application, and to do so I need to connect to the production GAE infrastructure from the localhost when running dev_appserver.py. Next code work well if I run it as a separate script: import…
2
votes
0 answers

Trying to retrieve JBPM process results from KIE Remote REST API

I am trying to retrieve the result objects created by a business process via the KIE remote API: if (baseURL != null) { System.out.println("[GlobalFlow]-Creating Engine"); engine = …
2
votes
1 answer

Error while uploading csv to Google App Engine

I am trying to upload a csv file to GAE but having errors. I am following this blog post and using same yml file. I can download data but upload command is giving following errors: C:\Users\ADMIN>appcfg.py upload_data…
Bill
  • 172
  • 8
2
votes
3 answers

How to debug server code in eclipse on deployed appengine database?

I have a Google AppEngine (Java) project in Eclipse. I want to debug my local code in Eclipse but use the deployed database on AppEngine. Until now I use Remote API with username/password (old way) This method will be deprecated and I want to use…
lembas
  • 377
  • 1
  • 7
  • 21
2
votes
1 answer

Appengine logservice with remote_api

I am trying to get my appengine application logs from remote. I am using remote_api, I tried with appcfg but I discarded it because it has a limit on the download/buffer so I can't download all the logs. Now I am using the logservice, but if I use…
jackyroo
  • 99
  • 2
  • 12
2
votes
2 answers

Adding text to the page of a build triggered by the Jenkins remote API

I have a Jenkins build system up and running for a project. The build is triggered via the remote API functionality of Jenkins. When a commit is made to the project we send an HTTP request build trigger to the Jenkins process running on our local…
Alex
  • 581
  • 7
  • 21
2
votes
3 answers

Google App Engine remote_api returns 404 using remote_api_shell.py

I'm using googles built in tool for connecting to the remote api so I don't even have info in my client or app.yaml I could change. I have no idea why I suddenely cant connect. [ rever ~/Documents/buybottmerge/buybott-gae ] remote_api_shell.py -s…
Andrew
  • 203
  • 2
  • 10
2
votes
0 answers

App Engine remote_api from one instance to another

I have an app engine app which create model objects and put them to another app. On dev_server this application work's great but when I upload the code to app engine I've got an error: from google.appengine.ext.remote_api import…
2
votes
2 answers

Remote_api configuration with App Engine

Using Python, I'm trying to connect to my AppEngine app's remote_api handler, but I keep getting an error. What I want to do is set up the remote_api stubs to route database calls through that and access my app's datastore directly. So, first, I…
Juan Carlos Coto
  • 11,900
  • 22
  • 62
  • 102
2
votes
2 answers

Securing a JavaScript-only client to access remote API

Perhaps I'm asking for something impossible, but here we go: I'm trying to find a way to authenticate client requests to an API, but some clients can only use JavaScript to send their requests (they use hosted services which don't allow to write a…
Diego
  • 7,312
  • 5
  • 31
  • 38
1
vote
1 answer

302 status when copying data to another app in AppEngine

I'm trying to use the "Copy to another app" feature of AppEngine and keep getting an error: Fetch to http://datastore-admin.moo.appspot.com/_ah/remote_api failed with status 302 This is for a Java app but I followed the instructions on setting up a…
Kyle Baley
  • 580
  • 1
  • 5
  • 16
1
vote
1 answer

trace32 using python - use function T32_ReadMemoryObj

A question before the code: What are the differences between T32_ReadMemory and T32_ReadMemoryObj and in which cases should I prefer one over the other? As far as I can tell from the API PDF the 'Obj' version is more advanced and has more access…
Hezi Yovel
  • 105
  • 1
  • 7
1
vote
1 answer

Install Jenkins plugins over remote API synchronously (wait until finished) OR find out when all plugins have been installed

I am aware of two approaches to installing Jenkins plugins over the remote API, given a textfile with a newline separated list of plugin shortNames, e.g. # plugins.txt ansicolor bitbucket cobertura POSTing XML over the remote API using…
Dirk
  • 9,381
  • 17
  • 70
  • 98
1
vote
1 answer

Docker Remote API not accurate listing running containers in swarm

Currently I am facing the following problem: I set up 3 virtual box machines with a debian and installed docker. No firewall in place. I created a swarm making one machine the manager and joined the other two as workers as described in countless web…
magicroomy
  • 395
  • 1
  • 6
  • 19
1
vote
1 answer

Container healthcheck status via tasks json

I am trying to fetch container status using the docker remote API. v1.26 I am making /tasks api call to fetch the list of tasks for a node. Is there a way to get the container status from the GET /tasks json which maps to the…
sam
  • 568
  • 1
  • 8
  • 16