Posts by Victor Augusto • 43 points
8 posts
-
0
votes1
answer32
viewsQ: Configure 2 applications in the same URL
Good morning! I have an OSI with an externally published application(1) : site1.com.br But I have another application(2) that is not published externally, and I need to publish it. My question is: I…
iisasked Victor Augusto 43 -
0
votes0
answers178
viewsQ: File without extension
I have an application that streams an audio file on a page, but when trying to download the file it comes without extension. Follow the code I use : public HttpResponseMessage Get(string filename) {…
-
0
votes1
answer248
viewsQ: Block download in an audio streaming
I have a Web MVC application in which it resumes an audio stream according to the received parameters: public new ActionResult File(string q, string url) { try { var query = new GetFileQuery() { q =…
-
1
votes1
answer238
viewsQ: Audio file conversion . Wav to . Mp3
I would like help, I have the following situation. I have a web application in which to return an audio file according to the requests. However (I believe) because these audios are of format . wav I…
c#asked Victor Augusto 43 -
1
votes1
answer428
viewsQ: How to check if an XML node is null?
I have a WS which has a method in which a list of Nodes with some data is inserted. I receive this data as Xmldocument, ride the knot Parameters reading the content inside it, after that I take the…
-
0
votes2
answers2099
viewsQ: How to export an SQL table to a . txt file?
good morning! I need to insert the return data of a Select into a file . txt containing the column names and separating the data by ";" How can I do this process? Grateful From Now…
-
0
votes1
answer812
viewsQ: Error Trying To Access Webservice
I have the following problem,I have an asmx Webservice, posted on an IIS,with the authentication setting set as Anonymous,but when I try to access it appears the following error: You need to be able…
-
0
votes1
answer1240
viewsQ: IIS - Capture user logged in to the machine without using Windows authentication
I have a website that uses the user logged into the computer to validate what functionality he will have access to within the site. To capture the user logged into the machine I am using the code…