Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
9answers
893 views

Sync Framework with SQL DB's: Getting Started

I have an app that uses SQL Enterprise to store all data in 4 different DB's. I needed to build in the ability to work "offline" for my users. I accomplished this through Merge Replication to local ...
4
votes
6answers
2k views

Finding all disconnected subgraphs in a graph

I have a graph which contains an unknown number of disconnected subgraphs. What's a good algorithm (or Java library) to find them all?
4
votes
2answers
3k views

LINQ to SQL disconnected updating object from different data context

http://geekswithblogs.net/michelotti/archive/2007/12/17/117791.aspx I'm using ASP.NET with C# and trying to use linq to sql to update a data context as exhibited on the blog linked above. I created ...
3
votes
1answer
213 views

How to find an asp.net client is disconnected immidiately

I'm aware of Response.IsClientConnected but in my scenario it has a great lag. Code: // sample code for sending a dynamic file in chuncks long bytesSent = 0; while (continueSending) { if ...
2
votes
4answers
186 views

What would you choose - XPages or old forms style development?

Most of our Lotus Notes developers do not have XPages experiance. They are used to doing old style forms development. We are designing a new Lotus Notes database application that is required to be ...
2
votes
3answers
189 views

Alternative platform for migrating out of Lotus Notes database applications which require offline capability

We have about ~20 Lotus Notes database applications that is offering offline capabilities to the users. Users are able to work with the application offline (not connected to the network). When they ...
1
vote
1answer
53 views

Insert record to datatable with column has the timestamp datatype - C#/SQL 2008

We have moved our application away from using EntityFramework 4.2 and a couple of other commercial ORM products to ADO.NET for the performance reason, and It does prove the purpose. but we have faced ...
1
vote
1answer
55 views

Persisting disconnected POCO entities

I'm working with disconnected POCO objects. When I persist a single object, it works fine! The problem starts when I want to persist related objects. For example: Retrieving object from Data ...
1
vote
1answer
90 views

ASP.NET MVC3 Development Practices for Disconnected Active Directory

I'm starting a new MVC 3 application at the same time I'm transitioning to a more disconnected development environment where I will only occasionally be connected to the corporate network to do ...
1
vote
0answers
610 views

I got “no service” on android emulator when using a customized rom

Hey guys, I've downloaded a Froyo Rom from the address below: http://froyo-vodafone845.googlecode.com/files/Froyo%20ROM%20fastboot.rar for more information, visit here: ...
1
vote
2answers
625 views

Channel disconnected error message again and again - Flash builder 4

I'm trying to use server capabilities Flash Builder 4. But using different ways (i use 5 or 6 tutorial) get one and the same error within a week - "Channel disconnected - Channel disconnected before ...
1
vote
2answers
652 views

Flex - Is there a way to change the “Channel Disconnected” error message?

I have a Flash app with a PHP backend. Whenever there is a PHP error, I get the "Channel Disconnected before an acknowledgement was received" error message. I'm getting ready to push my project to ...
1
vote
7answers
385 views

Reparing a “disconnected” drive mapping

Sometimes a network drive that is already mapped to a drive letter because "disconnected". Using the normal Windows functions to access files / folders on that drive fail. As soon as the user manually ...
1
vote
1answer
139 views

How do I update a SQL row given an ID with LINQ to SQL?

Given this schema: Fruits - FruitID INT PK - FruitName NVARCHAR(30) - FruitStatusID INT NULL FK: Statuses Statuses - StatusID INT PK - StatusName NVARCHAR(30) If I have a ...
1
vote
2answers
332 views

Using JMS, is there any way to store messages on intermittently disconnected clients and forward them to a broker when a network is available?

I am considering an architecture where I have clients that are intermittently connected to a network. I would like to store messages created on these clients in a JMS queue when the network is not ...
0
votes
1answer
52 views

Android:Is it possible to detect if user hanged up call or callee?

I know there are similar questions like mine, but they are pretty old. I hope there is some solution to this problem. One of my clients wants the application to be able to detect if the call was ...
0
votes
0answers
325 views

android emulator disconnecting from DDMS view when accessing file explorer

when i go to the DDMS view to access data folder of my app on an emulator, every thing works fine but after a few seconds the list of devices becomes empty which means that the DDMS lost connection ...
0
votes
0answers
83 views

is this considered as a disconnected model?

I work on a web application, more than one(many) will use this application(Insert,Update,Delete,Select)(CRUD). My supervisor tells me that I'm supposed not to communicate with database directly to ...
0
votes
1answer
198 views

SMS goes to the inbox when the mobile is disconnected

I'm using J2ME WMA to send/receive SMS into a specific port, wich in my case is port 50000. When one of the mobile devices is not running the application the message goes to the inbox, which by ...
0
votes
2answers
782 views

How to Install Subclipse in ofline mode?

I am trying to install Subclipse with Flash Builder 4, but the problem is that this machine is not connected to the net. Hence I downloaded the zipped files from : ...
0
votes
1answer
162 views

How would I check if the client is no longer connected via TCP in Java?

I'm making a server/client test and want to know if the client is disconnected in java via TCP. I'd rather not do a heartbeat but if I have to, I will.
0
votes
1answer
27 views

Disconnected Updates - Linq2Sql

When and why would one use this approach in real life programming environment? It seems to be very tricky and there is not easy way to update a disconnected datacontext. So why would such a need ever ...
0
votes
2answers
120 views

What are Disconnected ORM and Connected ORM

Could any body clarify these two expression for me ? What are cons and pros of each one ? // I've just worked and familiar with CodeSmith and Linq to sql among all ORM Tools Thank you
0
votes
1answer
187 views

Best practice for updating a excel or xml data-source in a disconnected environment?

I have a application that will be run offline so there is no database connection. My options for the data-source are Excel Spreedsheet, CSV, or XML files. The application needs to be able to search ...
0
votes
2answers
533 views

best way for building a disconected-ready application in silverlight

I would like to make a SL app that could save certain data in local and access it if it is disconnected. I think that I could expose the entities in the services (no dtos), and saving it in the ...