Microsoft MVP성태의 닷넷 이야기
.NET Framework: 206. XML/XSD - 외래키처럼 참조 제한 거는 방법 [링크 복사], [링크+제목 복사],
조회: 25377
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)
XML/XSD - 외래키처럼 참조 제한 거는 방법

DB처럼, XML 노드 사이에서 primary/foreign key와 같은 제약 사항을 거는 방법에 대해서 기록을 남겨봅니다. 사실, xs:key/xs:keyref가 그러한 역할을 하는데, 네임스페이스 여부에 따라 주의해야 할 사항이 있더군요.

아래의 MSDN 웹 사이트의 내용으로 한번 시작해 볼까요?

Understanding the Interrelationship between Constraints and Relationships
; https://docs.microsoft.com/en-us/previous-versions/dotnet/netframework-1.1/5z124f36(v=vs.71)

위에서 소개된 XSD 예제대로 간단하게 다음과 같이 XSD를 만들고,

==== test.xsd ====

<xs:schema id="Root" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:element name="Root">        
         <xs:complexType>            
             <xs:sequence>                
                 <xs:element name="PKItem" minOccurs="0" maxOccurs="unbounded">                    
                     <xs:complexType>                        
                         <xs:attribute name="id" use="required" type="xs:string" />                    
                     </xs:complexType>                
                 </xs:element>                
                 <xs:element name="FKItem" minOccurs="0" maxOccurs="unbounded">                    
                     <xs:complexType>                        
                         <xs:attribute name="id" use="required" type="xs:string" />                    
                     </xs:complexType>                
                 </xs:element>            
             </xs:sequence>        
         </xs:complexType>
     
         <xs:key name="ID">   
             <xs:selector xpath="./PKItem" />
             <xs:field xpath="@id" />
         </xs:key>
         <xs:keyref name="IDREF" refer="ID"> 
             <xs:selector xpath="./FKItem" />    
             <xs:field xpath="@id" />
         </xs:keyref>
    </xs:element>
    
</xs:schema>

그다음, XML을 일부러 참조값 하나를 틀리게 만들어 줍니다.

==== test.xml ====

<?xml version="1.0"?>

<Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">   
 <PKItem id="1" /> 
 <PKItem id="4" />   
    
 <FKItem id="1" /> 
 <FKItem id="5" />
</Root>

이제 유효성 확인을 하는 코드를 제작해도 되지만, 간단하게 Visual Studio 2010에서 test.xsd, test.xml을 로드해서 확인하는 것도 가능합니다. 2개의 파일을 로드한 다음 "XML" / "Schemas" 메뉴를 선택하고 아래와 같이 test.xsd를 명시적으로 유효성 확인에 사용할 스키마로 지정해 주면 줍니다. (대개의 경우, 로드되어 있는 xsd 파일이 선택되어져 있긴 합니다.)

xsd_key_keyref_1.png

그럼, 곧바로 다음과 같이 파란색의 물결 무늬로 유효성에 문제가 있음을 알 수 있게 되고, 마우스로 가져가면 그 원인을 파악할 수 있습니다.

xsd_key_keyref_2.png

"The key sequence '5' in Keyref fails to refer to some key."





이번에는 XML에 네임스페이스를 추가시켜 볼까요?

<?xml version="1.0"?>

<Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="https://www.sysnet.pe.kr/test.xsd">   
 <PKItem id="1" /> 
...[생략]...
</Root>

그럼, XSD에도 네임스페이스를 동일하게 추가시켜 주어야 합니다.

<xs:schema id="Root" elementFormDefault="qualified"
           xmlns="https://www.sysnet.pe.kr/test.xsd"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:element name="Root">        
         ...[생략]...
    </xs:element>
    
</xs:schema>

어찌된 일인지, 위와 같이만 해주면 더 이상의 참조 관계 제약에 대한 체크가 되지 않습니다. 이 문제 해결하느라 ^^; 시간이 좀 흘렀는데요. 답을 다음의 글에서 발견할 수 있었습니다.

XSD key/keyref beginner question
; http://stackoverflow.com/questions/2015059/xsd-key-keyref-beginner-question

그리하여 해결책은, key/keyref에 지정하는 selector/@xpath의 경로에도 동일하게 네임스페이스를 지정해 주어야 한다는 것! 따라서 XSD의 key/keyref를 다음과 같이 변경해 주어야 합니다.

<xs:schema id="Root" elementFormDefault="qualified"
           xmlns:my="https://www.sysnet.pe.kr/test.xsd"
           xmlns="https://www.sysnet.pe.kr/test.xsd"
           targetNamespace="https://www.sysnet.pe.kr/test.xsd"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:element name="Root">        
        ...[생략]...
     
         <xs:key name="ID">   
             <xs:selector xpath="./my:PKItem" />
             <xs:field xpath="@id" />
         </xs:key>
         <xs:keyref name="IDREF" refer="ID"> 
             <xs:selector xpath="./my:FKItem" />    
             <xs:field xpath="@id" />
         </xs:keyref>
    </xs:element>
    
</xs:schema>

첨부한 파일은 위의 테스트 XSD/XML 파일과 유효성 체크를 하는 C# 콘솔 프로그램 소스 코드를 포함합니다.



[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 7/17/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 151  152  153  154  155  156  157  158  159  160  161  162  163  164  [165]  ...
NoWriterDateCnt.TitleFile(s)
916정성태8/25/201021096개발 환경 구성: 85. 가상 네트워크에 LAN 어댑터 보이거나 감추는 방법
915정성태8/24/201039253개발 환경 구성: 84. Hyper-V의 네트워크 유형 (2)
913정성태8/22/201028328오류 유형: 104. Hyper-V 관리자 - VM 생성 오류 (VHD 생성 오류)
912정성태8/20/201030231.NET Framework: 183. 구조체 포인터 인자에 대한 P/Invoke 정의파일 다운로드1
911정성태8/19/201027112오류 유형: 103. System.Reflection.TargetException파일 다운로드1
910정성태8/19/201037904개발 환경 구성: 83. Hyper-V의 네트워크 유형 (1)
909정성태8/18/201033316오류 유형: 102. System.MissingMethodException
908정성태8/17/201024302개발 환경 구성: 82. Windows Virtual PC의 네트워크 유형 (3)
907정성태8/14/201021806개발 환경 구성: 81. Windows Virtual PC의 네트워크 유형 (2)
906정성태8/13/201030734개발 환경 구성: 80. Windows Virtual PC의 네트워크 유형 (1)
905정성태8/8/201032893Team Foundation Server: 39. 배치 파일로 팀 빌드 구성 [2]파일 다운로드1
904정성태8/8/201035614오류 유형: 101. SignTool Error: No certificates were found that met all the given criteria. [2]
903정성태8/6/201032504Team Foundation Server: 38. TFS 소스 코드 관리 기능 (4) - Branch
902정성태8/5/201024850Team Foundation Server: 37. TFS 2010의 소스 서버 수작업 구성
901정성태8/4/201024115Team Foundation Server: 36. TFS 소스 코드 관리 기능 (3) - Label
900정성태8/3/201026756Team Foundation Server: 35. TFS 소스 코드 관리 기능 (2) - Shelveset
899정성태8/2/201028836Team Foundation Server: 34. TFS 소스 코드 관리 기능 (1) - Changeset
898정성태7/31/201028358.NET Framework: 182. WCF의 InactivityTimeout [1]파일 다운로드1
897정성태7/26/201129563.NET Framework: 181. AssemblyVersion, AssemblyFileVersion, AssemblyInformationalVersion [4]
896정성태7/25/201036345.NET Framework: 180. C# Singleton 인스턴스 생성 [2]
895정성태7/25/201020204VS.NET IDE: 68. Visual Studio 2010 - .NET 1.1 원격 디버깅
894정성태7/25/201026144오류 유형: 100. Could not find the Database Engine startup handle. [1]
893정성태7/25/201027256오류 유형: 99. .NET 4.0 설치된 윈도우 7에서 SQL Server 2008 R2 설치 오류
892정성태7/9/201029041오류 유형: 98. 영문 윈도우에 한글 SQL Server 2008 R2 설치할 때 오류 [4]
891정성태7/8/201024861오류 유형: 97. MsiGetProductInfo failed to retrieve ProductVersion for package with Product Code = '{...}'. Error code: 1605. [2]
889정성태7/5/201026555.NET Framework: 179. Dictionary.Get(A) 대신 Dictionary.Get(A.GetHashCode())를 사용해서는 안 되는 이유 [1]
... 151  152  153  154  155  156  157  158  159  160  161  162  163  164  [165]  ...