Be gentle, I'm a C# newbie...
I have a VS 2003 C# project that I can get deployed to Component Services fine, but I can not see any of my methods. I think I should see "Initialize " in the exposed methods.
Here is a snippet:
I have a VS 2003 C# project that I can get deployed to Component Services fine, but I can not see any of my methods. I think I should see "Initialize " in the exposed methods.
Here is a snippet:
Code:
using System;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.EnterpriseServices;
[assembly:AssemblyKeyFile("ActuateAPI.snk")]
[assembly:ApplicationActivation(ActivationOption.Server)]
[assembly:ComVisibleAttribute(true)]
namespace ActuateAPIWebService
{
[ComVisibleAttribute(true)]
public class ActuateWS:ServicedComponent
{
public ActuateWS()
{
}
[ComVisibleAttribute(true)]
public bool Initialize( string as_url, string as_encyclopedia, ref string as_errormsg )
{
...
}
...