Ermittlung der Default-Notrufzentrale

Ein LoST Server kann ein Default-Mapping zurückliefern, wenn der Request eine ungültige Standortinformation enthält. Wenn ein Client aber keine Standortinformation hat, aber den LoST Server ermitteln konnte, wie kann dann das Default-Mapping bezogen werden (ein Request an den LoST Server muss Standortinformation enthalten)?

Allerdings kann bei Verwendung des Profils „civic” einfach kein CAType (Civic Address Type) angegeben werden. Der Request würde folgendermaßen aussehen:

   <?xml version="1.0" encoding="UTF-8"?>
   <findService xmlns="urn:ietf:params:xml:ns:lost1"
     recursive="true" serviceBoundary="reference">
     <location id="abc" profile="civic">
       <civicAddress
         xmlns="urn:ietf:params:xml:ns:pidf:geopriv10:civicAddr">
       </civicAddress>
     </location>
     <service>urn:service:sos.police</service>
   </findService>

Also ein findService-Request ohne eigentliche Standortinformation.

Die Antwort könnte folgendermaßen aussehen:

    <?xml version="1.0" encoding="UTF-8"?>
    <findServiceResponse xmlns="urn:ietf:params:xml:ns:lost1"
      xmlns:p2="http://www.opengis.net/">
      <mapping
        expires="2007-01-01T01:44:33Z"
        lastUpdated="2006-11-01T01:00:00Z"
        source="authoritative.example"
        sourceId="fb8ed888433343b7b27865aeb38f3a99">
        <displayName xml:lang="en">
          New York City Police Department
        </displayName>
        <service>urn:service:sos.police</service>
       <serviceBoundaryReference
         source="authoritative.example"
         key="7214148E0433AFE2FA2D48003D31172E"/>
        <uri>sip:nypd@example.com</uri>
        <serviceNumber>911</serviceNumber>
      </mapping>
      <warnings source="authoritative.example">
        <defaultMappingReturned
            message="using default PSAP"
            xml:lang="en"/>
      </warnings>
      <path>
        <via source="resolver.example"/>
        <via source="authoritative.example"/>
      </path>
    </findServiceResponse>

Diese Antwort enthält eine Warnung, dass das Default-Mapping zurückgeliefert wurde.

Einen Client ohne jegliche Standortinformation könnte zumindest bei der Default-Notrufzentrale anrufen und ist nicht ganz verloren.

0 Responses to “Ermittlung der Default-Notrufzentrale”


Comments are currently closed.