Showing posts with label file. Show all posts
Showing posts with label file. Show all posts

Wednesday, March 28, 2012

Atlas works on Dev machine but not on the production server

I get the following error when I try and run Atlas.

Configuration Error

Description:An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message:The system cannot find the file specified. (E:\AtlasTest\web.config line 144)

Source Error:

Line 142: </httpHandlers>Line 143: <httpModules>Line 144: <add name="ScriptModule" type="Microsoft.Web.Services.ScriptModule"/>Line 145: <add name="BridgeModule" type="Microsoft.Web.Services.BridgeModule"/>Line 146: <add name="WebResourceCompression" type="Microsoft.Web.Services.WebResourceCompressionModule"/>


Source File:E:\AtlasTest\web.config Line:144

All of the ATLS DLL's are in the bin directory and I have a couple of home grown components that work fine from the bin directory. The root is marked as an IIS application. The only thing I can think of, is the server is a Windows 2000 server NOT 2003 or XP.

.Net 2.0 runs OK - Will ATLAS run on a Windows 2000 server?

If so any other ideas why I can't get Atlas to run?

Twisted Rider,

That's quite an interesting error - the module concerned is stored inside the Microsoft.Web.Atlas.dll file, are you absolutly sure it's inside the Bin directory on the server?

How have you published the application? Have you used the publish functionality from within VS.NET 2005?

Kind regards,

Phil.


My pages work fine, if there are no atlas components on it, and when I start adding atlas components, it starts showing the following error: Please help, I have tried a lot and unable to solve the issue.

Security Exception

Description:The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.

Exception Details:System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


Stack Trace:

[SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.] Microsoft.Web.Services.BridgeModule.OnBeginRequestHandler(Object source, EventArgs eventArgs) +0 System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64


Looks like the server needs permission to use the System.NET namespace, I don't know much about this - anyone else got any ideas?

Solved this by overwritting web.config file with the following code:

<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings/>
<connectionStrings>
<add name="InventoryTrackingConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\InventoryTracking.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.

Visual Basic options:
Set strict="true" to disallow all data type conversions
where data loss can occur.
Set explicit="true" to force declaration of all variables.
-->
<httpHandlers>
<add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory, System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>
</httpHandlers>
<trust level="Full" originUrl=""/>
<compilation debug="true" strict="false" explicit="true">
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</buildProviders>
<assemblies>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
-->
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm"/>
<error statusCode="404" redirect="FileNotFound.htm"/>
</customErrors>
</system.web>
</configuration>


hello.

if i recall correctly, the problem is that bridges require full control. if you're not using bridges, then remove them from the web.config file an i think that you should be able to run in the "traditional" meddium trust level.


Can you please elaborate on how do we change the trust settings.

Plip:

Twisted Rider,

That's quite an interesting error - the module concerned is stored inside the Microsoft.Web.Atlas.dll file, are you absolutly sure it's inside the Bin directory on the server?

How have you published the application? Have you used the publish functionality from within VS.NET 2005?

Kind regards,

Phil.

Thanks for the response. The "Microsoft.Web.Atlas.dll" is in the "bin" directory, and I used VS2005 to publish the App. Any other ideas?


Found something interesting. I created a simple one button Atlas web page, worked great. But if any of the following assemblies(all seem to belong to MS office) are being used I get the error. The assemblies work fine without Atlas and Atlas works fine without the assemblies. Together they work on the development machine but fail on the server. There must be something wrong with the install/confiuration on the server, any ideas where to start looking?

<addassembly="office, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71E9BCE111E9429C"/>

<addassembly="VSTOStorageWrapper.Interop, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<addassembly="Microsoft.VisualStudio.Tools.Applications.Runtime, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<addassembly="Microsoft.Office.Tools.Excel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<addassembly="Microsoft.Office.Tools.Outlook, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<addassembly="Microsoft.Office.Interop.Excel, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71E9BCE111E9429C"/>

<addassembly="Microsoft.Office.Tools.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<addassembly="Microsoft.Office.Interop.Outlook, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71E9BCE111E9429C"/>

<addassembly="Microsoft.Vbe.Interop, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71E9BCE111E9429C"/>

<addassembly="Microsoft.VisualStudio.OfficeTools.Controls.ManagedWrapper, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<addassembly="Microsoft.Office.Interop.SmartTag, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71E9BCE111E9429C"/>

Server Error in '/' Application.

Configuration Error

Description:An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message:Could not load file or assembly 'office, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified. (E:\OpRpts\web.config line 69) (E:\OpRpts\web.config line 110)

Source Error:

Line 108:</httpHandlers>Line 109:<httpModules>Line 110:<add name="BridgeModule" type="Microsoft.Web.Services.BridgeModule"/>Line 111:<add name="ScriptModule" type="Microsoft.Web.Services.ScriptModule"/>Line 112:<add name="WebResourceCompression" type="Microsoft.Web.Services.WebResourceCompressionModule"/>


Source File:E:\OpRpts\web.config Line:110


Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42


Figured part of it out. The office assemblies were not in the GAC. Added them to the bin directory as a test and the Atlas started loading ok. Still can't figure out why everything worked without Atlas, guess I'll just check it off to ghosts in the machine.

Just the same also here. Turned both options ON and it start working...In my experimenting it had a for a while a message about the security error, but it sure cannot be...

Atlas Wiki VSI

Hi, after i downloaded and installed atlas wiki vsi file, i tried to create a new website, however, the atlas wiki template did not show as one of the templates. any idea how to fix this?
mp
Try to reinstall it?
did you check everywhere in your new project... list of projects you can make, What are you using for an IDE?

Saturday, March 24, 2012

ATLAS template install error

Hi,
I am trying to install the ATLAS template provided by microsoft..
but when i double click the file, an error comes saying "unknown stream header byte sequence"...
Can anyone help me in installing this template??
I have MSVS 2005 BETA2 installed..
Thanks..

Atlas is not supported on Beta 2. See similarthread.

David

Wednesday, March 21, 2012

Atlas Script Code-Behind File

Hi Masters,

This is my first post in this forum and, first of all, I want to thank all of you for all knowledge that i've already learned from my readings here. Also i ask about forgiveness of my bad english if i don't make me clear sometimes. I'm just a student Brazillian developer.

Well, now to my doubts...

I was wandering if i can separate my Atlas script block from my aspx page. Like a normal C# code-behind file.

Actually was capable of doing this when working with Javascript and the clien-side Atlas framework by creating a file that i've named MyPage.aspx.js (just to follow VS.Net code-behind naming, hoping that Solution Explorer can nest the file with MyPage.aspx, but without success), and including this file in the scripts collection of ScriptManager.

But i can't do the same with Atlas scripts block. I've tried to create an MyPage.aspx.xml file and include him in page as i did with the .js file.. just to kill curiosity... but obviously without success.

Confused Is this possible !? Can anyone help !?

Thank all of you in advance.

Fred.

Hi,

no, at the moment it's not possible to separate the MS AJAX markup from the web page.

Atlas render not valid js to side client

I have been developing over ASP.NET with Atlas technology but when Atlas attempt rendering the file jsassociated with object representation of returned object for web method include in that file not valid characters for example:

I have a resource named default.aspx:

<%@dotnet.itags.org. Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<atlas:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<atlas:ServiceReference Path="SistemaPagosServices.asmx" />
</Services>

</atlas:ScriptManager>
<div>

</div>
</form>

<script type="text/xml-script">
<page xmlns:script="http://schemas.microsoft.com/xml-script/2005">
<references>
</references>
<components>
</components>
</page>
</script>

</body>
</html>

and the js file render to client side, we can see the presence of ` character that, of course, is not valid character:

var SistemaPagosServices = new function() {
this.path = "http://localhost/EDIWebServices/SistemaPagosServices.asmx";
var cm=Web.Net.ServiceMethodRequest.createProxyMethod;
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Insert","entity");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Update","entity");
cm(this,"MONEDAProvider_GetByTIPOOPERACIONIDFromTIPOOPERACIONMONEDA","tipooperacionid");
cm(this,"MONEDAProvider_Delete","monedaiso3");
cm(this,"MONEDAProvider_Find","whereClause");
cm(this,"MONEDAProvider_GetAll","start","pageLength");
cm(this,"MONEDAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"MONEDAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"MONEDAProvider_Insert","entity");
cm(this,"MONEDAProvider_Update","entity");
cm(this,"ExecuteNonQuery","commandType","commandText");
cm(this,"ExecuteDataSet","commandType","commandText");
cm(this,"ExecuteScalar","commandType","commandText");
cm(this,"MONEDATASAProvider_Delete","monedaiso3","monedatasafecha");
cm(this,"MONEDATASAProvider_Find","whereClause");
cm(this,"MONEDATASAProvider_GetAll","start","pageLength");
cm(this,"MONEDATASAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"MONEDATASAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"MONEDATASAProvider_GetByMONEDAISO3MONEDATASAFECHA","monedaiso3","monedatasafecha","start","pageLength");
cm(this,"MONEDATASAProvider_Insert","entity");
cm(this,"MONEDATASAProvider_Update","entity");
cm(this,"PAISProvider_Delete","paisiso2");
cm(this,"PAISProvider_Find","whereClause");
cm(this,"PAISProvider_GetAll","start","pageLength");
cm(this,"PAISProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PAISProvider_GetByPAISISO2","paisiso2","start","pageLength");
cm(this,"PAISProvider_GetByPAISCODIGO","paiscodigo","start","pageLength");
cm(this,"PAISProvider_GetByPAISISO3","paisiso3","start","pageLength");
cm(this,"PAISProvider_Insert","entity");
cm(this,"PAISProvider_Update","entity");
cm(this,"BANCOProvider_Delete","bancoid");
cm(this,"BANCOProvider_Find","whereClause");
cm(this,"BANCOProvider_GetAll","start","pageLength");
cm(this,"BANCOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"BANCOProvider_GetByBANCODIRECTO","bancodirecto","start","pageLength");
cm(this,"BANCOProvider_GetByBANCOID","bancoid","start","pageLength");
cm(this,"BANCOProvider_GetByBCCID","bccid","start","pageLength");
cm(this,"BANCOProvider_Insert","entity");
cm(this,"BANCOProvider_Update","entity");
cm(this,"PROVEEDORProvider_GetByCENTROPAGOCODFromPROVEEDORCENTROPAGO","centropagocod");
cm(this,"PROVEEDORProvider_Delete","proveedorcodigo");
cm(this,"PROVEEDORProvider_Find","whereClause");
cm(this,"PROVEEDORProvider_GetAll","start","pageLength");
cm(this,"PROVEEDORProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PROVEEDORProvider_GetByPAISISO2","paisiso2","start","pageLength");
cm(this,"PROVEEDORProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORProvider_GetByPROVEEDORPANAMCOD","proveedorpanamcod","start","pageLength");
cm(this,"PROVEEDORProvider_Insert","entity");
cm(this,"PROVEEDORProvider_Update","entity");
cm(this,"PROVEEDORDATOBANCARIOProvider_Delete","proveedorcodigo","bancoid","monedaiso3","proveedorcuenta");
cm(this,"PROVEEDORDATOBANCARIOProvider_Find","whereClause");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetAll","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByBANCOID","bancoid","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_GetByPROVEEDORCODIGOBANCOIDMONEDAISO3PROVEEDORCUENTA","proveedorcodigo","bancoid","monedaiso3","proveedorcuenta","start","pageLength");
cm(this,"PROVEEDORDATOBANCARIOProvider_Insert","entity");
cm(this,"PROVEEDORDATOBANCARIOProvider_Update","entity");
cm(this,"SISTEMACONTABLEProvider_Delete","sistemacontableid");
cm(this,"SISTEMACONTABLEProvider_Find","whereClause");
cm(this,"SISTEMACONTABLEProvider_GetAll","start","pageLength");
cm(this,"SISTEMACONTABLEProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SISTEMACONTABLEProvider_GetBySISTEMACONTABLEID","sistemacontableid","start","pageLength");
cm(this,"SISTEMACONTABLEProvider_Insert","entity");
cm(this,"SISTEMACONTABLEProvider_Update","entity");
cm(this,"SOCIEDADProvider_Delete","sociedadcod");
cm(this,"SOCIEDADProvider_Find","whereClause");
cm(this,"SOCIEDADProvider_GetAll","start","pageLength");
cm(this,"SOCIEDADProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SOCIEDADProvider_GetBySOCIEDADCOD","sociedadcod","start","pageLength");
cm(this,"SOCIEDADProvider_Insert","entity");
cm(this,"SOCIEDADProvider_Update","entity");
cm(this,"CENTROCONTABLEProvider_GetByCENTROPAGOCODFromCORRELACIONADORENTIDAD","centropagocod");
cm(this,"CENTROCONTABLEProvider_Delete","centrocontablecod");
cm(this,"CENTROCONTABLEProvider_Find","whereClause");
cm(this,"CENTROCONTABLEProvider_GetAll","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROCONTABLEProvider_GetBySISTEMACONTABLEID","sistemacontableid","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetBySOCIEDADCOD","sociedadcod","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROCONTABLEProvider_GetByCENTROCONTABLECOD","centrocontablecod","start","pageLength");
cm(this,"CENTROCONTABLEProvider_Insert","entity");
cm(this,"CENTROCONTABLEProvider_Update","entity");
cm(this,"CENTROPAGOProvider_GetByPROVEEDORCODIGOFromPROVEEDORCENTROPAGO","proveedorcodigo");
cm(this,"CENTROPAGOProvider_GetByCENTROCONTABLECODFromCORRELACIONADORENTIDAD","centrocontablecod");
cm(this,"CENTROPAGOProvider_Delete","centropagocod");
cm(this,"CENTROPAGOProvider_Find","whereClause");
cm(this,"CENTROPAGOProvider_GetAll","start","pageLength");
cm(this,"CENTROPAGOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROPAGOProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROPAGOProvider_GetByCENTROPAGOCODIGOPAGO","centropagocodigopago","start","pageLength");
cm(this,"CENTROPAGOProvider_Insert","entity");
cm(this,"CENTROPAGOProvider_Update","entity");
cm(this,"PROVEEDORCENTROPAGOProvider_Delete","centropagocod","proveedorcodigo");
cm(this,"PROVEEDORCENTROPAGOProvider_Find","whereClause");
cm(this,"PROVEEDORCENTROPAGOProvider_GetAll","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByCENTROPAGOCODPROVEEDORCODIGO","centropagocod","proveedorcodigo","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_GetByPROVEEDORCODIGOLOCAL","proveedorcodigolocal","start","pageLength");
cm(this,"PROVEEDORCENTROPAGOProvider_Insert","entity");
cm(this,"PROVEEDORCENTROPAGOProvider_Update","entity");
cm(this,"CORRELACIONADORENTIDADProvider_Delete","centropagocod","centrocontablecod");
cm(this,"CORRELACIONADORENTIDADProvider_Find","whereClause");
cm(this,"CORRELACIONADORENTIDADProvider_GetAll","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CORRELACIONADORENTIDADProvider_GetByCENTROCONTABLECOD","centrocontablecod","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_GetByCENTROPAGOCODCENTROCONTABLECOD","centropagocod","centrocontablecod","start","pageLength");
cm(this,"CORRELACIONADORENTIDADProvider_Insert","entity");
cm(this,"CORRELACIONADORENTIDADProvider_Update","entity");
cm(this,"CENTROPAGOCUENTAProvider_Delete","centropagocod","monedaiso3","centropagocuentaid");
cm(this,"CENTROPAGOCUENTAProvider_Find","whereClause");
cm(this,"CENTROPAGOCUENTAProvider_GetAll","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROPAGOCUENTAProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_GetByCENTROPAGOCODMONEDAISO3CENTROPAGOCUENTAID","centropagocod","monedaiso3","centropagocuentaid","start","pageLength");
cm(this,"CENTROPAGOCUENTAProvider_Insert","entity");
cm(this,"CENTROPAGOCUENTAProvider_Update","entity");
cm(this,"MEDIOPAGOProvider_Delete","mediopagoid");
cm(this,"MEDIOPAGOProvider_Find","whereClause");
cm(this,"MEDIOPAGOProvider_GetAll","start","pageLength");
cm(this,"MEDIOPAGOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"MEDIOPAGOProvider_GetByMEDIOPAGOID","mediopagoid","start","pageLength");
cm(this,"MEDIOPAGOProvider_Insert","entity");
cm(this,"MEDIOPAGOProvider_Update","entity");
cm(this,"TIPOOPERACIONProvider_GetByMONEDAISO3FromTIPOOPERACIONMONEDA","monedaiso3");
cm(this,"TIPOOPERACIONProvider_GetByTIPOOPERACIONIDMONEDAISO3FromCENTROPAGOTIPOOPERACION","tipooperacionid","monedaiso3");
cm(this,"TIPOOPERACIONProvider_Delete","tipooperacionid");
cm(this,"TIPOOPERACIONProvider_Find","whereClause");
cm(this,"TIPOOPERACIONProvider_GetAll","start","pageLength");
cm(this,"TIPOOPERACIONProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TIPOOPERACIONProvider_GetByMEDIOPAGOID","mediopagoid","start","pageLength");
cm(this,"TIPOOPERACIONProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"TIPOOPERACIONProvider_Insert","entity");
cm(this,"TIPOOPERACIONProvider_Update","entity");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByTIPOOPERACIONIDFromCENTROPAGOTIPOOPERACION","tipooperacionid");
cm(this,"TIPOOPERACIONMONEDAProvider_Delete","tipooperacionid","monedaiso3");
cm(this,"TIPOOPERACIONMONEDAProvider_Find","whereClause");
cm(this,"TIPOOPERACIONMONEDAProvider_GetAll","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"TIPOOPERACIONMONEDAProvider_Insert","entity");
cm(this,"TIPOOPERACIONMONEDAProvider_Update","entity");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Delete","centropagocod","tipooperacionid","monedaiso3");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Find","whereClause");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetAll","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByCENTROPAGOCODMONEDAISO3CENTROPAGOCUENTAID","centropagocod","monedaiso3","centropagocuentaid","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByCENTROPAGOCODTIPOOPERACIONIDMONEDAISO3","centropagocod","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_GetByCENTROPAGOCOD","centropagocod","start","pageLength");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Insert","entity");
cm(this,"CENTROPAGOTIPOOPERACIONProvider_Update","entity");
cm(this,"VIAENTRADAProvider_Delete","viaentradaid");
cm(this,"VIAENTRADAProvider_Find","whereClause");
cm(this,"VIAENTRADAProvider_GetAll","start","pageLength");
cm(this,"VIAENTRADAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"VIAENTRADAProvider_GetByVIAENTRADAID","viaentradaid","start","pageLength");
cm(this,"VIAENTRADAProvider_Insert","entity");
cm(this,"VIAENTRADAProvider_Update","entity");
cm(this,"ESTADODEFACTURAProvider_Delete","estadofacturaid");
cm(this,"ESTADODEFACTURAProvider_Find","whereClause");
cm(this,"ESTADODEFACTURAProvider_GetAll","start","pageLength");
cm(this,"ESTADODEFACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ESTADODEFACTURAProvider_GetByESTADOFACTURAID","estadofacturaid","start","pageLength");
cm(this,"ESTADODEFACTURAProvider_Insert","entity");
cm(this,"ESTADODEFACTURAProvider_Update","entity");
cm(this,"FACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFromORDENFACTURA","ordenantecod","viaentradaid","solicitudnumero");
cm(this,"FACTURAProvider_Delete","ordenantecod","facturaid");
cm(this,"FACTURAProvider_Find","whereClause");
cm(this,"FACTURAProvider_GetAll","start","pageLength");
cm(this,"FACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"FACTURAProvider_GetByORDENANTECOD","ordenantecod","start","pageLength");
cm(this,"FACTURAProvider_GetByESTADOFACTURAID","estadofacturaid","start","pageLength");
cm(this,"FACTURAProvider_GetByORDENANTECODFACTURAID","ordenantecod","facturaid","start","pageLength");
cm(this,"FACTURAProvider_Insert","entity");
cm(this,"FACTURAProvider_Update","entity");
cm(this,"SOLICITUDProvider_GetByORDENANTECODFACTURAIDFromORDENFACTURA","ordenantecod","facturaid");
cm(this,"SOLICITUDProvider_Delete","centrocontablecod","viaentradaid","solicitudnumero");
cm(this,"SOLICITUDProvider_Find","whereClause");
cm(this,"SOLICITUDProvider_GetAll","start","pageLength");
cm(this,"SOLICITUDProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SOLICITUDProvider_GetByCENTROCONTABLECOD","centrocontablecod","start","pageLength");
cm(this,"SOLICITUDProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"SOLICITUDProvider_GetByVIAENTRADAID","viaentradaid","start","pageLength");
cm(this,"SOLICITUDProvider_GetByCENTROCONTABLECODVIAENTRADAIDSOLICITUDNUMERO","centrocontablecod","viaentradaid","solicitudnumero","start","pageLength");
cm(this,"SOLICITUDProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"SOLICITUDProvider_GetByTIPOOPERACIONID","tipooperacionid","start","pageLength");
cm(this,"SOLICITUDProvider_Insert","entity");
cm(this,"SOLICITUDProvider_Update","entity");
cm(this,"ORDENFACTURAProvider_GetByCENTROPAGOCODIGOPAGOTRANSFERENCIAIDFromTRANSFERENCIAORDENFACTURA","centropagocodigopago","transferenciaid");
cm(this,"ORDENFACTURAProvider_Delete","ordenantecod","viaentradaid","solicitudnumero","facturaid");
cm(this,"ORDENFACTURAProvider_Find","whereClause");
cm(this,"ORDENFACTURAProvider_GetAll","start","pageLength");
cm(this,"ORDENFACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ORDENFACTURAProvider_GetByORDENANTECODFACTURAID","ordenantecod","facturaid","start","pageLength");
cm(this,"ORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMERO","ordenantecod","viaentradaid","solicitudnumero","start","pageLength");
cm(this,"ORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAID","ordenantecod","viaentradaid","solicitudnumero","facturaid","start","pageLength");
cm(this,"ORDENFACTURAProvider_Insert","entity");
cm(this,"ORDENFACTURAProvider_Update","entity");
cm(this,"SAOTIPOProvider_Delete","saotipoid");
cm(this,"SAOTIPOProvider_Find","whereClause");
cm(this,"SAOTIPOProvider_GetAll","start","pageLength");
cm(this,"SAOTIPOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SAOTIPOProvider_GetBySAOTIPOID","saotipoid","start","pageLength");
cm(this,"SAOTIPOProvider_Insert","entity");
cm(this,"SAOTIPOProvider_Update","entity");
cm(this,"SAOProvider_Delete","saonumero");
cm(this,"SAOProvider_Find","whereClause");
cm(this,"SAOProvider_GetAll","start","pageLength");
cm(this,"SAOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SAOProvider_GetByPROVEEDORCODIGO","proveedorcodigo","start","pageLength");
cm(this,"SAOProvider_GetBySAOTIPOID","saotipoid","start","pageLength");
cm(this,"SAOProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"SAOProvider_GetBySAONUMERO","saonumero","start","pageLength");
cm(this,"SAOProvider_Insert","entity");
cm(this,"SAOProvider_Update","entity");
cm(this,"SAOCALENDARIOProvider_Delete","saonumero","fechapago");
cm(this,"SAOCALENDARIOProvider_Find","whereClause");
cm(this,"SAOCALENDARIOProvider_GetAll","start","pageLength");
cm(this,"SAOCALENDARIOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"SAOCALENDARIOProvider_GetBySAONUMERO","saonumero","start","pageLength");
cm(this,"SAOCALENDARIOProvider_GetBySAONUMEROFECHAPAGO","saonumero","fechapago","start","pageLength");
cm(this,"SAOCALENDARIOProvider_Insert","entity");
cm(this,"SAOCALENDARIOProvider_Update","entity");
cm(this,"ENVIOProvider_Delete","centropagocodigopago","envioid");
cm(this,"ENVIOProvider_Find","whereClause");
cm(this,"ENVIOProvider_GetAll","start","pageLength");
cm(this,"ENVIOProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ENVIOProvider_GetByCENTROPAGOCODIGOPAGO","centropagocodigopago","start","pageLength");
cm(this,"ENVIOProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"ENVIOProvider_GetByCENTROPAGOCODIGOPAGOENVIOID","centropagocodigopago","envioid","start","pageLength");
cm(this,"ENVIOProvider_Insert","entity");
cm(this,"ENVIOProvider_Update","entity");
cm(this,"ESTADOOUTProvider_Delete","estadooutid");
cm(this,"ESTADOOUTProvider_Find","whereClause");
cm(this,"ESTADOOUTProvider_GetAll","start","pageLength");
cm(this,"ESTADOOUTProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"ESTADOOUTProvider_GetByESTADOOUTID","estadooutid","start","pageLength");
cm(this,"ESTADOOUTProvider_Insert","entity");
cm(this,"ESTADOOUTProvider_Update","entity");
cm(this,"TRANSFERENCIAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAIDFromTRANSFERENCIAORDENFACTURA","ordenantecod","viaentradaid","solicitudnumero","facturaid");
cm(this,"TRANSFERENCIAProvider_Delete","centropagocodigopago","transferenciaid");
cm(this,"TRANSFERENCIAProvider_Find","whereClause");
cm(this,"TRANSFERENCIAProvider_GetAll","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TRANSFERENCIAProvider_GetByBANCOID","bancoid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByTIPOOPERACIONIDMONEDAISO3","tipooperacionid","monedaiso3","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByCENTROPAGOCODIGOPAGOENVIOID","centropagocodigopago","envioid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByESTADOOUTID","estadooutid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByCENTROPAGOCODIGOPAGOTRANSFERENCIAID","centropagocodigopago","transferenciaid","start","pageLength");
cm(this,"TRANSFERENCIAProvider_GetByMONEDAISO3","monedaiso3","start","pageLength");
cm(this,"TRANSFERENCIAProvider_Insert","entity");
cm(this,"TRANSFERENCIAProvider_Update","entity");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Delete","ordenantecod","viaentradaid","solicitudnumero","facturaid","transferenciaid","centropagocodigopago");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_Find","whereClause");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetAll","start","pageLength");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetPaged","whereClause","orderBy","start","pageLength","count");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAID","ordenantecod","viaentradaid","solicitudnumero","facturaid","start","pageLength");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetByCENTROPAGOCODIGOPAGOTRANSFERENCIAID","centropagocodigopago","transferenciaid","start","pageLength");
cm(this,"TRANSFERENCIAORDENFACTURAProvider_GetByORDENANTECODVIAENTRADAIDSOLICITUDNUMEROFACTURAIDTRANSFERENCIAIDCENTROPAGOCODIGOPAGO","ordenantecod","viaentradaid","solicitudnumero","facturaid","transferenciaid","centropagocodigopago","start","pageLength");
cm(this,"HelloWorld");
}
var gtc = Web.Net.MethodRequest.generateTypedConstructor;
Type.registerNamespace('EDI');
EDI.TRANSFERENCIAORDENFACTURA = gtc("EDI.TRANSFERENCIAORDENFACTURA");
EDI.ORDENFACTURA = gtc("EDI.ORDENFACTURA");
EDI.FACTURA = gtc("EDI.FACTURA");
EDI.CENTROCONTABLE = gtc("EDI.CENTROCONTABLE");
EDI.SISTEMACONTABLE = gtc("EDI.SISTEMACONTABLE");
EDI.TList`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
Type.registerNamespace('System.Collections.Generic');
System.Collections.Generic.List`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROCONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
Type.registerNamespace('System.ComponentModel');
System.ComponentModel.ListSortDescriptionCollection = gtc("System.ComponentModel.ListSortDescriptionCollection");
Type.registerNamespace('System.Security.Policy');
System.Security.Policy.Evidence = gtc("System.Security.Policy.Evidence");
System.ComponentModel.TypeConverter = gtc("System.ComponentModel.TypeConverter");
EDI.SOCIEDAD = gtc("EDI.SOCIEDAD");
EDI.TList`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.CENTROPAGO = gtc("EDI.CENTROPAGO");
EDI.TList`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PROVEEDORCENTROPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.PROVEEDORCENTROPAGO = gtc("EDI.PROVEEDORCENTROPAGO");
EDI.PROVEEDOR = gtc("EDI.PROVEEDOR");
EDI.PAIS = gtc("EDI.PAIS");
EDI.TList`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PROVEEDOR, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.PROVEEDORDATOBANCARIO = gtc("EDI.PROVEEDORDATOBANCARIO");
EDI.BANCO = gtc("EDI.BANCO");
EDI.TList`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PROVEEDORDATOBANCARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TRANSFERENCIA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TRANSFERENCIA = gtc("EDI.TRANSFERENCIA");
EDI.TIPOOPERACIONMONEDA = gtc("EDI.TIPOOPERACIONMONEDA");
EDI.TIPOOPERACION = gtc("EDI.TIPOOPERACION");
EDI.MEDIOPAGO = gtc("EDI.MEDIOPAGO");
EDI.TList`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TIPOOPERACIONMONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROPAGOTIPOOPERACION, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.CENTROPAGOTIPOOPERACION = gtc("EDI.CENTROPAGOTIPOOPERACION");
EDI.CENTROPAGOCUENTA = gtc("EDI.CENTROPAGOCUENTA");
EDI.MONEDA = gtc("EDI.MONEDA");
EDI.MONEDATASA = gtc("EDI.MONEDATASA");
EDI.TList`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CENTROPAGOCUENTA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SAO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.SAO = gtc("EDI.SAO");
EDI.SAOTIPO = gtc("EDI.SAOTIPO");
EDI.SAOCALENDARIO = gtc("EDI.SAOCALENDARIO");
EDI.TList`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.MONEDA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SOLICITUD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.SOLICITUD = gtc("EDI.SOLICITUD");
EDI.VIAENTRADA = gtc("EDI.VIAENTRADA");
EDI.TList`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.FACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ENVIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.ENVIO = gtc("EDI.ENVIO");
EDI.ESTADOOUT = gtc("EDI.ESTADOOUT");
EDI.TList`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.TRANSFERENCIAORDENFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.TList`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("EDI.TList`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.CORRELACIONADORENTIDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
EDI.CORRELACIONADORENTIDAD = gtc("EDI.CORRELACIONADORENTIDAD");
EDI.ESTADODEFACTURA = gtc("EDI.ESTADODEFACTURA");
Type.registerNamespace('System.Data');
System.Data.DataViewManager = gtc("System.Data.DataViewManager");
System.Data.DataTable = gtc("System.Data.DataTable");
System.Data.PropertyCollection = gtc("System.Data.PropertyCollection");
System.Data.DataColumn = gtc("System.Data.DataColumn");
System.Data.DataView = gtc("System.Data.DataView");
System.Data.DataRow = gtc("System.Data.DataRow");
Type.registerNamespace('System.Globalization');
System.Globalization.NumberFormatInfo = gtc("System.Globalization.NumberFormatInfo");
System.Globalization.DateTimeFormatInfo = gtc("System.Globalization.DateTimeFormatInfo");
System.Collections.Generic.List`1[[EDI.MONEDATASA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.MONEDATASA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.PAIS, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.PAIS, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.BANCO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.BANCO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SISTEMACONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SISTEMACONTABLE, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SOCIEDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SOCIEDAD, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.MEDIOPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.MEDIOPAGO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.VIAENTRADA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.VIAENTRADA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ESTADODEFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ESTADODEFACTURA, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SAOTIPO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SAOTIPO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.SAOCALENDARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.SAOCALENDARIO, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
System.Collections.Generic.List`1[[EDI.ESTADOOUT, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]] = gtc("System.Collections.Generic.List`1[[EDI.ESTADOOUT, EDI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]");
Type.registerNamespace('System');
System.DayOfWeek = {Sunday:0,Monday:1,Tuesday:2,Wednesday:3,Thursday:4,Friday:5,Saturday:6}
System.DateTimeKind = {Unspecified:0,Utc:1,Local:2}
Type.registerNamespace('System.Reflection');
System.Reflection.MemberTypes = {Constructor:1,Event:2,Field:4,Method:8,Property:16,TypeInfo:32,Custom:64,NestedType:128,All:191}
System.Reflection.MethodAttributes = {ReuseSlot:0,PrivateScope:0,Private:1,FamANDAssem:2,Assembly:3,Family:4,FamORAssem:5,Public:6,MemberAccessMask:7,UnmanagedExport:8,Static:16,Final:32,Virtual:64,HideBySig:128,NewSlot:256,VtableLayoutMask:256,CheckAccessOnOverride:512,Abstract:1024,SpecialName:2048,RTSpecialName:4096,PinvokeImpl:8192,HasSecurity:16384,RequireSecObject:32768,ReservedMask:53248}
System.Reflection.CallingConventions = {Standard:1,VarArgs:2,Any:3,HasThis:32,ExplicitThis:64}
System.Reflection.ParameterAttributes = {None:0,In:1,Out:2,Lcid:4,Retval:8,Optional:16,HasDefault:4096,HasFieldMarshal:8192,Reserved3:16384,Reserved4:32768,ReservedMask:61440}
Type.registerNamespace('System.Runtime.InteropServices');
System.Runtime.InteropServices.LayoutKind = {Sequential:0,Explicit:2,Auto:3}
System.Reflection.TypeAttributes = {NotPublic:0,AutoLayout:0,AnsiClass:0,Class:0,Public:1,NestedPublic:2,NestedPrivate:3,NestedFamily:4,NestedAssembly:5,NestedFamANDAssem:6,NestedFamORAssem:7,VisibilityMask:7,SequentialLayout:8,ExplicitLayout:16,LayoutMask:24,Interface:32,ClassSemanticsMask:32,Abstract:128,Sealed:256,SpecialName:1024,RTSpecialName:2048,Import:4096,Serializable:8192,UnicodeClass:65536,AutoClass:131072,StringFormatMask:196608,CustomFormatClass:196608,HasSecurity:262144,ReservedMask:264192,BeforeFieldInit:1048576,CustomFormatMask:12582912}
System.Reflection.GenericParameterAttributes = {None:0,Covariant:1,Contravariant:2,VarianceMask:3,ReferenceTypeConstraint:4,NotNullableValueTypeConstraint:8,DefaultConstructorConstraint:16,SpecialConstraintMask:28}
System.ComponentModel.DesignerSerializationVisibility = {Hidden:0,Visible:1,Content:2}
System.ComponentModel.ListSortDirection = {Ascending:0,Descending:1}
EDI.EntityState = {Unchanged:0,Added:1,Changed:2,Deleted:3}
System.Data.CommandType = {Text:1,StoredProcedure:4,TableDirect:512}
System.Data.SerializationFormat = {Xml:0,Binary:1}
System.Data.SchemaSerializationMode = {IncludeSchema:1,ExcludeSchema:2}
System.Data.AcceptRejectRule = {None:0,Cascade:1}
System.Data.Rule = {None:0,Cascade:1,SetNull:2,SetDefault:3}
System.Data.DataSetDateTime = {Local:1,Unspecified:2,UnspecifiedLocal:3,Utc:4}
System.Data.MappingType = {Element:1,Attribute:2,SimpleContent:3,Hidden:4}
System.Data.DataViewRowState = {None:0,Unchanged:2,Added:4,Deleted:8,ModifiedCurrent:16,CurrentRows:22,ModifiedOriginal:32,OriginalRows:42}
System.Data.DataRowVersion = {Original:256,Current:512,Proposed:1024,Default:1536}
System.Data.DataRowState = {Detached:1,Unchanged:2,Added:4,Deleted:8,Modified:16}
System.Globalization.CultureTypes = {NeutralCultures:1,SpecificCultures:2,InstalledWin32Cultures:4,AllCultures:7,UserCustomCulture:8,ReplacementCultures:16,WindowsOnlyCultures:32,FrameworkCultures:64}
System.Globalization.DigitShapes = {Context:0,None:1,NativeNational:2}
System.Globalization.CalendarAlgorithmType = {Unknown:0,SolarCalendar:1,LunarCalendar:2,LunisolarCalendar:3}
System.Globalization.CalendarWeekRule = {FirstDay:0,FirstFullWeek:1,FirstFourDayWeek:2}

Why that?


Atlas has a known issue when dealing with generic types (which is where the back quote is coming from). This will be fixed in the next release.

David


davidebb wrote:

Atlas has a known issue when dealing with generic types (which is where the back quote is coming from). This will be fixed in the next release.

David

Thanks Mr. David for your explanation, how long i must wait for the next release?.


Thanks Mr David for the explanation, how long must i wait for the next release?

No date has been annouced yet, but it should be about a month or less.

David

Atlas project from CDROM

I have developed an application using Atlas and ASP.NET Tree control loading data from an XML file.

Can anyone tell me if there is a solution to run this application from a CD with a web server (Cassini web server) packaged in the CD itself.

Many thanks in advance for any kind of help

hello.

well, you can do that. you just have to assure that cassini is running on a predetermined port (which you can set when you start it up) and then you must open a browser and load the initial page. this will only work for requests made on the same machine where the cassini web server is running (ie, localhost).

Atlas problems... what versions support on add_pageLoaded hook?

I've inherited a large-ish project that uses a late version of Atlas (not ASP.NET AJAX)

The version in the javascript file headers is 2.021006.A

My problem is I need to hook in a global "Please Wait" message on all Postbacks and Submits.

Hooking into the Form.onSubmit is no problem, and the "Please Wait" message is normally cleared by the page reloading.

However the project uses quite a lot of UpdatePanels and ModalPopUpExtenders. These don't clear the message after a callback (as the page isn't reloaded)

A quick google found a simple solution - Including something like...

Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(clearPleaseWait);

..in the Master Page should do most of what I want.

Unfortunately I can't see aPageRequestManager object!Sys andWebForms are there, but there's only 2 properties ofWebForms, one of which is_PageRequestManager which doesn't have any properties of its own.

So, the questions are...

Does the ATLAS version I'm using support/expose PageRequestManager events?Is there still any documentation anywhere for this version?If No and No, is there a workaround for what I'm trying to do?Or have I got to bite a considerably sized bullet and upgrade to ASP.NET AJAX?

Thanks in advance for any much-needed help!!

If it was a pre-beta release, things were done a lot different. We had a few sites that used Atlas or ASP.NET Ajax for a little over a year now, and we had a lot of things that had to be rewritten to work with the beta and newer releases. Most standard server controls for it worked fine, but all our custom stuff had to be rewritten. There may be someone on here that might have some limited documentation somewhere. Most of the documentation was all online and pulled whenever a new release came out.

Does the version your have contain a UpdateProgress control? You may be able to use one in the master page that would work for all the pages that use it. That should display a message during asyncpostbacks and callbacks. I haven't done a lot with the behind the scenes parts of ATLAS or ASP.NET Ajax because it doesn't usually require you to unless you are really fine tuning things, which could be a good and bad thing...

If you do have to upgrade to the newest release now, you may want to run a copy of the site to make changes to while upgrading because that can take some time...