User Dominic Godin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:24:08Z http://stackoverflow.com/feeds/user/5170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1763434/c-datetime-comparisons-accuracy-and-rounding 3 C# DateTime comparisons accuracy and rounding. Dominic Godin 2009-11-19T13:52:42Z 2009-11-19T14:46:32Z <p>I have two dates. One supplied by the user and accurate to the second and one from the database and accurate to the tick level. This means when they both represent 13/11/2009 17:22:17 (British dates)</p> <pre><code>userTime == dbTime </code></pre> <p>returns false </p> <p>The tick values are 633937297368344183 and 633937297370000000.</p> <p>To fix this I use the code</p> <pre><code>userTime = new DateTime( userTime.Year, userTime.Month, userTime.Day, userTime.Hour, userTime.Minute, userTime.Second); dbTime = new DateTime( dbTime.Year, dbTime.Month, dbTime.Day, dbTime.Hour, dbTime.Minute, dbTime.Second); </code></pre> <p>Is there a more elegant way to achieve this?</p> http://stackoverflow.com/questions/1644004/how-do-i-add-an-xml-attribute-using-datacontract 0 How do I add an XML attribute using DataContract Dominic Godin 2009-10-29T14:10:11Z 2009-11-07T15:36:30Z <p>Hi</p> <p>I have a simple class I'm serializing.</p> <pre><code> [DataContract(Name = "Test", Namespace = "")] public class Test { [DataMember(Order = 0, Name = "Text")] public string Text { get; set; } public Test() {} } </code></pre> <p>This kicks out the following XML:</p> <pre><code>&lt;Test&gt; &lt;Text&gt;Text here&lt;/Text&gt; &lt;/Test&gt; </code></pre> <p>What I want is:</p> <pre><code>&lt;Test&gt; &lt;Text type="MyType"&gt;Text here&lt;/Text&gt; &lt;/Test&gt; </code></pre> <p>How do I add attributes the the XML elements?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1455281/linq-prefetching-data-from-a-second-table 0 LINQ: Prefetching data from a second table Dominic Godin 2009-09-21T15:58:28Z 2009-09-21T16:12:07Z <p>Hi,</p> <p>I'm trying to pre-fetch some foreign key data using a linq query. A quick example to explain my problem follows:</p> <pre><code>var results = (from c in _customers from ct in _customerTypes where c.TypeId == ct.TypeId select new Customer { CustomerId = c.CustomerId, Name = c.Name, TypeId = c.TypeId, TypeName = ct.TypeName, &lt;-- Trying to Prefetch this }).ToList(); </code></pre> <p>The Customer class looks like:</p> <pre><code>[Table(Name = "Customers")] public class Customer { [Column(Name = "CustomerId", IsPrimaryKey = true, IsDbGenerated = true, AutoSync = AutoSync.OnInsert)] public int CustomerId { get; set; } [Column(Name = "Name")] public string Name { get; set; } [Column(Name = "TypeId")] public int TypeId { get; set;} public string TypeName { get; set; } public Confession (){} } </code></pre> <p>However LINQ will not let you do this throwing a NotSupportedException with "Explicit construction of entity type 'Customer' in query is not allowed."</p> <p>I'm clearly approaching this incorrectly. Any pointers in the right direction would be most helpfull.</p> http://stackoverflow.com/questions/1443979/sql-how-to-find-the-top-string-column-value-in-a-grouped-query 0 SQL: How To Find The Top String Column Value in a Grouped Query Dominic Godin 2009-09-18T11:31:53Z 2009-09-18T11:46:04Z <p>When grouping is there a simple way to get the first or top value out of a column. In the following example I want the last value in [Text] if sorted by [Date] descending.</p> <pre><code>SELECT [Id], MAX([Date]), TOP 1 [Text], &lt;-- How do I do do this COUNT(*) FROM [ExampleTable] GROUP BY [Id] ORDER BY [Date] DESC </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1393240/linq-looking-for-an-efficient-way-to-search-a-column-to-see-if-it-contains-any-w 1 Linq: Looking for an efficient way to search a column to see if it contains any word from a list of words. Dominic Godin 2009-09-08T10:38:31Z 2009-09-08T10:49:44Z <p>I have a Linq query that will search a column for a word and return the number of entries found with the said word. I then loop this for each word I'm looking for.</p> <pre><code>var results = new List&lt;WordCountResult&gt;(words.Count); foreach (var word in words) { var wordCount = (from s in _searchResult where s.Date&gt;= startDate &amp;&amp; s.Date&lt;= endDate &amp;&amp; SqlMethods.Like(s.TargetColumn, "%" + word + "%") select s).Count(); results.Add(new WordCountResult(word, wordCount)); } return results; </code></pre> <p>While the code is neat it is inefficient as it query's the database multiple times. </p> <p>Is the a Linq guru out there that can show how this can be done with one call the the database?</p> http://stackoverflow.com/questions/1342238/iphone-web-development-image-scaling 0 iPhone Web Development Image Scaling Dominic Godin 2009-08-27T16:31:19Z 2009-09-01T09:25:37Z <p>I am developing a simple web page to be viewed after an iphone application completes. I am finding the safari degrades the image quality of the jpg so its all fuzzy. </p> <p>The image is background image applied to a div</p> <pre><code>div.foo { background: url(../images/foo.jpg) no-repeat; width:320px; height:349px; } </code></pre> <p>The width and height are exactly the same as the jpg image. Is there a way to make sure the image gets displayed in its full quality?</p> http://stackoverflow.com/questions/1342238/iphone-web-development-image-scaling/1361465#1361465 0 Answer by Dominic Godin for iPhone Web Development Image Scaling Dominic Godin 2009-09-01T09:25:37Z 2009-09-01T09:25:37Z <p>Found the answer. The iphone "optimises" jpg's, compressing them to minimise the file size but destroying the quality of the image. All the reading I did suggested there was no way to switch this "feature" off.</p> <p>The solution is simple, switch to pngs.</p> http://stackoverflow.com/questions/1211671/encrypting-and-decrypting-xml-sent-and-received-by-restful-wcf-web-services 1 Encrypting and Decrypting XML sent and received by RESTful WCF Web Services Dominic Godin 2009-07-31T09:54:02Z 2009-08-26T09:41:39Z <p>I have a web service that receives data in XML. I wish this XML to be encrypted before it is sent and have the serializer handle the decryption. This would let the service methods receive the objects as normal with the encryption detail hidden from them.</p> <p>I have looked at IOperationBehaviour and inheriting from DataContractSerializerOperationBehavior however I'm finding it hard to find good documentation on how these work and the best way to override/implement them.</p> <p>Is what I'm trying to do possible? Am I going about it in the right way? Any pointers would be most welcome.</p> http://stackoverflow.com/questions/1288526/grouping-by-time-ranges-in-linq 1 Grouping by Time ranges in Linq Dominic Godin 2009-08-17T15:13:10Z 2009-08-17T15:56:42Z <p>I've been getting stuck into some linq queries for the first time today and I'm struggling with some of the more complicated ones. I'm building a query to extract data from a table to build a graph. The tables colums I'm interested in are <strong>Id</strong>, <strong>Time</strong> and <strong>Value</strong>.</p> <p>The user will select a start time, an end time and the number of intervals (points) to graph. The value column will averaged for each interval.</p> <p>I can do this with a linq request for each interval but I'm trying to write it in one query so I only need to go to the database once.</p> <p>So far I have got:</p> <pre><code>var timeSpan = endTime.Subtract(startTime); var intervalInSeconds = timeSpan.TotalSeconds / intervals; var wattList = (from t in _table where t.Id == id &amp;&amp; t.Time &gt;= startTime &amp;&amp; t.Time &lt;= endTime group t by intervalInSeconds // This is the bit I'm struggling with into g orderby g.Key select g.Average(a =&gt; a.Value)) ).ToList(); </code></pre> <p>Any help on grouping over time ranges will be most welcome.</p> http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method 2 Handling null results with the Linq Average() method Dominic Godin 2009-08-17T10:07:37Z 2009-08-17T11:38:39Z <p>I am new to linq and am trying to create some data points from a table to graph. The three fields of importance in this table are the id, the time and the value. I am writing a query to get the average value over a set time for a chosen id. The linq I have written follows:</p> <pre><code>var value = (from t in _table where t.Id == id &amp;&amp; t.Time &gt;= intervalStartTime &amp;&amp; t.Time &lt;= intervalEndTime select t.Value).Average(); </code></pre> <p>However this crashes at runtime with:</p> <blockquote> <p>"The null value cannot be assigned to a member with type System.Decimal which is a non-nullable value type.."</p> </blockquote> <p>At certain intervals there is no data so the SQL linq generates returns null, which I would liked to be COALESCED to 0 but instead crashes the application. Is there a way to write this linq query to be able to handle this properly?</p> <p><strong>EDIT</strong></p> <p>I'll add the table definition to make things clearer.</p> <pre><code>[Serializable] [Table(Name = "ExampleTable")] public class ExampleTable { [Column(Name = "Id")] public int Id { get; set; } [Column(Name = "Time")] public DateTime Time { get; set; } [Column(Name = "Value")] public int Value{ get; set; } } </code></pre> http://stackoverflow.com/questions/803600/how-to-serialize-on-to-existing-file/1232693#1232693 2 Answer by Dominic Godin for How to serialize on to existing file? Dominic Godin 2009-08-05T11:34:53Z 2009-08-05T11:34:53Z <p>This is indeed possible. The code below appends the object.</p> <pre><code>using (var fileStream = new FileStream("C:\file.dat", FileMode.Append)) { var bFormatter = new BinaryFormatter(); bFormatter.Serialize(fileStream, objectToSerialize); } </code></pre> <p>The following code de-serializes the objects.</p> <pre><code>var list = new List&lt;ObjectToSerialize&gt;(); using (var fileStream = new FileStream("C:\file.dat", FileMode.Open)) { var bFormatter = new BinaryFormatter(); while (fileStream.Position != fileStream.Length) { list.Add((ObjectToSerialize)bFormatter.Deserialize(fileStream)); } } </code></pre> <p>Note for this to work the file must only contain the same objects.</p> http://stackoverflow.com/questions/578443/asp-net-mvc-ajax-with-jquery/1205999#1205999 0 Answer by Dominic Godin for ASP.NET MVC AJAX with jQuery Dominic Godin 2009-07-30T11:26:51Z 2009-07-30T11:26:51Z <p>I have written a <a href="http://dyslexicprogrammer.blogspot.com/2009/07/calling-actions-in-javascript-by-action.html" rel="nofollow">blog</a> post on this that will show you do how to this without hard coding your urls in JavaScript. You can call them using the action and controller names.</p> http://stackoverflow.com/questions/1059152/when-creating-a-multiple-project-template-for-visual-studio-is-there-a-way-to-use 1 When creating a multiple project template for visual studio is there a way to use parameters in the root template file? Dominic Godin 2009-06-29T16:11:56Z 2009-06-29T16:32:38Z <p>Hi,</p> <p>I am trying to create a multi project template. I wish the sub projects names to contain the solution name. I have tried the following however $safeprojectName$ doesn't work in the root template for some reason. It tries to create the folders with $safeprojectName$ in the name rather than the actual project name.</p> <pre><code>&lt;VSTemplate Version="2.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005"&gt; &lt;TemplateData&gt; &lt;Name&gt;Default Solution&lt;/Name&gt; &lt;Description&gt;An example of a multi-project template&lt;/Description&gt; &lt;Icon&gt;Icon.ico&lt;/Icon&gt; &lt;ProjectType&gt;CSharp&lt;/ProjectType&gt; &lt;/TemplateData&gt; &lt;TemplateContent&gt; &lt;ProjectCollection&gt; &lt;SolutionFolder Name="$safeprojectName$.Web"&gt; &lt;ProjectTemplateLink ProjectName="$safeprojectName$.Web"&gt; Src\Web\MyTemplate.vstemplate &lt;/ProjectTemplateLink&gt; &lt;/SolutionFolder&gt; &lt;/ProjectCollection&gt; &lt;/TemplateContent&gt; &lt;/VSTemplate&gt; </code></pre> <p>I have done a lot of reading on this and have and have created an assembly using the IWizard interface that creates a parameter $solutionName$. I then used the following template.</p> <pre><code>&lt;VSTemplate Version="2.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005"&gt; &lt;TemplateData&gt; &lt;Name&gt;Default Solution&lt;/Name&gt; &lt;Description&gt;An example of a multi-project template&lt;/Description&gt; &lt;Icon&gt;Icon.ico&lt;/Icon&gt; &lt;ProjectType&gt;CSharp&lt;/ProjectType&gt; &lt;/TemplateData&gt; &lt;TemplateContent&gt; &lt;ProjectCollection&gt; &lt;SolutionFolder Name="$solutionName$.Web"&gt; &lt;ProjectTemplateLink ProjectName="$solutionName$.Web"&gt; Src\Web\MyTemplate.vstemplate &lt;/ProjectTemplateLink&gt; &lt;/SolutionFolder&gt; &lt;/ProjectCollection&gt; &lt;/TemplateContent&gt; &lt;WizardExtension&gt; &lt;Assembly&gt;DefaultSoloutionWizard, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=f753ddb61a28cb36, processorArchitecture=MSIL&lt;/Assembly&gt; &lt;FullClassName&gt;DefaultSoloutionWizard.WizardImplementation&lt;/FullClassName&gt; &lt;/WizardExtension&gt; &lt;/VSTemplate&gt; </code></pre> <p>This however also fails with the same problem. I'm I trying to do the impossible? Any help on this would be most welcome.</p> http://stackoverflow.com/questions/986183/mocking-the-routedata-class-in-system-web-routing-for-mvc-applications 4 Mocking The RouteData Class in System.Web.Routing for MVC applications Dominic Godin 2009-06-12T11:30:03Z 2009-06-12T12:23:03Z <p>Hi, </p> <p>I'm trying to test some application logic that is dependent on the Values property in ControllerContext.RouteData. </p> <p>So far I have</p> <pre><code>// Arrange var httpContextMock = new Mock&lt;HttpContextBase&gt;(MockBehavior.Loose); var controllerMock = new Mock&lt;ControllerBase&gt;(MockBehavior.Loose); var routeDataMock = new Mock&lt;RouteData&gt;(); var wantedRouteValues = new Dictionary&lt;string, string&gt;(); wantedRouteValues.Add("key1", "value1"); var routeValues = new RouteValueDictionary(wantedRouteValues); routeDataMock.SetupGet(r =&gt; r.Values).Returns(routeValues); &lt;=== Fails here var controllerContext = new ControllerContext(httpContextMock.Object, routeDataMock.Object, controllerMock.Object); </code></pre> <p>The unit test fails with: System.ArgumentException: Invalid setup on a non-overridable member: r => r.Values</p> <p>Creating a fake RouteData doesn't work either as the constructor is RouteData(RouteBase,IRouteHandler).</p> <p>The important class here is the abstract class RouteBase which has the method GetRouteData(HttpContextBase) which returns an instance of RouteData, the class I'm trying to fake. Taking me around in circles!</p> <p>Any help on this would be most welcome.</p> http://stackoverflow.com/questions/55054/whats-the-best-way-to-capitalise-the-first-letter-of-each-word-in-a-string-in-sq 4 What’s the best way to capitalise the first letter of each word in a string in SQL Server. Dominic Godin 2008-09-10T19:07:08Z 2009-02-18T11:17:41Z <p>What’s the best way to capitalise the first letter of each word in a string in SQL Server.</p> http://stackoverflow.com/questions/515565/how-do-i-create-a-thread-that-runs-all-the-time-in-the-background-in-a-net-web-s 5 How do I create a thread that runs all the time in the background in a .net web site? Dominic Godin 2009-02-05T11:50:04Z 2009-02-05T12:40:57Z <p>I intend to build a small web site that will poll a third party web service, say every 15 minutes, store the collected data in a db and display the results via web pages. </p> <p>I want the polling to run 24 hours a day with or without anyone visiting the web site.</p> <p>I know I could create a stand alone application that could run on the server to do this but is there a clean way to incorporate this into the website code. I need something that would be easy to deploy on a cheep 3rd party hosting site.</p> <p>Any pointers in the right direction will be welcome.</p> <p>Thanks</p> http://stackoverflow.com/questions/49430/animation-extender-problems 1 Animation Extender Problems Dominic Godin 2008-09-08T10:29:53Z 2008-09-17T16:03:45Z <p>Hi,</p> <p>I have just started working with the AnimationExtender. I am using it to show a new div with a list gathered from a database when a button is pressed. The problem is the button needs to do a postback to get this list as I don't want to make the call to the database unless it's needed. The postback however stops the animation mid flow and resets it. The button is within an update panel.</p> <p>Ideally I would want the animation to start once the postback is complete and the list has been gathered. I have looked into using the ScriptManager to detect when the postback is complete and have made some progress. I have added two javascript methods to the page.</p> <pre><code>function linkPostback() { var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_endRequest(playAnimation) } function playAnimation() { var onclkBehavior = $find("ctl00_btnOpenList").get_OnClickBehavior().get_animation(); onclkBehavior.play(); } </code></pre> <p>And I’ve changed the btnOpenList.OnClientClick=”linkPostback();”</p> <p>This almost solves the problem. I’m still get some animation stutter. The animation starts to play before the postback and then plays properly after postback. Using the onclkBehavior.pause() has no effect. I can get around this by setting the AnimationExtender.Enabled = false and setting it to true in the buttons postback event. This however works only once as now the AnimationExtender is enabled again. I have also tried disabling the AnimationExtender via javascript but this has no effect.</p> <p>Is there a way of playing the animations only via javascript calls? I need to decouple the automatic link to the buttons click event so I can control when the animation is fired.</p> <p>Hope that makes sense.</p> <p>Thanks</p> <p>DG</p> http://stackoverflow.com/questions/49430/animation-extender-problems/84844#84844 0 Answer by Dominic Godin for Animation Extender Problems Dominic Godin 2008-09-17T16:03:45Z 2008-09-17T16:03:45Z <p>With help from the answer given the final solution was as follows:</p> <p>Add another button and hide it.</p> <pre><code>&lt;input id="btnHdn" runat="server" type="button" value="button" style="display:none;" /&gt; </code></pre> <p>Point the AnimationExtender to the hidden button so the firing of the unwanted click event never happens.</p> <pre><code>&lt;cc1:AnimationExtender ID="aniExt" runat="server" TargetControlID="btnHdn"&gt; </code></pre> <p>Wire the javascript to the button you want to trigger the animation after the postback is complete.</p> <pre><code>&lt;asp:ImageButton ID="btnShowList" runat="server" OnClick="btnShowList_Click" OnClientClick="linkPostback();" /&gt; </code></pre> <p>Add the required Javascript to the page.</p> <pre><code>function linkPostback() { var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_endRequest(playOpenAnimation) } function playOpenAnimation() { var onclkBehavior = ind("ctl00_aniExt").get_OnClickBehavior().get_animation(); onclkBehavior.play(); var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.remove_endRequest(playOpenAnimation) } </code></pre> http://stackoverflow.com/questions/1288526/grouping-by-time-ranges-in-linq/1288694#1288694 Comment by Dominic Godin on Grouping by Time ranges in Linq Dominic Godin 2009-08-17T16:04:56Z 2009-08-17T16:04:56Z Inspired thank you http://stackoverflow.com/questions/1288526/grouping-by-time-ranges-in-linq/1288567#1288567 Comment by Dominic Godin on Grouping by Time ranges in Linq Dominic Godin 2009-08-17T15:29:49Z 2009-08-17T15:29:49Z Sorry this doesn't help http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287470#1287470 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T11:56:27Z 2009-08-17T11:56:27Z Thank you that's done it. http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287193#1287193 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T11:26:16Z 2009-08-17T11:26:16Z Yes, the complier tells me the left operand will never be null as Value is not nullable http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287217#1287217 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T11:02:07Z 2009-08-17T11:02:07Z Sorry again. Tried them both. They still throw &quot;The null value cannot be assigned to a member with type System.Decimal which is a non-nullable value type..&quot; Exception http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287217#1287217 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T10:42:49Z 2009-08-17T10:42:49Z Thanks for the suggestion but still throws the same exception. http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287163#1287163 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T10:41:59Z 2009-08-17T10:41:59Z Thanks but still no joy. Throws a &quot;Could not format node 'OptionalValue' for execution as SQL.&quot; http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287193#1287193 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T10:25:34Z 2009-08-17T10:25:34Z select t.Value ?? 0 doesn't compile as t.Value is a non-nullable int. http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287163#1287163 Comment by Dominic Godin on Handling null results with the Linq Average() method Dominic Godin 2009-08-17T10:17:20Z 2009-08-17T10:17:20Z Sorry this doesn't work as Value is a non-nullable int. http://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-services Comment by Dominic Godin on DataContractSerializer Lists and Web Services Dominic Godin 2009-08-13T12:31:49Z 2009-08-13T12:31:49Z I'm using fiddler to test this and the web service only understands the XML if all the xmlns data is stripped out and looks like my second XML example http://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-services Comment by Dominic Godin on DataContractSerializer Lists and Web Services Dominic Godin 2009-08-13T12:24:14Z 2009-08-13T12:24:14Z Yep I simplified the XML to highlight the problem. It's xmlns:a=&quot;<a href="http://schemas.microsoft.com/2003/10/Serialization/Arrays&quot" rel="nofollow">schemas.microsoft.com/2003/10/&hellip;</a>; http://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-services Comment by Dominic Godin on DataContractSerializer Lists and Web Services Dominic Godin 2009-08-13T09:11:21Z 2009-08-13T09:11:21Z Also the web service is RESTful http://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-services Comment by Dominic Godin on DataContractSerializer Lists and Web Services Dominic Godin 2009-08-13T08:59:39Z 2009-08-13T08:59:39Z Cheers guys but still doesn't answer my question. Why is the DataContractSerializer Serializing with a: in the lists but can not de-serialize it? http://stackoverflow.com/questions/1211671/encrypting-and-decrypting-xml-sent-and-received-by-restful-wcf-web-services/1211759#1211759 Comment by Dominic Godin on Encrypting and Decrypting XML sent and received by RESTful WCF Web Services Dominic Godin 2009-07-31T11:18:57Z 2009-07-31T11:18:57Z I'm not I'm using webHttpBinding. Thanks to the answer provider for the update. http://stackoverflow.com/questions/1211671/encrypting-and-decrypting-xml-sent-and-received-by-restful-wcf-web-services/1211759#1211759 Comment by Dominic Godin on Encrypting and Decrypting XML sent and received by RESTful WCF Web Services Dominic Godin 2009-07-31T10:37:11Z 2009-07-31T10:37:11Z To be fair I added REST to the title after he answered, as I'm using webHttpBinding