Buenas tardes, para verificar la disponibilidad de las farms de ARR genere un asmx sencillo.
Me esta dando el siguiente warning en el log de aplicaciones de los servidores reales.
Application information:
Application domain: /LM/W3SVC/2/ROOT/CRMWs-1-130565583088060518
Trust level: Full
Application Virtual Path: /CRMWs
Application Path: E:\Aplicaciones\Webservices\CRMWs\
Machine name: ANSESAPLSW10
Process information:
Process ID: 8032
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception information:
Exception type: HttpUnhandledException
Exception message: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Request information:
Request URL: http://servidor/CRMWs/gyasarrwsstate.asmx?op=ArrTestR
Request path: /CRMWs/gyasarrwsstate.asmx
User host address: 10.1.10.71
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE
Thread information:
Thread ID: 5
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at System.Web.UI.Page.HandleError(Exception e)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequest(HttpContext context)
at ASP.defaultwsdlhelpgenerator_aspx.ProcessRequest(HttpContext context)
at System.Web.Services.Protocols.DocumentationServerProtocol.WriteReturns(Object[] returnValues, Stream outputStream)
Custom event details:
Alguna idea a que se debe, el chequeo solo ejecuta el asmx sin invocar ningun metodo.
Tiene como codigo lo siguiente.
<%@ WebService Language="C#" Class="ArrTest" %>
using System.Web.Services;
[WebService(Namespace = "http://arrtest.zzz.zzz.zz/")]
[WebServiceBinding(ConformsTo = WsiProfiles.None)]
public class ArrTest : System.Web.Services.WebService
{
public ArrTest()
{
}
[WebMethod]
public string ArrTestR()
{
return "Ok";
}
}