|
|
|
Tell us what you think of the site.
|
Autodesk Media & Entertainment User Community
|
Autodesk® 3ds Max®
|
|
Autodesk® Maya®
|
|
Autodesk® Softimage®
|
|
Autodesk® MotionBuilder®
|
|
Autodesk® Mudbox™
|
|
Autodesk® ImageModeler™
|
|
Autodesk® Sketchbook® Pro
|
|
Autodesk® Smoke on Mac®
|
| XSI Server Not Loading From UNC/Networks Paths
|
|
|
Yeah I’ll do that as soon as I’m back at home.
|
|
|
|
[quote=Kel Solaar;19973]Yeah I’ll do that as soon as I’m back at home.
As far as I remember, those permissions are required if the computer belongs to the active directory tree. Otherwise, you don’t need them - like in a simple windows workgroup, that you may have at home.
If you’re in the active directory network, try to run this program from a network share:
using System; using System.Collections.Generic; using System.Text; using System.IO;
namespace Test
{
class Program
{
static void Main( string[] args )
{
Console.WriteLine( "Working..." );
StreamWriter oStreamWriter = new StreamWriter( "test.txt" );
oStreamWriter.WriteLine( "Working..." );
oStreamWriter.Close();
Console.WriteLine( "Still working..." );
}
}
}
|
|
|
|
Yeah at home I use a simple workgroup, however maybe Rob can test on at his workplace.
Thx for the program, will test it tonight.
|
|
|
|
Sorry to disappoint you, but I’m not running a domain either (MS Homeserver setup).
I ran the test app on one of the server shares, and it creates a test file with one comment.. ‘working’.
Thanks for the help though, much appreciated.
rob
|
|
|
|
I just tried your Test progam, It crashed at first because I didn’t had the right to write/modify files on the shared folder, I adjusted them, the file went outputed ok, I relaunched XSI, still no DotNet plugins showing :|
Thanx taking time to try to find a solution though !
|
|
|
|
Hi,
.NET shared plugins won’t load in XSI unless they are registered in the GAP (annoying).
Details on the wiki: http://softimage.wiki.softimage.com/index.php/CSharp_Plugins_and_Workgroups
-mab
|
|
|
|
Sorry, I meant GAC not GAP…
|
|
|
|
Oh :)
Sounds like you find the issue ! :) I’ll recompile that this evening and let you know ! Thx ^^
|
|
|
|
Hi Thomas,
Did you got around the recompile and got it working??
rob
|
|
|
|
Yes :) And it’s working ! Many Thanx to Marc André !
Here is the release :
http://kelsolaar.hdrlabs.com/?di...table/7.01/7.01.698.0_GAP
You will need to register the .dll in the Assembly Cache using something like this :
C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin>gacutil.exe /i \\ivy\Workgroup\Addons\sIBL_GUI_XSI\Application\Plugins\sIBL_GUI_XSI_Server.dll
Let me know how it works for you, and sorry for that loooooooong evening ( about a month ). I had some deadlines at work, and I got stuck on Eve Online too :|
KS
|
|
|
|
|
|