Federico Bertolini

Results 8 comments of Federico Bertolini

Probably the issue is at line 44 of ThreeDeeTouch.m. UIWebView is deprecated, and new cordova versions use WKWebView. So statement like this is never run if you are using WKWebView:...

I fixed with `correctOrientation: true` in options ``` var options = { width: 250, height: 250, cameraDirection: 1, correctOrientation: true, quality: 75, cancel: "Cancel", takeImage: "Take Photo", imageLibrary: "Library" }...

From my experience I can report these: 1) the user have to be confirmed by email. So you have to edit your setting to enable email. edit this file (accessing...

I integrate succesfully pep+orion+idm using this slides: https://www.slideshare.net/daltoncezane/integrating-fiware-orion-keyrock-and-wilma (But I don't use "cygnus" and docker-compose for this). I cloned pep-wilma from the repo. About your pep settings they appear correct...

If it say Connection Refused pep and idm can't comunicate. Change the hostnames in pep settings from "localhost" to the "hostname" assigns to your keyrock and orion containers in your...

@RiosQ yes, it seems that now connection works. pep asks to keyrock and then to AZF. The response is a 404 from AZF as you can read in pep code:...

This is my config in pep for AZF (disable, default values) ``` config.azf = { enabled: false, protocol: 'https', host: 'auth.lab.fiware.org', port: 6019, custom_policy: undefined // use undefined to default...

In Dockerfile there is a git checkout using keyrock-6.0.0 tag. In order to use the last updated version I think you could use the master or development branch instead. `git...