저는 Open Network Video Interface Forum-Java 프로젝트에서 작업하고 있으며 ONVIF Application Programmer 's Guide에 설명 된 단계를 따릅니다 .
wsdls
ONVIF 사이트에 제공된 소스를 생성했습니다 . .NET Framework를 사용하여 라이브 스트림 URI를 검색 할 수 media.wsdl
있습니다. 이제 녹음에 문제가 있습니다. 내가 시도한 코드는 다음과 같습니다.
RecordingService recording_ervice = new RecordingService();
RecordingPort record_port = recording_ervice.getRecordingPort();
BindingProvider bindingProvider = (BindingProvider) record_port;
// Add a security handler for the credentials
final Binding binding = bindingProvider.getBinding();
List<Handler> handlerList = binding.getHandlerChain();
if (handlerList == null) {
handlerList = new ArrayList<Handler>();
}
handlerList.add(new RecordStream.SecurityHandler());
// binding.setHandlerChain(handlerList);
// Set the actual web services address instead of the mock service
Map<String, Object> requestContext = bindingProvider.getRequestContext();
requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://" + deviceip + "/onvif/media_service");
requestContext.put(BindingProvider.USERNAME_PROPERTY, user);
requestContext.put(BindingProvider.PASSWORD_PROPERTY, pass);
Recordings recordings = record_port.getRecordings();
실행시 위 코드는 다음과 같은 오류를 제공합니다.
Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Method 'ns11:GetServiceCapabilities' not implemented: method name or namespace not recognized
나는 또한 미디어 서비스를 시도했는데 오류는 다음과 같습니다.
Exception in thread "main" com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 405: Method Not Allowed