Edu-IT Posted September 5, 2010 Posted September 5, 2010 Done. Will be out later today, a long with a log out button, and hopefully a change my password button! The logout button simply displays text which says close browser? If a person doesn't clear cookies, will they still be prompted for login when they visit the site again? Also, this logout button breaks the Silverlight browser. Press it when using the SL mode and you'll see what I mean.
nickbro Posted September 5, 2010 Author Posted September 5, 2010 Because the authentication method for HAP is IIS's basic authentication, you need to close your browser to actually log out The logout button is now fixed
MK-2 Posted September 8, 2010 Posted September 8, 2010 (edited) Hi Nick, is there any way of adding a "save as" or "download to" option in the right click menu of silverlight browser? In the same way you can "upload to" and select a local file to upload, but you right click on a file in my docs, download to, and then get a location box to save the download to. i know it seems a bit picky, we just have some staff concerned that if you double click the file and open it, it then opens in temp internet files so could confuse some kids (or some staff more likely!). they are used to using webdav so could open a file and when they went to save, it defaulted back to the webdav folder so they never actually saved the file to their machine, and i think being able to download to a certain directory might be a happy medium for them. Cheers Sorry to add another one, but with the main page links (in the web.config file) is it possible to have them open in a new window? You know how in html it would be , as we have links to other facilities which i dont want it opening in the main page. Didn't know if there was a way of having it as an option to open in same page or new page? Cheers again! Edited September 8, 2010 by MK-2
nickbro Posted September 8, 2010 Author Posted September 8, 2010 Hi Nick, Sorry to add another one, but with the main page links (in the web.config file) is it possible to have them open in a new window? You know how in html it would be , as we have links to other facilities which i dont want it opening in the main page. Didn't know if there was a way of having it as an option to open in same page or new page? Cheers again! To open in a new window, use javascript. javascript:window.open('test.html'). That should work. 1
nickbro Posted September 8, 2010 Author Posted September 8, 2010 Hi Nick, is there any way of adding a "save as" or "download to" option in the right click menu of silverlight browser? In the same way you can "upload to" and select a local file to upload, but you right click on a file in my docs, download to, and then get a location box to save the download to. i know it seems a bit picky, we just have some staff concerned that if you double click the file and open it, it then opens in temp internet files so could confuse some kids (or some staff more likely!). they are used to using webdav so could open a file and when they went to save, it defaulted back to the webdav folder so they never actually saved the file to their machine, and i think being able to download to a certain directory might be a happy medium for them. Cheers Is there any chance of adding this to the issue tracker on codeplex? It will be in the next release if i remember
Edu-IT Posted September 8, 2010 Posted September 8, 2010 Hi Nick, is there any way of adding a "save as" or "download to" option in the right click menu of silverlight browser? In the same way you can "upload to" and select a local file to upload, but you right click on a file in my docs, download to, and then get a location box to save the download to. i know it seems a bit picky, we just have some staff concerned that if you double click the file and open it, it then opens in temp internet files so could confuse some kids (or some staff more likely!). they are used to using webdav so could open a file and when they went to save, it defaulted back to the webdav folder so they never actually saved the file to their machine, and i think being able to download to a certain directory might be a happy medium for them. Cheers Sorry to add another one, but with the main page links (in the web.config file) is it possible to have them open in a new window? You know how in html it would be , as we have links to other facilities which i dont want it opening in the main page. Didn't know if there was a way of having it as an option to open in same page or new page? Cheers again! I added this to the HAP tracker for you on Codeplex. http://hap.codeplex.com/workitem/7135 1
MK-2 Posted September 9, 2010 Posted September 9, 2010 I'm hoping this is what you meant by the javascript bit, if so, I'm having a slight issue. That opens a new page fine, but in the original page it then loads a blank page with [object] in the top left?
MK-2 Posted September 9, 2010 Posted September 9, 2010 me again, sorry! With the mapped drive in the school documents bit, is it possible to map the same drive to different locations for different security groups? So T: = \\server\share1 for domain admins T: = \\server\share2 for teaching staff or does every link need a separate drive? It's not a big deal if it does, I was just wondering if it was possible to already do it? Thanks Mike
Edu-IT Posted September 9, 2010 Posted September 9, 2010 me again, sorry! With the mapped drive in the school documents bit, is it possible to map the same drive to different locations for different security groups? So T: = \\server\share1 for domain admins T: = \\server\share2 for teaching staff or does every link need a separate drive? It's not a big deal if it does, I was just wondering if it was possible to already do it? Thanks Mike I'm not sure I understand. In the config options set T: SHARE 1 to some security groups, and then set T: SHARE 2 to the others. Two seperate shares listed in the config but only the right people will be able to see each one. Make sense? Not sure if that is what you mean or if it'll work but no harm in trying.
MK-2 Posted September 9, 2010 Posted September 9, 2010 (edited) Yep that's exactly what I meant, and I'd set the two different security groups, but it didn't appear to work, so I didnt know if there was something I'd missed or done wrong. So basically in the web.config file it read: It didn't appear to work but I'll double check spellings and formatting just in case **edit** have just double checked, and it appears that one is sacrificed for another, so students wont see U drive at all, but staff do see it. Edited September 9, 2010 by MK-2
Edu-IT Posted September 9, 2010 Posted September 9, 2010 Yep that's exactly what I meant, and I'd set the two different security groups, but it didn't appear to work, so I didnt know if there was something I'd missed or done wrong. So basically in the web.config file it read: It didn't appear to work but I'll double check spellings and formatting just in case **edit** have just double checked, and it appears that one is sacrificed for another, so students wont see U drive at all, but staff do see it. Could you not replace the S with something else, so each drive is unique, but use the same UNC?
nickbro Posted September 9, 2010 Author Posted September 9, 2010 People don't really see the drive letter in HAP, unless they look in the address bar. The Drive letter needs to be unique as it's a Identity key field
MK-2 Posted September 10, 2010 Posted September 10, 2010 you know what, I realised that after looking at it. I'm sorry! Any advice on the javascript opening thing? Thanks again
nickbro Posted September 10, 2010 Author Posted September 10, 2010 try javascript:void(window.open('/someuri')); 1
nickbro Posted September 12, 2010 Author Posted September 12, 2010 v5.2.10 has just been released onto Home Access Plus+. Added the right click download link, as well as fixing the basic silverlight uploader but
MK-2 Posted September 13, 2010 Posted September 13, 2010 thanks nick, the javascript thing worked great. i promise not to bug you any more this week
linkazoid Posted September 13, 2010 Posted September 13, 2010 Could anybody help me with a few questions.... Does anyone have any installation instructions for a vanilla install? What type of server should this be installed on, DC, storage, application.... Thanks, Michael
keninski Posted September 13, 2010 Posted September 13, 2010 Hi Nick I have updated to v5.2.10 but come across a few issues. renaming files leaves the file name with no extension (i think this was an old issue) I dont think this is linked to the version but what i have noticed is that when you download a file using the enhanced version you get a security warning but if i try and open the exact same file in the basic version it opens fine. We are using https so this shouldnt happen in the enhanced version please see attached file Thanks Alanhomelink.doc
linkazoid Posted September 13, 2010 Posted September 13, 2010 I have tried the config tool, but upon clicking finish I get the following message. See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.NullReferenceException: Object reference not set to an instance of an object. at HAP.Config.FirstRun.wiz_Finished(Object sender, EventArgs e) at AeroWizard.WizardControl.OnFinished() at AeroWizard.WizardControl.NextPage(WizardPage nextPage) at AeroWizard.WizardControl.nextButton_Click(Object sender, EventArgs e) at System.Windows.Forms.Control.OnClick(EventArgs e) at System.Windows.Forms.Button.OnClick(EventArgs e) at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent) at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ButtonBase.WndProc(Message& m) at System.Windows.Forms.Button.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) ************** Loaded Assemblies ************** mscorlib Assembly Version: 4.0.0.0 Win32 Version: 4.0.30319.1 (RTMRel.030319-0100) CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll ---------------------------------------- HAP Config Assembly Version: 1.7.0.0 Win32 Version: 1.7 CodeBase: file:///C:/Inetpub/wwwroot/HomeAccess/bin/HAP%20Config.exe ---------------------------------------- System.Windows.Forms Assembly Version: 4.0.0.0 Win32 Version: 4.0.30319.1 built by: RTMRel CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll ---------------------------------------- System.Drawing Assembly Version: 4.0.0.0 Win32 Version: 4.0.30319.1 built by: RTMRel CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll ---------------------------------------- System Assembly Version: 4.0.0.0 Win32 Version: 4.0.30319.1 built by: RTMRel CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- AeroWizard Assembly Version: 1.0.3851.27394 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Inetpub/wwwroot/HomeAccess/bin/AeroWizard.DLL ---------------------------------------- System.Core Assembly Version: 4.0.0.0 Win32 Version: 4.0.30319.1 built by: RTMRel CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll ---------------------------------------- System.Xml Assembly Version: 4.0.0.0 Win32 Version: 4.0.30319.1 built by: RTMRel CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll ---------------------------------------- ************** JIT Debugging ************** To enable just-in-time (JIT) debugging, the .config file for this application or computer (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled. For example: When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box. I am using the latest version. If anyone can shed some light where I am going wrong. Michael
nickbro Posted September 14, 2010 Author Posted September 14, 2010 No idea on the Config Tool error, since that error is not very helpful.
nickbro Posted September 14, 2010 Author Posted September 14, 2010 Hi Nick I have updated to v5.2.10 but come across a few issues. renaming files leaves the file name with no extension (i think this was an old issue) I dont think this is linked to the version but what i have noticed is that when you download a file using the enhanced version you get a security warning but if i try and open the exact same file in the basic version it opens fine. We are using https so this shouldnt happen in the enhanced version please see attached file Thanks Alan The renaming error again, ARG!! Will look into it. The security issue is just in IE, and once you do it once it goes away, but it is annoying. It's all down to IE security more than anything.
MK-2 Posted September 14, 2010 Posted September 14, 2010 with the hap config tool i had found that if you edit something and it is non standard you do get an error like that. i think i'd added a time in the booking system and not put an end time, or something it was expecting and it threw up errors. it might just be worth going through each page and checking each setting to make sure nothing is wrong.....a pain i know but at least it eliminates it
victory2009 Posted September 15, 2010 Posted September 15, 2010 (edited) After testing the Logon Tracker throughly in the school this week i am very impressed. We do have a few issues tho that i hope could be solved... 1. The tracker takes ages to register to logon and display the multiple logon box if the user has exceeded thier concurrent logons, is there any way of speeding this process up ? 2. the logon tracker management , is it possible to have the facility to sort the rows by computer name/username and time logged on?, is it possible also to have a delete button so i can delete a record if i wanted to let the user log on twice without changes on configuration? Thanks Edited September 15, 2010 by victory2009
nickbro Posted September 15, 2010 Author Posted September 15, 2010 Ok, here's some details of the up and coming update to HAP. Version 5.2.11 will contain an updated HAP Logon Tracker which actually does what I needs to do. It wasn't working correctly before (everyone was treated as an admin)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now