Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 days ago.
Improve this question
I am using neo4j in embedded mode and want to deploy it on amazon,what are the options?
Where will the app create the database folder and how i can make database folder secure,robust in amazon?
If you're using it in embedded mode then you can choose where the database folder will be when you create the graph database:
new GraphDatabaseFactory().newEmbeddedDatabase("/choose/the/path")
Then just make sure only your application user is able to access that folder. Other access would be via your application.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm not sure if this is even possible. I create a database using FileMaker Pro.
Can I somehow load it to my iOS app and if so, how do I do that?
Export the database to XML
Write a parser using NSXMLParser APIs that would load the data from the XML file and put it in a database/storage supported by iOS (e.g. Core Data).
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I just created an empty web application in Visual Studio 2013.
From then on, how would I add MVC and/or Web API capabilities similar to how we're able to specify those when creating a project?
In another somewhat similar case, I created an MVC app with no authentication (i.e., users don't log in to the site). How do I modify/set up this project to implement individual users and add Web API capabilities?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
In my application I have to read a file that have be created by another application on my device.
How it can be done. The file must be located on file System's root directory
Thanks,
Eyal.
Unless you are writing for Jailbroken devices, you can't access files outside of your app's sandbox.
So, for apps distributed through the App Store, you can't do this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
My app has to integrate uploading image to set it as profile picture. The thing is all the images has to be stored in web services.
As web service has not been yet created. what is the best way to store images for temporary purpose so that i can integrate it easily when i have been provided with the backend.Sample tutorials can be helpful
My best idea is to use FTWCache (https://github.com/FTW/FTWCache) and cache it localy. Later, using webservice, you can still use your already written cache mechanism to implement NSURLConnection with caching. Profit! ;-)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
What is the best way to manage multiple Rails applications?
I heard Rack is a good tool to use and I was wondering if all Rails apps can share the same session so the users don't have to login twice.
I'm also using EmberJS aswell.
If you're using token-based authentication, you can maintain a single database table for the user model across both apps (have them both connect to the same database, prefix all tables for app 1 with app1_ and for app 2 with app2_, except for the User table which is unprefixed).
To prefix all the tables for one app, you can set
config.active_record.table_name_prefix = "app1_"
in the environments.rb file of app 1, and
config.active_record.table_name_prefix = "app2_"
in the environments.rb file of app 2.