Recent content by ckindel

  1. C

    Premise Roll Call

    Me.   Still loving it.
  2. C

    Premise Premise Universal Devices ISY-994i integration

    Anyone get an ISY driver written?
  3. C

    Premise Anyone running Premise in a VM?

    I have been running Premise in a VM for about 5 years. It works perfectly fine. All of my RS232/485 devices are all connected through IP/serial bridges like Lantronix. 
  4. C

    Premise Premise WebClient Protocol documentation

    I'm still actively partying on it...whenever I get a chance I am adding more and more functionality to my 'new' WP app based on this, and using my 'old' app less.   I haven't pushed to git lately though.    I'm quite happy with how it works.
  5. C

    [download] Insteon PLM Driver

    Due to the limitations of the Premise Minibroker component, this driver will only run on certain Windows 32 bit operating systems (Windows XP and Windows 7 with DEP mode disabled)   Is this still true. I'd like to implement some Insteon (or Z-wave; I dunno) wireless stuff and found this. Was...
  6. C

    Premise PSMONITOR restarting PRKERNEL every 5 minutes

    I've done the following:   - Restored .xdo files going back to 8/11, well before this started happening - Disabled SMTPProxy, which I installed since then - Disabled John in VA's Premise Web Services thingy   None of these fixed the problem.   I was about to restore the entire server back to my...
  7. C

    Premise PSMONITOR restarting PRKERNEL every 5 minutes

    My Premise instance is effed up. I obviously changed something in the past few weeks that has caused something bad.   Every 5 minutes or so my Builder connection would disconnect. Also there are no Events in Events.   I looked at the Windows Event Log on my server and PSMONITOR is restarting...
  8. C

    Premise Irrigation/Sprinkler Control

    My custom irrigation system has decided to flake out.    I use IrrigationPro to control 12 zones via two Adicon/ADI RLX8Y RS-485 high-current relays.    I've got three problems, that may or may not be related to each other.   1) IrrigationPro refuses to run my zones on schedule. The system...
  9. C

    Premise PremiseMetro - a ModernUI interface for Premise

    Same problem as samgreco.   John, you might consider using my Premise Webclient Protocol libraries instead of WCF. If you were to do this:   1) There'd be no need to install something server side 2) Your app could support notifications/dynamic updates from Premise 3) I'd have someone else using...
  10. C

    Premise [download] Module: SSMTP - Send email using SSL.

    It appears this TLS hack no longer works. CDO does not support TLS. I was able to get SSTMP working again by installing https://smtpproxy.codeplex.com/ and using it as a proxy. I configured SSMTP to NOT use SSL and the server of smtp.office365.com and now it is all working.
  11. C

    Premise Premise WebClient Protocol documentation

      The fact that the TCP port is held open doesn't impact data usage, per se. Unless properties are changing no data is being passed; this is no different that if the app were polling.   However, if the app weren't designed right and left the connection open when it was in the...
  12. C

    Premise Premise WebClient Protocol documentation

    Chuck, is your phone developer unlocked?   Once I get the app cleaned up a little so it doesn't have things like my password hard coded (!) I'll share it out.   Maybe I'll invest some time in making it more generic so it will work with just about any premise install...
  13. C

    Premise Premise WebClient Protocol documentation

    Right now the app is custom, as is my original WP app. It does SOME dynamic loading (e.g. it queries the server for a flat list of lighting scenes).   I don't believe in automatically generated UI. I think the AutomationBrowser is fine for rudamentary interaction, but I think it is horrible for...
  14. C

    Premise Premise WebClient Protocol documentation

    I spent some time in the past few days on this project.   I haven't updated the code on github yet but I did achieve something significant:   I built a fully functional Windows Phone 8 app using this library that is 100% asynchronous and driven by Premise notifications.    Compared to my...
  15. C

    Premise Enumerate properties on an object?

    Figured it out: .GetProperties. Duh.   However, I found that on objects in the devices tree attempting to get the "Bindings" property fails with 'object required'.   I had to do this:   for each prop in objZone.GetProperties()   if prop.Name <> "Bindings" then     value =...
Back
Top