Questions tagged [capedwarf]

JBoss CapeDwarf is an implementation of the Google App Engine API, which allows applications to be deployed on JBoss Application Servers without modification. Behind the scenes, CapeDwarf uses existing JBoss APIs such as Infinispan, JGroups, PicketLink, HornetQ and others.

JBoss CapeDwarf is an implementation of the Google App Engine API, which allows applications to be deployed on JBoss Application Servers without modification. Behind the scenes, CapeDwarf uses existing JBoss APIs such as Infinispan, JGroups, PicketLink, HornetQ and others.

The ultimate goal of the CapeDwarf project is to fully implement all the APIs of the Google App Engine.

17 questions
3
votes
1 answer

TaskQueue failing to do HTTP call - Missing mandatory headers?

Error is in this code: public String getVersion() { String result = null; int index = this.getRequest().getProtocol().indexOf(47); if (index != -1) { result = this.getRequest().getProtocol().substring(index + 1); } …
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

Cannot access './../modules/com/google/appengine/main/appengine-api-1.0-sdk-*-capedwarf*': No such file or directory

Running Capedwarf shows this error: xybrek@ubuntu:~/CapeDwarf_WildFly_2.0.0.Final/bin$ ./capedwarf.sh /path/to/war ls: cannot access './../modules/com/google/appengine/main/appengine-api-1.0-sdk-*-capedwarf*': No such file or directory Exception in…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
2 answers

Is CapeDwarf compatible with Python GAE?

I'm trying to deploy my GAE application - written with Python - on CapeDwarf (WildFly_2.0.0.CR5). But all the documentation talking only about Java Application. So is CapeDwarf can deploy Python Application ? if it is, how to do it ? else any other…
1
vote
1 answer

_ah/admin does not work with Openshift?

I just managed to deploy a CapeDwarf app using the template in Openshift, however when I try to access _ah/admin it asks for OpenID but throws this error anyway: > OpenID auth request contains an unregistered domain: >…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

Failed to load class "org.jboss.as.capedwarf.api.Logger" for handler "CAPEDWARF"

I'm getting this error from the JBoss logs when trying to run my GAE app with Openshift/Capedwarf: Removing existing logging.properties ========================================================================= JBoss Bootstrap Environment …
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

How to stop CapeDwarf JBoss AS7 from storing logs in datastore?

I am using CapeDwarf JBoss AS7 to host classic GAE+GWT application. On server side, I am logging directly to java.util.Logger framework. The application works fine, the logs print nice to the console and files. However, all my logs, together with…
1
vote
1 answer

Deploy WAR in CapeDwarf JBoss AS7

I tried to deploy my web application war file in CapeDwarf Jboss AS7 however I am getting this error: Updated: 05:49:43,957 WARN [org.jboss.as.capedwarf.deployment.CapedwarfLoggingParseProcessor] (MSC service thread 1-3) No such logging config file…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Infinispan data persistence sharding?

Capedwarf uses Infinispan to store data, in what way can Infinispan be configured to persist data on a node machine with maximum disk space, for example, each server hosting Capedwarf only have 1TB of mounted block storage, how do you configure…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Null hostname - Capedwarf

This code should return the hostname, however Capedwarf runtime returns null for this code: public String getHostname() { ApiProxy.Environment proxyEnvironment = ApiProxy.getCurrentEnvironment(); Map attributes =…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

ServletException when accessing Cron tab on Capedwarf

Error when accessing Cron tab on Capedwarf Admin: 10:23:52,284 ERROR [io.undertow.request] (default task-74) UT005023: Exception handling request to /_ah/admin/cronJobs.vm: javax.servlet.ServletException:…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
2 answers

Capedwarf: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[3,1]

I'm trying to run my application in debug mode as described in Debuggin an application in Wildfly with Eclipseand JBoss Tools - Debugging an Externally launched WildFly but, when I execute ./standalone.sh --debug --server-config=standalone.xml…
GG86
  • 41
  • 6
0
votes
1 answer

Has anyone tested capedwarf (google appe engine equivalent) with gaelyk

Anyone with stack who could be promising as far as I tested so far on GAE (+gaelyk) and now with capedwarf (because of asset limitation on GAE). Cheers, Jim
0
votes
1 answer

Running Arquillian App Engine Container Test

I'm trying to run the https://github.com/alesj/arquillian-container-gae test within my IntelliJ workspace. However it won't run I've tried: Git clone then import to IntelliJ (parent) Then run the test: This is what I get: I have added the…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Restlet code works on local but not when deployed (on Openshift)

Hello I am having this problem where this code: public class FirstStepsApplication extends Application { private static final String ROOT_URI = "/"; @Override public Restlet createInboundRoot() { Router router = new…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Using Arquillian Test with Google App Engine (GAE)

This is a typical arquillian XML config, to run test in managed JBoss environment. How do I adopt this for Google App Engine arquillian.xml
quarks
  • 33,478
  • 73
  • 290
  • 513
1
2