Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. theoxyde

    Originating on my network?

    I figured as much. Besides, if an attacker can proxy into the network... they can probably sniff out some of the unencrypted credentials floating about the local ether. SSL becomes pretty useless at that point. Got indemnification? Heh.
  2. theoxyde

    VS.NET Language Divergence

    I've seen several OEM machines shipping with .NET 1.1 preinstalled, mind you these are all XP Pro systems. I don't know if XP Home systems are getting it or not. Maybe the next version of Office will have some .NET components. That would probably have the best chance at widespread deployment...
  3. theoxyde

    Originating on my network?

    I need a second opinion on this... I have been designing a web application for a client and the question came up about our implementation of SSL. Normally, when we are designing an app that can potentially be sending secret information about, we recommend the client use SSL. This particular...
  4. theoxyde

    Root element with FOR XML

    AUTO and AUTO, ELEMENTS is fine if there is only one result being returned. I'll look into the EXPLICIT though.
  5. theoxyde

    VS.NET Language Divergence

    I had the opportunity to see a bit of Whidbey in action at Dev Days, and like the guy there said... they are growing apart in some ways, but becoming more alike in others. For instance, VB is now getting XML commenting like C# has enjoyed since day 1. Both are getting Smart Tags, but only VB...
  6. theoxyde

    SQL Server 2000 on WinXPH

    You have to use SQL Server "Personal Edition" on WinXP. All of the other editions require a server OS. SQL Server PE usually ships on a CD with the other editions.
  7. theoxyde

    Root element with FOR XML

    Is there any way to get a root element into a FOR XML AUTO query? For example: select * from tableA join tableB on tableA.id = tableB.idA for xml auto Each record for tableB is nested properly within the tableA result, but there is no root node above tableA's results. I've seen examples...
  8. theoxyde

    SQL Not Utilizing CPUs

    On a lighter note though... more RAM certainly won't hurt, and it's cheap in proportion to the rest of the system. Finding the ins-and-outs of performance issues in database is, unfortunately, a lot more than "get the fastest hardware available".
  9. theoxyde

    Visual Basic .NET or Visual C#

    Quite right! I've never seen a cutting-edge coder with a trendy haircut.
  10. theoxyde

    License Agreement Help

    I think you are probably keeping with the "spirit" of the license anyways, even if not the letter.
  11. theoxyde

    SQL Not Utilizing CPUs

    There are a number of variables there besides simply hard disk configuration. Indexes play a big part in database performance, as well as the arrangement of data on the disk subsystem. An index can have an effect on where data is stored. Small random transactions will naturally be latency...
  12. theoxyde

    Virus wars . . . scary

    I qualified my statement with "may". I agreee with you though. Some probably will, but the vast majority will probably blame the creators of whatever product was exploited.
  13. theoxyde

    Virus wars . . . scary

    On the positive side... a rash of virus outbreaks may cause people to start taking security seriously.
  14. theoxyde

    Visual Basic .NET or Visual C#

    It all depends on context. Sometimes it is easier to design things in VB... sometimes C#. Everybody that works for me has to know both, because we use both. Most of our middle-tier components are designed in C# and most of our GUIs are in VB, but there are exceptions to each of those...
  15. theoxyde

    parse an xml file for a field and create dir

    The XMLTextReader would be your best bet, but your sample isn't valid XML. The :'s in the tags will throw exceptions. If you can get rid of those, then you can use the XML text reader... otherwise you will have to design your own custom parser. Second, you will need an opening and closing...
  16. theoxyde

    SQL Not Utilizing CPUs

    Agreed. The IO subsystem is the likely bottleneck.
  17. theoxyde

    Re-inventing the postage stamp

    Umm... Can I volunteer to handle the money?
  18. theoxyde

    Which service is causing excessive packet transmission on network?

    Port 139 is used by Windows Authentication for file sharing, domain login, and all kinds of other "stuff". Check for activity in shared folders or printers. You may also have an application that is negotiating security as well.
  19. theoxyde

    Design Process for Standalone Developer

    From a former singleton development staff: you just have to pick a strategy and play all the parts yourself. I echo the sentiment that it certainly isn't easy, but it is sometimes necessary.
  20. theoxyde

    ASP.Net Security Question

    That would greatly depend on your setup. Is the IIS server within your control (i.e., not hosted) The best method would be to bring the IIS server behind the firewall and open only the ports needed for IIS and forward them to the specific machine. No sense in leaving a whole server outside...

Part and Inventory Search

Back
Top