Click here to Skip to main content
16,011,905 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: change 'position' attribute of HTML element Pin
Paul Watson17-Jun-03 23:58
sitebuilderPaul Watson17-Jun-03 23:58 
Generalc-shell script - parameter passing.. Pin
Anonymous14-Jun-03 15:40
Anonymous14-Jun-03 15:40 
GeneralRe: c-shell script - parameter passing.. Pin
markkuk16-Jun-03 9:25
markkuk16-Jun-03 9:25 
Questioncomponet for INTERNET EXPLORER programming in .NET? Pin
Asim N.13-Jun-03 3:06
Asim N.13-Jun-03 3:06 
GeneralExecution w/ WebServices Pin
Tim Rymer12-Jun-03 12:32
Tim Rymer12-Jun-03 12:32 
GeneralRe: Execution w/ WebServices Pin
Rocky Moore16-Jun-03 0:25
Rocky Moore16-Jun-03 0:25 
GeneralRe: Execution w/ WebServices Pin
Tim Rymer17-Jun-03 10:57
Tim Rymer17-Jun-03 10:57 
GeneralRe: Execution w/ WebServices Pin
Rocky Moore17-Jun-03 23:29
Rocky Moore17-Jun-03 23:29 
When I had some problems using authentication in web services I used this simple web method to see exactly what credentials were being used:

[WebMethod]
public string TestMethod()
{
  string r="WID:"+WindowsIdentity.GetCurrent().Name+"\r\n";
  r=r+"WType:"+WindowsIdentity.GetCurrent().AuthenticationType+"\r\n";
  r=r+"AUTH:"+WindowsIdentity.GetCurrent().IsAuthenticated.ToString()+"\r\n";
  return(r);
}

As you can see, it simply builds a string and returns it from the web service. You can of course just pump to to a debug long or set a break at that point.

The very first step I ever use to determine if I even have an authentication problem, is to give the directory that I will use (or whereeve) the user Everyone and assign full permissions. If it still do not work, it usually is some other kind of problem.

Rocky Moore <><
GeneralRe: Execution w/ WebServices Pin
Tim Rymer18-Jun-03 4:12
Tim Rymer18-Jun-03 4:12 
Questionhow to create a count down time for online quiz? Pin
siong12-Jun-03 0:11
siong12-Jun-03 0:11 
AnswerRe: how to create a count down time for online quiz? Pin
basementman12-Jun-03 6:58
basementman12-Jun-03 6:58 
GeneralDropDown Lists, Javascript and Netscape4 Pin
julcla11-Jun-03 20:14
julcla11-Jun-03 20:14 
GeneralRe: DropDown Lists, Javascript and Netscape4 Pin
julcla11-Jun-03 23:44
julcla11-Jun-03 23:44 
Generalquick question... Pin
CherezZaboro11-Jun-03 9:46
CherezZaboro11-Jun-03 9:46 
GeneralRe: quick question... Pin
Paul Watson11-Jun-03 10:08
sitebuilderPaul Watson11-Jun-03 10:08 
QuestionICON ON TITLE??? Pin
Anonymous11-Jun-03 5:41
Anonymous11-Jun-03 5:41 
AnswerRe: ICON ON TITLE??? Pin
Paul Watson11-Jun-03 10:26
sitebuilderPaul Watson11-Jun-03 10:26 
GeneralRe: ICON ON TITLE??? Pin
Anonymous12-Jun-03 5:13
Anonymous12-Jun-03 5:13 
GeneralRe: ICON ON TITLE??? Pin
Paul Watson12-Jun-03 5:41
sitebuilderPaul Watson12-Jun-03 5:41 
GeneralRe: ICON ON TITLE??? Pin
Anonymous12-Jun-03 6:19
Anonymous12-Jun-03 6:19 
GeneralMulticast mp3's Pin
Uncle Monkey11-Jun-03 0:59
Uncle Monkey11-Jun-03 0:59 
GeneralRe: Multicast mp3's Pin
Uncle Monkey18-Jun-03 1:19
Uncle Monkey18-Jun-03 1:19 
GeneralDedicated .NET Hosting w/ SQL Server Pin
Mark Sanders10-Jun-03 10:52
Mark Sanders10-Jun-03 10:52 
GeneralRe: Dedicated .NET Hosting w/ SQL Server Pin
Roger Wright10-Jun-03 13:31
professionalRoger Wright10-Jun-03 13:31 
GeneralRe: Dedicated .NET Hosting w/ SQL Server Pin
Nino_114-Jun-03 5:03
Nino_114-Jun-03 5:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.