ASP.NET 4.5 (ASP.NET/WCF) and Visual Studio 2012 Release Candidate (RETIRED)http://forums.asp.net/1239.aspx/1?ASP+NET+4+5+ASP+NET+WCF+and+Visual+Studio+2012+Release+Candidate+RETIRED+Discussion on the ASP.NET 4.5 and Visual Studio 2012 Release Candidate. Ask questions, help others and provide feedback. This forum is now retired. Please post question on ASP.NET 4.5 within the appropriate topic-specific forum.Tue, 04 Sep 2012 16:15:05 -0400urn:uuid:00000000-0000-0000-0000-000000001239urn:uuid:00000000-0000-0000-0000-000004940123http://forums.asp.net/p/1794496/4940123.aspx/1?Problems+adding+controllerProblems adding controller <p>In a MVC3 project under VS 11, I am using Code First with POCO's and am trying to add a controller. I keep getting the error message &quot;Unable to retrieve metadata for 'MVC3_TestApp.Models.CAS'. The type initializer for 'System.Data.Entity.Internal.AppConfig' threw an exception.&quot;&nbsp; Any ideas what is causing this?</p> 2012-04-19T05:44:59-04:002012-04-19T05:44:59.983-04:00urn:uuid:00000000-0000-0000-0000-000005102139http://forums.asp.net/p/1832278/5102139.aspx/1?ObjectContent+in+ASP+NET+4+5+RCObjectContent in ASP.NET 4.5 RC <p>Hi,<br> I'm trying to build a client to call a web service by sending a serialized object as the content in the request.&nbsp; I was going to use ObjectContent but I don't think that is available in the RC.&nbsp; I read this on <a href="http://www.asp.net/whitepapers/mvc4-release-notes">http://www.asp.net/whitepapers/mvc4-release-notes</a>.</p> <p><em>&quot;To send a request that contains an ObjectContent use the PostAsync&lt;T&gt; extension methods on HttpClient. Or, use the PostAsJsonAsync&lt;T&gt; and PostAsXmlAsync&lt;T&gt; extension methods to specify a request that will be specifically formatted with as JSON or XML respectively&quot;</em></p> <p><em></em>Is this correct that you can call the PostAsync method on HttpClient using an argument type?&nbsp; I'm running 4.5 RC on VS 2012 RC and that's now working.&nbsp; Could anyone provide an example that demonstrates what the white papers recommends or an alternative was in the 4.5 RC to send a class object as the content in an http&nbsp;post?<br> Thank you!&nbsp;</p> 2012-08-09T20:01:54-04:002012-08-09T20:01:54.803-04:00urn:uuid:00000000-0000-0000-0000-000005104958http://forums.asp.net/p/1833273/5104958.aspx/1?Inheritance+in+DataContract+between+Different+Services+Inheritance in DataContract between Different Services? <p>Hi All,&nbsp;</p> <p>Am trying to make two service to talk with each other. &nbsp;There is a service called social content management (SCM) service which talks with CRM service.</p> <p>what i did was:</p> <p>1) tried to extend one of the CRM's data contract into SCM service.</p> <p>Let us assume there is a Data Contract called DC_A in CRM, I created a Service Reference of CRM service in SCM service. Then in SCM service I have a Data Contract class, let it be called as (DC_B). What I did was I tried to reuse the properties of DC_A in DC_B, as done in inheritance in OOP. Hence I decided to Inherit the properties of DC_A in DC_B, by declaring the datacontact of DC_B as shown below</p> <p></p> <p>[DataContract]</p> <p>Class DC_B : DC_A (<strong>FYI</strong> DC_A is a DataContract from CRM Service)</p> <p>{</p> <p>// implementation of properties for DC_B goes here.</p> <p>}&nbsp;</p> <p>1) Can this be done as shown in the above code? trying to extend or reuse datacontract from another service?</p> <p>2) The below error message is, it says it cannot convert DC_B object to DC_A (while I am trying to reuse the implementation of CRM service in SCM Service)? How can I solve this issue if (1) is possible?</p> <p><strong>(I have simplified the whole story of this error into ordinary terms)</strong></p> <p><strong>There was an error while trying to serialize parameter http://tempuri.org/:sampleContact. The InnerException message was 'Type 'SocialContentManagement_Services.Contracts.DataContracts.User' with data contract name 'User:http://schemas.datacontract.org/2004/07/SocialContentManagement_Services.Contracts.DataContracts' is not expected. Consider using a DataContractResolver or add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.'. &nbsp;Please see InnerException for more details.</strong></p> <p></p> <p>Any ideas are welcomed. Thanks in Advance.&nbsp;</p> <p>Cheers,</p> <p>Chandra.</p> <p><strong><br> </strong></p> 2012-08-13T02:52:04-04:002012-08-13T02:52:04.947-04:00urn:uuid:00000000-0000-0000-0000-000005099509http://forums.asp.net/p/1831662/5099509.aspx/1?+getJSON+is+not+working+in+Firefox+but+in+IE+works+fine$.getJSON is not working in Firefox, but in IE works fine <p>This is works fine in all browser</p> <p></p> <p>&nbsp;&#36;.getJSON(&quot;http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=?&quot;, function(data){<br> &nbsp; &#36;.each(data.items, function(i,item){<br> &nbsp;&nbsp;&nbsp; &#36;(&quot;&lt;img/&gt;&quot;).attr(&quot;src&quot;, item.media.m).appendTo(&quot;#images&quot;)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .wrap(&quot;&lt;a href='&quot; &#43; item.link &#43; &quot;'&gt;&lt;/a&gt;&quot;);<br> &nbsp;&nbsp;&nbsp; if ( i == 3 ) return false;<br> &nbsp; });</p> <p>but</p> <p>&#36;(document).ready(function () {<br> &nbsp;&nbsp;&nbsp; jQuery.support.cors = true;<br> &nbsp;&nbsp;&nbsp; &#36;.getJSON(&quot;http://localhost/Examples/Users/GetLiveMatches?userId=37&amp;format=json&amp;callback=?&quot;, function (data) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (var i = 0; i &lt; data.length; i&#43;&#43;) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; renderLiveMatch(data[i]);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }).success(function () { alert(&quot;success&quot;); })<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .error(function (jqXHR, textStatus, errorThrown) { // Debug the error!!<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; console.log(&quot;error &quot; &#43; textStatus);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; console.log(&quot;error throw &quot; &#43; errorThrown);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; console.log(&quot;incoming Text &quot; &#43; jqXHR.responseText);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }) // End of .error<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .complete(function () { alert(&quot;complete&quot;); });<br> <br> });</p> <p></p> <p>Here it is not working in Firefox,Chrome and Other Brwoser..,in IE it is working fine.</p> <p>I have try all callback function at aend of url&nbsp; and &quot;dataType: &quot;script&quot;&quot; change to dataType: &quot;jsonp&quot;.But not working...</p> <p></p> <p></p> 2012-08-08T07:13:01-04:002012-08-08T07:13:01.423-04:00urn:uuid:00000000-0000-0000-0000-000005102350http://forums.asp.net/p/1832355/5102350.aspx/1?CORS+issues+with+IIS+7+5+and+DelegatingHandlers+Web+API+service+CORS issues with IIS 7.5 and DelegatingHandlers (Web API service) <p>I'm trying to make a cross-domain XHR call from my MVC app to my Web API service using VS2012 RC. &nbsp;I've set up a CORS DelegatingHandler as per <a href="http://blogs.msdn.com/b/carlosfigueira/archive/2012/07/02/cors-support-in-asp-net-web-api-rc-version.aspx"> Carlos's blog entry</a>&nbsp;that will append the necessary ACAO header to the response headers. &nbsp;I've noticed that Chrome and Firefox are unable to send preflighted XHR requests to my Web API service. &nbsp;Tracing the network calls showed that Chrome and FF both send the OPTIONS request to IIS 7.5 (or 7.5 express, makes no difference) and the response that comes back from IIS does not contain the ACAO headers. &nbsp;Breakpoints in the CorsHandler show that it never gets called for the OPTIONS request.</p> <p>Since FF and Chrome don't receive the ACAO headers, they believe this is insecure cross-domain scripting and refuse to send the request. &nbsp;IE9 does not make the preflighted OPTIONS call and skips straight to the GET, which does get handled by CorsHandler and gets the proper ACAO headers. &nbsp;So IE9 never sees the problem. &nbsp;If I switch over from IIS7.5 to Cassini, everything works great with FF and Chrome as Cassini returns the ACAO headers in the OPTIONS response.</p> <p>Am I missing something obvious or is this just an oversight in IIS7.5? &nbsp;It seems like there's no way to support preflighted XHR requests with IIS7.5 and instead we have to make sure no cross-domain XHRs ever get escalated to preflighting by the browsers.</p> 2012-08-10T02:25:30-04:002012-08-10T02:25:30.497-04:00urn:uuid:00000000-0000-0000-0000-000005098770http://forums.asp.net/p/1831484/5098770.aspx/1?visual+studio+2012+RC+Unable+to+launch+the+IIS+express+Web+servervisual studio 2012 RC : Unable to launch the IIS express Web server <p>Hello</p> <p>I have visual studio 2010 and 2012 installed, when l try to tanch MVC app in visual studio 2012 I get the error message :</p> <p>&nbsp;&quot;Unable to launch the IIS express Web server&quot;</p> <p>the application works fine on VS 2010</p> <p>please help</p> 2012-08-07T15:38:59-04:002012-08-07T15:38:59.037-04:00urn:uuid:00000000-0000-0000-0000-000005094964http://forums.asp.net/p/1830479/5094964.aspx/1?Will+the+RTM+of+Visual+Studio+2012+include+an+RTM+of+MVC4Will the RTM of Visual Studio 2012 include an RTM of MVC4 <p>I recently heard that the RTM of Visual Studio 2012 is slated for Aug 15. &nbsp;Does anyone know if that will include MVC 4 RTM as well or will MVC 4 RTM be coming out shortly there after?</p> <p>I'm seeing some fixes in the Web API stuff since RC on CodePlex that I want but I'm not sure I want to go down the path of using my own build or one of the nightly builds that I saw are available via NuGet. &nbsp;</p> <p>I can wait a couple weeks but if MVC 4 is going to be even later then maybe I'll just go with a nightly build for now to get what I want.&nbsp;</p> 2012-08-04T04:49:45-04:002012-08-04T04:49:45.673-04:00urn:uuid:00000000-0000-0000-0000-000005096033http://forums.asp.net/p/1830814/5096033.aspx/1?W3WP+exe+remains+high+even+system+remain+idleW3WP.exe remains high even system remain idle <p>Hello All,</p> <p>I am facing one problem continuosly, when I use any services then memory reaches to 700 MB but when system remain idle then it does not decrease, due to that overall system perform very slow.</p> <p>Please let me know if any setting I have to write in config file.</p> <p></p> 2012-08-06T01:50:57-04:002012-08-06T01:50:57.153-04:00urn:uuid:00000000-0000-0000-0000-000005073735http://forums.asp.net/p/1825719/5073735.aspx/1?Upload+Image+to+WCF+Rest+ServiceUpload Image to WCF Rest Service <pre class="prettyprint">Hi to all I have created the WCF Rest service to upload images.Now it is working, but when i open the uploaded image after converting from stream to image it is showing error can anyone guide what mistake i am doing. Operation Contract : [OperationContract] [WebInvoke(BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = &quot;/PostImage&quot;, Method = &quot;POST&quot;)] PublicMessage PostImage(Stream obj); Service Definition : public PublicMessage PostImage(Upload obj) { byte[] buffer = StreamToByte(obj.File); //Function to convert the stream to byte array FileStream fs = new FileStream(@&quot;D:\ShopMonkeyApp\Desert.jpg&quot;, FileMode.Create, FileAccess.ReadWrite); BinaryWriter bw = new BinaryWriter(fs); bw.Write(buffer); bw.Close(); return new PublicMessage { Message = &quot;Recieved the image on server&quot; }; } public static byte[] StreamToByte(Stream stream) { byte[] buffer = new byte[16 * 1024]; using (MemoryStream ms = new MemoryStream()) { int read; while ((read = stream.Read(buffer, 0, buffer.Length)) &gt; 0) { ms.Write(buffer, 0, read); } return ms.ToArray(); } } Client Application : string obj = @&quot;D:\Images\Desert.jpg&quot;; var c = new System.Net.WebClient(); c.OpenWrite(string.Concat(&quot;http://localhost:50268/shopmonkey.svc&quot;, &quot;/PostImage&quot;), &quot;POST&quot;); c.Headers[HttpRequestHeader.ContentType] = &quot;application/octet-stream&quot;; c.UploadFile(&quot;http://localhost:50268/shopmonkey.svc/PostImage&quot;), obj); Thanks &amp; Regards, Vijay</pre> <p></p> <p></p> 2012-07-19T14:20:34-04:002012-07-19T14:20:34.76-04:00urn:uuid:00000000-0000-0000-0000-000005084617http://forums.asp.net/p/1828261/5084617.aspx/1?Request+Timeout+in+Async+Call+to+WCFRequest Timeout in Async Call to WCF <p><span style="text-decoration:underline"><strong>I am calling SQL Stored Procedure which modify the hufe data. There is no problem with synchronous Call.</strong></span></p> <p><strong><span style="text-decoration:underline">But&nbsp; when I call Async I m getting Timeout Error. Below are the code and configuration I follwed</span><br> </strong></p> <p><strong>Error Description while calling WCF Asynchronously</strong></p> <p>This request operation sent to net.tcp://localhost:8731/GEPQPService/ did not receive a reply within the configured timeout (00:01:00).&nbsp; The time allotted to this operation may have been a portion of a longer timeout.&nbsp; This may be because the service is still processing the operation or because the service was unable to send a reply message.&nbsp; Please consider increasing the operation timeout (by casting the channel/proxy to IContextChannel and setting the OperationTimeout property) and ensure that the service is able to connect to the client.</p> <p></p> <p><strong>This is my WCF Configuration</strong></p> <p>&lt;system.serviceModel&gt;&nbsp;&nbsp;&nbsp; <br> &nbsp;&nbsp;&nbsp; &lt;bindings&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;basicHttpBinding&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;binding name=&quot;BasicHttpBinding_IUpdateStatus&quot;&nbsp; closeTimeout=&quot;01:00:00&quot; openTimeout=&quot;01:00:00&quot; receiveTimeout=&quot;01:00:00&quot; sendTimeout=&quot;01:00:00&quot; allowCookies=&quot;false&quot; bypassProxyOnLocal=&quot;false&quot; hostNameComparisonMode=&quot;StrongWildcard&quot; maxBufferSize=&quot;65536&quot; maxBufferPoolSize=&quot;524288&quot; maxReceivedMessageSize=&quot;65536&quot; messageEncoding=&quot;Text&quot; textEncoding=&quot;utf-8&quot; transferMode=&quot;Buffered&quot; useDefaultWebProxy=&quot;true&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;readerQuotas maxDepth=&quot;32&quot; maxStringContentLength=&quot;8192&quot; maxArrayLength=&quot;16384&quot; maxBytesPerRead=&quot;4096&quot; maxNameTableCharCount=&quot;16384&quot;&nbsp; /&gt;<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;security mode=&quot;None&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;transport clientCredentialType=&quot;None&quot; proxyCredentialType=&quot;None&quot; realm=&quot;&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;message clientCredentialType=&quot;UserName&quot; algorithmSuite=&quot;Default&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/security&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/binding&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/basicHttpBinding&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;netTcpBinding&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;binding name=&quot;netTcpBinding_IQAPackageService&quot; closeTimeout=&quot;01:01:00&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; openTimeout=&quot;01:01:00&quot; receiveTimeout=&quot;01:10:00&quot; sendTimeout=&quot;01:01:00&quot; <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hostNameComparisonMode=&quot;StrongWildcard&quot; maxBufferSize=&quot;8000000&quot; maxBufferPoolSize=&quot;8000000&quot; <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maxReceivedMessageSize=&quot;8000000&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;readerQuotas maxDepth=&quot;32&quot; maxStringContentLength=&quot;8192&quot; maxArrayLength=&quot;16384&quot; maxBytesPerRead=&quot;4096&quot; maxNameTableCharCount=&quot;16384&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;reliableSession ordered=&quot;true&quot; inactivityTimeout=&quot;01:00:00&quot;&nbsp; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;security mode=&quot;Transport&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;transport clientCredentialType=&quot;Windows&quot; protectionLevel=&quot;EncryptAndSign&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;message clientCredentialType=&quot;Windows&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/security&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/binding&gt; <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/netTcpBinding&gt; <br> &nbsp;&nbsp;&nbsp; &lt;/bindings&gt;<br> &nbsp;&nbsp;&nbsp; &lt;client&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpoint address=&quot;http://localhost/GepQualityPackage/UpdateStatus.svc&quot; binding=&quot;basicHttpBinding&quot; bindingConfiguration=&quot;BasicHttpBinding_IUpdateStatus&quot; contract=&quot;GepUpdateProcessStatus.IUpdateStatus&quot; name=&quot;BasicHttpBinding_IUpdateStatus&quot; /&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/client&gt;<br> &nbsp;&nbsp;&nbsp; &lt;services&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;service behaviorConfiguration=&quot;GEPWcfServices.Service1Behavior&quot; name=&quot;GEPWcfServices.QAPackageService&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpoint&nbsp; address=&quot;&quot; binding=&quot;netTcpBinding&quot; bindingConfiguration=&quot;netTcpBinding_IQAPackageService&quot; contract=&quot;GEPWcfServices.IQAPackageService&quot;&nbsp; &gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;identity&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;dns value=&quot;localhost&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/identity&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/endpoint&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpoint address=&quot;mex&quot; binding=&quot;mexTcpBinding&quot; bindingConfiguration=&quot;&quot; contract=&quot;IMetadataExchange&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;host&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;baseAddresses&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--172.16.200.110:8731--&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;add baseAddress=&quot;net.tcp://localhost:8731/GEPQPService/&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/baseAddresses&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/host&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/service&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/services&gt;<br> &nbsp;&nbsp;&nbsp; &lt;behaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpointBehaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;behavior name=&quot;MyCallbackBehavior&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;callbackTimeouts transactionTimeout=&quot;01:00:00&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/behavior&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/endpointBehaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceBehaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;behavior name=&quot;GEPWcfServices.Service1Behavior&quot;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceTimeouts transactionTimeout=&quot;10:10:00&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceMetadata httpGetEnabled=&quot;false&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceDebug includeExceptionDetailInFaults=&quot;true&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/behavior&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/serviceBehaviors&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/behaviors&gt;<br> &nbsp; &lt;/system.serviceModel&gt;</p> <p></p> <p><strong>Web Config file Configuration</strong></p> <p>&lt;system.serviceModel&gt;<br> &nbsp;&nbsp;&nbsp; &lt;bindings&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;netTcpBinding&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;binding name=&quot;NetTcpBinding_IQAPackageService&quot; closeTimeout=&quot;01:01:00&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; openTimeout=&quot;01:01:00&quot; receiveTimeout=&quot;01:10:00&quot; sendTimeout=&quot;01:01:00&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; transactionFlow=&quot;false&quot; transferMode=&quot;Buffered&quot; transactionProtocol=&quot;OleTransactions&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hostNameComparisonMode=&quot;StrongWildcard&quot; listenBacklog=&quot;10&quot; maxBufferPoolSize=&quot;524288&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maxBufferSize=&quot;8000000&quot; maxConnections=&quot;10&quot; maxReceivedMessageSize=&quot;8000000&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;readerQuotas maxDepth=&quot;32&quot; maxStringContentLength=&quot;8192&quot; maxArrayLength=&quot;16384&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maxBytesPerRead=&quot;4096&quot; maxNameTableCharCount=&quot;16384&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;reliableSession ordered=&quot;true&quot; inactivityTimeout=&quot;01:00:00&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; enabled=&quot;false&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;security mode=&quot;Transport&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;transport clientCredentialType=&quot;Windows&quot; protectionLevel=&quot;EncryptAndSign&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;message clientCredentialType=&quot;Windows&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/security&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/binding&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/netTcpBinding&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/bindings&gt;<br> &nbsp;&nbsp;&nbsp; &lt;client&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpoint address=&quot;net.tcp://localhost:8731/GEPQPService/&quot; binding=&quot;netTcpBinding&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bindingConfiguration=&quot;NetTcpBinding_IQAPackageService&quot; contract=&quot;QAPackageServiceClient.IQAPackageService&quot; behaviorConfiguration=&quot;MyCallbackBehavior&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; name=&quot;NetTcpBinding_IQAPackageService&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;identity&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;dns value=&quot;localhost&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/identity&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/endpoint&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/client&gt;<br> &nbsp;&nbsp;&nbsp; &lt;behaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceBehaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;behavior name=&quot;GepQualityPackage.UpdateStatusBehavior&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceMetadata httpGetEnabled=&quot;true&quot;/&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;serviceDebug includeExceptionDetailInFaults=&quot;false&quot;/&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/behavior&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/serviceBehaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpointBehaviors&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;behavior name=&quot;MyCallbackBehavior&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;callbackTimeouts transactionTimeout=&quot;01:00:00&quot; /&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/behavior&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/endpointBehaviors&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/behaviors&gt;<br> &nbsp;&nbsp;&nbsp; &lt;services&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;service behaviorConfiguration=&quot;GepQualityPackage.UpdateStatusBehavior&quot; name=&quot;GepQualityPackage.UpdateStatus&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpoint address=&quot;&quot; binding=&quot;basicHttpBinding&quot; contract=&quot;GepQualityPackage.IUpdateStatus&quot;&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;identity&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;dns value=&quot;http://localhost/GepQualityPackage/UpdateStatus.svc&quot;/&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/identity&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/endpoint&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;endpoint address=&quot;mex&quot; binding=&quot;mexHttpBinding&quot; contract=&quot;IMetadataExchange&quot;/&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/service&gt;<br> &nbsp;&nbsp;&nbsp; &lt;/services&gt;<br> &nbsp; &lt;/system.serviceModel&gt;</p> <p></p> <p><strong>And C# code</strong> </p> <p>&nbsp;public void AsyncWcf()<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var basicHttpBinding = new NetTcpBinding();<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var objQPWCFService = new QAPackageServiceClient.QAPackageServiceClient();<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EndpointAddress endpointAddress = objQPWCFService.Endpoint.Address;<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IQAPackageService objIQPWCFService =<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; new ChannelFactory&lt;IQAPackageService&gt;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (basicHttpBinding, endpointAddress).CreateChannel();<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //h, m, s<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; objQPWCFService.InnerChannel.OperationTimeout = new TimeSpan(0, 5, 0);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AsyncCallback aSyncCallBack =<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delegate(IAsyncResult result)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string requestResult = objIQPWCFService.EndrunProcess(result);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch (Exception ex)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throw new ApplicationException(ex.Message);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; objIQPWCFService.BeginrunProcess(this.MasterData._connectionString, objProcessList.ToArray(), logInfo.serverName, logInfo.databaseName, logInfo.mainTableName,<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; aSyncCallBack, objIQPWCFService);//objIQPWCFService);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch (Exception ex)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throw new ApplicationException(ex.Message);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p> <p></p> 2012-07-27T07:36:34-04:002012-07-27T07:36:34.597-04:00urn:uuid:00000000-0000-0000-0000-000005083694http://forums.asp.net/p/1828041/5083694.aspx/1?IIS+websocket+module+is+not+enabledIIS websocket module is not enabled <p><span style="">I am trying to set up a web application that utilizes WebSockets. I am running VS12_RC on Windows 7 and whenever I try to run my websocket I get a &quot;The IIS WebSocket module is not enabled.&quot; error. Where can I turn this on at? I see IIS 8 Express in my Add or Remove Programs, but can't seem to find it in my system. I assume it was installed with VS12_RC? Any help would be greatly appreciated.</span></p> 2012-07-26T15:24:16-04:002012-07-26T15:24:16.077-04:00urn:uuid:00000000-0000-0000-0000-000005089723http://forums.asp.net/p/1829369/5089723.aspx/1?Scripts+suddenly+not+workingScripts suddenly not working <p>Installed the July 2012 Update for VS 2012 Express for Web and everything seemed to be fine. &nbsp;Ran my project a few times no problems. &nbsp;Now when I run it doesn't seem to load scripts such as jQuery and I get errors like &#36; is undefined or ko is undefined. &nbsp;I haven't made any changes to the scripts or anything.</p> <p>The only two things that have happened today was a dialog box asking me to normalize endings and installing the trial of the Electric Plum iOS Simulator.</p> <p>Please help, all the restarts haven't helped me at all!</p> 2012-07-31T14:12:44-04:002012-07-31T14:12:44.27-04:00urn:uuid:00000000-0000-0000-0000-000005088069http://forums.asp.net/p/1829012/5088069.aspx/1?Call+webservic+asyncCall webservic async <p>Hi there,</p> <p>In my mvc 4 project a wan't to validate vatnumbers through&nbsp;<a href="http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl" target="_blank">this</a>&nbsp;wsdl reference.<br> Is it possible to do this with the new async method?<br> I want to check 100 to 1000 numbers in one call in my application, but this would be 100 to 1000 calls to the vat vies webservice.</p> <p>Thanks</p> 2012-07-30T14:24:34-04:002012-07-30T14:24:34.127-04:00urn:uuid:00000000-0000-0000-0000-000005085599http://forums.asp.net/p/1828462/5085599.aspx/1?Unable+to+accept+WebSocket+connections+from+iOS+mobile+devicesUnable to accept WebSocket connections from iOS mobile devices <p>We've implemented WebSocket services in our asp.net project with Dot Net 4.5. Along the usual lines:</p> <pre class="prettyprint">if (System.Web.HttpContext.Current.IsWebSocketRequest) { log.Debug(&quot;Accepting web socket connection&quot;); System.Web.HttpContext.Current.AcceptWebSocketRequest(HandleClient); } else { log.Debug(&quot;Rejecting non web socket connection&quot;); System.Web.HttpContext.Current.Response.StatusCode = 500; }</pre> <p>We can successfully connect to this and have traffic in both directions with Chrome and IE on the desktop, with Chrome on Android devices, etc. with no problems. But when trying to hit it from any iOS device (iPod Touch, iPad, etc.), System.Web.HttpContext.Current.IsWebSocketRequest is always false.</p> <p>Therefore, it is currently not possible to service iOS clients with this component.</p> <p>Is this a known bug?</p> <p><br> &nbsp;</p> 2012-07-27T17:00:59-04:002012-07-27T17:00:59.313-04:00urn:uuid:00000000-0000-0000-0000-000005081978http://forums.asp.net/p/1827676/5081978.aspx/1?Is+Visual+Studio+2012+4+5+RC+for+Web+final+edition+Is Visual Studio 2012 4.5 RC for Web final edition? <p>I want to know whether the Visual Studio 2012 4.5 Release Candidate the final edition or it is still in the Beta Stage.</p> 2012-07-25T16:19:58-04:002012-07-25T16:19:58.13-04:00urn:uuid:00000000-0000-0000-0000-000005076718http://forums.asp.net/p/1826450/5076718.aspx/1?basic+tutorial+of+endpoint+binding+in+wcfbasic tutorial of endpoint binding in wcf <p>hello everyone</p> <p>i am going to develop on application using wcf in .net 4.0 and i need to know all types of endpoint binding like <strong><span>BasicHttpBinding</span></strong>,<strong><span>WSHttpBinding,<strong><span>WSDualHttpBinding</span></strong>,<strong><span>WSFederationHttpBinding</span></strong>,<strong><span>NetTcpBinding</span></strong> etc...</span></strong><span> actually i need to know the difference of thease all binding types thats why i can implement according to my project requirement ..so please can anyone provide me any tutorial or text for this...hope response will be very soon</span></p> <p>thanks in advance</p> <p>arun</p> <p></p> 2012-07-22T06:05:36-04:002012-07-22T06:05:36.68-04:00urn:uuid:00000000-0000-0000-0000-000005074539http://forums.asp.net/p/1825912/5074539.aspx/1?Integrate+PayPal+gateway+in+wcf+rest+service+using+C+Integrate PayPal gateway in wcf rest service using C# <p>I want to integrate paypal gateway in my wcf rest service for android application. I don't want to navigate to paypal site during payment&nbsp; through my application.</p> <p>Please Suggest me how to achieve it.</p> <p></p> <p>Thanks,</p> <p></p> 2012-07-20T05:44:05-04:002012-07-20T05:44:05.19-04:00urn:uuid:00000000-0000-0000-0000-000005068299http://forums.asp.net/p/1824491/5068299.aspx/1?Flight+booking+API+integrationsFlight booking API integrations <p>hi</p> <p>&nbsp;I am doing travelling site, in this i have to integrate flight booking,cars booking,hotel booking and vacation booking API in my website.</p> <p>&nbsp;How can i integrate the above &nbsp;API's in my website, please any one help with test api,this is very need ful to me.</p> 2012-07-16T15:53:42-04:002012-07-16T15:53:42.717-04:00urn:uuid:00000000-0000-0000-0000-000005075083http://forums.asp.net/p/1826034/5075083.aspx/1?how+to+Upload+Image+to+WCF+Rest+Service+in+application+how to Upload Image to WCF Rest Service in application? <pre class="prettyprint">Hi to all, im new to wcf service and i have studied about wcf service little things. I need to create an application with WCF Rest service to upload images.so please friends give sample site or sample code with explanation to learn this. pls provide ur valuable coding or tell some site name for having this example ...please guide me friends</pre> <pre class="prettyprint"><br /><br /></pre> 2012-07-20T10:47:31-04:002012-07-20T10:47:31.54-04:00urn:uuid:00000000-0000-0000-0000-000005053025http://forums.asp.net/p/1820993/5053025.aspx/1?Unit+tests+not+running+discovered+when+project+on+network+shareUnit tests not running/discovered when project on network share <p>Not sure if this is 2012 specific but I have a project hosted on a network share (for backup reasons). When I click run all I can see the project being built but nothing happens, it doesn't find any tests nor do they run. If I built the solution manually the same thing happens. If I copy the project to my C drive it works fine.</p> <p>I've been playing around with trying to make the network location a trusted using caspol but it says:</p> <p>&quot;WARNING: The .NET Framework does not apply CAS policy by default. Any settings<br> shown or modified by CasPol will only affect applications that opt into using<br> CAS policy.&quot;</p> <p></p> <p>Any ideas?</p> 2012-07-04T20:26:53-04:002012-07-04T20:26:53.443-04:00