2008/12/22 Arnaud Simon <[email protected]>: > It is working fine on my box, but I am building it with Visual studio > though. I also have some diffs on some assembly files but I doubt this is > what is causing the errors.
I am also building with VS. > Could you elaborate on the fixes you made? Here is a selection - there are more but I am very interested in knowing whether you (or others) don't have these issues: wcBookingClient.csproj - ProjectReference Include="..\wcfSession\wcfBookingServer.csproj" which does not exist. That directory does not exist in svn AFAICS. duplicate namespaces - namespace org.apache.qpid.wcf.demo contains numerous classes called Program (in diff projects). QpidInputChannel.cs contains "using client.client;" which is a namespace that does not exist Also QpidInputChannel.cs and other classes contain ambiguous references - e.g. Message could be either System.ServiceModel.Channels.Message or org.apache.qpid.client.Message internal class WCFListener : MessageListener - that interface does not exist. If it is IMessageListener then the method signature is wrong: public void messageTransfer(MessageTransfer m) should be public void messageTransfer(IMessage m) I won't check in until I've had some indication whether you think the above are an issue only with my checkout etc. Could someone else with VS please try opening the wcf solution? RG
