Search results

  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 =...
  16. C

    Premise Enumerate properties on an object?

    Is it possible to iterate over an object enumerating its properties?   I'm writing a script that will dump the contents of my security zones and to reduce the chance for transcription errors I want the script to generate the 'rows' with code (there are dozens of properties on a Caddx security...
  17. C

    Premise I love Premise. Quick garage upgrade.

    I have a detached garage/workshop (the "Upper Garage"). I have long had it setup so that when I opened the doors the Occupancy module would cause the lights to turn on and the air compressor to power on.   I've had a stereo up there for a while in a cabinet. It's an old Marantz SR808 receiver...
  18. C

    Premise Ugly bug in Premise web server

    I've finally figured out why JQM and other clients that use the premise web server (known internally within Premise as the WebClient) have such horrible behavior when they try to access files/resources that don't exist.    For example, notice how if a .gif or .png on the server is missing the...
  19. C

    Premise Premise WebClient Protocol documentation

      I don't currently have a Mac in the house so I can't actually build a test app using Xamarin for iOS. However, given how easy it was to use my library in Xamarin for Android I'm sure that it will work. This means that anyone with reasonable C# knowledge can build a Premise client app for iOS...
  20. C

    Premise Premise WebClient Protocol documentation

    I have verified that built-in object methods such as IsOfExplicitType are not available via the invoke method command.   However, it would be easy to define your own method on any class that could call IsOfExplicitType for you.   You could define an override of Object (or other class) that has a...
Back
Top