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 bkrike 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: anonim1
  • Content: Threads
  • Order by date
  1. anonim1

    5.7.1 Error Sending to a Distribution List

    When an external user sends mail to an internal distribution list to which he has access, he receives the following error: Your message did not reach some or all of the intended recipients. Subject: RE: Distribution List Sent: 9/8/2008 6:48 PM The following recipient(s) could...
  2. anonim1

    Mobile Domain Controller?

    I am part of a traveling course which sets up a wireless network on site and provides students with about a dozen laptops to access a web-based application on a laptop-server in the local network. In order to facilitate performing upgrades and other maintenance on the laptops, I would like to...
  3. anonim1

    WSS 3.0 Coexistence with Web Application

    I have a web application that runs on port 80. I just installed WSS 3.0, and it installed itself as a new web app, also on port 80. I would like to have the two applications coexist on the same server, same IP address, and same port (80). Is this possible? The only documentation I've been able...
  4. anonim1

    Query to get record count

    Below is a snippet of a table I want to query (sorted by user_id, choice, type): id user type choice 1 12345 1 1 2 12345 2 2 3 12345 1 4 4 12345 2 4 5 12345 2 6 6 12345 1 9 7 12345 2 9 8 12345 1 11 9 12345 1 13 10 12345 2 13 11 67890 1 1 12 67890 2 1 13 67890...
  5. anonim1

    Web.config Inheritance

    I have a standalone web application that runs in a subdirectory of the base web application. By design, the sub-application inherits settings from the web.config file of the parent application. This then throws errors, because the sub-application does not use some of these settings, such as...
  6. anonim1

    Application Not Running Under ASPNET

    I'm running an ASP.NET web application on a Windows 2003 box. For some reason, the application does not run under the ASPNET user context. In the Event Viewer, I see: Logon attempt using explicit credentials: User Name: NETWORK SERVICE Domain: NT AUTHORITY User whose credentials were...
  7. anonim1

    Creating A "Virtual" Page

    I don't know the official term for what I'm trying to create, but this is what I want to do: I have a webform which will display detailed information about a university course (title, instructor, description, etc.). This webform will be databound to a database of courses. The way I know how to...
  8. anonim1

    Incorrect syntax near the keyword 'CASE'

    I'm trying to return a specific output value based on a given input value. However, I can't get the CASE statement to work.. What am I doing wrong? CREATE FUNCTION ConvertId(@id as tinyint) RETURNS tinyint AS BEGIN DECLARE @newId AS tinyint SET @newId = @id CASE @newId WHEN 1 THEN 72...
  9. anonim1

    Default value from stored procedure

    I have a stored procedure named GenerateRandomString, which takes an output parameter and returns a random string of set length. I have a table in my database where I would like to automatically insert the string returned by the stored procedure as a default value for one of the columns of the...
  10. anonim1

    Web App. Writing to Custom Event Log

    I've tried unsuccessfully for the past two days to get my web application to write to a custom event log. I can write to the log if I create a console app. and run it as an Administrator, but it doesn't work from inside a web application. I have impersonation=true, so everything is running...
  11. anonim1

    Question about "using" and Exceptions

    I have the following bit of code: using(DataSet ds = db.ExecuteDataSet(cmd)) { // Return the DataTable return ds.Tables[0]; } I know that creating an instance in a using statement will ensure that Dispose is called on the object when the using statement is exited. However, I'm confused as to...
  12. anonim1

    Entry Point Not Found - Kernel32.dll

    I've been unable to listen to or watch any audio/video files through Windows Media Player 10. I always get the error "C00D1199: Cannot play the file." I've tried all types of files, including MPEG, AVI, WMV, MP3, and even WAV. So I downloaded WMP10 from Microsoft and performed a reinstall. At...
  13. anonim1

    User Permissions: db_datawriter

    I am using ASP.NET pages with a MSSQL back-end server. I've set everything up so that the ASP.NET pages use integrated authentication for the IUSR_machine account, and I've created this account under SQL Enterprise Manager. Everything works when it comes to the web application reading data from...
  14. anonim1

    Public Folders: Service Unavailable

    I had public folders working fine both through Outlook 2003 and OWA for some time. However, I just noticed today that users who try to access the PF through OWA get the error message "503 Service Unavailable". They can still access the PF through Outlook. I went into Exchange Service Manager ->...
  15. anonim1

    Visual Studio: Data Connection Login Failed

    I've created a local user account on a Windows 2003 Server machine. I've then added a login for this user through Enterprise Manager (MSSQL runs on the same server) and gave them access to a database. When I try to Add Connection to the Data Connections item under Server Explorer in VS2003, I...
  16. anonim1

    Function w/ Multiple (x) Parameters

    I have an ASP.NET application with many pages. A lot of the pages make calls to a MSSQL database to retrieve data. On each page, I have functions that connect to the DB, execute a T-SQL statement or stored procedure, and return values, etc. I want to avoid having to re-write a lot of the same...
  17. anonim1

    Triggers - Access Another Database

    I have two databases, and I have created three triggers for INSERT, DELETE, and UPDATE. Basically, anytime a record is inserted, deleted, or updated from the database where I have the trigger, the trigger makes this change in another database. Here is the code for INSERT: CREATE TRIGGER...
  18. anonim1

    Group Permissions to a Public Folder

    I am having a hard time assigning group permissions to a public folder. I use ESM to pull up the Properties of a public folder. I then click the Permissions tab and then Client permissions. After clicking Add on the next box, I am presented with a view of users in the Global Address List. Even...
  19. anonim1

    Adding MX Record to DNS

    I have a single-server implementation of Exchange server on a Windows 2003 machine. I can send e-mails to external hosts just fine, and I assume I can send and receive messages inside the domain as well. However, I cannot receive messages from external addresses. I can telnet to the Exchange...
  20. anonim1

    New Exchange Install, Errors at Shutdown

    I've just completed a fresh install of Exchange Server 2003 on a Windows 2003 SP1 Server. This machine is also serving as the DC and DNS server in my home network (there is one other PC). 10 users will eventually be using RPC over HTTP(S) to connect to this box remotely from their Outlook 2003...

Part and Inventory Search

Back
Top