Tagged Questions

0
votes
0answers
12 views

How to use webservice behaviour in IE?

Hi, i am trying to call a webservice by using the IE's WebService behaviour object. As describen in the JS book book, I have inserted my div element: <div id="service" style= …
0
votes
0answers
32 views

Problem with combined Authentication/Login view.

I have been using Django for several years now and up until this point have always redirected users to a login page after registering their account, and therefore have never had …
0
votes
2answers
42 views

Strange ruby behaviour with __FILE__ constant?

Hi I have been testing some very basic things in ruby and discover the following. If i put in a file called xxxx.rb in this path "C:\Documents and Settings\Desktop\xxxx.rb" puts …
0
votes
0answers
26 views

IE: Reusing the same instance of ActiveX

I have written an ActiveX COM Dll, which is used in webpage. It exposes 2 functions say Connect, Disconnect and 2 events. In Connect method, I have created an instance to another c …
0
votes
3answers
146 views

Structure and behavior in UML

Hello! I had some questions regarding the structure and behavior of a model, using UML, and the relationship between the two : Did you find any limitations for UML regarding the …
1
vote
2answers
368 views

How can I disable Text Selection temporarily using JavaScript?

Hi there all, this is a bit of a specific question so I'll get right to the point. I'm working on a short and simple drag and drop routine for part of a web application, and altho …
0
votes
2answers
447 views

Mock abstract class default behaviour with Rhino

I'm pretty new to mocking so this might be something I'm just not picking up on yet, but I can't find a good example anywhere. I'm trying to assert that by default, any class that …
4
votes
4answers
334 views

What happens if you fire a background thread to execute right before ASP.NET completes its page processing?

Hi everyone, what would happen if I spin off a thread to execute a long-running process right before the ASP.NET page lifecycle completes? Will the ASP.NET runtime kill the thread? …