aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ConsoleClient (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-04disable some XmlResolverUbitUmarov1-0/+2
2017-01-05Massive tab and trailing space cleanupMelanie Thielker2-6/+6
2013-02-27Make sure we dispose of WebResponse, StreamReader and Stream in various ↵Justin Clark-Casey (justincc)1-9/+10
places where we were not already.
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)1-1/+1
This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
2013-02-01Revert "Update assembly version numbers"BlueWall1-1/+1
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec.
2013-02-01Update assembly version numbersBlueWall1-1/+1
2012-11-14A few more AssemblyInfos in a few more dlls.Diva Canto1-0/+33
2012-09-30Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto1-1/+1
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
2012-09-30Added request.Proxy=null everywhere, as discussed in ↵Diva Canto1-1/+1
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
2012-07-11Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)1-1/+1
constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)1-0/+1
of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
2010-06-08Make the text mode remote console really work. It can now be used to sendMelanie Thielker1-8/+30
multi-word commands with proper quoting, handles arguments with spaces and allows interactive use, e.g. user creation.
2010-06-08Make the text mode remote console really work. It can now be used to sendMelanie Thielker1-8/+30
multi-word commands with proper quoting, handles arguments with spaces and allows interactive use, e.g. user creation.
2010-01-29Apply http://opensimulator.org/mantis/view.php?id=4504Justin Clark-Casey (justincc)1-1/+3
Stop the REST console crashing when entering return on an empty line Thanks BlueWall
2010-01-08Change ConsoleClient to allow quoted values to be passed through. ThisMelanie1-1/+7
allows setting the login message remotely on the user server console
2009-08-26Fix some compile warnings.Jeff Ames2-6/+0
2009-08-17Add the ability to use -console=rest to the region server. UserMelanie1-1/+1
and pass are specified the same way as for the ROBUST server
2009-08-17Limit the scrollback buffer output of the command line client toMelanie1-1/+14
100 lines (4 screens worth) so things don't scroll endlessly on connect
2009-08-17Add the OpenSim.ConsoleClient app.Melanie2-0/+271
Usage: OpenSim.ConsoleClient -h <host> -p <port> -u <user> -P <pass> host defaults to localhost, port defaults to 8003.