Re,
Je suis toujours sur la même erreur que hier.Aprés plusieurs recherches et méthode, je pense me rapprocher du but. Sauriez-vous comment je pourrais passé une DataContext entre mon client et une classe implémentant une interface ?
Je rapel que je suis en WCF.
The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs. |
Code Client: Mon erreur se produit à cette ligne là ==> myService.Init(oDataContext).
Code :
- InitializeComponent();
- myChannelFactory = new ChannelFactory<I_Base_De_Donnees.IServiceDev>(new NetTcpBinding(), "net.tcp://localhost:8018/Interface_Imp_BDD.CurrencyService" );
- myService = myChannelFactory.CreateChannel();
- String Connect = "Server=" + SQLServer_Server + ";Database=" + SQLServer_Database + ";Trusted_Connection=" + SQLServer_TrustedConnection + "; User Id=" + SQLServer_UserId + "; Password=" + SQLServer_UserPassword + "";
- oDataContext = new DataContext(Connect);
- myService.Init(oDataContext);
|
Implémentation :
Code :
- public void Init(DataContext Context)
- {
- (...)
- }
|
Interface :
Code :
- [OperationContract()]
- void Init(DataContext Context);
|
Auriez-vous une idée de mon erreur ? Je précise que les paramètres de connexion sont bons, puisque je les ai testé sur un autre projet, sans interface, sans rien du tout...
D'avance merci
++
Message édité par cvb le 07-02-2010 à 17:27:59