Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
Fixed Bug where host name was used as GID
Fixed to use Device IP only
  • Loading branch information
JRAndreassen committed Aug 26, 2015
1 parent 475e0a1 commit 698f68b
Show file tree
Hide file tree
Showing 43 changed files with 52,664 additions and 30 deletions.
34 changes: 34 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="web/WEB-INF/lib/commons-cli-1.2.jar"/>
<classpathentry kind="lib" path="web/WEB-INF/lib/commons-codec-1.6.jar"/>
<classpathentry kind="lib" path="web/WEB-INF/lib/gson-2.2.2.jar" sourcepath="C:/Users/JRA/.m2/repository/com/google/code/gson/gson/2.2.2/gson-2.2.2-sources.jar"/>
<classpathentry kind="lib" path="lib/servlet-api-2.5.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jna"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/snmp4j"/>
<classpathentry excluding="**" kind="src" output="target/classes" path="web">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/icmp4j"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/dnsjava"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/apache"/>
<classpathentry kind="lib" path="C:/Program Files/Java/jdk1.7.0_75/lib/tools.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Commons-digester3"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Websphere_8.5"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
# Package Files #
*.war
*.ear
*.zip
*.7z


# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
Expand Down Expand Up @@ -39,3 +42,30 @@ atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml


*.jsdtscope
*.prefs

#-------------------------------------------------------
# JR'z
#-------------------------------------------------------
.svn/
.settings/
bin/
Backup/
Paessler/
lib/
Junk*
prtgjmx.properties
Error.txt
jssecacerts
#-------------------------------------------------------
scripts/
#-------------------------------------------------------
target/Assembletest/
target/classes/
target/generated-resources/
target/generated-sources/
target/JMXProbe/
target/maven-archiver/
probe_installer.py
PRTG_SSL_Negotiation.txt
43 changes: 43 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>JMXMiniProbe</name>
<comment></comment>
<projects>
<project>Tomcat8</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
</projectDescription>
3 changes: 3 additions & 0 deletions ImportCert.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SET PASSPHRASE=changeit
SET CERT=W:\Paessler\Certificates\prtg.crt
"%JAVA_HOME%\bin\keytool" -import -alias PRTG -file %CERT% -keystore "%JAVA_HOME%\jre\lib\security\cacerts" -storepass %PASSPHRASE%
Loading

0 comments on commit 698f68b

Please sign in to comment.