I have an ASP.NET application that runs inside IIS 7 on Windows Server 2008 SP1 with the application pool configured to run under a local user belonging to "Users" local group. I have a .pfx file with…
Created on 6/18/2013 (updated 20 hours ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 790360
|
|
Here's the code:
char* ptr = (char*)malloc(0);
memset( ptr, 0, 1000 );
free(ptr);
When free() runs in Debug configuration I get a CRT debug error message about heap corruption. When I inspect the ca…
Created on 2/4/2013 (updated 18 weeks ago) | 0 validations | 0 workarounds | 4 comments | feedback id: 778455
|
|
Here's the code:
[ServiceContract]
public interface IMyInterface {
[OperationContract]
int First();
}
var binding = new WebHttpBinding();
var endpointAddress = new EndpointAddress( "http://mmssddnn.…
Created on 1/31/2013 (updated 16 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 778148
|
|
If I "go to definition" of TypeForwardedFromAtribute class I see the following.
// Parameters:
// assemblyFullName:
// The source System.Type in another assembly.
[skipped]
public TypeForwarded…
Created on 1/22/2013 (updated 12 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 777133
|
|
Here's an example:
var builder = new SqlConnectionStringBuilder();
builder.DataSource = "localhost\\sqlexpress";
builder.InitialCatalog = "MyDatabase";
builder.IntegratedSecurity = true;
string conns…
Created on 1/21/2013 (updated 15 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 777039
|
|
|
Closed
as Won't Fix
|
|
I have this code:
[ServiceContract]
public interface IMyInterface {
int First();
int Second();
}
var contract = ContractDescription.GetContract( typeof( IMyInterface ) );
now "contract.Name" is "…
Created on 1/15/2013 (updated 19 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 776592
|
|
I have this code:
[ServiceContract]
public interface IMyInterface {
int First();
int Second();
}
var binding = new WebHttpBinding();
var endpointAddress = new EndpointAddress( "http://localhost:443…
Created on 1/15/2013 (updated 19 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 776590
|
|
I have this code:
[ServiceContract]
public interface IMyInterface {
int First();
[OperationContract]
int Second();
}
var binding = new WebHttpBinding();
var endpointAddress = new EndpointAddress( "h…
Created on 1/15/2013 (updated 19 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 776588
|
|
I have this code:
using System.ServiceModel;
using System.ServiceModel.Description;
public interface IEmpty {
int Stuff();
}
var contract = ContractDescription.GetContract( typeof( IEmpty ) );
whi…
Created on 1/15/2013 (updated 19 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 776586
|
|
|
Closed
as Won't Fix
|
|
I have this code:
using System.ServiceModel;
using System.ServiceModel.Description;
public interface IEmpty {
int Stuff();
}
var contract = ContractDescription.GetContract( typeof( IEmpty ) );
whi…
Created on 1/15/2013 (updated 19 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 776585
|
|
|
Closed
as Won't Fix
|
|