Search Results

2
votes
1answer
217 views

Java and other clients for WCF RESTful Services

I am wanting to expose some data service endpoints for internal application use and am debating on WCF REST as a possible solution. What are my options for other languages/platforms as clients? …
0
votes

Is it possible to serialize a c# code block?

another option is using the DLR, and constraining the code to execute... …
0
votes

Image caching, HTTPHandler and FormsAuthentication

It may help to install Fiddler to investigate your http requests as specified above. Also, confirm the cookies are the same. Does your handler, or forms authentication system use a static object …
0
votes

ASP.Net PagingBulletedList Extender For ASP.Net GridView

it's ugly, but just have a paged datagrid, with a single cell that has a separate ul/li .. they'll line up together, and give you the functionality you want. Otherwise you may have to roll your ow …
0
votes

Double/incomplete Parameter Url Encoding

Html.BuildUrlFromExpression needs to be fixed then, would submit this upstream to the MVC project... alternatively do the encoding to the string before passing to BuildUrlFromExpression, and decod …
0
votes

In what circumstances should I use a Singleton class?

with c#, I would say that a singleton is rarely appropriate. Most uses for a singleton are better resolved with a static class. Being mindful of thread safety is extremely important though with an …
0
votes

I’m new to .NET - what should I concentrate on and what should I ignore?

Well, to be honest one thing that is really important is to understand what static usage means, and how it affects things around it. If you don't understand concurrency, thread safety and race con …
0
votes

Creating instance of type without default constructor in C# using reflection

couldn't you simply use default(T) ? …
0
votes

Asp.net loses connection to remote share

Just a thought, what about a WCF (or similar) service in the file-share target? If a network resource (file share) is interrupted/lost, it can get wonky (for lack of a better explanation). Your b …
1
vote

PubSub lib for c#

Note, if you have events for message notification, there are many options for dependancy injection / inversion of control. See Spring.Net …
0
votes

Does anybody use Mono for commercial development?

Mono is best suited when you have a certain level of control wrt the deployment environment. Most linux distros now either include, or offer a version of mono, generally with gtk#... Ubuntu inclu …
-1
votes

Fastest way to calculate the decimal length of an integer? (.NET)

not sure if this is faster or not.. but you can always count... static int getLen(long x) { int len = 1; while (x > 0) { x = x/10; len++ }; return le …
0
votes

Which ORM is the best when using Stored Procedures

Depending on the database Entity Framework, or …
0
votes

Is it possible to create a persistant ODBC connection with C#?

Sounds like you want a work queue from your language of choice via your DBMS of choice, and have C# code run as a result. If you are using a language (didn't specify) on windows, or elsewhere that …
0
votes

Capture who clicked a link from Website A to Website B?

If you control website B, then you just use the http_referer portion in logging. Otherwise, you will want to have a redirect page on site A, that records the url, then redirects the browser throug …

1 2 next
15 30 50 per page