Tagged Questions
1
vote
0answers
7 views
Common Language Runtime Detected an Invalid Program with ClickOnce
I have an InvalidProgram exception with the message
Common Language Runtime Detected an Invalid Program
This happen in an application that we didn't change in the last 3 month.
The only change ...
0
votes
1answer
60 views
Parsing JSON to not objects in .NET 4.0?
Is there a JSON parser for .NET 4.0?
Ideally something like:
String jsonText = GetTheJsonFromTheInternet();
var json = JsonValue.Parse(jsonText);
and now i have a nested set of key-value pairs. ...
4
votes
1answer
36 views
Is there third party package tool with .NET4 support?
I got a C# program based on .NET4 environment. I want to make a installer which will ship .NET4 environment with it so that my user won't bother to install .NET4 indepently. Is there any third party ...
0
votes
2answers
34 views
Replacing Thread.Suspend and Thread.Resume in a windows service
We have a service that does the following basic workflow:
1) Starts, reads config settings and performs some calculations in a large loop.
2) Each iteration of the loop, it needs to be able to check ...
0
votes
0answers
16 views
Does the end-user require .net 4.0.2 to run an application that uses LocalDB?
I have read that SQL 2012 LocalDB Requires .net framework 4.0.2.
I am researching possible deployment options for my client-server application with a winforms frontend.
What I can't figure out is, ...
1
vote
3answers
63 views
Memory Fragmentation and Garbage Collection in network server apps
Actually i developed an tcp based network server that does a lot of read an write and uses less than zero cpu for its business logic, it acts as bridge between two endpoint.
The network server is ...
-1
votes
0answers
10 views
.net setup succesful but no files are copied
I wrote a small application and in order to deploy it I added a .net setup project. This project generates a setup.exe file and a .msi file. When I run the setup.exe file I enter the installation ...
0
votes
1answer
34 views
Is it possible to add to class extension method via attribute?
Say I have a simple class tree:
public class Operation {
public int callback;
}
public class OperationResponse : Operation {
}
Now I would love to add a new class OperationRequest that would ...
1
vote
1answer
49 views
An error occurred creating the configuration section handler error in .NET 4.5
I have a problem... nobody else can help so I wonder if anybody here can?
I have a web service project (originally in .NET 2.0 but upgraded to .NET 4.5) which was working perfectly this morning. I ...
0
votes
1answer
8 views
Print XpsDocument scaled to fit page
We are using Telerik's WPF charting controls in our application. The charting controls have built-in support for exporting the graphics to an XPS file. I want to utilize WPF's support for printing XPS ...
0
votes
1answer
27 views
Is TcpClient.Available threadsafe?
Can TcpClient.Available be called at the same time Write to its NetworkStream is called, is it threadsafe?
0
votes
1answer
41 views
Is it thread safe to use WriteAsync on NetworkStream from multyple threads at same time?
When having a TcpClient taking its stream in multiple threads and performing WriteAsync into it on each thread. Is it thread safe? Will data (byte arrays passed to write method) be delivered as intact ...
1
vote
2answers
46 views
XmlSerializer - There was an error reflecting type. Two classes with the same name
Using XmlSerializer from .Net 4, I am trying to serialize a class that contains two classes with the same name, but different namespace.
[XmlInclude(typeof(MyNamespace1.MyClass))]
...
0
votes
1answer
27 views
Access Property Value using Reflection
I have an object
public class School
{
public Employee Emp{get;set;}
public string City{get;set;}
}
public class Employee
{
public string Name{get;set;}
}
Using reflection I need to fetch this ...
0
votes
1answer
35 views
Setup environment using batch file for DotNet Framwork 4.0 Command line for easy way around
I have .net framework 4.0 (and older versions)installed, want to use the command line compiler for C#
csc.exe
Now I found across few forums using the direct path I can use the compiler, also ...
0
votes
0answers
16 views
Access is denied on loading application config
I have a asp.net server application which on specific requests spawns a separate executable to perform some calculations against a database.
I have created and successfully tested a working ...
2
votes
1answer
30 views
Identity, WIF, SAML and a 3rd party IdP
We are trying to get an intranet site to work against a 3rd party external ID Provider (Okta) that is federated with our internal AD.
We've managed to use Ultimate SAML to parse the SAML token ...
2
votes
1answer
26 views
Managed Windows Service starts up slowly after digital signing
We recently tried out digitally signing our .NET binaries. We have a Windows Service which typically starts up within 10 seconds. However after we started digitally signing it, the time increased to ...
1
vote
1answer
39 views
What is the Difference Between Awaiter (GetAwaiter) and ContinueWith
In .net 4.0, I use Task.ContinueWith regularly. But then I spotted "task.GetAwaiter()" which seems to have the same purpose.
What is the difference?
2
votes
1answer
40 views
How can I ignore phantom xml attributes which are creating an infinite loop when trying to rename nodes?
I've been tasked with converting the results of a restful web service into an XML document with new formatting.
An example of the html/xhtml to be converted:
<?xml version="1.0" ...
-1
votes
0answers
59 views
QR code generation libraries - free? [closed]
I got the task to create app to generate QR codes in jpeg/bitmap files. I have library provided for that but I am asking if it is for free, because I opened the library code and I saw that it uses ...
0
votes
1answer
26 views
WebServiceHost returning 405 not allowed on GET in .NET4.0
This simple WebserviceHost works when I compile it for .NET3.5 but not in 4.0
I access it from my browser with the URL http:// mycomputer:8081/SVC/HelloWorld
The 3.5 version returns the"Hello World! ...
0
votes
0answers
13 views
DiffMathPatch do not work on Framework 4?
I've been using the component DiffMatchPatch available in https://code.google.com/p/google-diff-match-patch/source/browse/trunk/csharp/nunit.framework.dll?r=36 into a project with .NET and Framework ...
2
votes
2answers
22 views
SQL Stored Call not passing parameter
I have a SQL Server 2008 stored procedure which when called via the code shown below returns a missing parameter exception for the @BatchID parameter.
As you can see I am passing in the parameter ...
0
votes
0answers
68 views
Exception when running .NET 4.0 application from network share
I have a .NET 4.0 C# console application. The application is deployed to a network file share (which I believe is a Windows 2000 Server file server) like this:
...
0
votes
0answers
83 views
Data Grid View Row - new row property
i use a datagridview on my application. first cell is textboxcell and second is buttoncell. user can type any text and search a stock or click on button and open stock list. And problem is:
if user ...
1
vote
1answer
72 views
Is MarshalByValueComponent still used or useful?
I have been exploring reinventing the DataTable and I am wondering what the uses are for MarshalByValueComponent. I believe it is used for .NET Remoting (maybe WinForms and WebForms), but that was ...
0
votes
3answers
59 views
Diagnosing MissingMethodException
When starting up my application on one machine it immidiately exits saying it has "stopped working". In the event log I see a MissingMethodException being the cause. There is no exception dialog ...
3
votes
1answer
30 views
Better to Throw NotSupportedException Inside or Outside of Task?
We have a downstream system, an ERP system, that can expose its tables via SOAP. The web service that it publishes typically has Create, Update and Delete methods. We then generate the proxy on our ...
2
votes
1answer
93 views
Can application built with .NET 4.5 run on .NET 4.0?
My project is targeting to .NET 4.5. It doesn't use any new 4.5 methods, so it actually works fine on the machine with only .NET 4.0 installed.
This is all good until I added some extension methods ...
0
votes
1answer
49 views
Parallel Tasks not waiting
I'm trying to use the .NET 4.0 Task Parallel library, and I'm running into some issues with the Task Wait. Basically, I want to iterate through a list, and create a Task to call a webservice method ...
1
vote
1answer
56 views
How to set Trigger from parent property to set child property
I keep going around in circles on this data trigger so it is not working...
I have a button that has a border for a default dropshadow. However, I want to create a dep property to be used to toggle ...
0
votes
1answer
121 views
How Can i use .NET 4.0 code in C# project which is built using .NET framework 3.5? [duplicate]
I want to call dll which is built using .NET 4.0 from C# project which should be built using .NET 3.5. I mean .net 4.0 dependent code should executed only when my machine has .net 4.0 installed ...
0
votes
0answers
185 views
Method not found: 'Void System.Web.UI.ScriptResourceDefinition.set_LoadSuccessExpression(System.String)'
When trying to deploy the web application 4.0 on to the server it is giving this error, although its working fine on the local machine having IIS7
0
votes
0answers
59 views
Prevent C# code from writing to anything but one file (something like CAS) [closed]
I'm working on a service that acts a bit like a web server, except it mainly handles JSON API requests instead of serving web pages. It's an addon to an existing application.
Since it is ...
6
votes
1answer
89 views
Is it valid to use `<%= “{0}, {1}”, arg1, arg2 %>` in place of `<%= string.Format(“{0}, {1}”, arg1, arg2) %>` in ASP.NET aspx pages
In my aspx pages I often use the following and it works fine:
<%= "{0}, {1}", arg1, arg2 %>
I use ReSharper for code analysis. I just upgraded for v6.1 to 7 and it is giving me the following ...
1
vote
1answer
45 views
Interfaces not working as expected in Entity framework generated partial classes
I'm having a problem with a project I'm working on in Entity Framework 4.0, .NET 4.0.
I have gone down the model first route.
I've been creating my model and have just generated the partial classes ...
0
votes
2answers
33 views
Clickonce application runs the first time but throws an exception the second time
I have a .NET 4.0 application. On the first run, the installer runs, and the app opens normally. If you run it when it's already installed, it throws this exception:
System.BadImageFormatException ...
0
votes
2answers
115 views
Issue in PInvoke with char** parameter, String array is not working
I have a DLL file that is written in C. I tried to use it in managed code but some how my function is not working properly. Here is the C code.
int preProcessImagesC( char *p_trainingFilePath,
...
2
votes
2answers
72 views
Strange result when comparing two Lists
I want to compare two lists. I want to check if List2 has any of the items in List1. I get unexpected result. Please see my code below.
test code class
class Program
{
static void Main(string[] ...
2
votes
1answer
24 views
Selective AttachedToParent for recursive calls
I've implemented helper method for running heavy tasks in background
It accepts several delegates and doesn't block:
async part
success part(GUI)
on failure in async part (GUI)
finally (GUI) ...
0
votes
1answer
50 views
Why is the WCF rest service (not created with WCF Rest service template) not working?
I created a WCF Rest service but not with the WCF Rest Service template. I just used a simple class library project and then made all the settings which were listed to create a WCF Rest service.
It ...
1
vote
1answer
71 views
Efficient table-like type for basic scenarios, no sorting/persistence/searching
I'm looking for an efficient in-memory type that mimics a table of mixed-type data (rows/columns). By efficient I mean fast operations for the below scenarios. Memory is a secondary concern.
...
1
vote
2answers
55 views
How to get the text property of a hyperlink
There is no .Text property on hyperlink in WPF
looking to get the text in the click event and the only way so far is
Run r = hyperlink.Inlines.First() as Run;
gotText( r.Text );
Somehow this ...
1
vote
1answer
82 views
Parallel.ForEach in C# - something I"m missing?
I'm trying to figure out why what I am trying to build (using TPL) is not working as expected.
Here's the scenario: I have a bunch of service request classes that go through a central service ...
0
votes
1answer
127 views
What's wrong with the code in MSDN article “How to: Schedule Work on the User Interface (UI) Thread”?
I am trying to launch the code of C# WPF app from online MSDN article: "How to: Schedule Work on the User Interface (UI) Thread" in Visual Studio 2010, Windows XP SP3, .NET4.0
The only ...
2
votes
1answer
105 views
How can a C# parameter with default value be null?
The code shown below shows a method Get which gets string search with default value: "".
How can the value possibly be null when search has a non-null default value and is never changed?
1
vote
0answers
19 views
Did .NET 4 change how the Certificate Request frame is answered in TLS
I am connecting to a web service that is hosted in Win2008 (IIS7) requiring certificate based mutual authentication. When the service is called by a client running on the .NET 2.0 runtime, the ...
0
votes
2answers
60 views
Better way to convert OrderedDictionary to Dictionary<string, string>
The Question:
How do you convert from OrderedDictionary to Dictionary<string, string> in a concise, yet performant way?
The Situation:
I have a lib that I can't touch that expects me to ...
0
votes
2answers
62 views
How to force application to use different config file?
I have several winforms applications that need access to the same app.config file. Instead of creating app1.config, app2.config, app3.config, etc... is there a way to somehow tell the ...



