---
sourceDocument: 호주 API 참조
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/api-reference

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 API 참조

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# 암호화되지 않은 SSO ASP.NET

# 암호화되지 않은 1회 사용자 인증(SSO)에 대한 샘플 ASP 스크립트 {#ariaid-title1}

* 릴리스 버전: Australia
* 
* 업데이트 날짜 2026년 03월 12일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 2분

이 샘플 ASP.NET 코드는 간단한 인증 포털을 만들고 암호화되지 않은 HTTP 헤더를 URL 매개 변수로 전달합니다.  
이 샘플에서는 다음을 가정합니다.

* 웹 서버는 ASP.NET 지원합니다.
* 대상 인스턴스는 `https://<instance name>.service-now.com/` 입니다.
* SiteMinder 또는 다른 1회 사용자 인증(SSO) 애플리케이션이 사용자를 사전 인증했습니다.
* 대상 인스턴스에는 SM_USER의 HTTP 헤더가 필요합니다.
{#c_SampleASPScriptUnencryptedSSO__ul_vkf_gs1_3p}  
ASP 코드를 변경하여 사용자를 적절한 인스턴스로 리디렉션하고 적절한 HTTP 헤더를 만듭니다.

    <html xmlns = "http://www.w3.org/1999/xhtml" > <head  runat = "server" > <title >Portal Page Login </ title > <%--    <meta http-equiv = "REFRESH" content = "0;url=https://<instance name>.service-now.com/">--%>
     
         <script  runat = "server" >
     
            public void go_to(object sender, EventArgs e)
            {
                ////Send URL parameters
                String URL = urlBox.Text + "?SM_USER=" + userNameBox.Text;
                Response.Redirect(URL);
            }
         </ script >  
     

      </ head > <body > <form id = "form1"  runat = "server" > <h2 >< b > Portal Page Login  </ b >< / h2 > <hr style = "position: static" / > <br / > <asp:Label ID = "Label2"  runat = "server"  Font- Size = "Larger" Height = "21px" Style = "position: static"Text = "Instance URL:" Width = "113px" >< / asp:Label> <asp:TextBox ID = "urlBox"  runat = "server"  Font- Size = "Large" Style = "position: static" >< / asp:TextBox> <br / > <br / > <asp:Label ID = "Label1"  runat = "server"  Font- Size = "Larger" Height = "17px" Style = "position: static;"Text = "User Id:" Width = "113px" >< / asp:Label> <asp:TextBox ID = "userNameBox"  runat = "server"  Font- Size = "Large" Style = "position: static;" >< / asp:TextBox> <br / > <br / > <asp:Button ID = "Button1"  runat = "server" Height = "39px" Style = "position: static;" Text = "Ok"Width = "88px" OnClick = "go_to" / > </ form > </ body > </ html >


