Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Need translation and direction, please
Message
De
09/05/2013 08:44:12
 
 
À
08/05/2013 16:03:28
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
ASP.NET
OS:
Windows 7
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01573068
Message ID:
01573171
Vues:
47
I think it's a WCF call, which means it's going to be hard to track down. I've went through alot of WCF a year ago, tracking down where things get called and what they do as part of a project to pull out all the WCF and replace it with simple database calls. If you don't have the code in that solution, look for another solution that has the code. You can also check the service references in Solution Explorer to see if you find any


>Hello all
>
>I'm trying to trace a C# .net web application that interfaces with a SQL backend, specifically a data entry screen
>
>Save button validates the data entry, sets the params and then calls
>Administration.InsertHRA(hrade);
>
>which I can find in the Administration.cs file - that code is
>
> public void InsertHRA(HRADE HRADE)
>    {
>        InsertHRARequest inValue = new InsertHRARequest();
>        inValue.HRADE = HRADE;
>        InsertHRAResponse retVal = ((IAdministration)(this)).InsertHRA(inValue);
>    }
>    
>    [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
>    GetHRADataResponse IAdministration.GetHRAData(GetHRADataRequest request)
>    {
>        return base.Channel.GetHRAData(request);
>    }
>
>
>please note the call to IAdministration....
>
>found iAdministration.cs file and it has
>
>
>[System.ServiceModel.OperationContractAttribute(Action = "InsertHRA")]
>void InsertHRA(DataContracts.HRADE HRADE);
>
>
>and that's it. Somewhere in here is a call to a stored proc hm_InsertHRAData.
>
>Where should I be looking to find what's behind door #2 (the iadministration call)?
>
>Thanks
Craig Berntson
MCSD, Microsoft .Net MVP, Grape City Community Influencer
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform