Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
13answers
3k views

Is MS Access (JET) suitable for multiuser access?

I have a product designed to be a desktop product using MS Access file as a DB. Now, some users need to install it in a few PCs (let's say 2 or 3) and SHARE the database. I thought to place the MS ...
6
votes
2answers
131 views

How can I secure an emacs-server?

I'd like to ensure that only I can connect to an emacs server that I initialised. I frequently use machines that other people could be SSH'd into, and I don't see what's to stop them opening ...
6
votes
4answers
726 views

How to design a multi-user ajax web application to be concurrently safe

I have a web page that shows a large amount of data from the server. The communication is done via ajax. Every time the user interacts and changes this data (Say user A renames something) it tells ...
5
votes
2answers
98 views

Dealing with a multiple user environment

This is my first time developing an application that will be used by 10-15 people concurentlyso I'm not exactly sure of a good way to minimize update collisions. Essentially, my application works as ...
5
votes
2answers
557 views

Does MongoDB MapReduce lock the database

Does a MongoDB MapReduce job lock the database? I am developing a multi-user MongoDB web application and am worried about multi-user conflicts and performance. Does anyone have any words of wisdom ...
4
votes
3answers
375 views

Moving from single user desktop applications to multiuser development

I'm trying to bootstrap a micro ISV on my nights and weekends. I have an application at a very early stage of development. It is written in C# and consists mainly of a collection of classes ...
3
votes
1answer
148 views

Massive multi-user realtime application with Google App Engine

I'm building a multiuser realtime application with Google App Engine (Python) that would look like the Facebook livestream plugin: https://developers.facebook.com/docs/reference/plugins/live-stream/ ...
3
votes
3answers
259 views

How use a single project file in Xcode (in several computers)

I code on 2 different computers with different username. Xcode makes a .pbxuser file for each one, making necesary replicate the config from each one. This is error prone, and the files are not ...
3
votes
5answers
2k views

Simple multi-user database solution

I've written a Windows desktop application that works with Sqlite very nicely. It was a single user app, and the database sits right on the machine where the app runs. However, the application has ...
2
votes
0answers
24 views

iCloud for all users of my app?

My first app is waiting approval in the store, wish me luck. My question: I bundle in a collection of presets, logos and URLs, several dozen, to make adding new entries easy. I want to be able to ...
2
votes
2answers
431 views

Access 2007 - accdb; options in setting up a reliable multi-user environment across multiple servers?

I am having trouble sorting through all the information / various options in regards to Access 2007 used in a multi-user environment. Here is a brief description of my current situation. At work ...
2
votes
2answers
73 views

Does this suffice, or do I have race conditions?

I'm writing a strategy-kind of multi user game for the web. It has a playfield (X by Y squares) that I plan on serialize and store in a BLOB in a MySQL (innodb) database, one row for each ongoing ...
2
votes
2answers
787 views

Python/Twisted multiuser server - what is more efficient?

In Python, if I want my server to scale well CPU-wise, I obviously need to spawn multiple processes. I was wondering which is better (using Twisted): A) The manager process (the one who holds the ...
1
vote
1answer
13 views

Android loggin errors for multiple levels of users

Hi in android is it possible to log the errors in such a way that there are multiples levels of users who can see them. Say there will be admin who can see all the errors logged and exceptions catched ...
1
vote
3answers
48 views

Can file based SVN repository support simultaneous multi-user situation?

If multiple users accesses file based SVN repository to commit many things simultaneously, can SVN guarantee data integrity? If it is, how? Or if it isn't what serving method should I use for ...
1
vote
1answer
48 views

Share read/write application data (on disk) between users on Windows

I'm porting a game to Windows and wonder how, for example, highscore data should be stored so that all users on the same system can share the data. Ideally the data shouldn't be writeable by the users ...
1
vote
1answer
103 views

Are Thread.current[] values and class level attributes safe to use in rails?

I have a particular problem I'm trying to solve in a rails 3 app, and the two common solutions that I'm seeing are these: Thread.current[:something] = value and class Foo cattr_accessor :bar end ...
1
vote
1answer
128 views

Is SQL CE multi user?

I read several documents with conflicting view: This post says that you cannot use it in a multi user environment: ...
1
vote
1answer
113 views

Using CouchDB to model user preferences/recommendations

I'm working on a recommender system using two basic entities: users and objects. User similarity metrics will be pre-calculated based on existing user data. Then, as various users "flag" objects, ...
1
vote
3answers
152 views

Client-client interaction design issue?

Okay, here is my situation: I'm looking for the best design approach. I'm working in PHP/Smarty on the server-side and HTML/jQuery for the client-side, but that is not really important here. I have ...
1
vote
2answers
305 views

Singleton in ASP.NET

If i have a singleton wrapper around a collection in asp.net does it have to be cached or would it's data be persisted across post backs? Also if another user logs into the app would the app create ...
1
vote
2answers
71 views

How to avoid editing same value in a form in a Multi-user environment?

My Environment: Multi-user application with server and client. The server knows which field is currently in use and can’t edit from another user. I have a form with several JComponents like ...
1
vote
1answer
82 views

Database which each user sees differently - 'multiuser'/'multiview' database?

Is there an existing implementation or even a name for a type of database which allows multiple points of view? What I mean is for instance if one user changes an article's title then the change will ...
1
vote
1answer
109 views

Wordpress 3.0 Mult-User - Data Sharing Between Sites

I'm creating a custom solution on Wordpress 3.0, that has multiple different sites using the multi-user capability. I want to know if Wordpress has any functions that allow you to pull data from the ...
1
vote
1answer
151 views

How to don incremental multi user updates with NHibernate

I use nhibernate as my orm and i am trying to implement something that looks straightforward but has become unneccessarily difficult. It concerns how to implement concurrent updates to an entity where ...
1
vote
3answers
186 views

Methods for ensuring security between users in multi-user applications

I'm writing a multiuser application (.NET - C#) in which each user's data is separated from the others and there is no data that's common between users. It's critical to ensure that no user has ...
1
vote
1answer
200 views

How to implement Auto_Increment per User, on the same table?

I would like to have multiple users that share the same tables in the database, but have one auto_increment value per user. I will use an embedded database, JavaDB and as what I know it doesn't ...
1
vote
1answer
209 views

How does Task Parallel Library scale on a terminal server or in a web application?

I understand that the TPL uses work-stealing queues for its tasks when I execute things like Parallel.For and similar constructs. If I understand this correctly, the construct will spin up a number ...
1
vote
2answers
196 views

Automating write conflict messages

Is there any method to avoid the annoying write conflict messages by automating and hiding the process so that it doesn't appear as if the program is defective? There doesn't seem to be any point to ...
1
vote
1answer
118 views

Why just file locking in multi-user systems is not sufficient?

Ritchie claims that file locking is not sufficient to prevent the confusion caused by programs such as editors that make a copy of a file while editing and then write the original file when done. Can ...
1
vote
3answers
912 views

Legacy MS Access application needs to support multiple users

I'm currently on a 4-person team tasked with the development and maintenance of a legacy MS Access application. The application is quite large, with hundreds of forms, reports, queries, and tables. ...
0
votes
1answer
32 views

MVC3 Multi-User Data Level Security

The application I am working on is multi-user and multi-company and I am having trouble at the moment trying to figure out the most efficient/best way to ensure data level security, in broad terms ...
0
votes
1answer
18 views

Technique for multiple users on same datasets

This is more a learning question than coding, but I'm certain it's a common issue for anyone developing administration systems or applications in php/mysql/js etc. I've developed quite a complex ...
0
votes
0answers
25 views

Can we share documents for multiple users in our own application (or access plugin to do so)?

The following is a preliminary list of functions we'd like to perform: Composing documents (word doc/spreadsheet/powerpoint presentations, etc...) Editing documents in multiuser environment ...
0
votes
1answer
44 views

How to update a page automatically after an action of another user?

In my web application there's a page where users can post messages. The problem is a user always has to click a button 'get messages' to see the messages other users have posted since the moment the ...
0
votes
1answer
132 views

C# multiuser security framework

I need to implement a security framework for a multiuser application that is in the design phase. I intend to use a Role based access control RBAC Security model (- BUT which can be further refined by ...
0
votes
1answer
33 views

Multiuser Communication with Javascript

Can anyone recommend me links or books to build a multiuser application? My idea is an web app, with which users can play multiuser game on their browsers. I also want to create an app with phonegap, ...
0
votes
0answers
224 views

xmpp create or join chat room in iphone

This is karthik. I have configured xmpp chat in my iPhone App. one to one chat is working great. Now I want to implement multi user chat for my App. can anyone help me regarding creating the chat room ...
0
votes
0answers
93 views

record locking in flex or zend amf

How do you handle record locking in a flex (flash builder 4) application with multiple users? It is using zend amf to talk to a database (mongodb or mysql). For example, if user 1 loads a client ...
0
votes
0answers
59 views

How to allow multiple users to debug Visual Studio applications on same port on Virtual Machine?

There is a virtual machine which has .NET application code on it. The application has ports configured in its web.config file. Currently, if more than 1 user tries to debug different source codes ...
0
votes
2answers
2k views

Does Android HoneyComb support multiuser restricted account?

a customer ordered us a tablet application, but they need a lot of access restriction to lock device functions such as: Permit datas transfer only inside the application not outside Restricted user ...
0
votes
0answers
13 views

restoring / accessing MUC logs upon server reboot

Can anyone suggest some xmpp server that can act as a persistent information center ? I am interested in preserving every message posted to its persistent chat rooms. It would be best to be able to ...
0
votes
1answer
132 views

How to implement multi-user websites like Wordpress.com?

I'm going to build a multi-user website, much like wordpress.com, that users can signup and get their isolated account at a sub-domain. How this could be implemented efficiently? I'm not asking about ...
0
votes
2answers
257 views

Silverlight Multi-User application with synchronization

I am wondering if it's possible to create a graphical application in Silverlight which supports synchronisation between the different clients. To be a bit more precise, I am drawing concepts of ...
0
votes
2answers
352 views

MVC event calendar, with day-week-month and multiuser view

I have an application in asp.net mvc that has a table with events, start date and time and end date and time. I need to make a calendar for them, and when I click on the date it shows the events ...
0
votes
1answer
59 views

Multiuser system

Hello i have a question, i write a requirement specification. there is a system, where more than one person interacts with, and i want to describe what happens when one person quits the interaction. ...
0
votes
1answer
137 views

How to save a toggle state that is created using a MovieClip in Flash. How to save state in variable and pass to PHP, and save to XML?

I have MovieClips on my Flash Stage that when clicked on--they toggle ON/OFF. My goal is that when a user clicks either ON/OFF--then leaves the flash website--another user can visit the site--and see ...
0
votes
1answer
940 views

Rewrite Rules for Subdirectories in Wordpress 3 Multiuser with nginx?

My Wordpress 3 multiuser has been enabled, but I don't know how to rewrite the following .htaccess rules for nginx: RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files ...
0
votes
2answers
686 views

PHP multiuser login class or script

I am looking for a simple but secure login script with mySQL PHP: sessions, MD5 that I can use with my exsisting database. Cookies to store password + password recovery by email. Change login/pass. I ...
0
votes
3answers
207 views

Web application vs. linux multiuser application

I have a web-based bussines application written in C#/ASP.NET Recently my boss start pushing to re-write the app as Linux multi-user desktop application. In his design users will need to connect to ...

1 2