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 Wanet Telecoms Ltd 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: *

  • Users: beefeater267
  • Content: Threads
  • Order by date
  1. beefeater267

    BitField Struct Help

    Hi, I'm new to C++ and am trying to use BITFIELDS. Here's the code i have thus far: typedef unsigned int BITFIELD; typedef struct SelfRegistrationMsg_T { //byte 5 BITFIELD rackID : 8; //byte 6 BITFIELD controllerID : 8; //byte 7 / 8 BITFIELD controllerNetmask : 8; }...
  2. beefeater267

    CRC Implementation Help

    Hi, I'm new to C++, and I need to implement a CRC algorithm as a function, and i'm having trouble doing so. The polynomial specified is : x16 + x15 + x10 + x3 Can anyone help me out with this one? I've been stuck on it for a while. Thanks
  3. beefeater267

    404 Error when requesting .NET page

    Hey, My team just built a fresh server using Win 2003 Server and when i install my .NET web service project from the msi, it installs fine, however when i try to request a page, i get the '404 page not found' error. The page does in fact exist. Even if i goto the directory with browsing...
  4. beefeater267

    ASP.NET 2.0 Async Webservice Calls?

    Hi, I have a VS.NET 2003 project that I am converting to .NET 2.0 / VS.NET 2005. So, basically I have a web service and a web app that consumes the service. So, from VS.NET 2003, I could make calls like: webService.BeginFoo and webService.EndFoo But, when I began porting over my code, I...
  5. beefeater267

    Limit Number of Rows In DataGrid?

    Hey, I am using VS.NET 2003 and have a windows application with a datagrid. So, I want the user to be able to enter data in the rows / columns... however, I need to limit them to a max number of 100 rows they can enter. Any way to do this? Any code sample is appreciated!
  6. beefeater267

    SAXParser Exception : java.net.MalformedURLException: no protocol:

    Hi, I'm kind of new to Java and I'm creating a servlet that does the following: it just needs to parse an XML string. So, I have the following code: SAXParserFactory parserFactory = SAXParserFactory.newInstance(); parserFactory.setValidating(false)...
  7. beefeater267

    create a table that is 100% of screen

    hi, i'm trying to create web app and am having problems laying out a HTML table in the default.aspx page. Can anyone help? basically, i'd like a table the ENTIRE height of the screen (100%) and 725 pixels wide. Essentially, I need the top 80 pixels of the table to say header and the bottom...
  8. beefeater267

    Writing a add-in for Visual Studio Express 2005?

    Hi, Is it possible to write a plugin for Visual C# Express Edition? I'm looking to add a menu item. Thanks for any help.
  9. beefeater267

    Best Practices For Securing IIS ??

    Hi, I recently opened up my web server to the world and checked the logs after 1 hour and saw what looks like security threats. (Random IPs trying to GET wierd files). Does anyone have any best practices tips for securing IIS against attacks?
  10. beefeater267

    How To Get POST Data W/ Servlet?

    Hi, I need to create a JAVA Servlet which just needs to capture HTTP POST data coming from another web application. How do you retrieve HTTP POST data w/ a Java Servlet? For example, support I have a form w/ a text box named 'job'. When the data is posted via HTTP to the servlet, how can i...
  11. beefeater267

    Difference Between J2EE 1.4 and J2SE 5.0

    Hi, I'm new to the Java world and dont know whether to choose J2EE 1.4 or J2SE 5.0 I'm guessing J2SE 5.0 is the newest version.. (1.5). I noticed that 5.0 does not include servlet classes, so I referenced the JAR from tomcat. Are there any other pros / cons for using either one? Thanks alot
  12. beefeater267

    Which webserver For Servlets?

    Hi, I'm looking to create Java Servlets on a Windows XP machine. What web server do I need to do this and where can i get it? I looked at apache, but, was confused as to which version to get . PS.... I have Microsoft IIS on this machine as well..... can the 2 web servers live together...
  13. beefeater267

    Getting Started w/ Java ?

    Hi, I'm from a Microsoft past and am looking to get started w/ Java development. Can anyone point me out in the right direction on what i need to get started? I'm looking at: http://java.sun.com/ and I'm not sure what the difference is between (for example): J2SE 5.0 and J2SE 1.4.2 SDK...
  14. beefeater267

    Run App On Windows Shutdown?

    Hi, Is it possible to run a C# app on the Windows Shutdown event? For example, i want to run my app which will kick off my virus scan before shutdown
  15. beefeater267

    Run ZA Pro 6 From Command Line ?

    Hi, Is it possible to run a spyware scan from the Command Prompt if using ZA Pro 6? Anybody have any idea? Thanks
  16. beefeater267

    Run Scan From Command Line ?

    Hi, I'm using Symantec Corporate Edition v. 10. Is it possible to invoke a scan from the command prompt or from a .bat file, etc? Anybody know if this is possible? If so, how to begin? Thanks. Couldn't find any documentation.
  17. beefeater267

    OOP Structure Help

    Hello, I have some questions regarding how to design this in a proper OO manner. So, I'm designing a win app to perform various tests.... so, i have a baseclass "LoadTest"... and have subclasses : "TestA", "TestB", etc.... So, each test performs the same tasks with variation in the middle as...
  18. beefeater267

    Create FileSystemWatcher at runtime?

    Hi, I need to create a filesystemwatcher at runtime based on entries in XML document. However, it does not seem to work. (The event NEVER fires). Can anyone help me out w/ what is wrong w/ this code? I have a function that does the following code: //loop through our Watcher Nodes...
  19. beefeater267

    Windows Authentication Help

    Hey, I have an intranet web app that I only allow authenticated users in. How come if I specify the URL: http://intranet it lets me in seamlessly, however, if i specify the full address: http://intranet.mydomain.net Note that I am logged into the domain both times from the same...
  20. beefeater267

    Dynamic page location authorization security?

    Hey, My client wants to implement some sort of dynamic location role-based security rule for a web app. Normally, in my web.config, I define the location authorization rules such as: <location path="WebForm.aspx"> <system.web> <authorization><allow roles="Employee" /></authorization>...

Part and Inventory Search

Back
Top