Search results for query: *

  1. nodavies

    Web Service won't run when called from aspx

    Hi all, Got another one that is driving me crazy, I've created a Web Service that hits a SQL server database, and runs without a problem. However, when I call it via this aspx all I get is a title. The web service was included with a web reference without a problem - so I'm kinda at a...
  2. nodavies

    Possible IIS Installation Issue

    Thanks Levy - you must live 24/7 on this forum! As with all learning curves I finally figured out what was going on - I used Enterprise Manager to go to the Northwind Database and used the User icon to create a user account for machinename\ASPNET. I ran the Web Service again and it ran without...
  3. nodavies

    Possible IIS Installation Issue

    Ok, something new... Ok, I've got a little further. I unchecked 'Show friendly HTTP error messages' in IE and I received this message... Login failed for user TEST1\ASPNET I figure that somehow there is a ASPNET user that I need to add to a group somewhere to provide access to the SQL...
  4. nodavies

    Possible IIS Installation Issue

    Unfortunately Not Thanks for the try though - I really think it's something to do with the way I have rights [maybe] set up on IIS. The fact that the build looks good and that I'm not throwing an error anywhere leads me to believe that for some reason i don't have the correct "access" for...
  5. nodavies

    Possible IIS Installation Issue

    The code in question... Thanks for the reply LevyUK - this is the code, hopefully it will provide a little more insight... Imports System.Web.Services Imports System.Data.OleDb <WebService(Namespace:="http://tempuri.org/")> _ Public Class AnotherTest Inherits System.Web.Services.WebService...
  6. nodavies

    Possible IIS Installation Issue

    Hi, I've recently installed VS.NET and am having problems with the usage of a certain type of Web Service when running against IIS 5.0. It seems that basic 'Hello World' type services work in the browser without any problems, but when I create a Web Service with data that is pulled from a...
Back
Top