↧
Answer by Joost Stolk for C# webservice referencing dll cannot access...
This is working: The XML file resides in the same folder as the executing dll. First get the fully qualified path to the executing assembly and pass that in to XElement.Load() static public string...
View ArticleAnswer by Kyle for C# webservice referencing dll cannot access external xml file
You need to fully qualify the path to taxes.xml. something like c:\somefolder\anotherfolder\taxes.xml
View ArticleC# webservice referencing dll cannot access external xml file
I'm building a web service in C#.On this web service I have the following code: public class Service1 : System.Web.Services.WebService { [WebMethod] public decimal GetTaxAmountx(decimal amount, int...
View Article