rally25rs

2,411
Reputation
205 views

Registered User

Name rally25rs
Member for 1 year
Seen 12 hours ago
Website
Location Ohio, USA
Age 31
Senior Software Engineer with 9 years of professional experience. Currently coding in Java and C#.
Nov
30
awarded  Popular Question
Nov
26
accepted c# datatypes -> oracle datatypes
Nov
24
awarded  Notable Question
Nov
18
revised Relative path of a given file from a service application in Delphi
Added rough english translation
Nov
18
comment Relative path of a given file from a service application in Delphi
en inglés por favor.
Nov
18
answered “Unable to connect to the remote server”
Nov
18
comment “Unable to connect to the remote server”
If you can connect via telnet, as @Wim suggested, then I would run a Wireshark session for both the 'old' WinForms app, and your WCF app, and compare the contents of the packets. The client may be connecting, but the server may not be providing a response. Perhaps the structure of the data is slightly different and the server is failing to process the request.
Nov
18
comment “Unable to connect to the remote server”
+1, this was going to be my answer too.
Nov
17
answered c# datatypes -> oracle datatypes
Nov
17
comment Can I use JS encryption instead of SSL for credit card payments?
@Ggolo, just please let us know your web site URL when you have this implemented. Christmas is coming up, and my wife would like a new car. For that matter, I'd like a BMW M3, so please attract customers with good credit!
Nov
17
answered Can I use JS encryption instead of SSL for credit card payments?
Nov
13
accepted Download a directory over HTTP in Java
Nov
13
revised Download a directory over HTTP in Java
added another possible solution
Nov
13
comment Download a directory over HTTP in Java
is there something wrong with my 1st suggestion? or are you just trying to avoid writing any code? Making an ASP or JSP or PHP page that returns the file system structure in a known format would probably take less time than it took to post this question and monitor the responses... What is the web server? is it ALWAYS the same? or are you trying to just connect to any random server that might be out there whatever it is? (are you in control of the server)
Nov
12
answered Download a directory over HTTP in Java
Nov
11
answered Which addin is recommended for Visual Studio 2008 (C#) ?
Nov
5
comment WCF client proxy initialization
I agree with the approach of making a single factory instance, and not having singleton channel instances. For channels, use em and loose em, and be sure to close them properly, checking the faulted state.
Nov
5
revised Stop IIS 7 Application Pool from build script
added 903 characters in body
Nov
4
comment Stop IIS 7 Application Pool from build script
just to elaborate one step further, the 'nice' think about using 2 accounts here is that my CruiseControl.net service is not running as admin, the build process is not running as admin, the unit tests are not running as admin, etc... only the start / stop of IIS is being run as admin, and you can't log in to the box locally or via remote desktop from either account. I find this fairly secure... and way better than disabling UAC or running the entire process as admin.
Nov
4
answered Stop IIS 7 Application Pool from build script
Nov
4
comment Stop IIS 7 Application Pool from build script
I have the same issue with CruiseControl.NET. I have a project that I need to have stop/start IIS, but NOT run the entire CruiseControl service as an elevated account.
Nov
3
comment Is there a Java equivalent to C#’s ‘checked’ keyword?
+1 because i've never actually need the 'checked' keyword before. Here is the MSDN ref incase anyone else is interested: msdn.microsoft.com/en-us/library/…
Nov
3
answered IE 6 and IE 7 on same computer for debugging
Oct
28
comment Continuous Integration and Database Management
Thanks for the link. Do wish item #1 in the 3 rules had further detail. Its something we're struggling with now. Definitely easier said than done.
Oct
23
comment Restricting an IP if it is between an IP Range.
copy/paste the good parts for those of us who aren't or don't want to register?
Oct
23
comment Restricting an IP if it is between an IP Range.
and you can replace my "ConvertIPStringToInt()" with Espo's "Dot2LongIP()", since I was too lazy to write the conversion method :)
Oct
23
answered Restricting an IP if it is between an IP Range.
Oct
23
answered How can I reference a method from another class without instantiating it?
Oct
23
comment C# List<T> OrderBy always returning null…
Good point. I wasnt taking into account the need to upcast the list back to the ItemList type.
Oct
23
answered C# List<T> OrderBy always returning null…
Oct
23
awarded  Popular Question
Oct
16
awarded  Notable Question
Oct
16
awarded  Yearling
Oct
12
comment SVN - how to take a file off the version control
this is what I typically do too, plus I will set svn to ignore settings.py
Oct
9
comment c# windows mobile standard - Back button won’t close the app
ooooh, a 'back' hardware button... that makes more sense. Have a Samsung Omnia (touch screen) myself, so I wasn't thinking about any hardware buttons. Sorry!
Oct
9
comment Success stories for JavaFX
@Elazar - i'm not sure I even remember any more. i had started a few threads on one of Sun's forums about a few... I'll see if I can dig them up...
Oct
8
answered c# windows mobile standard - Back button won’t close the app
Oct
8
answered Data bind enum properties to grid and display description
Oct
8
answered Success stories for JavaFX
Oct
5
answered Can .net apps run side by side a WCF service site?
Oct
5
answered Chain-overloading constructors?
Sep
30
answered How to start a single project without debugging in Visual Studio?
Sep
27
comment Visual studio forgets window settings and makes a mess
I tend to have this problem if I have 2 or more VS instances open and have them flipping back and forth between debug view. Eventually at some point one will suddenly undock every window.
Sep
27
comment Visual studio forgets window settings and makes a mess
I have problems all the time having vs settings on a mapped drive. I have mine set to save locally, but even then, at random, VS will change the save path back to the mapped drive.
Sep
17
revised WCF Authentication with custom ClientCredentials: What is the clientCredentialType to use?
deleted 9 characters in body; edited tags
Sep
15
awarded  Popular Question
Sep
4
awarded  Good Answer
Aug
31
comment .NET Declarative Security: Why is SecurityAction.Deny impossible to work with?
The class is defined in the project, where it is accessible to whatever methods I am using it on. If you have multiple assemblies, then you may want to define it someplace common, like a shared utility assembly.
Aug
24
comment Automating .Net deployment using Cruise Control .Net
+1 for the idea of an automated upload, but a manual 'last step' of having to physically log into the DMZ box.
Aug
19
comment Oracle SQL: What is the point of this DECODE statement?
No. I actually think '~' was chosen because its not valid. I also believe a lot of the time the column being nvl'd is actually a number anyway, not varchar.