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. johne417

    2003 Server service pack 1

    We rolled it out into development then prod. Had a couple issues: - DCOM security permissions. If nothing was checked before, it's now "requires mutual". Had to change this back to "none" for some of our DCOM stuff to work. - biztalk trusted connections. Our biztalk server communicates...
  2. johne417

    How often to restart 2003 Server

    Just curious as to what the best practices are for how often to restart a 2003 server. I know MS has been getting better... The particular server in question is a good dual-xenon, 4GB RAM database server. It gets hit pretty heavily almost all day long. Weekly restarts, Monthly restarts, or...
  3. johne417

    Cant Explore DNS names

    You can explore to DNS names, correct? Now I'm second-guessing myself. Does anybody know if this is something that you're even supposed to be able to do?
  4. johne417

    Cant Explore DNS names

    No, \\alias.domainname.com\ doesn't work either.
  5. johne417

    Cant Explore DNS names

    I'm on a Windows 2000 network. If I open up Explorer and put a server's actual machine name in the address bar, I can see it fine: \\develdb1 However, if I put in the machine's alias: \\devdbI get the popup error "Windows cannot find \\devdb\. Check the spelling and try again, or try...
  6. johne417

    User Rights Assignment Security Setting

    techsupportgirl, I found my problem. You were correct in assuming that I had set the policy in the wrong place. Actually, multiple places. In addition to setting the rule in the Local Security Settings of each server, I had also logged into one of our Domain Servers and set a Domain Security...
  7. johne417

    How to Prevent Shutdown?

    The Admin Tools -> Local Security Settings -> Local Policies -> User Rights Assignments -> Shut down the system resolved my issue for this forum. Thanks! KenIT - interesting problem. Good luck...
  8. johne417

    User Rights Assignment Security Setting

    I went into Administrative Tools -> Local Security Policy and changed one (Shut down the system) to be only one user allowed to shut down our server (myself). I now need to go back in and add another user to have this access. However, the Add User or Group and Remove buttons are disabled. I...
  9. johne417

    How to Prevent Shutdown?

    We just had someone Term Served into our box who shut it down. Is there any to set up a security setting so that only a certain user can actually shut down a server?
  10. johne417

    Refresh a form

    Simple question from a newbie, please help. I have a form, called frmEditCarriers. The recordsource of this form is a an extremely simple query, Select Name, Address, ID from Carriers. This gives me 500 records (the number in the Carriers table obviously). I start on record 1 and I don't...
  11. johne417

    pattern matching, regular expressions

    Ach, stupid error on my part, figgered it out. Disregard.
  12. johne417

    pattern matching, regular expressions

    This is really odd... <script language="javascript"> function checkCharacter(e) { // \w+ any/repeating word character validString=/\w+/; if (!validString.test(e)) { alert('false'); } else { alert('true'); } } </script> <form action=""...
  13. johne417

    Coding Dynamic Where Clauses

    Um, yeah, I'm new so I'm not sure if this is the right place. If it's not, please let me know. And if this is a dumb question, please be gentle :) The following code in a stored procedure in oracle (simplified version): stored procedure paramaters include a couple of variables passed in...
  14. johne417

    Help with Webservices and XML

    Ah, you were right Carl, the calling page didn't like the structure, and it took a string just fine. I ended up just doin a toString() on the variable and returning that instead of doing the <cfsavecontent>, but I'd guess it works pretty much the same. Thanks a lot for the help.
  15. johne417

    form targets an iframe issue

    Hello. Here's a very shortened, simplified version of my question. I have a form with an iframe in it, and the code is sortof like: <form name=&quot;testForm&quot; action=&quot;www.yahoo.com&quot; target=&quot;myIFrame&quot;> ....... <input type=&quot;hidden&quot; name=&quot;var1&quot...
  16. johne417

    Help with Webservices and XML

    Thanks for the reply Carl. I did have my </cfxml> in production as well. Gotta be more careful retyping stuff... And I don't have a <cfsetting enablecfoutputonly=&quot;yes&quot; ..> in the cfc either. Strange thing is, when I do a IsXMLDoc on the IndividualAccounts variable in the cfc, I...
  17. johne417

    Help with Webservices and XML

    OOPs, I just noticed that while retyping in the post box I missed the / in my close Individual Accounts tag in the XML. It's there in my real code though, problem still there.
  18. johne417

    Help with Webservices and XML

    I'm doing a webservices call and having some troubles. Here's the code in my cfc: <cfcomponent displayName=&quot;Detail of an Individual Account&quot; hint=&quot;Returns the detail of a single individual account&quot; > <cffunction name=&quot;IndividualAccountDetail&quot...
  19. johne417

    determining if xml node exists

    I'm having a problem determining if an XML node exists or not. Under the node of 'Flight', there's a few children. The first child is 'Time'. The second node is 'Date'. The possible third, fourth, and fifth nodes are one of 3 possible things (if they exist): 'Scheduled', 'Actual', or...
  20. johne417

    Problems installing Office XP Web Services Toolkit 2.0

    I'm trying to install the Office XP Web Services Toolkit 2.0 for Office 2000 on a Windows 2000 machine. I carefully read the license agreement, run setup.exe, and get the error message &quot;There was a problem with this Windows Installer package. A program run as part of the setup did not...

Part and Inventory Search

Back
Top