Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - iliecz

#1
Feature Requests / HTTPS support for SMS Eagle driver
November 21, 2017, 03:18:25 PM
Hello
I was thinking, since the SMSEagle API requires a username and a password, sending it in clear over networks can be quite a problem. It would be nice to have the ability to use https instead of http, however when looking at the source code (I can't code in c++ so maybe I am wrong on this one ) it looks like http is hardcoded into the driver.
Is there a way to recompile the driver or to hope for https support on this?

Thanks,
Ilie C.
#2
General Support / Event Log parsing
January 15, 2014, 10:31:17 AM
I am trying to parse the windows application event log to look for sql agent jobs failures.
I want the full windows event log text sent over email since there can be a lot of job fails.

Agent parse file configuration looks like this

<parser>
  <file>*Application</file>
  <rules>
    <rule>
      <severity>6</severity>
      <match>(SQL Server Scheduled Job)*(Message: The job failed)*</match>
      <event params="1">100025</event>
    </rule>
  </rules>
</parser>
If I let it configured like this it will only send some generic information.
If I replace <match>(.*)</match> it will send the full event text.
In both situation it will send the message twice.
What am I doing wrong?