User jinsungy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:28:06Z http://stackoverflow.com/feeds/user/1316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1828145/how-can-i-add-text-to-the-end-of-a-text-file/1828152#1828152 1 Answer by jinsungy for How can I add text to the end of a text file? jinsungy 2009-12-01T18:59:30Z 2009-12-01T18:59:30Z <p><a href="http://stackoverflow.com/questions/1008742/adding-text-to-beginning-and-end-of-file-in-c">http://stackoverflow.com/questions/1008742/adding-text-to-beginning-and-end-of-file-in-c</a></p> http://stackoverflow.com/questions/344478/linq-to-sql-query-using-not-in 3 Linq to Sql query using "not in" jinsungy 2008-12-05T16:52:53Z 2009-11-24T21:16:52Z <p>Can linq to sql query using <strong>not in</strong>? </p> <p>e.g., SELECT au_lname, state FROM authors WHERE state NOT IN ('CA', 'IN', 'MD')</p> http://stackoverflow.com/questions/1743926/how-do-i-copy-a-sql-server-database/1743942#1743942 0 Answer by jinsungy for How do I copy a SQL Server database jinsungy 2009-11-16T18:22:36Z 2009-11-16T18:22:36Z <p>Try Full backup and restore.</p> http://stackoverflow.com/questions/1669124/ie-6-and-ie-7-on-same-computer-for-debugging/1669176#1669176 0 Answer by jinsungy for IE 6 and IE 7 on same computer for debugging jinsungy 2009-11-03T18:16:24Z 2009-11-03T18:16:24Z <p>Try <a href="http://browsershots.org/" rel="nofollow">http://browsershots.org/</a>.</p> http://stackoverflow.com/questions/1630708/what-is-the-best-way-to-generate-pdf-from-c/1630756#1630756 1 Answer by jinsungy for What is the best way to generate pdf from c#? jinsungy 2009-10-27T13:19:51Z 2009-10-27T13:19:51Z <p>We use <a href="http://www.adlibsoftware.com/products.aspx" rel="nofollow">Adlib Express</a> in-house. It does conversion, publishing and OCR. </p> http://stackoverflow.com/questions/1625345/iis7-access-website-from-remote-computer/1625417#1625417 1 Answer by jinsungy for IIS7 access website from remote computer jinsungy 2009-10-26T15:14:38Z 2009-10-26T19:20:39Z <p>Check your firewall. You will have to open TCP Port 88. </p> <blockquote> <p>Part 4: Opening Up to the Outside World</p> <p>Windows Firewall blocks the World Wide Web Services port by default (Port 80). With this port blocked, other machines cannot connect to your web server. This severely limits the scope of potential web site viewers. So, in order to show your new web site and server to the outside world you must add an exception to the Windows Firewall.</p> <ol> <li><p>Click Start and type firewall into the Search bar and press enter. (Note: Make sure you select Windows Firewall and not Windows Firewall with Advanced Security)</p></li> <li><p>Click Change Settings</p></li> <li><p>Click the Exceptions Tab and Scroll to World Wide Web Services (HTTP).</p></li> <li><p>Click the check box and click OK.</p></li> </ol> <p>Now your machine is accessible to the outside world. You can connect to your machine by typing in the IP address of your server into another machine’s web browser.</p> </blockquote> <p><a href="http://blogs.iis.net/rlucero/archive/2007/03/26/iis-7-client-beginner-s-guide.aspx" rel="nofollow">source</a></p> http://stackoverflow.com/questions/1612938/program-to-return-power-of-2-without-using-any-power-function/1625513#1625513 3 Answer by jinsungy for Program to return power of 2 without using any power function. jinsungy 2009-10-26T15:35:14Z 2009-10-26T15:35:14Z <p>The solution you posted using the for loop produces the right result, but you should look into a more efficient solution (<a href="http://en.wikipedia.org/wiki/Bitwise%5Foperation#Arithmetic%5Fshift" rel="nofollow">bit shifting</a>) as Adamski first mentioned.</p> http://stackoverflow.com/questions/153078/sql-server-2008-reporting-services-on-failover-cluster 0 SQL Server 2008 Reporting Services on Failover Cluster jinsungy 2008-09-30T13:45:44Z 2009-10-25T08:30:02Z <p>When I try to install the Reporting Services on a second node of a failover cluster, I get the following error message:</p> <p>Existing clustered or cluster-prepared instance failed. The instance selected for installation is already installed and clustered on node 2. </p> <p>But, we never installed it before. Does anyone have any ideas? This is on Windows 2008 server 64-bit.</p> http://stackoverflow.com/questions/179542/move-ssis-packages-from-sql-server-2005-to-2008 2 Move SSIS Packages from SQL Server 2005 to 2008. jinsungy 2008-10-07T17:34:57Z 2009-10-24T21:49:21Z <p>What are best practices for moving/exporting SQL Server Integration Services Packages from a SQL Server 2005 DB over to 2008? </p> <p>What are some of the security concerns? </p> http://stackoverflow.com/questions/1579333/ssh-sftp-connection-issue-using-tamir-sharpssh 1 SSH / SFTP connection issue using Tamir.SharpSsh jinsungy 2009-10-16T17:23:54Z 2009-10-22T16:18:33Z <p>This is my code to connect and send a file to a remote SFTP server.</p> <pre><code>public static void SendDocument(string fileName, string host, string remoteFile, string user, string password) { Scp scp = new Scp(); scp.OnConnecting += new FileTansferEvent(scp_OnConnecting); scp.OnStart += new FileTansferEvent(scp_OnProgress); scp.OnEnd += new FileTansferEvent(scp_OnEnd); scp.OnProgress += new FileTansferEvent(scp_OnProgress); try { scp.To(fileName, host, remoteFile, user, password); } catch (Exception e) { throw e; } } </code></pre> <p>I can successfully connect, send and receive files using CoreFTP. Thus, the issue is not with the server. When I run the above code, the process seems to stop at the scp.To method. It just hangs indefinitely. </p> <p>Anyone know what might my problem be? Maybe it has something to do with adding the key to the a SSH Cache? If so, how would I go about this?</p> <p><strong>EDIT:</strong> I inspected the packets using wireshark and discovered that my computer is not executing the Diffie-Hellman Key Exchange Init. This must be the issue. </p> <p><strong>EDIT:</strong> I ended up using the following code. Note, the StrictHostKeyChecking was turned off to make things easier.</p> <pre><code> JSch jsch = new JSch(); jsch.setKnownHosts(host); Session session = jsch.getSession(user, host, 22); session.setPassword(password); System.Collections.Hashtable hashConfig = new System.Collections.Hashtable(); hashConfig.Add("StrictHostKeyChecking", "no"); session.setConfig(hashConfig); try { session.connect(); Channel channel = session.openChannel("sftp"); channel.connect(); ChannelSftp c = (ChannelSftp)channel; c.put(fileName, remoteFile); c.exit(); } catch (Exception e) { throw e; } </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1608253/are-there-any-conflicts-with-a-web-service-calling-another-web-service/1608304#1608304 1 Answer by jinsungy for Are there any conflicts with a web service calling another web service? jinsungy 2009-10-22T16:09:08Z 2009-10-22T16:09:08Z <p>You can definitely do this. But, remember if you are transmitting any kind of sensitive data, you need SSL for the webservices. </p> http://stackoverflow.com/questions/1196360/asp-net-web-service-security/1574110#1574110 0 Answer by jinsungy for ASP.NET Web Service Security jinsungy 2009-10-15T18:10:29Z 2009-10-15T18:10:29Z <p>Use <strong>SSL</strong>. Force everyone who consumes your webservice to use https.</p> <pre><code> //Check for Secure Channel: HTTPS if (!Context.Request.IsSecureConnection) return "The HTTP Connection must use Secure Sockets (HTTPS)"; </code></pre> http://stackoverflow.com/questions/1526726/linq-to-sql-convert-iqueryable-to-dataset 1 Linq to sql convert IQueryable to Dataset jinsungy 2009-10-06T16:37:22Z 2009-10-12T12:13:13Z <p>What is the easiest way to convert an IQueryable object to a dataset?</p> http://stackoverflow.com/questions/1545511/how-to-create-a-mobile-web-user-control/1545524#1545524 0 Answer by jinsungy for How to create a Mobile Web User Control jinsungy 2009-10-09T19:01:32Z 2009-10-09T19:01:32Z <p>Try downloading the <strong><a href="http://blogs.msdn.com/webdevtools/attachment/4776222.ashx" rel="nofollow">Mobile Web Application Template</a></strong> for Visual Studio.</p> <p>Source: <a href="http://geekswithblogs.net/ranganh/archive/2008/04/01/mobile-web-forms-in-visual-studio-2008.aspx" rel="nofollow">http://geekswithblogs.net/ranganh/archive/2008/04/01/mobile-web-forms-in-visual-studio-2008.aspx</a></p> http://stackoverflow.com/questions/1544164/how-do-i-edit-an-asp-net-site-changes-i-make-to-cs-files-dont-affect-anything/1544183#1544183 1 Answer by jinsungy for How do I edit an asp.net site? Changes I make to .cs files, don't affect anything. jinsungy 2009-10-09T14:37:15Z 2009-10-09T14:37:15Z <p>I'm assuming you are using Visual Studio. <strong>Rebuild</strong> the project after making changes to .cs files. You don't have to rebuild when you only make changes to .aspx files.</p> http://stackoverflow.com/questions/1537805/linq-to-sql-how-to-inner-join-tables-from-different-data-context 1 Linq to SQL - How to inner join tables from different Data Context? jinsungy 2009-10-08T13:29:18Z 2009-10-08T17:02:59Z <p>I have two tables from two different Data Contexts. Although both tables are from the same database, two separate datacontexts exist. </p> <p>Error msg: "<strong>The query contains references to items defined on a different data context.</strong>"</p> <p>How can I get around this? Any help is appreciated. Thanks.</p> http://stackoverflow.com/questions/546746/sql-server-2008-windows-auth-login-error-the-login-is-from-an-untrusted-domain 1 SQL Server 2008 Windows Auth Login Error: The login is from an untrusted domain jinsungy 2009-02-13T17:00:10Z 2009-09-12T15:34:59Z <p>When attempting to connect to a SQL Server 2008 Instance using Management Studio, I get the following error:</p> <blockquote> <p>Login failed. The login is from an untrusted domain and cannot be used with Windows authentication. (Microsoft SQL Server, Error: 18452)</p> </blockquote> <p>I can login using SQL Authentication without problem. I've been getting this error all of a sudden. I have Mixed Mode Authentication turned on. </p> <p>Does anyone have any experience with this?</p> <p>Additional Info: 64-bit version of SQL Enterprise Edition On Windows 2003 Server</p> <p><strong>EDIT: The issue was caused by a down Active Directory Server, which of course could not authenticate the Windows account. Thank you for your assistance.</strong> </p> http://stackoverflow.com/questions/916784/how-to-call-stored-procedure-in-a-view 0 How to call Stored Procedure in a View? jinsungy 2009-05-27T16:41:22Z 2009-09-11T18:53:22Z <p>How would I call a Stored Procedure that returns data in a View? Is this even possible? </p> http://stackoverflow.com/questions/1144467/asp-net-form-generator 1 asp.net Form Generator jinsungy 2009-07-17T16:46:38Z 2009-09-04T12:00:01Z <p>Anyone know of a product/solution that creates web forms on the fly? I want to allow my users to create their own web forms. Any help is appreciated. C# or VB solutions accepted.</p> <p>Edit: What I'm trying to create is something like <a href="http://wufoo.com" rel="nofollow">wufoo.com</a> (thanks o.k.w). I don't want to have to build my own form builder from scratch. </p> http://stackoverflow.com/questions/176038/how-do-i-register-a-web-reference-for-a-sql-server-2008-reporting-service-report 0 How do I register a Web Reference for a SQL Server 2008 Reporting Service Report? jinsungy 2008-10-06T20:23:41Z 2009-09-04T10:48:41Z <p>I'm trying to access the Reporting Services via Web Services in my Visual Studio 2008 Application. How/where can I find my WSDL? </p> http://stackoverflow.com/questions/883352/asp-net-is-the-accordian-pane-even-necessary 0 ASP.net, Is the Accordian Pane even necessary? jinsungy 2009-05-19T15:09:44Z 2009-09-02T21:20:27Z <p>When using the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Accordion/Accordion.aspx" rel="nofollow">Accordian control</a> from the MS Ajax control toolkit, do I even need to use the Panes? It seems that I can use HeaderTemplate and ContentTemplates to display my data without having to use any AccordianPanes at all. Is this recommended?</p> http://stackoverflow.com/questions/1322286/div-positioning-problem 0 div positioning problem jinsungy 2009-08-24T13:05:51Z 2009-08-24T13:27:07Z <p>In FireFox 3.5, the following div does not push the page content down. Rather, it overlaps. IE 8 does not. What can I do as a quick fix?</p> <pre><code>&lt;div style="position:fixed;top:0;width:100%;"&gt;blah blah&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1196228/should-i-declare-https-in-web-config/1196247#1196247 0 Answer by jinsungy for Should i declare https in web.config? jinsungy 2009-07-28T19:29:00Z 2009-07-28T19:29:00Z <p>You can write an <a href="http://stackoverflow.com/questions/1120190/c-how-to-determine-if-https/1120294#1120294">HttpModule</a> and add it to the web.config.</p> http://stackoverflow.com/questions/1179859/how-to-implement-a-password-recovery-link-in-asp-net/1188236#1188236 0 Answer by jinsungy for How to implement a password recovery link in ASP.NET? jinsungy 2009-07-27T13:46:20Z 2009-07-27T13:46:20Z <p>Read this: <a href="http://www.fishnetsecurity.com/sites/com.fishnetsecurity/downloads/Forgot%5FPassword%5FBest%5FPractices%5Fv1.0.pdf" rel="nofollow">Best Practices for your "Forgot Password" feature</a>.</p> <p>It should be pretty clear.</p> http://stackoverflow.com/questions/1188098/locks-on-files-preventing-overwriting-files-in-asp-net/1188150#1188150 0 Answer by jinsungy for Locks on Files Preventing Overwriting Files in ASP.NET jinsungy 2009-07-27T13:25:48Z 2009-07-27T13:25:48Z <p>How about creating the new files with different names, possibly with Date time appended to the file name? Also, create a batch file or windows service to automate the deletion of old files. </p> http://stackoverflow.com/questions/1154628/security-related-sites/1154675#1154675 0 Answer by jinsungy for security related sites jinsungy 2009-07-20T16:54:34Z 2009-07-20T16:54:34Z <p>I read... </p> <p><a href="http://www.governmentsecurity.org/" rel="nofollow">http://www.governmentsecurity.org/</a></p> <p><a href="http://www.net-security.org/" rel="nofollow">http://www.net-security.org/</a></p> <p><a href="http://www.wired.com/threatlevel/" rel="nofollow">Threat Level - Wired</a></p> http://stackoverflow.com/questions/1120190/c-how-to-determine-if-https 0 C# How to determine if HTTPS jinsungy 2009-07-13T15:32:58Z 2009-07-17T19:40:52Z <p>How do I determine and force users to view my website using HTTPS only? I know it can be done through IIS, but want to know how its done programmatically. </p> http://stackoverflow.com/questions/787398/pgp-library-for-c 5 PGP Library for C#? jinsungy 2009-04-24T20:12:16Z 2009-07-10T19:29:56Z <p>I'm looking for an <strong>easy to use</strong> PGP Library for C#. Does anyone know of any, preferably for free? </p> http://stackoverflow.com/questions/1105872/access-2007-triggers-and-procedures-equivalents/1105898#1105898 1 Answer by jinsungy for Access 2007 triggers and procedures equivalents? jinsungy 2009-07-09T19:11:14Z 2009-07-09T19:11:14Z <p>In Access, there is <strong>no such thing as a trigger</strong>. This applies to all versions.</p> http://stackoverflow.com/questions/1102781/best-way-for-a-forgot-password-implementation/1103814#1103814 1 Answer by jinsungy for Best way for a 'forgot password' implementation? jinsungy 2009-07-09T13:12:08Z 2009-07-09T13:12:08Z <p>When you are sending any information via email, it won't be secure. There are too many ways someone can get it. It would be child's play for a skilled hacker looking to steal your information.</p> <p>Refrain from sending any personal information like passwords and income information via email as it can become VERY EMBARRASSING for you and your organization if such information was leaked or stolen. Think about security seriously. It just takes that one incident for all the bricks to fall.</p> <p><strong>As for password retrieval, thoroughly read <a href="http://www.fishnetsecurity.com/sites/com.fishnetsecurity/downloads/Forgot%5FPassword%5FBest%5FPractices%5Fv1.0.pdf" rel="nofollow">Forgot Password Best Practices</a></strong>.</p> <blockquote> <p>The bottom line is that an application following best practices should allow a user to reset his own password. Personal security questions should be used. The application should not send email, display passwords, nor set any temporary passwords.</p> </blockquote> http://stackoverflow.com/questions/1661647/list-of-email-address-to-public-folders-in-exchange/1661655#1661655 Comment by jinsungy on List of email address to public folders in exchange jinsungy 2009-11-02T14:40:19Z 2009-11-02T14:40:19Z you answered your own question in less than 1 min.. http://stackoverflow.com/questions/1153723/how-to-pattern-recognition/1153764#1153764 Comment by jinsungy on How To: Pattern Recognition jinsungy 2009-10-27T15:45:32Z 2009-10-27T15:45:32Z @Gabe, fyi the &quot;good intro&quot; link is no longer available http://stackoverflow.com/questions/1625372/how-to-programmatically-send-mms-in-blackberry/1631122#1631122 Comment by jinsungy on How to programmatically send MMS in blackberry? jinsungy 2009-10-27T14:21:35Z 2009-10-27T14:21:35Z +1 awesome post. http://stackoverflow.com/questions/1625345/iis7-access-website-from-remote-computer/1625417#1625417 Comment by jinsungy on IIS7 access website from remote computer jinsungy 2009-10-26T19:21:44Z 2009-10-26T19:21:44Z I added instructions to this answer to open HTTP, but in your case you need to specify TCP Port 88. http://stackoverflow.com/questions/1612938/program-to-return-power-of-2-without-using-any-power-function/1625424#1625424 Comment by jinsungy on Program to return power of 2 without using any power function. jinsungy 2009-10-26T15:43:08Z 2009-10-26T15:43:08Z Can we be a little more helpful? Everyone has to start somewhere. http://stackoverflow.com/questions/1625345/iis7-access-website-from-remote-computer Comment by jinsungy on IIS7 access website from remote computer jinsungy 2009-10-26T15:05:20Z 2009-10-26T15:05:20Z is you friend's computer on the same network? http://stackoverflow.com/questions/1579333/ssh-sftp-connection-issue-using-tamir-sharpssh/1581548#1581548 Comment by jinsungy on SSH / SFTP connection issue using Tamir.SharpSsh jinsungy 2009-10-22T16:19:06Z 2009-10-22T16:19:06Z i went away from using SCP. thanks. http://stackoverflow.com/questions/1579333/ssh-sftp-connection-issue-using-tamir-sharpssh Comment by jinsungy on SSH / SFTP connection issue using Tamir.SharpSsh jinsungy 2009-10-16T18:03:27Z 2009-10-16T18:03:27Z @ryber, I inspected packets and discovered that it stops right before the Diffie-Hellman Key Exchange Init.. http://stackoverflow.com/questions/1544164/how-do-i-edit-an-asp-net-site-changes-i-make-to-cs-files-dont-affect-anything Comment by jinsungy on How do I edit an asp.net site? Changes I make to .cs files, don't affect anything. jinsungy 2009-10-09T14:43:02Z 2009-10-09T14:43:02Z <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">microsoft.com/express/vwd</a> http://stackoverflow.com/questions/1544164/how-do-i-edit-an-asp-net-site-changes-i-make-to-cs-files-dont-affect-anything Comment by jinsungy on How do I edit an asp.net site? Changes I make to .cs files, don't affect anything. jinsungy 2009-10-09T14:42:31Z 2009-10-09T14:42:31Z Download Visual Web Developer Express. You need to compile .cs files. http://stackoverflow.com/questions/1544164/how-do-i-edit-an-asp-net-site-changes-i-make-to-cs-files-dont-affect-anything Comment by jinsungy on How do I edit an asp.net site? Changes I make to .cs files, don't affect anything. jinsungy 2009-10-09T14:35:17Z 2009-10-09T14:35:17Z What version of asp.net are you using? http://stackoverflow.com/questions/1537805/linq-to-sql-how-to-inner-join-tables-from-different-data-context Comment by jinsungy on Linq to SQL - How to inner join tables from different Data Context? jinsungy 2009-10-08T14:08:34Z 2009-10-08T14:08:34Z It probably doesn't make sense, but this is what I'm working with. http://stackoverflow.com/questions/1537805/linq-to-sql-how-to-inner-join-tables-from-different-data-context/1537890#1537890 Comment by jinsungy on Linq to SQL - How to inner join tables from different Data Context? jinsungy 2009-10-08T13:48:14Z 2009-10-08T13:48:14Z I get a “This member is defined more than once” error. http://stackoverflow.com/questions/1526726/linq-to-sql-convert-iqueryable-to-dataset Comment by jinsungy on Linq to sql convert IQueryable to Dataset jinsungy 2009-10-06T16:41:28Z 2009-10-06T16:41:28Z Legacy code requires a dataset object. http://stackoverflow.com/questions/1144467/asp-net-form-generator Comment by jinsungy on asp.net Form Generator jinsungy 2009-07-23T14:44:47Z 2009-07-23T14:44:47Z I would like to import a form builder into my project like I would for a 3rd party control..