I am facing following problem while accessing web service.
Plz help me.
i am passing
DataTable.(creating an instance before passing)
string array
dateTime(using here ? operator)
e.g.
DateTime? dt = null;
{
System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.ArgumentNullException: Value cannot be null.
Parameter name: fileName
at Humana.HealthCare.SQIDS.Common.FileLogger.WriteLog(String logString, Int32 level) in
This means that the FileLogger.WriteLog method on the server has attempted to pass null for the "fileName" parameter to some method. It is a server-side problem, and may have nothing to do with how you are calling
the service.
vishal18
Member
23 Points
52 Posts
Regarding Web Wervice...
Nov 20, 2008 11:37 AM|LINK
I am facing following problem while accessing web service.
Plz help me.
i am passing
DataTable.(creating an instance before passing)
string array
dateTime(using here ? operator)
e.g.
DateTime? dt = null;
{
System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.ArgumentNullException: Value cannot be null.
Parameter name: fileName
at Humana.HealthCare.SQIDS.Common.FileLogger.WriteLog(String logString, Int32 level) in
C:\Users\225285\Desktop\SQIDS\v1.0\src\Common\FileLogger.cs:line 62
at Humana.HealthCare.SQIDS.Server.DefectInformationServiceFacade.AddDefectAssignment(DefectInformationDto defectInformationDto) in
C:\Users\225285\Desktop\SQIDS\v1.0\src\Server\Business Objects\DefectInformationServiceFacade.cs:line 245
at Humana.HealthCare.SQIDS.WebService.DefectService.AddDefectAssignment(DefectInformationDto defectInformationDto) in
C:\Users\225285\Desktop\SQIDS\v1.0\src\WebService\DefectService.asmx.cs:line 128
--- End of inner exception stack trace ---
at Humana.HealthCare.SQIDS.Web.DefectInformationController.AddDefectAssignment(DefectInformationDto defectInformationDto) in
C:\Users\225285\Desktop\SQIDS\v1.0\src\Web\Controllers\DefectInformationController.cs:line 216
at Humana.HealthCare.SQIDS.Web.DefectInformation.SaveButton_Click(Object sender, EventArgs e) in
C:\Users\225285\Desktop\SQIDS\v1.0\src\Web\Defects\DefectInformation.aspx.cs:line 975
}
johnwsaunder...
Star
11262 Points
1981 Posts
Re: Regarding Web Wervice...
Nov 22, 2008 06:42 PM|LINK
System.ArgumentNullException: Value cannot be null.
Parameter name: fileName
at Humana.HealthCare.SQIDS.Common.FileLogger.WriteLog(String logString, Int32 level) in
C:\Users\225285\Desktop\SQIDS\v1.0\src\Common\FileLogger.cs:line 62
This means that the FileLogger.WriteLog method on the server has attempted to pass null for the "fileName" parameter to some method. It is a server-side problem, and may have nothing to do with how you are calling the service.