Discussion:
Provisioning MS SFU objects.
(too old to reply)
William Holmes
2007-03-19 14:23:43 UTC
Permalink
Hello,

I am attempting to use MIIS to provision and maintain some Micorsoft
Services For Unix Ojects. During a Sync Operation I get the following error.
I have the Container included in the Active Directory MA's selected
directory partitions and I have also Included the msSFU30NisObject from the
object types page. It is not clear to me why this is happening. Any
suggestions appreicated.

Thanks

Bill

Microsoft.MetadirectoryServices.NoCompatiblePartitionFoundException: The
partition filter criteria for management agent "ActiveDirectory" do not
include an object with DN
"CN=wfs-1/F/homeB\,CN\=amd.fsys\,CN\=csnis\,OU\=NIS\,DC\=mydomain\,DC\=local\"
and object classes msSFU30NisObject.
at Microsoft.MetadirectoryServices.Impl.CSEntryImpl.CommitNewConnector()
at ProvisioningAuxFunctions.ProvisionConnectorSpace.nisMapEntry(MVEntry
mventry, NISObjectTemplate nisTemplate) in C:\Documents and
Settings\MIISDEV\My Documents\ProvisioningAuxFunctions\Classes.vb:line 797
at Mms_Metaverse.CSProvisioning.MVExtensionObject.Provision(MVEntry
mventry) in C:\Documents and Settings\MIISDEV\My
Documents\MVExtension\MVExtension.vb:line 92
Tomasz Onyszko
2007-03-19 15:01:59 UTC
Permalink
Post by William Holmes
Hello,
I am attempting to use MIIS to provision and maintain some Micorsoft
Services For Unix Ojects. During a Sync Operation I get the following error.
I have the Container included in the Active Directory MA's selected
directory partitions and I have also Included the msSFU30NisObject from the
object types page. It is not clear to me why this is happening. Any
suggestions appreicated.
Probably You haven't checked OU in which this object is provisioned in
container configuration.
--
Tomasz Onyszko
http://www.w2k.pl/ - (PL)
http://blogs.dirteam.com/blogs/tomek/ - (EN)
William Holmes
2007-03-19 15:38:07 UTC
Permalink
Hello,

It is actually the container is included. as is the Object Type. This is why
I am confused about the error.

Bill
Post by Tomasz Onyszko
Post by William Holmes
Hello,
I am attempting to use MIIS to provision and maintain some Micorsoft
Services For Unix Ojects. During a Sync Operation I get the following
error. I have the Container included in the Active Directory MA's
selected directory partitions and I have also Included the
msSFU30NisObject from the object types page. It is not clear to me why
this is happening. Any suggestions appreicated.
Probably You haven't checked OU in which this object is provisioned in
container configuration.
--
Tomasz Onyszko
http://www.w2k.pl/ - (PL)
http://blogs.dirteam.com/blogs/tomek/ - (EN)
Michael D'Angelo
2007-03-19 15:50:45 UTC
Permalink
It looks like you are calling EscapeDNComponent on the entire DN string.
Note the backslashes in front of every = and ,

Your DN should be constructed like this:

string rdn = "CN=wfs-1/F/homeB"

ReferenceValue dn =
MA.EscapeDNComponent(rdn).Concat("CN=amd.fsys,CN=csnis,OU=NIS,DC=mydomain,DC=local")

Substituting variables as needed, of course.
Post by William Holmes
Hello,
I am attempting to use MIIS to provision and maintain some Micorsoft
Services For Unix Ojects. During a Sync Operation I get the following
error. I have the Container included in the Active Directory MA's selected
directory partitions and I have also Included the msSFU30NisObject from
the object types page. It is not clear to me why this is happening. Any
suggestions appreicated.
Thanks
Bill
Microsoft.MetadirectoryServices.NoCompatiblePartitionFoundException: The
partition filter criteria for management agent "ActiveDirectory" do not
include an object with DN
"CN=wfs-1/F/homeB\,CN\=amd.fsys\,CN\=csnis\,OU\=NIS\,DC\=mydomain\,DC\=local\"
and object classes msSFU30NisObject.
at Microsoft.MetadirectoryServices.Impl.CSEntryImpl.CommitNewConnector()
at ProvisioningAuxFunctions.ProvisionConnectorSpace.nisMapEntry(MVEntry
mventry, NISObjectTemplate nisTemplate) in C:\Documents and
Settings\MIISDEV\My Documents\ProvisioningAuxFunctions\Classes.vb:line 797
at Mms_Metaverse.CSProvisioning.MVExtensionObject.Provision(MVEntry
mventry) in C:\Documents and Settings\MIISDEV\My
Documents\MVExtension\MVExtension.vb:line 92
William Holmes
2007-03-19 16:06:39 UTC
Permalink
Hi Michael,

Thank you very much! You were absolutely correct. I tried to "cheat" on
that one. Its working fine now.

Bill
Post by Michael D'Angelo
It looks like you are calling EscapeDNComponent on the entire DN string.
Note the backslashes in front of every = and ,
string rdn = "CN=wfs-1/F/homeB"
ReferenceValue dn =
MA.EscapeDNComponent(rdn).Concat("CN=amd.fsys,CN=csnis,OU=NIS,DC=mydomain,DC=local")
Substituting variables as needed, of course.
Post by William Holmes
Hello,
I am attempting to use MIIS to provision and maintain some Micorsoft
Services For Unix Ojects. During a Sync Operation I get the following
error. I have the Container included in the Active Directory MA's
selected directory partitions and I have also Included the
msSFU30NisObject from the object types page. It is not clear to me why
this is happening. Any suggestions appreicated.
Thanks
Bill
Microsoft.MetadirectoryServices.NoCompatiblePartitionFoundException: The
partition filter criteria for management agent "ActiveDirectory" do not
include an object with DN
"CN=wfs-1/F/homeB\,CN\=amd.fsys\,CN\=csnis\,OU\=NIS\,DC\=mydomain\,DC\=local\"
and object classes msSFU30NisObject.
at
Microsoft.MetadirectoryServices.Impl.CSEntryImpl.CommitNewConnector()
at ProvisioningAuxFunctions.ProvisionConnectorSpace.nisMapEntry(MVEntry
mventry, NISObjectTemplate nisTemplate) in C:\Documents and
Settings\MIISDEV\My Documents\ProvisioningAuxFunctions\Classes.vb:line 797
at Mms_Metaverse.CSProvisioning.MVExtensionObject.Provision(MVEntry
mventry) in C:\Documents and Settings\MIISDEV\My
Documents\MVExtension\MVExtension.vb:line 92
Loading...