Results 1 to 9 of 9

Thread: Do YOU get this result when trying to use the Vixen Server?

  1. #1

    Default Do YOU get this result when trying to use the Vixen Server?

    Here, follow along with me, if you will, my quest to get a working instance of the Vixen Remote up and running.


    Ive been able to reproduce this error almost EVERY time, but I still cant figure out why it would be doing this. Im going to start with a new, fresh copy of Vixen (updated to 2.1.4). Heres my steps:

    STEP 1: Create a profile, and have the 'Renard Dimmer (modified)' plugin enabled.

    STEP 2: Start up VixenServerUI.exe from the \server folder in the Vixen directory. Click 'START SERVER'

    STEP 3: In Vixen, click Add-ins menu, select the 'Remote Client' item. Type my machine's IP address in the text field and click 'Contact'. Then check the box that says "Allow remote network connections (internet)". This registers with the running server, and works fine.

    STEP 4: Verify that the server stuff is working, by browsing to the following URL (using your own IP): http://192.168.0.100:41402/vixen/com...?action=status

    STEP 5: Since the status is "OKStopped", that means the server/client is working, so the next natural thing to do is load a sequence by going to: http://192.168.0.100:41402/vixen/com...e=CoolSong.vix

    STEP 6: Since it says OK, that means the song is loaded and ready to play, so lets start the sequence by going to: http://192.168.0.100:41402/vixen/com...action=execute


    STEP 7: OH NO!!! AN ERROR!!! This is where I get an error from Vixen saying access was denied to the COM1 port. Once I click the error, the song starts playing thought!
    Can others reproduce this error? Does anybody know why this would happen? Or how to stop it?

    If I cant fix this error, I am going to have to try to find some other software instead of Vixen

  2. #2
    Join Date
    Dec 2009
    Location
    Gresham, OR (45.483992, -122.453879)
    Posts
    1,591

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    I did reproduce the error. They only thing I can think that might resolve it is to have a tool called Auto Hot Key watch for that dialog and dismiss it automatically. Not the best solution, but better than going to other software so late in the game.

    Can I ask what you are doing that you must have remote execution? I bet it is intriguing.

    -- John

  3. #3
    Join Date
    Dec 2010
    Location
    oklahoma
    Posts
    691

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    not sure if it will help but when I got that error I had vixen open twice had to go to task manager and shut down vixen there. when I opened vixen back up it worked. I was not trying to run a server though.
    not so new but still learning!

  4. #4

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    It works for me, but once I close everything, and reopen it, then I can reproduce your error.

    I noticed that vixen server has nothing to do with this. It's Vixen that's holding the COM port.
    Try restarting your computer and trying again!

    I've also noticed that the Server continues running in the background. Make sure before you re-try that all instances of vixen were shutdown successfully!
    Usually, a restart should fix this. Vixen does this to me some times on show-time, too. (only when I'm messing with it)
    Last edited by SeiRruf; 11-28-2011 at 04:18 AM.
    2010: 65 chnls, 6K incandescent bulbs. 3 songs.
    2011: 180 chnls. 22.5K incandescent bulbs. 5 songs. (4 animated pauses)
    2012: 230 chnls. 27.5K incandescent bulbs. 8 songs.
    RenardSS (dimmable) via Vixen - See the (2010-2012) Show at -> http://SeiRruf.com/youtube
    -------
    CURRENT STATUS: Show's OFFLINE for 2012! Picking out new Songs for 2013! Considering additions. Calculating Costs. I want something big this year! Loading sadness due to still no pixel-display. Looking for a way to fund this huge hobby - In search for Sponsors!
    Another Territory Marked by the SeiRruf MalaWolSki.

  5. #5

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    I ended up doing what macebobo suggested, and just made an AHK script to cancel out the dialog.

    Not a FIX by any means, but it should take care of the error message that was blocking execution. Heres the script in case anybody else wants to get around this problem:

    Code:
    ;This will silently watch for a popup from Vixen, then press Escape if it sees one. 
    ;It is usefull for the error that pops up when trying to execute a sequence remotely
    
    #SingleInstance force
    
    loop {
    	WinWait, Vixen ahk_class #32770
    	WinActivate
    	Send {Esc}
    	;MsgBox Error detected and suppressed
    }

    As to what I'm doing, Ill be sure to come back here and post about it once it's all set up - hopefully this week. I still have a little bit of code to tweak here and there, but once it's all taken care of, it should be pretty spiffy :P

  6. #6
    Join Date
    Jan 2011
    Location
    Port Richey, FL
    Posts
    472

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    Was there anymore progress with this or is it a dead issue?

    Dave

  7. #7

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    There has not yet been any progress. The issue remains the same.

    I have found out that it has to be with Vixen leaving the port open however.. so that when it reattempts to connect to it, it fails, but it's still connected, so closing the error still allows it to work properly. I haven't been able to find a way to fix it naturally.
    2010: 65 chnls, 6K incandescent bulbs. 3 songs.
    2011: 180 chnls. 22.5K incandescent bulbs. 5 songs. (4 animated pauses)
    2012: 230 chnls. 27.5K incandescent bulbs. 8 songs.
    RenardSS (dimmable) via Vixen - See the (2010-2012) Show at -> http://SeiRruf.com/youtube
    -------
    CURRENT STATUS: Show's OFFLINE for 2012! Picking out new Songs for 2013! Considering additions. Calculating Costs. I want something big this year! Loading sadness due to still no pixel-display. Looking for a way to fund this huge hobby - In search for Sponsors!
    Another Territory Marked by the SeiRruf MalaWolSki.

  8. #8
    Join Date
    Jan 2011
    Location
    Port Richey, FL
    Posts
    472

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    Does anyone have a gui interface program or script that will send the commands to the server and display results from a vixen server from a remote machine?
    Thanks
    Dave

  9. #9
    Join Date
    Oct 2011
    Location
    NC
    Posts
    61

    Default Re: Do YOU get this result when trying to use the Vixen Server?

    Has anyone been able to find a fix other than the AHK script?

    I found that the return key is more reliable in AHK. The ESC key worked about 90% of the time.

    Code:
    ;This will silently watch for a popup from Vixen, then press Escape if it sees one. 
    ;It is usefull for the error that pops up when trying to execute a sequence remotely
    
    #SingleInstance force
    
    loop {
    	WinWait, Vixen ahk_class #32770
    	WinActivate
    	Send {Return}
    	;MsgBox Error detected and suppressed
    }
    Last edited by Drweird13; 10-03-2012 at 08:30 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •