WCF / ASMX :: File Protection / Availability In A Web Service?
Oct 5, 2010
I wrote a small web service (asmx) to write stuff to a file on the server. It works fine when run in the VS2008 test container. But when I run it under IIS on a remote machine, I get:
System.IO.DirectoryNotFoundException: Could not find a part of the path 'y:grahammiscprops.txt'.
'y' is a mounted drive on both the test and remote machines. The path really does exist. It works on the test machine; not remotely. So:
Is it the fact that 'y' is a mounted drive causing it to fail remotely? or Is it the fact the the path lies outside of the web application directory structure? Is there something I should put in web.config??; or
Is something else the problem? I would have thought that the service running on the server could do anything it wanted! It's not denying me access to the file; it's saying it can't find it??!!
View 1 Replies
Similar Messages:
Mar 17, 2011
I have a .net app developed in .net 4.0 version. And I implemented an asmx web service in this. Now I want to call one of the webservice method in another classis ASP application java script function.
View 2 Replies
Jun 15, 2010
Is there any way to check a web service's availability and get an alert whenever it is down?
I am supporting a very critical application and it went down few times because the webservice that it is supposed to be using was not accessible to it. So is there a way in which I could set up some monitoring and poll the web service periodically to check if it is available or not.
If calling the web service is the only way to check, I have a method in the web service which is supposed to return true.. How do I write code(windows app/web app/windows service/anything) so that it calls this method every 5 mins and sends me an email.
What would be the best way to setup the periodic polling, and how do I do it?
View 1 Replies
Jul 3, 2010
I am using JQuery & JSON (POST) to call webmethod. However I can call only webmethod located at aspx file but not in asmx file Below are sample codes
CustomValidate.asmx
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
Public Class CustomValidate
Inherits System.Web.Services.WebService
'ACCESS VIA JSON
<System.Web.Services.WebMethod()> _
Public Shared Function AJAX_Test(ByVal date1) As Boolean...
Return True
End Function
End Class
Javascript: JQuery JSON
function isDates(source, arguments) {
var isValidDate;
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "CustomValidate.asmx/AJAX_Test",
data: '{date1: "' + arguments.Value + '"}',
dataType: "json",
async: false,
success: function(result) {
isValidDate = result;
},
error: function(httpRequest, textStatus, errorThrown) {
alert("status=" + textStatus + ",error=" + errorThrown);
}
});
arguments.IsValid = isValidDate;
}
It always return javascript undefined error. But if I put the AJAX_Test webmethod in aspx page and replace the url: "CustomValidate.asmx/AJAX_Test" to "mypage.aspx/AJAX_Test". It works fine.
View 1 Replies
Jan 21, 2011
In web service reading *.txt file .this file contains some special characters like "" .so its shows error while reading .
string fullPath = Server.MapPath("sample.txt");
string reconciliationData = string.Empty;
StreamReader ObjReconciliationDataStream = new StreamReader(fullPath, Encoding.UTF8);
string strReconData = ObjReconciliationDataStream.ReadToEnd();
ObjReconciliationDataStream.Close();
ObjReconciliationDataStream = null;
return strReconData;
above code i am using .
View 2 Replies
Aug 9, 2010
I m accessing another application by consuming webservice of that application. I m sending file to store and retrieving file from other dabatase. Web service is the only to access another application.Now, I want to delete the file using the same web service where I stored that file in the another database.I m getting exception and I m unable to figure it out.
View 2 Replies
Jul 29, 2010
I have tried the following solutions in my ASP.Net(C#) website for which I had previously configured ASP.Net membership module.http://riderdesign.com/articles/Check-username-availability-with-JQuery-and-ASP.NET.aspxhttp://www.ajaxlines.com/ajax/stuff/article/validate_username_using_jquery_ajax_json_and_aspnet_web_method.phpBut when my username textbox losses focus, a following error appears besides my textbox,
[Code]....
Why it is giving this error? Why it is not locating CheckUserName() function that I have added in myPage.aspx.cs file which is it admin's folder?Is it the path issue that I have given in JSON? or its due to something else !!!
View 4 Replies
Sep 23, 2010
I have many xml file in xmlfolder under the root director of my project. I need to protect all file to not let it open from the client browser.
My file have some credential information, and i need avoid to let it open in client browser.
View 2 Replies
Aug 8, 2010
I have a wsdl file which are the definition of several methods of the web service associated . I want to create this web service in order to consume it through a Java web service client.How i could do this?
View 1 Replies
May 26, 2010
I have a large web application that uses File.Exists() in a global file utility class flawlessy for several years now. I just built a new ASMX web service that calls that same method in our file utility class, and it returns False for the same exact file paths that are being passed in the web application. The paths are absolute system file paths, and they match on both the web service and the web app.I am confused... Why might this happen? The method I am talking about is only a few lines of code. A couple of lines simply validate the file id parameter being sent into the method. The last remaining line is this:
[Code]....
The previous line of code calls another method that uses a String.Format to insert the file id into the file path. That's it.
View 5 Replies
Oct 22, 2010
I've been trying to get my Web Service in my wcf project to be able to reference the resource objects in my resource file but to no avali.Please kindly advice and assist on what went wrong.
View 1 Replies
Jan 19, 2011
I am new to wcf . I want to implent one wcf service like upload xml file from cient to wcf service .
View 2 Replies
Dec 23, 2010
How to write self hosting for wcf service with multiple svc file ServiceHost myServiceHost = null;
View 1 Replies
Apr 20, 2010
I am downloading the project from the webservice which contains the zip file embedded in the Soap XML.
I want to read or download the content present in the Zip file.
I am using C#.
View 4 Replies
Oct 21, 2010
I am trying to create a web service that can check a location for file and if available get the contents.
Also this web service has to upload the file using ftp after making changes locally.
Any pointers in this direction.
View 1 Replies
Dec 6, 2010
I would like to read the WSDL file from KEGG [URL] in order to use the
[Code]....
View 2 Replies
Feb 23, 2011
I need to store a pdf file on client machine using a web service.
I am unable to find IP address of client machine in web service so that I can insert pdf file in C-drive of client machine.
I am using asp.net 3.5 using c#.
View 2 Replies
Jul 8, 2010
I am adding a reference of class library in web service in VS2008 and it is not copying the .config file from class library to web service. I have checked the property "Copy to output directory" of .config file and its value is "Copy Always".
View 3 Replies
Jan 20, 2011
I've been reading quite a few tutorials on web services and xml files and one thing isn't quite clear to me. If I want to create an XML file on the fly the tutorials are pretty straight forward but, I want to grab an existing XML file from the web server and return the whole thing. Do I need to read the XML file and send each individual node or is there a way to send the file all at once? The tutorials imply that the whole file could be a node but I'm not clear on what that entails or if it would work. Also do you have a link to an example?
View 1 Replies
Feb 15, 2011
I would like to convert WSDL file to Service Contract Interface (WCF).
View 1 Replies
Mar 10, 2011
I was trying to go through this tutorial:
[URL]
but when I tried to add the service reference to the silverlight app, the Add Service Reference window would show me that there was a service file, but the node wouldn't expand to show the rest of the files that contain the services and what not. I got this error instead:
"An error occurred during the processing of a configuration file required to service this request. review the specific error details below and modify your configuration file appropriately."
"Parser Error Message:There is no service behavior named 'AdventureWorks_WebServer.Service1Behavior'."
"Metadata contains a reference that cannot be resolved: 'http://localhost:55579/Service1.svc'.
The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error.
If the service is defined in the current solution, try building the solution and adding the service reference again."
here's my web.config file:
[Code]....
View 1 Replies
Jul 7, 2010
I have a WSDL, and I need to write this web service. (I am not the client, I am the provider of this service) Is there any tool and/or best approch to create this Web Service?
View 1 Replies
May 5, 2010
if i have the web application with many pages like add order page, edit order page, and delete order page actually they also interact with the Sql Server 2008 and i also create web service page call Sales_Service.asmx. i know just i need to put something like query into Web Method in Sales_Service.asmx but i have a lot of queries, i don't know which query i should put into it and how the web page call the Sales_Services.asmx
View 2 Replies
Nov 8, 2010
A customer reported that our asmx web service is continually increasing in memory (mem usage as well as private bytes). We are able to reproduce the problem in our lab with Windows 2003 Server SP2 (fully patched) on some of the machines. The customer is using Windows 2008.
We created a Hello World web service targeting the 2.0 framework built under VS2005 SP1 and a test client that continues to call it. The memory increases steadily - approximately 40K per client request. If the test app is paused, the memory remains the same. When it is closed, the memory drops. Explicit calling of GC.Collect does not drop the memory.
We have run the memory profiler on the service and the leak is all native memory. We have uninstalled/re-installed the Framework on one of the machines but no difference. To our knowledge all of the security and IIS settings are not modified. We have compared app pool, default web site and virtual directory properties to machines that have no problem and they are identical.
View 11 Replies
May 3, 2010
I have an ASMX Web Service that has its code entirely in a code-behind file, so that the entire contents of the .asmx file is:
<%@ WebService Language="C#" CodeBehind="~/App_Code/AddressValidation.cs" Class="AddressValidation" %>
On my test machine (Windows XP with IIS 5), I set up a virtual directory just for this ASP.NET 2.0 solution and everything works great. All my code is separated nicely and it just works.However, when we deployed this solution to our Windows Server 2003 development environment, we noticed that the code only compiled when all of the code was dropped directly into the .asmx file, meaning that the solution didn't work with code-behind. We can't figure out why this is happening.
One thing that's different about our setup in our development environment is that instead of creating a separate virual directory just for this solution, we dropped it into an existing directory that runs a classic ASP application. So here we have a folder with an ASP.NET 2.0 application within a directory that contains a classic ASP application. Granted, everything in the ASP.NET 2.0 application works if all of the code is within the .asmx file and not in code-behind, but we'd really like to know why it's not recognizing the code-behind files and compiling it correctly.
View 3 Replies