We have extensive system tests written in the Python based Robot framework, and some in the Java based Aqua framework.
Robot is flexible and has good logging, but is quite cumbersome, and Aqua also didn't raise much enthusiasm with the people who used it here.
the product tested is mostly C#/.Net based, and we are looking for a solid ext...
I'm defining http handlers on my web.config:
<add name="nsi" path="i.nsi" verb="GET" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv2.0" />
The scriptProcessor points to the Framework64 f...
From the MSDN is not really clear its purpose.
Can it be used to simulate an intensive CPU calculation test?
...
Hi All,
I have several wcf services which are hosted using ServiceHost class.
Now , I want to implement a separate wcf service which can host these services.
Anyone please suggest me how can I do it?
Suppose I have created some wcf services , I can host them by self hosting using ServiceHost , but I want that a program that can host any...
Hi,
I want to parse the input string and extract the values from it. My input string might have Week, Days, Hours or Minutes.
So, the input string might be
1 Week 5 Days 2 Hours 1 Minutes where
or 3 minutes
Or 5 Days 1 Minute
Or 2 Hours etc.
I want to extract the values using a regular expression.
How can I achieve this in ....
In a WinForms application, I want to provide visual feedback that a looping background procedure is ongoing (It isn't something that is initiated by the user or blocks them from using the UI)
Edit - It is going on all the time, looped. The user doesn't need to know when an iteration starts or finishes.
I'm thinking some kind of small, ...
Hello Friends,
i have been tasked to write a new web service with returns list of Addresses
to do so i have created a class as bellow
[Serializable]
public class AddressDataCollection : List<AddressData>
{
private long m_ErrorCode;
private string m_ErrorMessage;
public long ErrorCode
{
get
{
...
I have a "simple" task. I have an existing project with a web service written in C# which has a method that will send a huge XML file to the client. (This is a backup file of data stored on the server that needs to be sent somewhere else.) This service also had some additional authentication/authorization set up.
And I have an existing D...
I want to convert null able datetime "DateTime?" to DateTime. But i am getting error.
I have done this like following:
DateTime UpdatedTime = (DateTime)_objHotelPackageOrder.UpdatedDate == null ? DateTime.Now : _objHotelPackageOrder.UpdatedDate;
But i am getting error:
Cannot implicitly convert type 'System.DateTime?' to 'System.Dat...
I know I should generally avoid messing up with such system settings, but my application do already use nonstandard colors and I have no influence on that. I would like to be able to add standard .NET controls in some places, but their colors do not match. I would like to have a hack that would replace system colors for this one applicat...
I have a .net 2.0 WinForms application that uses .net remoting to connect to a server in our DMZ. That side of it is running fine, but I want to debug the services I've installed on that machine. I can get everything set up fine, but as soon as I have to restart Visual Studio 2008, the port used to connect back to my machine changes, and...
I'm working on a compact framework application and need to boost performance. The app currently works offline by serializing objects to XML and storing them in a database. Using a profiling tool I could see this was quite a big overhead, slowing the app. I thought if I switched to a binary serialization the performance would increase, bu...
I'd like to use date time format string (possibly UTC) which is understandable and parsable on as many platforms and languages as possible? At least PHP, Python, Perl, Java, Rails and some common C++ library should be able to understand it.
Which one should I use?
Sample from MSDN:
Culture: English (United Stat...
I have a WCF service implemented with a call back contract that I am trying to send a business object through. I have the business object decorated with DataContract() and DataMember() attributes, and it contains the following number of properties:
ints: 3
strings: 4
XElement: 1
other objects: 5 (also decorated with DataContract() and ...
I have a class that inherits from a base class (this contains a lot of common db related stuff amongst other things and is marked as MustInherit). I want to write a shared methodin which I call a base class method, however the compiler gives me the message 'MyBase is only valid within an instance method'. This shared method is a logging ...
I'm working on a project where we will build custom SFF PCs, which will have our software on them and deploy around the world.
We would really like to have the ability for the PCs to be location aware, and we want to retrieve the current location of the PC and report it back to a central server.
It would be best if it were internal (we...
Hi all,
I have a webservice with a bunch of methods that i'd like to somewhat secure.
The data is not really all that confidential, but i'd still like to restrict access to only those who use a certain user id and password that's stored in the webservices web.config file. A c# windows service client will be calling this webservice once ...
I just a moment ago saw a request for finding the MAC adress of a remote host. An answer was that the MAC address is always sent as part of the TCP/IP protocol.
How would I go about retrieving this information from an ASP.NET C# application?
See: Reference to sister-post
...
What's the best .Net counterpart of Google Web Toolkit? How can you compare both of technologies?
...
I'm trying to do some date math in Visual Basic. The NETWORKDAYS function in Excel is exactly what I need. Is there an equivalent or similar method available in .NET?
...