---
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


---

# 업데이트

# Java Apache Axis2 웹 서비스 클라이언트 예제 업데이트 {#ariaid-title1}

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

getKeys 함수를 호출하여 범주가 하드웨어인 모든 인시던트를 쿼리하는 Axis 클라이언트 프로그램의 예입니다.

## getKeys {#c_JAAWbSrvcsClntExUpdt__getKeys}

결과로 `sys_id` 목록이 반환됩니다.

    package com.service_now.www ;
     
     public class DemoClient  {
     
      public static void main ( String args [ ] ) { try {
       ServiceNowStub proxy  = new ServiceNowStub ( ) ;
       ServiceNowStub. GetKeys getInc  = new ServiceNowStub. GetKeys ( ) ;
       ServiceNowStub. GetKeysResponse resp  = new ServiceNowStub. GetKeysResponse ( ) ;
     
       getInc. setActive ( true ) ;
       getInc. setCategory ( "hardware" ) ;
     
       proxy._getServiceClient ( ). getOptions ( ). setProperty (org. apache. axis2. transport. http. HTTPConstants. CHUNKED,  Boolean. FALSE ) ;
     
       resp  = proxy. getKeys (getInc ) ;
     
        String [ ] keys  = resp. getSys_id ( ) ;
     
        System. out. println ( "Key: " + keys [ 0 ] ) ; } catch ( Exception e ) { System. out. println (e. toString ( ) ) ; }
     
      } }

## get기록 {#c_JAAWbSrvcsClntExUpdt__getRecords}

    package com.service_now.www ;
     
     import com.service_now.www.ServiceNowStub.GetRecordsResult_type0 ;
     
     public class GetRecords  {
     
     /**
    * @param args
    */ public static void main ( String [ ] args ) { try {
      ServiceNowStub proxy  = new ServiceNowStub ( ) ;
      ServiceNowStub. GetRecords incidents  = new ServiceNowStub. GetRecords ( ) ;
      ServiceNowStub. GetRecordsResponse result  = new ServiceNowStub. GetRecordsResponse ( ) ;
     
      incidents. setActive ( true ) ;
      incidents. setCategory ( "hardware" ) ;
      incidents. setSys_created_on ( "> 2009-06-08 10:30:00" ) ;
     
      proxy._getServiceClient ( ). getOptions ( ). setProperty (org. apache. axis2. transport. http. HTTPConstants. CHUNKED,  Boolean. FALSE ) ;
     
      result  = proxy. getRecords (incidents ) ;
     
      GetRecordsResult_type0 [ ] keys  = result. getGetRecordsResult ( ) ;
     
       for ( int key  = 0 ; key  < keys. length ; key ++ ) { System. out. println ( "Key: " + keys [ 0 ]. getSys_id ( ) ) ; } } catch ( Exception e ) { System. out. println (e. toString ( ) ) ; }
     
     
     }
     
     }


