HTML, JavaScript And CSS Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingHTML, JavaScript And CSS Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old December 9th, 2003, 06:17 PM
jeffrey.sweeney jeffrey.sweeney is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 2 jeffrey.sweeney User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Retrieving network authentication information - ASP/jscript

I am tryign to pull a user's network UserID to use to authenticate against an MS SQL server. I can hardcode the information in so I know that I can actually accomplish the task. My problem is stripping away the domain information. Here is what I have.

jscript function (my problem)

<script language="JavaScript">
function fnGetUserID(sUserID)
{
sUserID = Trim(sUserID);
var iPos = IndexOf(sUserID,"/");
sUserID = sUserID.SubStr(iPos+1);
return sUserID;
}

I beleive the reason this fails is because SubStr expects a string object and I am passing a string data type. Or so goes teh theory.

I'm sure this is something really easy and will make many of you just laugh at my inferior knowledge ... your assistance is appreciated.

Reply With Quote
  #2  
Old January 7th, 2004, 12:50 AM
shamrog12's Avatar
shamrog12 shamrog12 is offline
Newton's Apple Wizard
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Location: Los Angeles
Posts: 1,662 shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Weeks 2 Days 2 h 43 m 24 sec
Reputation Power: 55
Send a message via AIM to shamrog12
well for one, substr() takes two parameters 1) where to start and 2) how many characters the string will be. I think the logic between

var iPos = IndexOf(sUserID,"/");
sUserID = sUserID.SubStr(iPos+1);

...is incorrect. How many characters is the sUserID supposed to be and do you expect the "/" to be in front of behind the target id? Can you give an example of a value you think could be passed into this function? I can help if I see what you start with and have an idea of what you want at the end.

Reply With Quote
  #3  
Old January 7th, 2004, 07:04 AM
jeffrey.sweeney jeffrey.sweeney is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 2 jeffrey.sweeney User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
domain/userID where userID is an individuals network login - first initial+up to first 6 of lastname. Unfortunately some folks have small last names so there is not strict 7 character rule.

Reply With Quote
  #4  
Old January 9th, 2004, 01:10 AM
shamrog12's Avatar
shamrog12 shamrog12 is offline
Newton's Apple Wizard
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Location: Los Angeles
Posts: 1,662 shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Weeks 2 Days 2 h 43 m 24 sec
Reputation Power: 55
Send a message via AIM to shamrog12
this should work for you

Code:
<script language="JavaScript"> 
function fnGetUserID(sUserID) 
{
sUserID = sUserID.toString();
var iPos = sUserID.indexOf("/");
sUserID = sUserID.substring(iPos+1,sUserID.length);
return sUserID;
//document.write(sUserID);
}
</script>

Reply With Quote
  #5  
Old January 9th, 2004, 01:12 AM
shamrog12's Avatar
shamrog12 shamrog12 is offline
Newton's Apple Wizard
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Location: Los Angeles
Posts: 1,662 shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level)shamrog12 User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Weeks 2 Days 2 h 43 m 24 sec
Reputation Power: 55
Send a message via AIM to shamrog12
i commented out the document.write() on purpose. If you uncomment it then you can see the product of the code displayed on the screen

Reply With Quote
  #6  
Old February 3rd, 2004, 10:16 AM
Zaphod19 Zaphod19 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 1 Zaphod19 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Use SPLIT to separate domain\username

ArUserInfo=sUserID.split(/\\/);

alert("Domain: "+ArUserInfo[1]+" User: "+ArUserInfo[0]);

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingHTML, JavaScript And CSS Help > Retrieving network authentication information - ASP/jscript


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 10 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek