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 SkipVought 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. zaichik

    Weird problems in .NET 2003

    >> Well, a valid C program is a valid C++ program, as far as the compiler is concerned. > No it isn't. >http://david.tribble.com/text/cdiffs.htm Touche...Most of them are, though--provided the C program is not using a handful of C++-only keywords as identifiers. >There are many perfectly...
  2. zaichik

    Weird problems in .NET 2003

    Well, a valid C program is a valid C++ program, as far as the compiler is concerned. If you write a complete C program, a C++ compiler will compile it just fine. It's when you try to slip C++ into a C program that you get the problems. .NET is supposed to be "multilingual", so it (I assume)...
  3. zaichik

    open() then close() crash

    From the man page on close: It is quite possible that errors on a previous write(2) operation are first reported at the final close. It seems stange that it would complain about free()'ing an invalid pointer if the actual problem had been created with a previous write operation, though...
  4. zaichik

    segfault in malloc_consolidate ??

    Hi all, Thanks for the ideas. >Why do you need to create the connection in each iteration? Can't you do it just once outside the loop? There is a chance on any given iteration that the connection would not be needed, and I did not want to connect unnecessarily. >I see lots of free() calls...
  5. zaichik

    open() then close() crash

    What you have looks correct, so there must be something that you have not included that is causing the error. Some questions: 1. Does this happen for any file, or just a specific file? 2. When you "do stuff", is the stuff getting done properly? 3. After the program terminates, is the file...
  6. zaichik

    segfault in malloc_consolidate ??

    I have no idead where to go from here. I have a line in a program that is generating a segfault. The line that generates this error is trying to open a connection to mysql on the localhost. This connection has been successfully opened before; in fact, this is the second time through the loop...
  7. zaichik

    Help on XSL

    Hi Jel, Excellent, excellent, excellent! Now, if I wanted to modify the DisplayFields template so that not all nodes were displayed, but just (for example) the address fields, how would I modify the template? <xsl:template name ="DisplayFields"> <xsl:for-each select="*[position()!=1]">...
  8. zaichik

    Help on XSL

    Hi Jel, Thanks for your reply. Yes, the XSL doc is a template I grabbed that is similar but different. It will need some adjusting, like removing the billTo_rec (which is not in my XML) and renaming some stuff so that nodes that I do have get displayed. Essentially, for each invoice, I want...
  9. zaichik

    Help on XSL

    Hi, I am trying to transform some XML data using XSL. Essentially I have a bunch of invoices encoded in XML and I want to display them all in a browser. I need to convert an XSL sheet that is geared to display one invoice (with a slightly different data set) to display many invoices. Here is...
  10. zaichik

    win2003 design question

    I agree with BigOrange. Domains are essentially a security boundary and have nothing to do with the number of users. They are also not dependent on location. As to control of network traffic, you can use your site design to help with that. Finally, OUs can be used for logical grouping...
  11. zaichik

    Migrate from NT to 2000 Server

    Hi Jute, I think, in keeping with PCS's advice, that I would do a fresh install and recreate accounts if we are only talking about 25. While I have never had issues with an NT-to-2000 upgrade, I have heard of them (which is why I fully recommend taking a BDC off-line, just in case). Actually...
  12. zaichik

    Migrate from NT to 2000 Server

    Hi JDK, Here is what I suggest: 1. Install NT 4.0 on the new server. Join it to the domain, and when you are sure everything is good, promote it to PDC. 2. Take the BDC off-line. If something goes wrong, you can promote this BDC to PDC to restore your NT domain. 3. Upgrade the new PDC...
  13. zaichik

    Search Button for a database ..

    The only thing that leaps out at me is that if your field name has a space in it, you must enclose it in brackets, like this: [Persal No]. But yes, what is the exact problem? Regards, z.
  14. zaichik

    Administrator Permissions - Best Practice

    I used to have my regular user account in the Domain Admins group. I hate to admit it, but I would on occasion wander off and fail to lock the workstation I was at or log off. After the third time, I removed myself from the admin group and just use run-as when I need to do so. Regards, z.
  15. zaichik

    Allow ICQ behind Proxy Server 2.0

    Hi all, Got a problem. I used to run Proxy 2.0 on an NT Server box w/ one external NIC 24.x.x.x and one internal NIC 10.x.x.x. ICQ could get through the proxy just fine after I tweaked the protocol definition in Winsock a bit. I recently replaced the system with a new machine running Windows...
  16. zaichik

    MSN / Yahoo behind MS Proxy 2.0

    Hi Chirag, You should set up a protocol in Winsock for Yahoo and MSN , and then restrict access to those users you want to allow to use it. Regards, z.
  17. zaichik

    Shut off services

    Hi Doug, NT does have a task scheduler. I haven't used it in a while, but if memory serves me, if you just open &quot;My Computer&quot; you'll see a folder called Scheduled Tasks. If you open that, you will see something like &quot;Create new task&quot; that is the Scheduling Wizard. Let me...
  18. zaichik

    Shut off services

    Hi Doug, With Proxy Server 2.0, you could write a simple batch file using remotmsp: remotmsp STOP -SERVICE:WSP remotmsp STOP -SERVICE:WP and then use Task Scheduler to run the batch file when needed. To turn it back on: remotmsp START -SERVICE:WSP remotmsp START -SERVICE:WP but I bet you...
  19. zaichik

    Need help with Access Control List

    Hey T, If you are using only NT Challenge/Response, then make sure that the proper NTFS permissions are set on the intranet's directories (just like you would normally, not from Internet Services Manager). It sounds like you would want to give the Authenticated Users group the permissions Read...
  20. zaichik

    Need help with Access Control List

    Hi, Generally...Web Proxy takes care of access to web sites, and WinSock takes care of everything else (SSL, IM, mail, etc.). If you want all your users to have unlimited Internet/FTP access, then you can disable access control in Web Proxy and that should eliminate the need for them to enter...

Part and Inventory Search

Back
Top