Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
6answers
869 views

Wisdom of merging 100s of Oracle instances into one instance

Our application runs on the web, is mostly an inquiry tool, does some transactions. We host the Oracle database. The app has always had a different instance of Oracle for each customer. A customer is ...
7
votes
2answers
136 views

Which of the below Mutex expressions ideally prevents multiple instances of .Net application and what is the difference?

Typically I see these two pieces of code all around. Both works in my case too, but which should I stick to? Case 1: bool isNew = false; Mutex mutex = new Mutex(true, "MyApp_Mutex", out isNew); if ...
7
votes
5answers
879 views

Restrict multiple instances of an application

Okay, so i've created my c# application, created an installer for it and have it working installed on my machine. The problem is, when the user opens the application exe twice, there will be two ...
6
votes
2answers
161 views

Multiple instances of Silverlight gallery

I wanted to try was to make an asp website which would include pictures in multiple Silverlight galleries. The reason why I want to do this is that I want something in this fashion: Text describing ...
6
votes
1answer
414 views

Logging multiple instance application best practice?

I finally tried log4net for my WPF desktop application. I'm struggling with the fact that RollingFileAppender has no built in support for multiple instance application. I don't like an idea of ...
6
votes
4answers
926 views

Detecting if another instance of the application is already running

My application needs to behave slightly differently when it loads if there is already an instance running. I understand how to use a mutex to prevent additional instances loading, but that doesn't ...
5
votes
2answers
207 views

C# Instance copy / Passing object reference is different then Java?

class Player { private Location location; public Location getLocation() { return location; } public void setLocation(Location location) { this.location = ...
5
votes
3answers
323 views

Sharing Hibernate on multiple Tomcat instances

I have 4 web applications, that have a common reference to an Hibernate implementation but that run on different Tomcat instances. And so, for example, a connection pool configured in Hibernate with a ...
5
votes
3answers
900 views

Azure platform: scalling instances up and down

Note: if you are familiar with the Azure pricing model, just jump to the "question" section. Microsoft will begin to charge for the use of the Azure platform starting February 1, 2010. The monthly ...
4
votes
2answers
37 views

How do I make an array of another array's duplicate values only in Javascript?

I have an array with registrants from multiple companies (some from the same companies, some not) and I need to count how many people from the same company have registered. So I need a number that ...
4
votes
1answer
85 views

Extracting Text Box data from multiple Microsoft Word files

I have a folder with 40-50 Microsoft Word documents. Each Word document is structured as follows: - There are multiple tables with two columns - The second column contains the question, and at the ...
4
votes
2answers
378 views

PHP Multiple Concurrent Sessions Per User

I'm working on a web app using PHP on Apache. $_SESSION variables are used quite a bit for the information that must persist across pages. We need each user to be able to open multiple concurrent ...
4
votes
3answers
915 views

Max length of SQL Server instance name?

I need to know the maximum character length for the name of an instance of a SQL Server for the following versions (if there is a difference between them.) SQL Server 2000 SQL Server 2005 SQL Server ...
3
votes
0answers
27 views

COM+ object activation in a different partiton

I had created a COM+ domain partiton then mapped it to a Windows 2008 server machine and imported a COM+ application into it. I tried using the following C# code to activte an object from that ...
3
votes
1answer
99 views

What is the safest way to prevent multiple instancse of a program?

I am trying to prevent my program from running multiple instances at any given time. I have read about using mutex and windows events, however both threads were several years old, and I'm curious if ...
3
votes
1answer
53 views

deploy the same application multiple times on tomcat

I want to deploy the same applications multiple times on the same tomcat instance for different "customers". Since im not really experienced with tomcat and other application servers i dont have a ...
3
votes
2answers
116 views

Javascript str.search() multiple instances

How can I retrieve multiple indexes from multiple instances of a string search? var str = "food"; var index1 = str.search("o"); // 1 var index2 = str.search("o"); // ? Thanks much, Wen
3
votes
1answer
208 views

ASP.NET MVC multi-instance session management on amazon ec2

I have a web application written in asp.net mvc2. Currently hosted on amazon cloud ec2. Because of growing traffic we want move multi instance enviorenment. I have a custom session class which ...
3
votes
3answers
188 views

Best way to handle multiple instance of an activity in Android

I want to make dynamic Form(s) in my application, the number of forms will be decided at the run time(1 to n). To implement this I create a From Class which extends Activity. My application can have ...
3
votes
2answers
181 views

Boost::shared_ptr instantiated using this

Consider the following case: typedef boost::shared_ptr<B> BPtr; class A { public: A() { b_ptr = BPtr(new B); } void a_func() { C::c_func(b_ptr); } private: BPtr b_ptr; } class B { ...
3
votes
1answer
2k views

jquery ui dialog open multiple dialog boxes using the same class on the button and the content div

i want to open multiple dialog boxes by using the same class on both the button and the content div. The below works but only for the first time. jQuery('.helpDialog').hide(); ...
3
votes
1answer
102 views

Is it a bad idea to run two instances of a Cocoa application at the same time?

I am making a download and installing application that must run multiple times at the same time. However, is it smart to do so? My application uses the /tmp directory to save temporary downloads. Each ...
3
votes
3answers
195 views

WCF Services - Create multiple instances on startup?

Apologies if this has been asked before, but I've searched and can't find an answer We have a WCF service that provides upto 100 instances - as there are 10,000 clients but the calls are very quick. ...
3
votes
1answer
400 views

Prevent opening multiple instance of VB application

I'm working on VB6 application, which is connected to MS Access database, so I don't want to allow user to open multiple instances of my application as this will create conflicts & alter ...
3
votes
5answers
474 views

Java: limit to nest classes?

A very poor style to code but sometimes unavoidable. It is an extreme example. So is there some limit for nesting classes? are they equivalent? how do you deal with such situations? Create ...
2
votes
0answers
82 views

Gedit in Windows creates multiple instances

I installed the latest version (2.30.1) of Gedit for Windows. And whenever I open files from explorer with gedit, it won't open as tabs in the current instance, instead it opens a new window for each ...
2
votes
1answer
73 views

VBA and collection - need set a instance to nothing before add to collection?

I'm trying to add an object twice with modified values ​​for a collection but at the end of the collection contains the same values ​​for the two items. Where am I wrong? Private Sub MySub() Dim ...
2
votes
3answers
163 views

Multiple/repeating cases in a Java switch statement

I would like to know how Java handles multiple identical instances of the same case. I think the following makes sense, conceptually: switch (someIntegerValue) { case 1: case 2: ...
2
votes
1answer
259 views

Android multiple instances of Activity

I'm having a problem where multiple instances of an activity are present in the backstack. e.g. Stack: A > B > C Press home and use some other apps then relaunch my app Stack: A > B > C > A I ...
2
votes
1answer
312 views

multiple skype login using single instance?

Can anyone please tell me how to create multiple instance of skype with different logins.(imo.im for example allows multiple skype users to login and chat).By somehow I read that using Dbus-skype ...
2
votes
9answers
364 views

Restrict multiple instances of an application in java

I want to prevent multiple instances of application being launched in java. I know 2 methods for this: locking file locking socket But which is one is more efficient and good to use? Which one ...
2
votes
2answers
184 views

Are static variables in functions in PHP global across instances?

If I have code which uses a static variable for caching purposes like this: class BossParty { // ... public function getTemplate() { static $template; if ($template == ...
2
votes
3answers
191 views

How to sync an application state over multiple iphones in the same network?

I am developing an iPhone application that allows to basically click through a series of actions. These series are predefined and synced with a common configuration server. That app might be running ...
2
votes
2answers
53 views

Multiple recivers for messages (database field)

i want to let users send each other messages, For now this is the current schema CREATE TABLE IF NOT EXISTS `inbox` ( `id` int(11) NOT NULL auto_increment, `id_usuario` int(11) NOT NULL, ...
2
votes
3answers
499 views

c++, multiple instances of a dll, singleton

I have got a DLL in which a singleton is defined. I have got an app which can load multiple instances of this DLL. The DLL needs a singleton instance per DLL instance, otherwise it will crash. I ...
2
votes
2answers
109 views

Version control for multiple instances of a developing code

I work in an engineering lab, not a computer science lab. As such, our in-house software is not the deliverable product. Instead, the in-house software is used to analyze engineering problems, and we ...
2
votes
3answers
954 views

How do you run multiple instances of JBoss 4.0 (running under Eclipse) on the same machine?

At my office we run JBoss 4.0 and use Eclipse to debug and run the JBoss server. We're deploying simple wars, nothing terribly complex. However, I haven't yet figured out how to get this version of ...
2
votes
1answer
194 views

Multiple Boost.Thread Instances OK in a C++ application?

I have an application with a plug-in architecture that is using Boost.Threads as a DLL (specifically, a Mac OS X framework). I am trying to write a plug-in that uses Boost.Threads as well, and would ...
2
votes
2answers
261 views

Dynamically creating many instances of ASP.NET usercontrols: How do I create it, and where will my conflicts be?

I haven't seen this implemented before in ASP.NET, but am thinking about a UI that would look and act like this: Conceptual Overview A TabControl is loaded and the first tab contains a grid When a ...
2
votes
1answer
155 views

Multi-server Ruby on Rails Production Logging

I currently have an RoR app in production across four application servers with independent logs per instance. What's the best way to aggregate the logging to a common location without resorting to ...
2
votes
0answers
162 views

Using db4o with multiple application instances under medium trust

I recently stumbled over the object database engine db4o which I think looks really interesting. I would like to use it in an ASP.NET MVC application that will be deployed to a shared hosting ...
2
votes
2answers
458 views

WPF + Communicate between multiple application instances

I need to grab information between two instances of my WPF app (the contents of a public collection, to be precise). Any help?
2
votes
2answers
77 views

copying functions located in instances

Here's some (simplified) code for what I'm trying to do: class a: pass class b: def printSelf(self): print self instOfA = a() instOfB = b() instOfA.printSelf = instOfB.printSelf ...
2
votes
2answers
293 views

Run multiple instances of a Popup in ASP.NET

I have done a sticky note application in asp.net. I have a parent window with a button, When I click on the button the sticky notes is opened as popup. I am using javascript window.open to open the ...
2
votes
1answer
241 views

how can I save a form with ModelMultipleChoiceField?

I have a model Calendar and in a form I want to be able to create multiple instances of it. Here are my models: class Event(models.Model): user = models.ForeignKey(User) class ...
2
votes
4answers
5k views

How do you join tables from two different SQL Server instances in one SQL query

How can I join two tables, which are located two different SQL Server instances, in one query?
2
votes
2answers
343 views

How widely visible are various objects (shared class, module, etc) in VB.NET

I have a VB.NET application where various objects are going to access some common code, and I have some counters and values shared between all the calls, so I'm currently using a "Shared Class" (I'm ...
2
votes
3answers
420 views

Ensuring only one instance of SWF open?

I need to make sure that only one instance of a SWF is open at any one time on a computer, whether it is in 2 browser windows, or two different browsers. How can I go about doing it? I have so far ...
2
votes
3answers
649 views

Running more than one instance of Evince

I have a wxPython application and I'm using Evince to display the reports it generates. Since I'd like to delete every report after the user has closed the corresponding Evince instance, my ...
2
votes
3answers
2k views

How can I extract or change links in HTML with Perl?

I have this input text: <html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body><table cellspacing="0" cellpadding="0" border="0" ...

1 2 3 4