ngBonita CORS issue

I have two tomcat instances running. One has bonita server running and on the other i have my grails application. I am trying to use ngBonita - Angularjs api for the client.
I am running into CORS issue. I setup tomcat for CORS and also set up headers to allow all. I have little success but still seeing issues. any help ?
on chrome console i see the following messages

BonitaAuthentication.login success
mydns/:1 XMLHttpRequest cannot load https://mydns:8446/bonita/API/system/session/unused. No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘https://mydns:8443’ is therefore not allowed access.

Bonita 6.5
java 1.6
tomcat 7.0.55 for bonita and tomcat 7.0.52 for my client application

I’m having the same issue.
Did you solve this issue? Can you tell me how?

Thnx

did you set up your tomcat for CORS ? see link here

add cors-filter jar to tomcat/lib folder. cors filter jar has a dependency on java property utils jar. add that as well.
add the following to tomcat web xml

cors.allowGenericHttpRequests true cors.allowOrigin * cors.allowSubdomains true cors.supportedHeaders * cors.supportsCredentials true cors.maxAge 3600 CORS com.thetransactioncompany.cors.CORSFilter cors.supportedMethods GET, HEAD, POST, PUT, DELETE, OPTIONS CORS /*

Hi ,

I have the same problem , can you tell me how i can to add cors-filter.

thanks in advanced.