User Mark Struzinski - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T05:42:42Zhttp://stackoverflow.com/feeds/user/1284http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1374961/cruise-control-net-file-merge-nunit-file-getting-xmlexception0Cruise Control.NET File Merge NUnit File - Getting XmlExceptionMark Struzinski2009-09-03T17:56:49Z2009-11-08T12:00:09Z
<p>I am new to Cruise Control. I'm running a project where I use an MSBuild file to build my project. I'm using the NUNit task in the MSBuild Community Tasks project to run all of my unit tests and output an xml file with the test results with this command:</p>
<pre><code> <NUnit Assemblies="@(OutputFiles)" WorkingDirectory="$(UnitTestResultsLocation)"
OutputXmlFile="$(UnitTestResultsLocation)\$(ProjectNameSpace).UnitTests.xml"
ToolPath="$(NUnitToolPath)"
ContinueOnError="true" />
</code></pre>
<p>This works great. Now I'm trying to get those results to show in the Cruise Control web dashboard by doing a file merge with this command:</p>
<pre><code> <publishers>
<merge>
<file>C:\CC\Project1\Code\UnitTestResults\Project1TestResults.UnitTests.xml</file>
</merge>
</publishers>
</code></pre>
<p>When I do this, the build still completes, but I get an exception in the Cruise Control console, which also show in the log:</p>
<pre><code>2009-09-03 13:44:57,310 [Project1:DEBUG] Exception: System.Xml.XmlException: Name cannot begin with the '.' character, hexadecimal value 0x2E. Line 837, position 36.
</code></pre>
<p>Am I going about this wrong? How can I get my NUnit test results into the Cruise Control dashboard?</p>
http://stackoverflow.com/questions/179934/asp-net-jquery-error-unknown-web-method0ASP.NET jQuery error: Unknown Web MethodMark Struzinski2008-10-07T19:21:26Z2009-11-04T09:32:53Z
<p>This is my first time attempting to call an ASP.NET page method from jQuery. I am getting a status 500 error with the responseText message that the web method cannot be found. Here is my jQuery $.ajax call:</p>
<pre><code>function callCancelPlan(activePlanId, ntLogin) {
var paramList = '{"activePlanId":"' + activePlanId + '","ntLogin":"' + ntLogin + '"}';
$.ajax({
type: "POST",
url: "ArpWorkItem.aspx/CancelPlan",
data: paramList,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function() {
alert("success");
},
error: function(xml,textStatus,errorThrown) {
alert(xml.status + "||" + xml.responseText);
}
});
}
</code></pre>
<p>And here is the page method I am trying to call:</p>
<pre><code>[WebMethod()]
private static void CancelPlan(int activePlanId, string ntLogin)
{
StrategyRetrievalPresenter presenter = new StrategyRetrievalPresenter();
presenter.CancelExistingPlan(offer, ntLogin);
}
</code></pre>
<p>I have tried this by decorating the Web Method with and without the parens'()'. Anyone have an idea?</p>
http://stackoverflow.com/questions/206384/how-to-format-json-date16How to format JSON Date?Mark Struzinski2008-10-15T20:43:41Z2009-10-30T17:28:52Z
<p>I'm taking my first crack at AJAX with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON that is returned for Date data types. Basically, I'm getting a string back that looks like this:</p>
<pre><code>/Date(1224043200000)/
</code></pre>
<p>From a total newbie at JSON - How do I format this to a short date format? Should this be handled somewhere in the jQuery code? I've tried the jQuery.UI.datepicker plugin using $.datepicker.formatDate() wiuth no success.</p>
<p>FYI: Here's the solution I came up with using a combination of the answers here:</p>
<pre><code>function getMismatch(id) {
$.getJSON("Main.aspx?Callback=GetMismatch",
{ MismatchId: id },
function(result) {
$("#AuthMerchId").text(result.AuthorizationMerchantId);
$("#SttlMerchId").text(result.SettlementMerchantId);
$("#CreateDate").text(formatJSONDate(Date(result.AppendDts)));
$("#ExpireDate").text(formatJSONDate(Date(result.ExpiresDts)));
$("#LastUpdate").text(formatJSONDate(Date(result.LastUpdateDts)));
$("#LastUpdatedBy").text(result.LastUpdateNt);
$("#ProcessIn").text(result.ProcessIn);
}
);
return false;
}
function formatJSONDate(jsonDate){
var newDate = dateFormat(jsonDate, "mm/dd/yyyy");
return newDate;
}
</code></pre>
<p>This solution got my object from the callback method and displayed the dates on the page properly using the date format library.</p>
http://stackoverflow.com/questions/318157/get-distinct-result-set-from-nhibernate-using-criteria-api4Get Distinct result set from NHibernate using Criteria API?Mark Struzinski2008-11-25T17:15:45Z2009-10-30T05:26:25Z
<p>I'm trying to get distinct results using the Criteria API in NHibernate. I know this is possible using HQL, but I would prefer to do this using the Criteria API, because the rest of my app is written using only this method. I <a href="http://forum.hibernate.org/viewtopic.php?t=941669," rel="nofollow">found this forum post</a>, but haven't been able to get it to work. Is there a way with the criteria API to get distinct result sets?</p>
<p>Edit: In doing this, I also wanted to exclude the Primary Key column, which is also an identity, and get the remaining distinct records. Is there a way to do this? As it is, the distinct records are returning duplicates because the primary key is unique for each row, but all other fields are the same.</p>
http://stackoverflow.com/questions/1643419/validate-list-of-sequential-dates-with-jquery-validate-plugin0Validate List of Sequential Dates with jQuery Validate PluginMark Struzinski2009-10-29T12:37:17Z2009-10-29T15:23:16Z
<p>I am using the jQuery Validate plugin to perform validation on my form. I have a list of dates which is dynamically generated. It can include from o to x amount of dates. I need to validate that this list of dates is in sequence, and that any date toward the end of the list is not prior to a date that appears earlier in the list.</p>
<p>I have looked into the addMethod and addClassRules functions to add these custom rules, but I'm still fuzzy on how to implement this without causing the entire list of dates to fail validation if only one of them is out of sequence. </p>
<p>Has anyone done this type of validation before with the Validate plugin?</p>
<p>Right now, I am usiong the Validate() method to add rules in javascript rather than adding classes to the elements. Here is an example of what I'm doing now:</p>
<pre><code>$('#SaveForm').validate(
{
focusInvalid: false,
errorContainer: errorContainer,
errorLabelContainer: $("ol", errorContainer),
wrapper: 'li',
highlight: function(element) {
$(element).addClass('field-validation-error');
$(element).addClass('input-validation-error');
},
unhighlight: function(element) {
$(element).removeClass('field-validation-error');
$(element).removeClass('input-validation-error');
},
invalidHandler: function() {
$('#notifyBar').showNotifyBar({
notifyText: 'There are errors on the form. Please see the bottom of the page for details',
backgroundColor: '#FF0000'
})
},
rules: {
SystemComment: {
maxlength: 8000
},
WorkComment: {
maxlength: 8000
},
DispositionGroup: {
required: true
},
DispositionCategory: {
required: true
},
DispositionDetail: {
required: true
},
NextWorkDate: {
required: true,
date: true
}
},
messages: {
SystemComment: {
maxlength: "System Comment max length is 8000 characters"
},
WorkComment: {
maxlength: "Work Comment max length is 8000 characters"
},
DispositionGroup: {
required: "Disposition Group is required"
},
DispositionCategory: {
required: "Disposition Category is required"
},
DispositionDetail: {
required: "Disposition Detail is required"
},
NextWorkDate: {
required: "Next Work Date is required",
date: "Next Work Date must be in mm/dd/yyyy format"
}
}
});
</code></pre>
<p>I was adding these methods to do the validation, but it causes all fields to fail validation if just one of them fails:</p>
<pre><code>jQuery.validator.addMethod("currency", function(value, element) { return this.optional(element) || /^(\d{1,3})(\.\d{1,2})?$/.test(value); }
, "Payment Amount must be in currency format xx.xx");
jQuery.validator.addMethod("paymentDateCheck", validatePaymentDates, "Payment Date(s) must be in sequential order and may not be prior to today");
jQuery.validator.addMethod("paymentAmountCheck", validatePaymentAmounts, "Total Payment Amount cannot exceed the Customer Balance");
jQuery.validator.addClassRules({
paymentAmountField: {
required: true,
currency: true,
paymentAmountCheck: true
},
paymentDateField: {
required:true,
date:true,
paymentDateCheck:true
}
});
jQuery.extend(jQuery.validator.messages, {
required: "Payment Date and Payment Amount are required",
date: "Please specifiy valid date(s)",
currency: "Amount must be in currency format (00.00)"
});
</code></pre>
http://stackoverflow.com/questions/1643419/validate-list-of-sequential-dates-with-jquery-validate-plugin/1644506#16445060Answer by Mark Struzinski for Validate List of Sequential Dates with jQuery Validate PluginMark Struzinski2009-10-29T15:23:16Z2009-10-29T15:23:16Z<p>ok, I got this to work. Here is my rather naive implementation:</p>
<p><strong>1. Add a custom validation method:</strong></p>
<pre><code>$.validator.addMethod("paymentDate", function(value, element) {
return this.optional(element) || validatePaymentDate(value, element);
}, "Payment Date(s) is required, must be in date format, and must be in order");
</code></pre>
<p><strong>2. Add a class rule (the element must contain the "paymentDateField" class</strong></p>
<pre><code>$.validator.addClassRules({
paymentDateField: {
required: true,
date: true,
paymentDate: true
}
});
</code></pre>
<p><strong>3. Implement the validatePaymentDate function:</strong></p>
<pre><code>function validatePaymentDate(value, element) {
var paymentDates = $('.paymentDateField');
var dateArray = new Array();
var arrayIndex = 0;
var currentElementIndex = 0;
var isValid = true;
$(paymentDates).each(function() {
var currentElementVal = $(this).val();
dateArray[arrayIndex] = currentElementVal;
if (currentElementVal == $(element).val()) {
currentElementIndex = arrayIndex;
return false;
}
arrayIndex++;
});
for (var x = 0; x <= arrayIndex; x++) {
console.log('array val: ' + dateArray[x]);
console.log('dateVal: ' + value);
if (x > currentElementIndex) {
isValid = new Date(dateArray[x]) > new Date(value);
}
if (x < currentElementIndex) {
isValid = new Date(dateArray[x]) < new Date(value);
}
}
return isValid;
}
</code></pre>
<p>The function could be refactored to eliminate so much looping, but it produces the desired effect. Only the date fields which are out of sequence are flagged as invalid.</p>
http://stackoverflow.com/questions/34852/nhibernate-session-flush-sending-update-queries-when-no-update-has-occurred0NHibernate Session.Flush() Sending Update Queries When No Update Has OccurredMark Struzinski2008-08-29T17:49:31Z2009-09-16T17:09:10Z
<p>I have an NHibernate session. In this session, I am performing exactly 1 operation, which is to run this code to get a list:</p>
<pre><code>public IList<Customer> GetCustomerByFirstName(string customerFirstName)
{
return _session.CreateCriteria(typeof(Customer))
.Add(new NHibernate.Expression.EqExpression("FirstName", customerFirstName))
.List<Customer>();
}
</code></pre>
<p>I am calling Session.Flush() at the end of the HttpRequest, and I get a HibernateAdoException. NHibernate is passing an update statement to the db, and causing a foreign key violation. If I don't run the flush, the request completes with no problem. The issue here is that I need the flush in place in case there is a change that occurs within other sessions, since this code is reused in other areas. Is there another configuration setting I might be missing?</p>
http://stackoverflow.com/questions/1153121/set-a-servervariable-value-when-mocking-httprequest-using-moq0Set a ServerVariable value when mocking HttpRequest using Moq?Mark Struzinski2009-07-20T11:54:31Z2009-09-15T12:45:11Z
<p>I am mocking an HttpRequest object using Moq for unit testing in ASP.NET MVC. I need to set one of the ServerVariables (LOGON_USER) in the request. Is this possible? I have tried using the following method, but I get an exception because the ServerVariables collection is non-overridable.</p>
<pre><code> request.SetupGet(req => req.ServerVariables["LOGON_USER"]).Returns(@"TestUserName");
</code></pre>
<p>Is is possible to set a ServerVariable value for testing? </p>
<p>Do I need to pass in a new NameValueCollection rather than trying to set one specific key?</p>
http://stackoverflow.com/questions/1395575/asp-net-mvc-custom-validator-for-a-view-model0Asp.NET MVC Custom Validator For a View Model?Mark Struzinski2009-09-08T18:34:45Z2009-09-08T19:32:18Z
<p>I am using custom view model classes as DTO objects to hold data for display on my View pages. I have applied validation via the DataAnnotations library to perform server side validation on the properties of these classes. Here is a simple example:</p>
<pre><code>[DisplayName("Customer Account Id")]
[Required(ErrorMessage = "* Account Number is required")]
[StringLength(16, ErrorMessage = "* Account Number must be 16 characters in length", MinimumLength = 16)]
public string CustomerAccountId { get; set; }
</code></pre>
<p>If someone submits a search and this field does not come through or comes through at a length that is not 16, validation fails, and an error message is displayed on the page via the ValidationMessage HtmlHelper:</p>
<pre><code><%= Html.ValidationMessage("CustomerAccountId")%>
</code></pre>
<p>Now I need to add the ability to search by account id <strong>OR</strong> a combination of First/Last name. My question is this:</p>
<p>How do I apply conditional validation? If I submit a search with First/Last name, I don't want validation to fail because an account number was not passed through as well. I found <a href="http://msdn.microsoft.com/en-us/library/cc668224%28VS.100%29.aspx" rel="nofollow">this</a> link, which shows how to implement a custom validator, but it seems like this applies to 1 property. How do I pass an entire object model through, and pass back the appropriate validation error messages to the appropriate fields to be displayed on the page? Is this possible?</p>
http://stackoverflow.com/questions/34401/send-email-from-elmah7Send email from Elmah?Mark Struzinski2008-08-29T14:56:47Z2009-09-07T20:58:15Z
<p>Is anyone using Elmah to send exceptions via email? I've got Elmah logging set up via SQL Server, and can view the errors page via the Elmah.axd page, but I am unable to get the email component working. The idea here is to get the email notification so we can react more quickly to exceptions. Here is my web.config (unnecessary sectionss omitted), with all the sensitive data replaced by * * *. Even though I am specifying a server to connect to, does the SMTP service need to be running on the local machine?</p>
<pre><code><?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="elmah">
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/>
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah"/>
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah"/>
</sectionGroup>
</configSections>
<appSettings/>
<connectionStrings>
<add name="elmah-sql" connectionString="Data Source=***;Initial Catalog=***;Persist Security Info=True;User ID=***;Password=***" />
</connectionStrings>
<elmah>
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="elmah-sql" >
</errorLog>
<errorMail from="test@test.com"
to="test@test.com"
subject="Application Exception"
async="false"
smtpPort="25"
smtpServer="***"
userName="***"
password="***">
</errorMail>
</elmah>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="CustomError.aspx">
<error statusCode="403" redirect="NotAuthorized.aspx" />
<!--<error statusCode="404" redirect="FileNotFound.htm" />-->
</customErrors>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
</httpModules>
</system.web>
</configuration>
</code></pre>
http://stackoverflow.com/questions/302720/how-to-delete-child-object-in-nhibernate6How to delete child object in NHibernate?Mark Struzinski2008-11-19T17:33:15Z2009-09-07T13:04:46Z
<p>I have a parent object which has a one to many relationship with an IList of child objects. What is the best way to delete the child objects? I am not deleting the parent. My parent object contains an IList of child objects. Here is the mapping for the one to many relationship:</p>
<pre><code><bag name="Tiers" cascade="all">
<key column="mismatch_id_no" />
<one-to-many class="TGR_BL.PromoTier,TGR_BL"/>
</bag>
</code></pre>
<p>If I try to remove all objects from the collection using clear(), then call SaveOrUpdate(), I get this exception:</p>
<pre><code>System.Data.SqlClient.SqlException: Cannot insert the value NULL into column
</code></pre>
<p>If I try to delete the child objects individually then remove them from the parent, I get an exception: </p>
<pre><code>deleted object would be re-saved by cascade
</code></pre>
<p>This is my first time dealing with deleting child objects in NHibernate. What am I doing wrong?</p>
<p>edit: Just to clarify - I'm NOT trying to delete the parent object, just the child objects. I have the relationship set up as a one to many on the parent. Do I also need to create a many-to-one relationship on the child object mapping?</p>
http://stackoverflow.com/questions/300078/jquery-ui-tabs-get-currently-selected-tab-index3jQuery UI Tabs Get Currently Selected Tab IndexMark Struzinski2008-11-18T20:45:35Z2009-08-26T14:52:44Z
<p>I know this specific question has been <a href="http://stackoverflow.com/questions/185235/jquery-tabs-getting-newly-selected-index">asked before</a>, but I am not getting any results using the bind() event on the jQuery UI Tabs plugin. I just need the index of the newly selected tab to perform an action when the tab is clicked. Bind() allows me to hook into the select event, but my usual method of getting the currently selected tab does not work. It returns the previously selected tab index, not the new one:</p>
<pre><code>var selectedTab = $("#TabList").tabs().data("selected.tabs");
</code></pre>
<p>Here is the code I am attempting to use to get the currently selected tab:</p>
<pre><code>$("#TabList").bind("tabsselect", function(event, ui) {
});
</code></pre>
<p>When I use this code, the ui object comes back undefined. From the documentation, this should be the object I'm using to hook into the newly selected index using ui.tab. I have tried this on the initial tabs() call and also on its own. Am I doing something wrong here?</p>
http://stackoverflow.com/questions/1212299/permissions-on-ssis-package/1226926#12269260Answer by Mark Struzinski for Permissions on SSIS PackageMark Struzinski2009-08-04T11:23:28Z2009-08-04T11:23:28Z<p>@Andy Leopard's answer was very thorough, and I've experienced exactly the same thing. One additional thing to check - make sure you're clicking the ellipses button next to the PackagePassword property field and entering the password and password verification. I've forgotten to do this on occasion, and just keyed the password directly in to the property field, wh9ich caused the password to not be saved.</p>
http://stackoverflow.com/questions/1199877/nunit-conditional-teardown0NUnit Conditional Teardown?Mark Struzinski2009-07-29T12:26:00Z2009-07-29T12:47:29Z
<p>Is there a way to do a conditional TearDown in NUnit?</p>
<p>I have a TestFixture which has a need to run cleanup code for just a few tests, and I don't really want to:</p>
<ol>
<li>Run the TearDown method on every test</li>
<li>Create a private helper method and call it from the tests requiring cleanup if I can avoid it</li>
</ol>
http://stackoverflow.com/questions/492865/jquery-keypress-event-not-firing1jQuery keypress() event not firing?Mark Struzinski2009-01-29T18:39:04Z2009-07-29T11:43:19Z
<p>I am trying to fire an event on the right and left arrow key presses with jQuery. Using the following code, I can fire events on any of the alphanumeric keys, but the cursor keys (up, down, left, right) fire nothing. I am developing the site primarily for IE users because it is a line of business app. Am I doing something wrong here?</p>
<pre><code>$('document').keypress(function(e){
switch (e.which) {
case 40:
alert('down');
break;
case 38:
alert('up');
break;
case 37:
alert('left');
break;
case 39:
alert('right');
break;
default:
alert('???');
}
});
</code></pre>
http://stackoverflow.com/questions/1165078/wcf-client-using-certificate-and-username-password-credentials2WCF Client Using Certificate and Username/Password credentials?Mark Struzinski2009-07-22T12:57:10Z2009-07-24T08:23:01Z
<p>I am consuming a web service internal to my company from ASP.NET. I've used svcutil.exe to connect to the service and generate the bindings and classes from the wsdl. I am able to connect to the dev version, which does not require authentication. Now we are adding in security. My new URI uses https but also requires user credentials. </p>
<p>I am very new to WCF, and am trying to determine the way to configure this. From my <a href="http://msdn.microsoft.com/en-us/library/ms789011.aspx" rel="nofollow">reading on MSDN</a>, it appears that the way to go is using. </p>
<p>UPDATE:
Here is the most recent code I've been trying. This incorporates feedback from the answer(s): </p>
<pre><code> <system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="svcBehavior">
<serviceCredentials>
<serviceCertificate storeLocation="CurrentUser"
storeName="My"
x509FindType="FindByThumbprint"
findValue="xx xx xx etc"/>
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<wsHttpBinding>
<binding name="CustomerPaymentProgramSOAPBinding">
<security mode="TransportWithMessageCredential">
<message clientCredentialType="UserName" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="https://***URL***"
binding="wsHttpBinding" bindingConfiguration="CustomerPaymentProgramSOAPBinding"
contract="CppService.CustomerPaymentProgramService" name="CustomerPaymentProgramService">
</endpoint>
</client>
</system.serviceModel>
</code></pre>
<p>Here is the calling code:</p>
<pre><code>using (var svc = new CustomerPaymentProgramServiceClient())
{
svc.ClientCredentials.UserName.UserName = "*******";
svc.ClientCredentials.UserName.Password = "*******";
var request = new GetServiceDataProgramRequest()
{
CustomerAccountId = Convert.ToInt64(customerAccountId)
};
svc.Open();
var response = new GetServiceDataProgramResponse();
var metaData = new RequestMetadata()
{
ClientIPAddress = "xx.xx.xx.xx",
TrackingNumber = "1",
UserID = "1"
};
svc.GetAccountData(metaData, request, out response);
}
</code></pre>
<p>I am getting an error stating I am passing anonymous credentials with the request.
With the updated code, now I receive a different exception:</p>
<p>UPDATE:</p>
<p>After making suggested changes as well as removing the service call from the using block (per <a href="http://msdn.microsoft.com/en-us/library/aa355056.aspx" rel="nofollow">this</a> article), I'm now getting a MessageSecurityException:</p>
<pre><code>Error message:
-$exception {"The HTTP request is unauthorized with client authentication scheme 'Anonymous'.
The authentication header received from the server was 'Basic realm=\"Spring Security Application\"'."}
System.Exception {System.ServiceModel.Security.MessageSecurityException}
Server stack trace:
at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory)
at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException)
at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)
at System.ServiceModel.Security.SecuritySessionSecurityTokenProvider.DoOperation(SecuritySessionOperation operation, EndpointAddress target, Uri via, SecurityToken currentToken, TimeSpan timeout)
at System.ServiceModel.Security.SecuritySessionSecurityTokenProvider.GetTokenCore(TimeSpan timeout)
at System.IdentityModel.Selectors.SecurityTokenProvider.GetToken(TimeSpan timeout)
at System.ServiceModel.Security.SecuritySessionClientSettings`1.ClientSecuritySessionChannel.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.CallOpenOnce.System.ServiceModel.Channels.ServiceChannel.ICallOnce.Call(ServiceChannel channel, TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)
at System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)\r\n\r\nException rethrown at [0]:
at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
at [ServiceName].GetAccountData(svcRequest request)
at [ServiceName].GetAccountData(GetAccountDataRequest request)
in c:\\[Project]\\service references\\[ServiceName]\\reference.cs:line 3480
at c:\\[Project]\\service references\\[ServiceName](RequestMetadata RequestMetadata, ServiceRequest, ServiceResponse& ServiceResponse)
in c:\\[Project]\\service references\\[ServiceName]\\reference.cs:line 3487
at c:\\[Project]\\service references\\[ServiceName].CheckAccountForPaymentPlan(String customerAccountId)
in c:\\[Project]\\service references\\[ServiceName]\\\\PlanCheckService.cs:line 32
</code></pre>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-200830How do you get JavaScript/jQuery Intellisense Working in VS 2008?Mark Struzinski2008-09-12T19:03:27Z2009-07-23T19:10:56Z
<p>I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery library referenced first on my web page in the tag. Am I doing anything wrong?</p>
http://stackoverflow.com/questions/897484/compare-object-properties-in-windows-workflow-foundation0Compare object properties in Windows Workflow Foundation?Mark Struzinski2009-05-22T11:54:17Z2009-07-23T11:24:25Z
<p>We are starting a rather complex new project at work, and need some sort of rules engine to make decisions by comparing the values of 2 objects. Here is a simple scenario:</p>
<p>An account comes in, and based on its properties (balance, payment due, etc), it can fit into one or many different plans. Each plan will define a specific set of attributes, the number and value of which will not be known until run time. We need a way to check the account properties against the properties of the plan to see if the account fits into each specific plan. </p>
<p>I thought an obvious choice here would be to utilize Windows Workflow rules. I am completely new to Workflow. Is my scenario possible using just the Workflow APIs? </p>
<p>Am I even going down the right path here?</p>
http://stackoverflow.com/questions/1153121/set-a-servervariable-value-when-mocking-httprequest-using-moq/1153680#11536800Answer by Mark Struzinski for Set a ServerVariable value when mocking HttpRequest using Moq?Mark Struzinski2009-07-20T13:45:10Z2009-07-20T13:45:10Z<p>Ok, figured this one out. I created this method to create the NameValueCollection for the ServerVariables:</p>
<pre><code>private static NameValueCollection CreateServerVariables(string logonUserName)
{
var collection = new NameValueCollection {{"LOGON_USER", logonUserName}};
return collection;
}
</code></pre>
<p>Then I called it like this in my configuration:</p>
<pre><code> var request = new Mock<HttpRequestBase>();
request.SetupGet(req => req.ServerVariables).Returns(CreateServerVariables(userName));
</code></pre>
http://stackoverflow.com/questions/1133026/ssrs-2005-css-not-applied-on-first-column/1136099#11360990Answer by Mark Struzinski for SSRS: 2005, CSS not applied on first columnMark Struzinski2009-07-16T08:07:38Z2009-07-16T08:07:38Z<p>This is a CSS styling issue. I have successfully implemented a fix for this in the past using the info from <a href="http://weblogs.asp.net/jgalloway/archive/2006/09/01/SQL-Reporting-Services-%5F2D00%5F-CSS-fix-for-Firefox.aspx" rel="nofollow">this post</a>:</p>
<p>You basically have to locate the css file for reporting services (by default, located at C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager\Styles\ReportingServices.css on the report server), and add this class rule to it:</p>
<pre><code>.DocMapAndReportFrame
{
min-height: 860px;
}
</code></pre>
http://stackoverflow.com/questions/1134055/wcf-cannot-find-the-x-509-certificate-using-the-following-search-criteria0WCF - Cannot Find the x.509 Certificate Using the Following Search CriteriaMark Struzinski2009-07-15T21:00:36Z2009-07-15T21:08:45Z
<p>Ok, I have seen several questions related to this issue, and I have tried a lot of the ideas presented in them with no success. Here's my situation:</p>
<p>I'm hitting a web service over my company's intranet. I have used svcutil.exe to generate the client class for WCF. I was able to run the web service call with no problem when the service was in development and did not require authentication credentials, so I know the code works. At the time, the code was running over SSL. I imported the required certificate into the Trusted Root Certification Authorities store, and everything was fine.</p>
<p>We just moved to a stage environment, and the service was upgraded to require credentials to connect. I switched my connection to the new endpoint, and added code to authenticate. This is my first time working with wcf, so please bear with me on any obvious mistakes. My problem is that I cannot locate the certificate via code to pass to the service for authentication. I am basing this off of some online code examples I found. </p>
<p>Here is an example of my config generated by svcutil:</p>
<pre><code><system.serviceModel>
<bindings>
<basicHttpBinding>
<binding
name="xxxSOAPBinding"
.... (irrelevant config settings)....
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="Transport">
<transport clientCredentialType="Certificate" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://xxxServices_1_0_0"
binding="basicHttpBinding" bindingConfiguration="xxxSOAPBinding"
contract="xxxService" name="xxxService" />
</client>
</system.serviceModel>
</code></pre>
<p>And here is the code I am using to try to connect. The exception is thrown as soon as I attempt to locate the certificate:</p>
<pre><code>using (var svc = new xxxServiceClient())
{
svc.ClientCredentials.UserName.UserName = "XXX";
svc.ClientCredentials.UserName.Password = "XXX";
svc.ClientCredentials.ClientCertificate
.SetCertificate(StoreLocation.LocalMachine, StoreName.Root,
X509FindType.FindBySubjectName, "xxx");
...
}
</code></pre>
<p>I have tried several different X509FindTypes, and matched them to the values on the cert with no success. Is there something wrong with my code? Is there another way I can query the cert store to validate the values I am passing?</p>
<p>The dev machine where I am running Visual Studio has had the cert imported.</p>
http://stackoverflow.com/questions/332039/getting-started-with-iphone-development/1109087#11090870Answer by Mark Struzinski for Getting Started With iPhone DevelopmentMark Struzinski2009-07-10T11:45:39Z2009-07-10T11:45:39Z<p>I've been trying to immerse myself in the Mac world to pick this stuff up (been a .NET/Windows dev for years), but it's a huge paradigm shift. I just got <a href="http://rads.stackoverflow.com/amzn/click/1430218150" rel="nofollow">Learn Objective–C on the Mac</a>. It's very good so far. Also the <a href="http://www.mobileorchard.com/" rel="nofollow">Mobile Orchard</a> podcast has been very informative. </p>
http://stackoverflow.com/questions/31057/how-to-insert-a-line-break-in-a-sql-server-varchar-nvarchar-string9How to insert a line break in a SQL Server VARCHAR/NVARCHAR stringMark Struzinski2008-08-27T19:53:01Z2009-07-08T18:11:41Z
<p>I didn't see any similar questions asked on this topic, and I had to research this for something I'm working on right now. Thought I would post the answer for it in case anyone else had the same question.</p>
http://stackoverflow.com/questions/1098791/nhibernate-stored-procedures-and-composite-keys/1099004#10990041Answer by Mark Struzinski for nHibernate - stored procedures and composite keysMark Struzinski2009-07-08T15:59:01Z2009-07-08T15:59:01Z<p>In the past when I've used a composite-key I've always had to create a separate class for that ID with the properties of the class matching the separate keys for the composite. Have you tried this?</p>
http://stackoverflow.com/questions/1098870/is-ankhsvn-a-good-alternative-to-visual-sourcesafe/1098969#10989690Answer by Mark Struzinski for Is AnkhSVN a good alternative to Visual SourceSafe?Mark Struzinski2009-07-08T15:53:59Z2009-07-08T15:53:59Z<p>We moved the VisualSVN Server a year ago from VSS. Best thing we ever did. With the low price of entry for VisualSVN, you might be better off making the purchase in case you ever need support. I've never had an issue with VisualSVN. We had the normal stuff crop up with TortoiseSVN (Cleanup/Update issues), but VisualSVN has worked like a charm.</p>
http://stackoverflow.com/questions/1080374/ssrs-grouping-on-a-field-even-when-there-are-duplicates/1082003#10820031Answer by Mark Struzinski for SSRS Grouping on a field, even when there are duplicatesMark Struzinski2009-07-04T11:03:03Z2009-07-04T11:03:03Z<p>What about using the RowNumber function (not adding it into the dataset) as an expression to group on?</p>
<p>I don't have a report in front of me right now, but I think that might work.</p>
http://stackoverflow.com/questions/1073806/nhibernate-could-not-find-oracle-dialect-in-configuration/1073828#10738280Answer by Mark Struzinski for NHibernate - could not find (oracle) dialect in configurationMark Struzinski2009-07-02T11:29:29Z2009-07-02T11:29:29Z<p>Do you have the Oracle client installed locally on your pc? I believe this provides some drivers you may need to connect, but I'm not sure. If so, try copying the Oracle.DataAccess.dll file from your installation into the bin folder of your project. This has worked for me in the past.</p>
http://stackoverflow.com/questions/1026239/how-can-i-stop-visual-studio-automatically-upgrading-projects/1026275#10262751Answer by Mark Struzinski for How can I stop Visual Studio automatically upgrading projects?Mark Struzinski2009-06-22T09:29:43Z2009-06-22T09:29:43Z<p>Probably the only way to open the VS 2008 projects safely in VS 2010 will be to make a copy and open the copy in VS 2010. In my experience, it's impossible to revert back once you have opened a specific project in a later version of VS unless you feel like changing the version number in the project files. </p>
<p>This was true with the 2003 to 2005 switch, and also with the 2005 to 2008 switch.</p>
http://stackoverflow.com/questions/1022894/nhibernate-schemaexport-and-configure-catch-22/1022915#10229152Answer by Mark Struzinski for NHibernate SchemaExport and Configure() catch-22Mark Struzinski2009-06-21T01:01:29Z2009-06-21T01:01:29Z<p>Can you post your configuration file?</p>
<p>I use this method all the time with no tables present, and am able to generate the schema on the fly. My guess is that you may have something off in one of your .hbm files. Try cutting your schema down to 1 table, getting it to work, then building it up from there. As a reference, here is the code I use to generate the db schema:</p>
<pre><code> var cfg = new Configuration();
cfg.Configure();
var schema = new SchemaExport(cfg);
schema.Create(true, true);
</code></pre>
<p>This will also push the script to the console for you, so you can see what SQL is generated against the db.</p>
http://stackoverflow.com/questions/1017381/i-want-to-install-sql-server-2008-enterprise-and-sql-server-2008-express-on-the-s/1017398#10173981Answer by Mark Struzinski for I want to install SQL Server 2008 Enterprise and SQL Server 2008 Express on the same machine, which should I install first?Mark Struzinski2009-06-19T11:01:43Z2009-06-19T11:01:43Z<p>For SQL Server 2005, I ALWAYS had to install the full product first, then Express second. If I did it the other way around, the full SQL install would see Express installed already, and would not continue with the install. It was extremely annoying. Not sure if they fixed this with 2008.</p>
http://stackoverflow.com/questions/1572733/generate-random-string/1572793#1572793Comment by Mark Struzinski on Generate random stringMark Struzinski2009-11-19T18:59:54Z2009-11-19T18:59:54ZGoes to show with the .NET API. I've been using Membership for 1+ years and didn't know about this method! +1http://stackoverflow.com/questions/1067129/compile-error-on-action-for-iphone-app-errorexpected-before-token/1067170#1067170Comment by Mark Struzinski on Compile error on action for iPhone app: "error:expected ')' before ';' token"Mark Struzinski2009-09-08T16:24:37Z2009-09-08T16:24:37ZI'm just starting out on Obj-C development, too. This helped me break a day long deadlock. Thanks!
-It's always the syntax errors that kill you.http://stackoverflow.com/questions/1374961/cruise-control-net-file-merge-nunit-file-getting-xmlexceptionComment by Mark Struzinski on Cruise Control.NET File Merge NUnit File - Getting XmlExceptionMark Struzinski2009-09-03T18:26:53Z2009-09-03T18:26:53Z@LSFR - I tries wrapping the <file> element in <files></files>, same resulthttp://stackoverflow.com/questions/1374961/cruise-control-net-file-merge-nunit-file-getting-xmlexceptionComment by Mark Struzinski on Cruise Control.NET File Merge NUnit File - Getting XmlExceptionMark Struzinski2009-09-03T18:22:37Z2009-09-03T18:22:37Z@LSFR Consulting That's the first thing I checked - but it's only 385 lines long.http://stackoverflow.com/questions/925110/could-not-load-file-or-assembly-system-enterpriseservices/925168#925168Comment by Mark Struzinski on Could not load file or assembly System.EnterpriseServicesMark Struzinski2009-08-10T13:14:49Z2009-08-10T13:14:49ZWorked perfectly on my new dev machine. Thanks!http://stackoverflow.com/questions/35486/fluid-rounded-corners-with-jquery/35510#35510Comment by Mark Struzinski on Fluid rounded corners with jqueryMark Struzinski2009-08-06T18:04:29Z2009-08-06T18:04:29ZJust tried this. Was up and running in 5 minutes! The reason I like this one is its lack of dependency on any other libraries/plugins.http://stackoverflow.com/questions/1199877/nunit-conditional-teardown/1199904#1199904Comment by Mark Struzinski on NUnit Conditional Teardown?Mark Struzinski2009-07-29T14:20:39Z2009-07-29T14:20:39Z@AutomatedTester - that's why I was trying to incorporate this into a TearDown method - and also to stop repeating myself by writing cleanup code.http://stackoverflow.com/questions/1199877/nunit-conditional-teardown/1199904#1199904Comment by Mark Struzinski on NUnit Conditional Teardown?Mark Struzinski2009-07-29T12:38:56Z2009-07-29T12:38:56ZGood suggestion, but I have to run the cleanup after specific tests to be ready for the next test.
Hadn't thought about a different test fixture. Thanks for the recommendation.http://stackoverflow.com/questions/1165078/wcf-client-using-certificate-and-username-password-credentials/1168988#1168988Comment by Mark Struzinski on WCF Client Using Certificate and Username/Password credentials?Mark Struzinski2009-07-23T17:50:21Z2009-07-23T17:50:21ZAgain, thanks for the feedback. Now I'm over to a MessageSecurityException. BTW - I don't have any control over the server side. It's a java service with an associated .wsdl file. I'm only writing the client end to consume it. Any other feedback? Thanks again for your help!http://stackoverflow.com/questions/1165078/wcf-client-using-certificate-and-username-password-credentials/1168988#1168988Comment by Mark Struzinski on WCF Client Using Certificate and Username/Password credentials?Mark Struzinski2009-07-23T12:03:35Z2009-07-23T12:03:35Z@Tanner, thanks for the recommendations. I posted my most recent results above. Now I'm getting a different exception. Any ideas?http://stackoverflow.com/questions/935276/how-do-i-unittest-a-custom-actionfilterComment by Mark Struzinski on How do I UnitTest a custom ActionFilter?Mark Struzinski2009-07-17T19:33:53Z2009-07-17T19:33:53ZCould you possibly post your working code for this? I got as far as creating the attribute, but I'm having issues passing in a ResultExecutingContext.http://stackoverflow.com/questions/1134055/wcf-cannot-find-the-x-509-certificate-using-the-following-search-criteria/1134077#1134077Comment by Mark Struzinski on WCF - Cannot Find the x.509 Certificate Using the Following Search CriteriaMark Struzinski2009-07-16T11:39:57Z2009-07-16T11:39:57ZImporting the cert to the personal store and changing the StoreLocation to CurrentUser, StoreName to My, and X509FindType to FindByThumbprint did the trick. Thanks!http://stackoverflow.com/questions/1134055/wcf-cannot-find-the-x-509-certificate-using-the-following-search-criteria/1134077#1134077Comment by Mark Struzinski on WCF - Cannot Find the x.509 Certificate Using the Following Search CriteriaMark Struzinski2009-07-16T02:17:24Z2009-07-16T02:17:24ZI think it is installed. I thought I was verifying this by checking the Certificates dialog. When I do this, I can see the cert under the Trusted Root Certification Authorities tab. Do I need to check anything else to verify?
The cert is not specific for the machine. It is used across the network for our web services.http://stackoverflow.com/questions/332039/getting-started-with-iphone-developmentComment by Mark Struzinski on Getting Started With iPhone DevelopmentMark Struzinski2009-07-10T11:40:35Z2009-07-10T11:40:35ZI got a mac just to start iPhone development, and I am also very impressed with the polish of the experience. I'm slowly working through the iTunes U Stanford lecture series on beginning iPhone development. It's very good.http://stackoverflow.com/questions/1001362/ssis-disappearing-external-dllComment by Mark Struzinski on SSIS - Disappearing External .dllMark Struzinski2009-06-16T13:50:04Z2009-06-16T13:50:04ZWe've followed all the steps outlined in this article - <a href="http://msdn.microsoft.com/en-us/library/ms136007.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>. Everything still works for me, but not for anyone else.