Advanced Forum Search Results
-
For everyone, i have finally solved the problem.
When i'll have few minutes, i'll write the solution.
Thanks so much to everybody.
-
I have modified the string connection with user id= sa and relative password but the problem persist.
When i change the AttachDbFilename with Initial Catalog= database1.mdf, when i call the method he says denied access for NT AUTORITHY
-
Hi,
i have find the specific problem in english language, is there:
http://support.microsoft.com/?scid=kb%3Ben-us%3B908038&x=13&y=16
-
This is with more information (Exception.Source and Exception.InnerException added):
-
[quote user="sladapter"]
I don't know what the message is saying. But It's not because of try/catch, it's because you added that out parameter.
I know this is very common way to pass the error back to Silverlight. I have it working without any problem, and I know a lot of people have it working. If you still can not make ...
-
[quote user="sladapter"]
1)Your Service just returns List not List<YourObject>?[ServiceContract]
public interface IService
{
[OperationContract]
List OttieniContenuto(string OggettoRichiesto);
//should be
List<SomeObject> OttieniContenuto(string OggettoRichiesto, out string ServiceError);
}2) Remove the ...
-
The try/cacth method generate an error when i go to update the service reference..
this is my contract: [ServiceContract]
public interface IService
{
[OperationContract]
List OttieniContenuto(string OggettoRichiesto);
}
this my class:
public class Service : IService
{
#region IService Membri di
public List ...
-
[quote user="sladapter"]
Web_Horse,
How do you connect to Database? Are you using Window authentication or SQL server authentication? If you are using Window authentication, it might be the problem with Database connection, not with Service connection. Because when you running under Dev Server, the LoginUser is the current window ...
-
[quote user="Web_Horse"]
[quote user="davidezordan"]
A questo punto conviene fare un po' di debug nel servizio.
Prova a commentare tutto il codice LINQ e ritornare solo una semplice stringa, in modo da verificare che il servizio e l'applicativo SL funzionino correttamente su IIS (in questo modo escludiamo LINQ to SQL ...
-
[quote user="davidezordan"]
A questo punto conviene fare un po' di debug nel servizio.
Prova a commentare tutto il codice LINQ e ritornare solo una semplice stringa, in modo da verificare che il servizio e l'applicativo SL funzionino correttamente su IIS (in questo modo escludiamo LINQ to SQL come ...