All Questions
Tagged with asmx asp.net-mvc
30
questions
0
votes
1
answer
27
views
Is it possible to create MVC controler on classic web application
I've an WEB application with aspx page (No database, very simple web application). But Now I need to add some API services. I would add controler like when I programm in MVC but is it possible. I try ...
1
vote
0
answers
174
views
Error when calling asmx endpoint on server with TLS 1.3 only
I have an application that calls an ASMX web service which is situated on another server.
Recently, this server had been reconfigured to disable all TLS versions except for 1.3. This resulted in my ...
1
vote
1
answer
204
views
Why this Web.config rule for *.asmx files isn't working?
We moved our web service to a new website and we need to redirect all the calls to https://www.example.com/LicenseServer.asmx to https://licensing.example.com/LicenseServer.asmx but for an unknown ...
0
votes
0
answers
274
views
stored procedure in temp table result not show aspnet mvc project
I am doing data display query service through asmx web service project
I have a stored procedure. This system in create temp table and result all datas. For example;
SET NOCOUNT ON;
CREATE TABLE #...
0
votes
0
answers
1k
views
Getting sql injection vulnerability issue in checkMarx: asmx with input as list<string>
Getting vulnerability issue in checkMarx saying, The application constructs this SQL query by embedding an untrusted string into the query without proper sanitization.An attacker would be able to ...
0
votes
0
answers
208
views
Data changes during fetch on a service on IIS
I am facing quite an interesting error. I have services hosted on IIS, on a server which is an application server. I have two services in focus.
1 - One is a pure WCF service which connects to SAP and ...
1
vote
1
answer
270
views
Find letters from an a.txt file in a b.txt file C#
at this moment I am uploading 2 txt files. In the file 'A' I have a list of letters and in the file 'B' I have a couple of words, I am reading the 2 files, and I add them in a list. The goal is ...
1
vote
3
answers
7k
views
how to read multiple files txt c#
Hi I'm trying to read 2 txt files, from an asmx web service, the reason is that in file 1 I have random letters of which I have to find matching words from file 2. But I do not know how to read the ...
1
vote
1
answer
499
views
Passing values from webservice called by another application to asp.net website
Asp.net page is opening java web start application.This application is calling .asmx web service.I want to send parameter from this web service back to asp.net web page.
1
vote
1
answer
441
views
Custom ASP.NET attribute not getting called
I have a custom Authorization attribute not getting called in my asp.net class and I can't tell what I'm missing.
My Attribute looks like this:
[AttributeUsage(AttributeTargets.Class | ...
2
votes
1
answer
972
views
Send Email using SMTP in web api vs asmx service
I am trying to send notification email in ASP.NET Web API. Following is the code
[HttpPost]
[Route("api/UpdateUser")]
public Foo UpdateUser(Foo vm)
{
/* some data base ...
11
votes
4
answers
15k
views
Correct way to authorize an ASMX .NET web service from MVC 4 Project
I have an ASP.NET MVC application that has a .asmx web service
I wrote an action filter attribute that I wanted to use on web methods on the web service, to check the Request headers for a UserID and ...
0
votes
2
answers
83
views
Does WCF works as SOAP by default?
Does WCF works as SOAP by default ?
As per client requirement, wanted to use ASMX web services. But VS 2013 not providing ASMX web services (SOAP) under 4.5.1 framework. So can I use WCF as SOAP? and ...
0
votes
0
answers
2k
views
asmx web services in asp.net mvc
I have added the asmx web service using service reference in my project in MVC5 and then I have added this (Service1.Service1SoapClient service = new Service1.Service1SoapClient("Service1Soap");) so I ...
2
votes
0
answers
953
views
web reference user not authenticated
Asp.net web application using the API with c# visual studio 12 MVC application. I have successfully added the web reference and I have all of the correct info in the call from the svc....