K
Keith Chadwick
Is it possible within a web service to get its properties as a string. For
instance
public class wscommon
<System.Web.Services.WebService(Namespace:="test")> _
<webmethod(EnableSession:=true, MessageName:="MyService",
Description:="Example Service Description")> _
public function MyService()
Dim serviceNamespace as string = ?
Dim serviceMessageName as string = ?
end function
end class
I am creating a db model that reflects my service architecture and I wish to
tie it into my ACL db model as a further security level so I need to get the
namespace and messagename. If I can I can simply hard code into each
service when it does a call to check if the caller is allowed. I would
prefer to reference the actual namespace and service method though.
Cheers
Keith
instance
public class wscommon
<System.Web.Services.WebService(Namespace:="test")> _
<webmethod(EnableSession:=true, MessageName:="MyService",
Description:="Example Service Description")> _
public function MyService()
Dim serviceNamespace as string = ?
Dim serviceMessageName as string = ?
end function
end class
I am creating a db model that reflects my service architecture and I wish to
tie it into my ACL db model as a further security level so I need to get the
namespace and messagename. If I can I can simply hard code into each
service when it does a call to check if the caller is allowed. I would
prefer to reference the actual namespace and service method though.
Cheers
Keith