Where do I open an Alfresco issue?
I see that the JIRA site is for version 2.x
Is there another place to raise issues?
I do not know if the problem is a WSDL or Visual Studio issue. I suspect that it is both.
When the VS2008 ccreates a proxy class, it creates two instances of the same class.
This causes the compiler to state that a property already exists.
Example.
It says public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; already exists
This is because there are two instances of the class.
partial class Store
Another example says private string userNameField; already exists
This is because two instances of the same class was generated
partial class UserFilter
There must be something in the WSDL that causes svcutil to create two instances
Removing one of the instances causes another error.
Something in the format of the WSDL is not correct.
How can I raise this as an issue to the Alfresco community.
I am consuming the original WSDL and not the CMIS wsdl.
I tried working with the CMIS version and had different problems. It seems like Alfresco is not making sure that .NET developers can use their WSDL.