Component Services

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TEMackin
    New Member
    • Aug 2008
    • 1

    Component Services

    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:

    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 )
    		{
            ...
            }
        ...
    Last edited by Curtis Rutland; Aug 6 '08, 05:41 PM. Reason: Added Code Tags - Please use the # button
Working...