Hey All,
Im trying to call GetNodeTypes(), but i keep getting this error "Object cannot be stored in an array of this type". In the Web Services SDK Doc it says that GetNodeTypes() should be String[], so Im not sure why this is error is occuring. I've set it up like this
internal String[] GetNodeTypes()
{
ReAuthenticateIfRequired();
String[] nodeTypes = null;
nodeTypes = fDocManService.GetNodeTypes(ref fDocsAuthentication);
UpdateAuthenticationTokens(fDocsAuthentication.AuthenticationToken);
return nodeTypes;
}
Thanks in advance,
Sean