Hi there. my first post:
I am building a module in C#. I found out that when i want to configure it from another server, it all crashes. I found out that i should use a ModuleServiceProxy instance and a ModuleService instance.
When I open up the module interface in the management console, it crashes with the exception:
Parameter name: serviceName ---> System.ArgumentNullException: Value cannot be null.
What could this be? should be something simple, because google gives me nothing.
I have no clue of where to specify this serviceName, let alone what the value should be.
Bit of stacktrace:
at Microsoft.Web.Management.Client.SharedMemoryChannel.InvokeInternal(String serviceName, String methodName, Object[] parameters)
--- End of inner exception stack trace ---
at Microsoft.Web.Management.Client.SharedMemoryChannel.MTAHelper.Execute(String serviceName, String methodName, Object[] parameters)
at Microsoft.Web.Management.Client.ModuleServiceProxy.Invoke(String methodName, Object[] parameters)
Thanks in advance
Frank