├── .cvsignore ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── CONFORMANCE ├── COPYING ├── ChangeLog ├── Doxyfile.in ├── Makefile.am ├── NEWS ├── OpenWsmanLib.sln ├── OpenWsmanLib.vcproj ├── README.md ├── README.testing ├── README.windows ├── RPMNAME ├── TODO ├── VERSION.cmake ├── acinclude.m4 ├── autoconfiscate.sh ├── bindings ├── .cvsignore ├── CMakeLists.txt ├── Makefile.am ├── java │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── helpers.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── cim_enumerate_operating_system.java │ │ ├── cim_enumerate_registered_profiles.java │ │ ├── cim_linux_operatingsystem_exec_cmd.java │ │ ├── hyperv_invoke.java │ │ ├── identify.java │ │ ├── loading_sharedlib.java │ │ ├── run │ │ └── smis_enumerate_storagepool.java ├── openwsman.c ├── openwsman.h ├── openwsman.i ├── perl │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── helpers.h │ └── tests │ │ ├── CIM_ComputerSystem_EnumInstances.pl │ │ ├── CIM_EnumClasses.pl │ │ ├── CMakeLists.txt │ │ ├── Linux_ComputerSystem_assoc.pl │ │ ├── Linux_EthernetPort_EnumInstances.pl │ │ ├── Linux_EthernetPort_GetClass.pl │ │ ├── Linux_EthernetPort_GetInstance.pl │ │ ├── Linux_NextHopIPRoute_CreateInstance.pl │ │ ├── Linux_NextHopIPRoute_DeleteInstance.pl │ │ ├── Makefile.am │ │ ├── identify.pl │ │ ├── loading.pl │ │ └── run ├── python │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── helpers.h │ ├── pywsman │ │ ├── MANIFEST │ │ ├── README.rst │ │ ├── setup.py │ │ ├── version.cmake │ │ └── version.py.in │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── add_selector.py │ │ ├── add_selector2.py │ │ ├── client.py │ │ ├── enumerate.py │ │ ├── epr.py │ │ ├── identify.py │ │ ├── loading.py │ │ ├── release.py │ │ ├── run │ │ └── xmlnode.py ├── ruby │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Gemfile │ ├── Makefile.am │ ├── README.rdoc │ ├── Rakefile │ ├── extconf.rb │ ├── helpers.h │ ├── openwsman.gemspec.in │ ├── openwsman.rb │ ├── openwsman │ │ ├── Makefile.am │ │ ├── openwsman.rb │ │ ├── version.rb.in │ │ ├── xmldoc.rb │ │ └── xmlnode.rb │ ├── parse_swig.rb │ ├── rdoc │ ├── rdoc_parser_swig.rb │ └── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── EnumKey.xml │ │ ├── Makefile.am │ │ ├── README │ │ ├── _client.rb │ │ ├── _loadpath.rb │ │ ├── anon-identify.rb │ │ ├── auth-callback.rb │ │ ├── cim_computer_system.rb │ │ ├── cim_enumerate_all.rb │ │ ├── cim_enumerate_classnames.rb │ │ ├── cim_operating_system.rb │ │ ├── cim_process.rb │ │ ├── cim_system_configuration.rb │ │ ├── cimenum.rb │ │ ├── classes.rb │ │ ├── client.rb │ │ ├── client_bad.rb │ │ ├── clientoptions.rb │ │ ├── clients.yml │ │ ├── constants.rb │ │ ├── create.rb │ │ ├── debug.rb │ │ ├── each_child.rb │ │ ├── enumerate.rb │ │ ├── enumerate_class_names.rb │ │ ├── epr.rb │ │ ├── exec_cmd.rb │ │ ├── fault.rb │ │ ├── get.rb │ │ ├── get_class.rb │ │ ├── identify.rb │ │ ├── invoke.rb │ │ ├── invoke_epr.rb │ │ ├── loading.rb │ │ ├── locale.rb │ │ ├── notepad.rb │ │ ├── nsconsts.rb │ │ ├── pull.rb │ │ ├── put.rb │ │ ├── release.rb │ │ ├── ruby │ │ ├── ruby19_threaded_enumerate.rb │ │ ├── status.rb │ │ ├── subscribe.rb │ │ ├── transport.rb │ │ ├── uri_prefix.rb │ │ ├── version.rb │ │ ├── win32_operatingsystem.rb │ │ ├── win32_process.rb │ │ ├── win32_registry.rb │ │ ├── win32_services.rb │ │ ├── winenum.rb │ │ ├── winrm-subscribe.rb │ │ ├── wql.rb │ │ ├── wql1.rb │ │ ├── xmlattr.rb │ │ ├── xmldoc.rb │ │ ├── xmlfind.rb │ │ └── xmlnode.rb ├── version.i.in ├── wsman-client.i ├── wsman-client_opt.i ├── wsman-epr.i ├── wsman-filter.i ├── wsman-names.i ├── wsman-soap.i ├── wsman-transport.i └── wsman-xml.i ├── cmake └── modules │ ├── FindPythonLinkLibs.cmake │ └── FindRuby.cmake ├── configure.ac ├── doc ├── .cvsignore ├── CMakeLists.txt ├── LICENSE.iniparser ├── LICENSE.libu ├── LICENSE.shttpd ├── Makefile.am ├── README.memory-usage ├── README.serialization ├── event │ ├── TODO │ └── event-implementation.txt ├── examples ├── plugin-framwork.txt └── specs │ ├── .cvsignore │ ├── CMakeLists.txt │ └── Makefile.am ├── etc ├── .cvsignore ├── CMakeLists.txt ├── Makefile.am ├── init │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── openwsmand.sh.cmake │ └── openwsmand.sh.in ├── openwsman.conf ├── openwsman_client.conf ├── openwsman_test.conf ├── owsmangencert.sh.cmake ├── owsmangencert.sh.in ├── pam │ ├── CMakeLists.txt │ └── openwsman ├── redirect.conf ├── ssleay.cnf └── test_simple_auth.passwd ├── examples ├── CMakeLists.txt ├── Makefile.am ├── serialize.c ├── test.xml └── winrs.rb ├── include ├── CMakeLists.txt ├── Makefile.am ├── cim │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ └── cim-interface.h ├── u │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── base64.h │ ├── buf.h │ ├── carpal.h │ ├── debug.h │ ├── debug_internal.h │ ├── gettimeofday.h │ ├── hash.h │ ├── iniparser.h │ ├── libu.h │ ├── list.h │ ├── lock.h │ ├── log.h │ ├── logprv.h │ ├── md5.h │ ├── memory.h │ ├── misc.h │ ├── os.h │ ├── pthreadx.h │ ├── strings.h │ ├── syslog.h │ ├── uerr.h │ ├── uoption.h │ ├── uri.h │ ├── uuid.h │ └── uuuid.h ├── wsman-api.h ├── wsman-cimindication-processor.h ├── wsman-client-api.h ├── wsman-client-transport.h ├── wsman-client.h ├── wsman-debug.h ├── wsman-declarations.h ├── wsman-dispatcher.h ├── wsman-epr.h ├── wsman-event-pool.h ├── wsman-faults.h ├── wsman-filter.h ├── wsman-key-value.h ├── wsman-names.h ├── wsman-plugins.h ├── wsman-server-api.h ├── wsman-server.h ├── wsman-soap-envelope.h ├── wsman-soap-message.h ├── wsman-soap.h ├── wsman-subscription-repository.h ├── wsman-types.h ├── wsman-xml-api.h ├── wsman-xml-binding.h ├── wsman-xml-serialize.h ├── wsman-xml-serializer.h └── wsman-xml.h ├── openwsman++.pc.in ├── openwsman-server.pc.in ├── openwsman.pc.in ├── package ├── openwsman-redhat-initscript.patch ├── openwsman.SuSEfirewall2 ├── openwsman.firewalld ├── openwsman.pam ├── openwsman.pam.rh ├── openwsman.rpmlintrc ├── openwsman.service.in └── openwsman.spec.in ├── src ├── .cvsignore ├── CMakeLists.txt ├── Makefile.am ├── authenticators │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── file │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── file_auth.c │ └── pam │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── pam_auth.c ├── cpp │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Exception.h │ ├── Makefile.am │ ├── OpenWsmanClient.cpp │ ├── OpenWsmanClient.h │ ├── WsmanClient.h │ ├── WsmanEPR.cpp │ ├── WsmanEPR.h │ ├── WsmanFilter.cpp │ ├── WsmanFilter.h │ ├── WsmanOptions.cpp │ └── WsmanOptions.h ├── lib │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── test │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_list.c │ │ ├── test_md5.c │ │ └── test_string.c │ ├── u │ │ ├── .cvsignore │ │ ├── LICENSE │ │ ├── base64.c │ │ ├── buf.c │ │ ├── debug.c │ │ ├── gettimeofday.c │ │ ├── hash.c │ │ ├── iniparser.c │ │ ├── list.c │ │ ├── lock.c │ │ ├── log.c │ │ ├── md5.c │ │ ├── memory.c │ │ ├── misc.c │ │ ├── os.c │ │ ├── pthreadx_win32.c │ │ ├── strings.c │ │ ├── syslog.c │ │ ├── uerr.c │ │ ├── uoption.c │ │ ├── uri.c │ │ └── uuid.c │ ├── wsman-cimindication-processor.c │ ├── wsman-client-transport.c │ ├── wsman-client.c │ ├── wsman-curl-client-transport.c │ ├── wsman-debug.c │ ├── wsman-dispatcher.c │ ├── wsman-epr.c │ ├── wsman-event-pool.c │ ├── wsman-faults.c │ ├── wsman-filter.c │ ├── wsman-key-value.c │ ├── wsman-libxml2-binding.c │ ├── wsman-plugins.c │ ├── wsman-server-api.c │ ├── wsman-server.c │ ├── wsman-session-client.c │ ├── wsman-soap-envelope.c │ ├── wsman-soap-message.c │ ├── wsman-soap.c │ ├── wsman-subscription-repository.c │ ├── wsman-win-client-transport.c │ ├── wsman-xml-serialize.c │ └── wsman-xml.c ├── plugins │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cim │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README │ │ ├── cim_data.c │ │ ├── cim_data.h │ │ ├── cim_data_stubs.c │ │ ├── sfcc-interface.c │ │ └── sfcc-interface.h │ ├── identify │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── identify.c │ │ ├── identify.h │ │ └── identify_stubs.c │ ├── redirect │ │ ├── CMakeLists.txt │ │ ├── redirect-README │ │ ├── redirect.c │ │ ├── redirect.h │ │ └── redirect_stubs.c │ ├── swig │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── plugin.i │ │ ├── python │ │ │ ├── CMakeLists.txt │ │ │ ├── pywsmanplugin.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── loading.py │ │ ├── ruby │ │ │ ├── CMakeLists.txt │ │ │ ├── openwsmanplugin.rb │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── _client.rb │ │ │ │ ├── clients.yml │ │ │ │ ├── enumerate.rb │ │ │ │ ├── get.rb │ │ │ │ └── plugin_loading.rb │ │ └── src │ │ │ ├── swig-plugin.c │ │ │ ├── target_python.c │ │ │ └── target_ruby.c │ └── wsman │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── wsman_test.c │ │ ├── wsman_test.h │ │ └── wsman_test_stubs.c │ │ └── test2 │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── wsman_test2.c │ │ ├── wsman_test2.h │ │ └── wsman_test2_stubs.c └── server │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gss.c │ ├── shttpd │ ├── adapter.c │ ├── adapter.h │ ├── auth.c │ ├── cgi.c │ ├── compat_rtems.c │ ├── compat_rtems.h │ ├── compat_unix.c │ ├── compat_unix.h │ ├── compat_win32.c │ ├── compat_win32.h │ ├── compat_wince.c │ ├── compat_wince.h │ ├── defs.h │ ├── io.h │ ├── io_cgi.c │ ├── io_dir.c │ ├── io_emb.c │ ├── io_file.c │ ├── io_socket.c │ ├── io_ssi.c │ ├── io_ssl.c │ ├── llist.h │ ├── log.c │ ├── md5.c │ ├── md5.h │ ├── shttpd.c │ ├── shttpd.h │ ├── shttpd_config.h │ ├── ssl.h │ ├── standalone.c │ ├── std_includes.h │ └── string.c │ ├── wsmand-daemon.c │ ├── wsmand-daemon.h │ ├── wsmand-listener.c │ ├── wsmand-listener.h │ └── wsmand.c ├── tests ├── .cvsignore ├── CMakeLists.txt ├── Makefile.am ├── client │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── requests │ │ ├── action_001.xml │ │ ├── from_001.xml │ │ ├── from_002.xml │ │ ├── mu_001.xml │ │ ├── mu_002.xml │ │ ├── request.xml │ │ └── rt_001.xml │ ├── test_associators.c │ ├── test_enumeration.c │ ├── test_identify.c │ ├── test_invoke.c │ ├── test_pull.c │ ├── test_references.c │ ├── test_renew.c │ ├── test_selectorfilter.c │ ├── test_subscribe.c │ ├── test_transfer_create.c │ ├── test_transfer_get.c │ ├── test_transfer_put.c │ └── test_unsubscribe.c ├── epr │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── epr1.xml │ ├── epr2.xml │ ├── epr3.xml │ ├── sample.xml │ ├── test_WsmanEPR.cpp │ └── test_epr.c ├── filter │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── sample1.xml │ ├── sample2.xml │ ├── sample3.xml │ ├── test_WsmanFilter.cpp │ └── test_filter.c ├── serialization │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ └── ser1.c ├── stress.sh ├── webinject │ ├── README │ ├── config.xml │ ├── enum.xml │ ├── enum_big.xml │ ├── identify.xml │ ├── indication.xml │ └── testcases.xml └── xml │ ├── .cvsignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cim_computersystem_01.xml │ ├── cim_computersystem_02.xml │ ├── data │ └── xml_test1.xml │ ├── filter.xml │ ├── xml1.c │ ├── xml2.c │ ├── xml3.c │ └── xml4.c └── wsman_config.h.cmake /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONFORMANCE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenWsmanLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/OpenWsmanLib.sln -------------------------------------------------------------------------------- /OpenWsmanLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/OpenWsmanLib.vcproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/README.md -------------------------------------------------------------------------------- /README.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/README.testing -------------------------------------------------------------------------------- /README.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/README.windows -------------------------------------------------------------------------------- /RPMNAME: -------------------------------------------------------------------------------- 1 | openwsman 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/TODO -------------------------------------------------------------------------------- /VERSION.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/VERSION.cmake -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autoconfiscate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/autoconfiscate.sh -------------------------------------------------------------------------------- /bindings/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/.cvsignore -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/Makefile.am -------------------------------------------------------------------------------- /bindings/java/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/.cvsignore -------------------------------------------------------------------------------- /bindings/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/Makefile.am -------------------------------------------------------------------------------- /bindings/java/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/README -------------------------------------------------------------------------------- /bindings/java/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/helpers.h -------------------------------------------------------------------------------- /bindings/java/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/java/tests/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.java 2 | -------------------------------------------------------------------------------- /bindings/java/tests/cim_enumerate_operating_system.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/cim_enumerate_operating_system.java -------------------------------------------------------------------------------- /bindings/java/tests/cim_enumerate_registered_profiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/cim_enumerate_registered_profiles.java -------------------------------------------------------------------------------- /bindings/java/tests/cim_linux_operatingsystem_exec_cmd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/cim_linux_operatingsystem_exec_cmd.java -------------------------------------------------------------------------------- /bindings/java/tests/hyperv_invoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/hyperv_invoke.java -------------------------------------------------------------------------------- /bindings/java/tests/identify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/identify.java -------------------------------------------------------------------------------- /bindings/java/tests/loading_sharedlib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/loading_sharedlib.java -------------------------------------------------------------------------------- /bindings/java/tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/run -------------------------------------------------------------------------------- /bindings/java/tests/smis_enumerate_storagepool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/java/tests/smis_enumerate_storagepool.java -------------------------------------------------------------------------------- /bindings/openwsman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/openwsman.c -------------------------------------------------------------------------------- /bindings/openwsman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/openwsman.h -------------------------------------------------------------------------------- /bindings/openwsman.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/openwsman.i -------------------------------------------------------------------------------- /bindings/perl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/Makefile.am -------------------------------------------------------------------------------- /bindings/perl/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/helpers.h -------------------------------------------------------------------------------- /bindings/perl/tests/CIM_ComputerSystem_EnumInstances.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/CIM_ComputerSystem_EnumInstances.pl -------------------------------------------------------------------------------- /bindings/perl/tests/CIM_EnumClasses.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/CIM_EnumClasses.pl -------------------------------------------------------------------------------- /bindings/perl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/perl/tests/Linux_ComputerSystem_assoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/Linux_ComputerSystem_assoc.pl -------------------------------------------------------------------------------- /bindings/perl/tests/Linux_EthernetPort_EnumInstances.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/Linux_EthernetPort_EnumInstances.pl -------------------------------------------------------------------------------- /bindings/perl/tests/Linux_EthernetPort_GetClass.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/Linux_EthernetPort_GetClass.pl -------------------------------------------------------------------------------- /bindings/perl/tests/Linux_EthernetPort_GetInstance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/Linux_EthernetPort_GetInstance.pl -------------------------------------------------------------------------------- /bindings/perl/tests/Linux_NextHopIPRoute_CreateInstance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/Linux_NextHopIPRoute_CreateInstance.pl -------------------------------------------------------------------------------- /bindings/perl/tests/Linux_NextHopIPRoute_DeleteInstance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/Linux_NextHopIPRoute_DeleteInstance.pl -------------------------------------------------------------------------------- /bindings/perl/tests/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.pl 2 | -------------------------------------------------------------------------------- /bindings/perl/tests/identify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/identify.pl -------------------------------------------------------------------------------- /bindings/perl/tests/loading.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/loading.pl -------------------------------------------------------------------------------- /bindings/perl/tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/perl/tests/run -------------------------------------------------------------------------------- /bindings/python/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/.cvsignore -------------------------------------------------------------------------------- /bindings/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/Makefile.am -------------------------------------------------------------------------------- /bindings/python/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/helpers.h -------------------------------------------------------------------------------- /bindings/python/pywsman/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/pywsman/MANIFEST -------------------------------------------------------------------------------- /bindings/python/pywsman/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/pywsman/README.rst -------------------------------------------------------------------------------- /bindings/python/pywsman/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/pywsman/setup.py -------------------------------------------------------------------------------- /bindings/python/pywsman/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/pywsman/version.cmake -------------------------------------------------------------------------------- /bindings/python/pywsman/version.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/pywsman/version.py.in -------------------------------------------------------------------------------- /bindings/python/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/tests/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.py 2 | -------------------------------------------------------------------------------- /bindings/python/tests/add_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/add_selector.py -------------------------------------------------------------------------------- /bindings/python/tests/add_selector2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/add_selector2.py -------------------------------------------------------------------------------- /bindings/python/tests/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/client.py -------------------------------------------------------------------------------- /bindings/python/tests/enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/enumerate.py -------------------------------------------------------------------------------- /bindings/python/tests/epr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/epr.py -------------------------------------------------------------------------------- /bindings/python/tests/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/identify.py -------------------------------------------------------------------------------- /bindings/python/tests/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/loading.py -------------------------------------------------------------------------------- /bindings/python/tests/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/release.py -------------------------------------------------------------------------------- /bindings/python/tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/run -------------------------------------------------------------------------------- /bindings/python/tests/xmlnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/python/tests/xmlnode.py -------------------------------------------------------------------------------- /bindings/ruby/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/.cvsignore -------------------------------------------------------------------------------- /bindings/ruby/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/Gemfile -------------------------------------------------------------------------------- /bindings/ruby/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/Makefile.am -------------------------------------------------------------------------------- /bindings/ruby/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/README.rdoc -------------------------------------------------------------------------------- /bindings/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/Rakefile -------------------------------------------------------------------------------- /bindings/ruby/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/extconf.rb -------------------------------------------------------------------------------- /bindings/ruby/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/helpers.h -------------------------------------------------------------------------------- /bindings/ruby/openwsman.gemspec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman.gemspec.in -------------------------------------------------------------------------------- /bindings/ruby/openwsman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman.rb -------------------------------------------------------------------------------- /bindings/ruby/openwsman/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman/Makefile.am -------------------------------------------------------------------------------- /bindings/ruby/openwsman/openwsman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman/openwsman.rb -------------------------------------------------------------------------------- /bindings/ruby/openwsman/version.rb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman/version.rb.in -------------------------------------------------------------------------------- /bindings/ruby/openwsman/xmldoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman/xmldoc.rb -------------------------------------------------------------------------------- /bindings/ruby/openwsman/xmlnode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/openwsman/xmlnode.rb -------------------------------------------------------------------------------- /bindings/ruby/parse_swig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/parse_swig.rb -------------------------------------------------------------------------------- /bindings/ruby/rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/rdoc -------------------------------------------------------------------------------- /bindings/ruby/rdoc_parser_swig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/rdoc_parser_swig.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | *.yml -------------------------------------------------------------------------------- /bindings/ruby/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/ruby/tests/EnumKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/EnumKey.xml -------------------------------------------------------------------------------- /bindings/ruby/tests/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.rb *.yml -------------------------------------------------------------------------------- /bindings/ruby/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/README -------------------------------------------------------------------------------- /bindings/ruby/tests/_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/_client.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/_loadpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/_loadpath.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/anon-identify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/anon-identify.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/auth-callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/auth-callback.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cim_computer_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cim_computer_system.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cim_enumerate_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cim_enumerate_all.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cim_enumerate_classnames.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cim_enumerate_classnames.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cim_operating_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cim_operating_system.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cim_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cim_process.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cim_system_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cim_system_configuration.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/cimenum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/cimenum.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/classes.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/client.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/client_bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/client_bad.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/clientoptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/clientoptions.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/clients.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/clients.yml -------------------------------------------------------------------------------- /bindings/ruby/tests/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/constants.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/create.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/debug.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/each_child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/each_child.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/enumerate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/enumerate.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/enumerate_class_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/enumerate_class_names.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/epr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/epr.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/exec_cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/exec_cmd.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/fault.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/fault.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/get.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/get.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/get_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/get_class.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/identify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/identify.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/invoke.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/invoke.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/invoke_epr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/invoke_epr.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/loading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/loading.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/locale.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/notepad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/notepad.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/nsconsts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/nsconsts.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/pull.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/pull.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/put.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/put.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/release.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/ruby -------------------------------------------------------------------------------- /bindings/ruby/tests/ruby19_threaded_enumerate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/ruby19_threaded_enumerate.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/status.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/subscribe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/subscribe.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/transport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/transport.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/uri_prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/uri_prefix.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/version.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/win32_operatingsystem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/win32_operatingsystem.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/win32_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/win32_process.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/win32_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/win32_registry.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/win32_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/win32_services.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/winenum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/winenum.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/winrm-subscribe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/winrm-subscribe.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/wql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/wql.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/wql1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/wql1.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/xmlattr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/xmlattr.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/xmldoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/xmldoc.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/xmlfind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/xmlfind.rb -------------------------------------------------------------------------------- /bindings/ruby/tests/xmlnode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/ruby/tests/xmlnode.rb -------------------------------------------------------------------------------- /bindings/version.i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/version.i.in -------------------------------------------------------------------------------- /bindings/wsman-client.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-client.i -------------------------------------------------------------------------------- /bindings/wsman-client_opt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-client_opt.i -------------------------------------------------------------------------------- /bindings/wsman-epr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-epr.i -------------------------------------------------------------------------------- /bindings/wsman-filter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-filter.i -------------------------------------------------------------------------------- /bindings/wsman-names.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-names.i -------------------------------------------------------------------------------- /bindings/wsman-soap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-soap.i -------------------------------------------------------------------------------- /bindings/wsman-transport.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-transport.i -------------------------------------------------------------------------------- /bindings/wsman-xml.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/bindings/wsman-xml.i -------------------------------------------------------------------------------- /cmake/modules/FindPythonLinkLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/cmake/modules/FindPythonLinkLibs.cmake -------------------------------------------------------------------------------- /cmake/modules/FindRuby.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/cmake/modules/FindRuby.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/.cvsignore -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/LICENSE.iniparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/LICENSE.iniparser -------------------------------------------------------------------------------- /doc/LICENSE.libu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/LICENSE.libu -------------------------------------------------------------------------------- /doc/LICENSE.shttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/LICENSE.shttpd -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = specs 2 | 3 | EXTRA_DIST = plugin-framwork.txt 4 | -------------------------------------------------------------------------------- /doc/README.memory-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/README.memory-usage -------------------------------------------------------------------------------- /doc/README.serialization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/README.serialization -------------------------------------------------------------------------------- /doc/event/TODO: -------------------------------------------------------------------------------- 1 | 2 | 1. Notificaiton Manager 3 | 2. Event part in CIM plug-in 4 | -------------------------------------------------------------------------------- /doc/event/event-implementation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/event/event-implementation.txt -------------------------------------------------------------------------------- /doc/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/examples -------------------------------------------------------------------------------- /doc/plugin-framwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/plugin-framwork.txt -------------------------------------------------------------------------------- /doc/specs/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/specs/.cvsignore -------------------------------------------------------------------------------- /doc/specs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/specs/CMakeLists.txt -------------------------------------------------------------------------------- /doc/specs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/doc/specs/Makefile.am -------------------------------------------------------------------------------- /etc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/.cvsignore -------------------------------------------------------------------------------- /etc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/CMakeLists.txt -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/init/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/init/.cvsignore -------------------------------------------------------------------------------- /etc/init/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/init/CMakeLists.txt -------------------------------------------------------------------------------- /etc/init/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = 2 | 3 | EXTRA_DIST = openwsmand.sh.in 4 | 5 | -------------------------------------------------------------------------------- /etc/init/openwsmand.sh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/init/openwsmand.sh.cmake -------------------------------------------------------------------------------- /etc/init/openwsmand.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/init/openwsmand.sh.in -------------------------------------------------------------------------------- /etc/openwsman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/openwsman.conf -------------------------------------------------------------------------------- /etc/openwsman_client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/openwsman_client.conf -------------------------------------------------------------------------------- /etc/openwsman_test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/openwsman_test.conf -------------------------------------------------------------------------------- /etc/owsmangencert.sh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/owsmangencert.sh.cmake -------------------------------------------------------------------------------- /etc/owsmangencert.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/owsmangencert.sh.in -------------------------------------------------------------------------------- /etc/pam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/pam/CMakeLists.txt -------------------------------------------------------------------------------- /etc/pam/openwsman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/pam/openwsman -------------------------------------------------------------------------------- /etc/redirect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/redirect.conf -------------------------------------------------------------------------------- /etc/ssleay.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/etc/ssleay.cnf -------------------------------------------------------------------------------- /etc/test_simple_auth.passwd: -------------------------------------------------------------------------------- 1 | wsman:fIzDMMpLTn3TU 2 | -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/examples/serialize.c -------------------------------------------------------------------------------- /examples/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/examples/test.xml -------------------------------------------------------------------------------- /examples/winrs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/examples/winrs.rb -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/cim/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/cim/.cvsignore -------------------------------------------------------------------------------- /include/cim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/cim/CMakeLists.txt -------------------------------------------------------------------------------- /include/cim/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/cim/Makefile.am -------------------------------------------------------------------------------- /include/cim/cim-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/cim/cim-interface.h -------------------------------------------------------------------------------- /include/u/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/.cvsignore -------------------------------------------------------------------------------- /include/u/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/CMakeLists.txt -------------------------------------------------------------------------------- /include/u/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/Makefile.am -------------------------------------------------------------------------------- /include/u/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/base64.h -------------------------------------------------------------------------------- /include/u/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/buf.h -------------------------------------------------------------------------------- /include/u/carpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/carpal.h -------------------------------------------------------------------------------- /include/u/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/debug.h -------------------------------------------------------------------------------- /include/u/debug_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/debug_internal.h -------------------------------------------------------------------------------- /include/u/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/gettimeofday.h -------------------------------------------------------------------------------- /include/u/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/hash.h -------------------------------------------------------------------------------- /include/u/iniparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/iniparser.h -------------------------------------------------------------------------------- /include/u/libu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/libu.h -------------------------------------------------------------------------------- /include/u/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/list.h -------------------------------------------------------------------------------- /include/u/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/lock.h -------------------------------------------------------------------------------- /include/u/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/log.h -------------------------------------------------------------------------------- /include/u/logprv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/logprv.h -------------------------------------------------------------------------------- /include/u/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/md5.h -------------------------------------------------------------------------------- /include/u/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/memory.h -------------------------------------------------------------------------------- /include/u/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/misc.h -------------------------------------------------------------------------------- /include/u/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/os.h -------------------------------------------------------------------------------- /include/u/pthreadx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/pthreadx.h -------------------------------------------------------------------------------- /include/u/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/strings.h -------------------------------------------------------------------------------- /include/u/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/syslog.h -------------------------------------------------------------------------------- /include/u/uerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/uerr.h -------------------------------------------------------------------------------- /include/u/uoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/uoption.h -------------------------------------------------------------------------------- /include/u/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/uri.h -------------------------------------------------------------------------------- /include/u/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/u/uuid.h -------------------------------------------------------------------------------- /include/u/uuuid.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/wsman-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-api.h -------------------------------------------------------------------------------- /include/wsman-cimindication-processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-cimindication-processor.h -------------------------------------------------------------------------------- /include/wsman-client-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-client-api.h -------------------------------------------------------------------------------- /include/wsman-client-transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-client-transport.h -------------------------------------------------------------------------------- /include/wsman-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-client.h -------------------------------------------------------------------------------- /include/wsman-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-debug.h -------------------------------------------------------------------------------- /include/wsman-declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-declarations.h -------------------------------------------------------------------------------- /include/wsman-dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-dispatcher.h -------------------------------------------------------------------------------- /include/wsman-epr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-epr.h -------------------------------------------------------------------------------- /include/wsman-event-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-event-pool.h -------------------------------------------------------------------------------- /include/wsman-faults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-faults.h -------------------------------------------------------------------------------- /include/wsman-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-filter.h -------------------------------------------------------------------------------- /include/wsman-key-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-key-value.h -------------------------------------------------------------------------------- /include/wsman-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-names.h -------------------------------------------------------------------------------- /include/wsman-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-plugins.h -------------------------------------------------------------------------------- /include/wsman-server-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-server-api.h -------------------------------------------------------------------------------- /include/wsman-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-server.h -------------------------------------------------------------------------------- /include/wsman-soap-envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-soap-envelope.h -------------------------------------------------------------------------------- /include/wsman-soap-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-soap-message.h -------------------------------------------------------------------------------- /include/wsman-soap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-soap.h -------------------------------------------------------------------------------- /include/wsman-subscription-repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-subscription-repository.h -------------------------------------------------------------------------------- /include/wsman-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-types.h -------------------------------------------------------------------------------- /include/wsman-xml-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-xml-api.h -------------------------------------------------------------------------------- /include/wsman-xml-binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-xml-binding.h -------------------------------------------------------------------------------- /include/wsman-xml-serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-xml-serialize.h -------------------------------------------------------------------------------- /include/wsman-xml-serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-xml-serializer.h -------------------------------------------------------------------------------- /include/wsman-xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/include/wsman-xml.h -------------------------------------------------------------------------------- /openwsman++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/openwsman++.pc.in -------------------------------------------------------------------------------- /openwsman-server.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/openwsman-server.pc.in -------------------------------------------------------------------------------- /openwsman.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/openwsman.pc.in -------------------------------------------------------------------------------- /package/openwsman-redhat-initscript.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman-redhat-initscript.patch -------------------------------------------------------------------------------- /package/openwsman.SuSEfirewall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.SuSEfirewall2 -------------------------------------------------------------------------------- /package/openwsman.firewalld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.firewalld -------------------------------------------------------------------------------- /package/openwsman.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.pam -------------------------------------------------------------------------------- /package/openwsman.pam.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.pam.rh -------------------------------------------------------------------------------- /package/openwsman.rpmlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.rpmlintrc -------------------------------------------------------------------------------- /package/openwsman.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.service.in -------------------------------------------------------------------------------- /package/openwsman.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/package/openwsman.spec.in -------------------------------------------------------------------------------- /src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/.cvsignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/authenticators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/CMakeLists.txt -------------------------------------------------------------------------------- /src/authenticators/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/Makefile.am -------------------------------------------------------------------------------- /src/authenticators/file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/file/CMakeLists.txt -------------------------------------------------------------------------------- /src/authenticators/file/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/file/Makefile.am -------------------------------------------------------------------------------- /src/authenticators/file/file_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/file/file_auth.c -------------------------------------------------------------------------------- /src/authenticators/pam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/pam/CMakeLists.txt -------------------------------------------------------------------------------- /src/authenticators/pam/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/pam/Makefile.am -------------------------------------------------------------------------------- /src/authenticators/pam/pam_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/authenticators/pam/pam_auth.c -------------------------------------------------------------------------------- /src/cpp/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/.cvsignore -------------------------------------------------------------------------------- /src/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/cpp/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/Exception.h -------------------------------------------------------------------------------- /src/cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/Makefile.am -------------------------------------------------------------------------------- /src/cpp/OpenWsmanClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/OpenWsmanClient.cpp -------------------------------------------------------------------------------- /src/cpp/OpenWsmanClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/OpenWsmanClient.h -------------------------------------------------------------------------------- /src/cpp/WsmanClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanClient.h -------------------------------------------------------------------------------- /src/cpp/WsmanEPR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanEPR.cpp -------------------------------------------------------------------------------- /src/cpp/WsmanEPR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanEPR.h -------------------------------------------------------------------------------- /src/cpp/WsmanFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanFilter.cpp -------------------------------------------------------------------------------- /src/cpp/WsmanFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanFilter.h -------------------------------------------------------------------------------- /src/cpp/WsmanOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanOptions.cpp -------------------------------------------------------------------------------- /src/cpp/WsmanOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/cpp/WsmanOptions.h -------------------------------------------------------------------------------- /src/lib/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/.cvsignore -------------------------------------------------------------------------------- /src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/Makefile.am -------------------------------------------------------------------------------- /src/lib/test/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/.cvsignore -------------------------------------------------------------------------------- /src/lib/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/.gitignore -------------------------------------------------------------------------------- /src/lib/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/Makefile.am -------------------------------------------------------------------------------- /src/lib/test/test_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/test_list.c -------------------------------------------------------------------------------- /src/lib/test/test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/test_md5.c -------------------------------------------------------------------------------- /src/lib/test/test_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/test/test_string.c -------------------------------------------------------------------------------- /src/lib/u/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/.cvsignore -------------------------------------------------------------------------------- /src/lib/u/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/LICENSE -------------------------------------------------------------------------------- /src/lib/u/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/base64.c -------------------------------------------------------------------------------- /src/lib/u/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/buf.c -------------------------------------------------------------------------------- /src/lib/u/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/debug.c -------------------------------------------------------------------------------- /src/lib/u/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/gettimeofday.c -------------------------------------------------------------------------------- /src/lib/u/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/hash.c -------------------------------------------------------------------------------- /src/lib/u/iniparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/iniparser.c -------------------------------------------------------------------------------- /src/lib/u/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/list.c -------------------------------------------------------------------------------- /src/lib/u/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/lock.c -------------------------------------------------------------------------------- /src/lib/u/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/log.c -------------------------------------------------------------------------------- /src/lib/u/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/md5.c -------------------------------------------------------------------------------- /src/lib/u/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/memory.c -------------------------------------------------------------------------------- /src/lib/u/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/misc.c -------------------------------------------------------------------------------- /src/lib/u/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/os.c -------------------------------------------------------------------------------- /src/lib/u/pthreadx_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/pthreadx_win32.c -------------------------------------------------------------------------------- /src/lib/u/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/strings.c -------------------------------------------------------------------------------- /src/lib/u/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/syslog.c -------------------------------------------------------------------------------- /src/lib/u/uerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/uerr.c -------------------------------------------------------------------------------- /src/lib/u/uoption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/uoption.c -------------------------------------------------------------------------------- /src/lib/u/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/uri.c -------------------------------------------------------------------------------- /src/lib/u/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/u/uuid.c -------------------------------------------------------------------------------- /src/lib/wsman-cimindication-processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-cimindication-processor.c -------------------------------------------------------------------------------- /src/lib/wsman-client-transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-client-transport.c -------------------------------------------------------------------------------- /src/lib/wsman-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-client.c -------------------------------------------------------------------------------- /src/lib/wsman-curl-client-transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-curl-client-transport.c -------------------------------------------------------------------------------- /src/lib/wsman-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-debug.c -------------------------------------------------------------------------------- /src/lib/wsman-dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-dispatcher.c -------------------------------------------------------------------------------- /src/lib/wsman-epr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-epr.c -------------------------------------------------------------------------------- /src/lib/wsman-event-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-event-pool.c -------------------------------------------------------------------------------- /src/lib/wsman-faults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-faults.c -------------------------------------------------------------------------------- /src/lib/wsman-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-filter.c -------------------------------------------------------------------------------- /src/lib/wsman-key-value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-key-value.c -------------------------------------------------------------------------------- /src/lib/wsman-libxml2-binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-libxml2-binding.c -------------------------------------------------------------------------------- /src/lib/wsman-plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-plugins.c -------------------------------------------------------------------------------- /src/lib/wsman-server-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-server-api.c -------------------------------------------------------------------------------- /src/lib/wsman-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-server.c -------------------------------------------------------------------------------- /src/lib/wsman-session-client.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/wsman-soap-envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-soap-envelope.c -------------------------------------------------------------------------------- /src/lib/wsman-soap-message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-soap-message.c -------------------------------------------------------------------------------- /src/lib/wsman-soap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-soap.c -------------------------------------------------------------------------------- /src/lib/wsman-subscription-repository.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-subscription-repository.c -------------------------------------------------------------------------------- /src/lib/wsman-win-client-transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-win-client-transport.c -------------------------------------------------------------------------------- /src/lib/wsman-xml-serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-xml-serialize.c -------------------------------------------------------------------------------- /src/lib/wsman-xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/lib/wsman-xml.c -------------------------------------------------------------------------------- /src/plugins/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/.cvsignore -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/Makefile.am -------------------------------------------------------------------------------- /src/plugins/cim/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/.cvsignore -------------------------------------------------------------------------------- /src/plugins/cim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/cim/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/Makefile.am -------------------------------------------------------------------------------- /src/plugins/cim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/README -------------------------------------------------------------------------------- /src/plugins/cim/cim_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/cim_data.c -------------------------------------------------------------------------------- /src/plugins/cim/cim_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/cim_data.h -------------------------------------------------------------------------------- /src/plugins/cim/cim_data_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/cim_data_stubs.c -------------------------------------------------------------------------------- /src/plugins/cim/sfcc-interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/sfcc-interface.c -------------------------------------------------------------------------------- /src/plugins/cim/sfcc-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/cim/sfcc-interface.h -------------------------------------------------------------------------------- /src/plugins/identify/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/identify/.cvsignore -------------------------------------------------------------------------------- /src/plugins/identify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/identify/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/identify/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/identify/Makefile.am -------------------------------------------------------------------------------- /src/plugins/identify/identify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/identify/identify.c -------------------------------------------------------------------------------- /src/plugins/identify/identify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/identify/identify.h -------------------------------------------------------------------------------- /src/plugins/identify/identify_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/identify/identify_stubs.c -------------------------------------------------------------------------------- /src/plugins/redirect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/redirect/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/redirect/redirect-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/redirect/redirect-README -------------------------------------------------------------------------------- /src/plugins/redirect/redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/redirect/redirect.c -------------------------------------------------------------------------------- /src/plugins/redirect/redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/redirect/redirect.h -------------------------------------------------------------------------------- /src/plugins/redirect/redirect_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/redirect/redirect_stubs.c -------------------------------------------------------------------------------- /src/plugins/swig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/swig/README: -------------------------------------------------------------------------------- 1 | This provides a SWIG-based plugin to enable scripting languages 2 | -------------------------------------------------------------------------------- /src/plugins/swig/plugin.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/plugin.i -------------------------------------------------------------------------------- /src/plugins/swig/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/swig/python/pywsmanplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/python/pywsmanplugin.py -------------------------------------------------------------------------------- /src/plugins/swig/python/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/python/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/swig/python/tests/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/python/tests/loading.py -------------------------------------------------------------------------------- /src/plugins/swig/ruby/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/swig/ruby/openwsmanplugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/openwsmanplugin.rb -------------------------------------------------------------------------------- /src/plugins/swig/ruby/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/swig/ruby/tests/_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/tests/_client.rb -------------------------------------------------------------------------------- /src/plugins/swig/ruby/tests/clients.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/tests/clients.yml -------------------------------------------------------------------------------- /src/plugins/swig/ruby/tests/enumerate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/tests/enumerate.rb -------------------------------------------------------------------------------- /src/plugins/swig/ruby/tests/get.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/tests/get.rb -------------------------------------------------------------------------------- /src/plugins/swig/ruby/tests/plugin_loading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/ruby/tests/plugin_loading.rb -------------------------------------------------------------------------------- /src/plugins/swig/src/swig-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/src/swig-plugin.c -------------------------------------------------------------------------------- /src/plugins/swig/src/target_python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/src/target_python.c -------------------------------------------------------------------------------- /src/plugins/swig/src/target_ruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/swig/src/target_ruby.c -------------------------------------------------------------------------------- /src/plugins/wsman/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/.cvsignore -------------------------------------------------------------------------------- /src/plugins/wsman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/wsman/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = test 2 | -------------------------------------------------------------------------------- /src/plugins/wsman/test/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test/.cvsignore -------------------------------------------------------------------------------- /src/plugins/wsman/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/wsman/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test/Makefile.am -------------------------------------------------------------------------------- /src/plugins/wsman/test/wsman_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test/wsman_test.c -------------------------------------------------------------------------------- /src/plugins/wsman/test/wsman_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test/wsman_test.h -------------------------------------------------------------------------------- /src/plugins/wsman/test/wsman_test_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test/wsman_test_stubs.c -------------------------------------------------------------------------------- /src/plugins/wsman/test2/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test2/.cvsignore -------------------------------------------------------------------------------- /src/plugins/wsman/test2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test2/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/wsman/test2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test2/Makefile.am -------------------------------------------------------------------------------- /src/plugins/wsman/test2/wsman_test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test2/wsman_test2.c -------------------------------------------------------------------------------- /src/plugins/wsman/test2/wsman_test2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test2/wsman_test2.h -------------------------------------------------------------------------------- /src/plugins/wsman/test2/wsman_test2_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/plugins/wsman/test2/wsman_test2_stubs.c -------------------------------------------------------------------------------- /src/server/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/.cvsignore -------------------------------------------------------------------------------- /src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/Makefile.am -------------------------------------------------------------------------------- /src/server/gss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/gss.c -------------------------------------------------------------------------------- /src/server/shttpd/adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/adapter.c -------------------------------------------------------------------------------- /src/server/shttpd/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/adapter.h -------------------------------------------------------------------------------- /src/server/shttpd/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/auth.c -------------------------------------------------------------------------------- /src/server/shttpd/cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/cgi.c -------------------------------------------------------------------------------- /src/server/shttpd/compat_rtems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_rtems.c -------------------------------------------------------------------------------- /src/server/shttpd/compat_rtems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_rtems.h -------------------------------------------------------------------------------- /src/server/shttpd/compat_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_unix.c -------------------------------------------------------------------------------- /src/server/shttpd/compat_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_unix.h -------------------------------------------------------------------------------- /src/server/shttpd/compat_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_win32.c -------------------------------------------------------------------------------- /src/server/shttpd/compat_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_win32.h -------------------------------------------------------------------------------- /src/server/shttpd/compat_wince.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_wince.c -------------------------------------------------------------------------------- /src/server/shttpd/compat_wince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/compat_wince.h -------------------------------------------------------------------------------- /src/server/shttpd/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/defs.h -------------------------------------------------------------------------------- /src/server/shttpd/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io.h -------------------------------------------------------------------------------- /src/server/shttpd/io_cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_cgi.c -------------------------------------------------------------------------------- /src/server/shttpd/io_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_dir.c -------------------------------------------------------------------------------- /src/server/shttpd/io_emb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_emb.c -------------------------------------------------------------------------------- /src/server/shttpd/io_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_file.c -------------------------------------------------------------------------------- /src/server/shttpd/io_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_socket.c -------------------------------------------------------------------------------- /src/server/shttpd/io_ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_ssi.c -------------------------------------------------------------------------------- /src/server/shttpd/io_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/io_ssl.c -------------------------------------------------------------------------------- /src/server/shttpd/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/llist.h -------------------------------------------------------------------------------- /src/server/shttpd/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/log.c -------------------------------------------------------------------------------- /src/server/shttpd/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/md5.c -------------------------------------------------------------------------------- /src/server/shttpd/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/md5.h -------------------------------------------------------------------------------- /src/server/shttpd/shttpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/shttpd.c -------------------------------------------------------------------------------- /src/server/shttpd/shttpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/shttpd.h -------------------------------------------------------------------------------- /src/server/shttpd/shttpd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/shttpd_config.h -------------------------------------------------------------------------------- /src/server/shttpd/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/ssl.h -------------------------------------------------------------------------------- /src/server/shttpd/standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/standalone.c -------------------------------------------------------------------------------- /src/server/shttpd/std_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/std_includes.h -------------------------------------------------------------------------------- /src/server/shttpd/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/shttpd/string.c -------------------------------------------------------------------------------- /src/server/wsmand-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/wsmand-daemon.c -------------------------------------------------------------------------------- /src/server/wsmand-daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/wsmand-daemon.h -------------------------------------------------------------------------------- /src/server/wsmand-listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/wsmand-listener.c -------------------------------------------------------------------------------- /src/server/wsmand-listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/wsmand-listener.h -------------------------------------------------------------------------------- /src/server/wsmand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/src/server/wsmand.c -------------------------------------------------------------------------------- /tests/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/.cvsignore -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/client/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/.cvsignore -------------------------------------------------------------------------------- /tests/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/CMakeLists.txt -------------------------------------------------------------------------------- /tests/client/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/Makefile.am -------------------------------------------------------------------------------- /tests/client/requests/action_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/action_001.xml -------------------------------------------------------------------------------- /tests/client/requests/from_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/from_001.xml -------------------------------------------------------------------------------- /tests/client/requests/from_002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/from_002.xml -------------------------------------------------------------------------------- /tests/client/requests/mu_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/mu_001.xml -------------------------------------------------------------------------------- /tests/client/requests/mu_002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/mu_002.xml -------------------------------------------------------------------------------- /tests/client/requests/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/request.xml -------------------------------------------------------------------------------- /tests/client/requests/rt_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/requests/rt_001.xml -------------------------------------------------------------------------------- /tests/client/test_associators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_associators.c -------------------------------------------------------------------------------- /tests/client/test_enumeration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_enumeration.c -------------------------------------------------------------------------------- /tests/client/test_identify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_identify.c -------------------------------------------------------------------------------- /tests/client/test_invoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_invoke.c -------------------------------------------------------------------------------- /tests/client/test_pull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_pull.c -------------------------------------------------------------------------------- /tests/client/test_references.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_references.c -------------------------------------------------------------------------------- /tests/client/test_renew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_renew.c -------------------------------------------------------------------------------- /tests/client/test_selectorfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_selectorfilter.c -------------------------------------------------------------------------------- /tests/client/test_subscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_subscribe.c -------------------------------------------------------------------------------- /tests/client/test_transfer_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_transfer_create.c -------------------------------------------------------------------------------- /tests/client/test_transfer_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_transfer_get.c -------------------------------------------------------------------------------- /tests/client/test_transfer_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_transfer_put.c -------------------------------------------------------------------------------- /tests/client/test_unsubscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/client/test_unsubscribe.c -------------------------------------------------------------------------------- /tests/epr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/CMakeLists.txt -------------------------------------------------------------------------------- /tests/epr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/Makefile.am -------------------------------------------------------------------------------- /tests/epr/epr1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/epr1.xml -------------------------------------------------------------------------------- /tests/epr/epr2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/epr2.xml -------------------------------------------------------------------------------- /tests/epr/epr3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/epr3.xml -------------------------------------------------------------------------------- /tests/epr/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/sample.xml -------------------------------------------------------------------------------- /tests/epr/test_WsmanEPR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/test_WsmanEPR.cpp -------------------------------------------------------------------------------- /tests/epr/test_epr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/epr/test_epr.c -------------------------------------------------------------------------------- /tests/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/CMakeLists.txt -------------------------------------------------------------------------------- /tests/filter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/Makefile.am -------------------------------------------------------------------------------- /tests/filter/sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/sample1.xml -------------------------------------------------------------------------------- /tests/filter/sample2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/sample2.xml -------------------------------------------------------------------------------- /tests/filter/sample3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/sample3.xml -------------------------------------------------------------------------------- /tests/filter/test_WsmanFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/test_WsmanFilter.cpp -------------------------------------------------------------------------------- /tests/filter/test_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/filter/test_filter.c -------------------------------------------------------------------------------- /tests/serialization/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/serialization/.cvsignore -------------------------------------------------------------------------------- /tests/serialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/serialization/CMakeLists.txt -------------------------------------------------------------------------------- /tests/serialization/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/serialization/Makefile.am -------------------------------------------------------------------------------- /tests/serialization/ser1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/serialization/ser1.c -------------------------------------------------------------------------------- /tests/stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/stress.sh -------------------------------------------------------------------------------- /tests/webinject/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/README -------------------------------------------------------------------------------- /tests/webinject/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/config.xml -------------------------------------------------------------------------------- /tests/webinject/enum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/enum.xml -------------------------------------------------------------------------------- /tests/webinject/enum_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/enum_big.xml -------------------------------------------------------------------------------- /tests/webinject/identify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/identify.xml -------------------------------------------------------------------------------- /tests/webinject/indication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/indication.xml -------------------------------------------------------------------------------- /tests/webinject/testcases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/webinject/testcases.xml -------------------------------------------------------------------------------- /tests/xml/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/.cvsignore -------------------------------------------------------------------------------- /tests/xml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/Makefile.am -------------------------------------------------------------------------------- /tests/xml/cim_computersystem_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/cim_computersystem_01.xml -------------------------------------------------------------------------------- /tests/xml/cim_computersystem_02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/cim_computersystem_02.xml -------------------------------------------------------------------------------- /tests/xml/data/xml_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/data/xml_test1.xml -------------------------------------------------------------------------------- /tests/xml/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/filter.xml -------------------------------------------------------------------------------- /tests/xml/xml1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/xml1.c -------------------------------------------------------------------------------- /tests/xml/xml2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/xml2.c -------------------------------------------------------------------------------- /tests/xml/xml3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/xml3.c -------------------------------------------------------------------------------- /tests/xml/xml4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/tests/xml/xml4.c -------------------------------------------------------------------------------- /wsman_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Openwsman/openwsman/HEAD/wsman_config.h.cmake --------------------------------------------------------------------------------