I have been trying to get the appengine-endpoints-helloendpoints-java-maven + appengine-endpoints-helloendpoints-ios demo to work using cloud endpoint.
The iOS service generator requires an rpc discovery document but mvn appengine:endpoints_get_client_lib command only generates a REST discovery document. The mvn clean install ran correctly.
How do I generate an rpc discovery client library so that the iOS service generator can accept it? More specifically, this command ->
/Users//Library/Developer/Xcode/DerivedData/ServiceGenerator-/Build/Products/Debug/ServiceGenerator \ ~/appengine-endpoints-helloendpoints-java-maven/target/helloendpoints-1.0-SNAPSHOT/WEB-INF/helloworld-v1-rpc.discovery \ --outputDir ./API
only takes a rpc.discovery while the mvn appengine:endpoints_get_client_lib only generates a rest.discovery.
Thanks, Mochi
endpoints.sh gen-discovery-doc -o target/generated-sources/appengine-endpoints/WEB-INF/ -f rpc target/generated-sources/appengine-endpoints/WEB-INF/helloworld-v1.api
– PaulR