Click here to Skip to main content
15,867,453 members
Home / Discussions / Web Development
   

Web Development

 
QuestionModal Question Pin
MekaC24-Aug-21 10:40
MekaC24-Aug-21 10:40 
Question.Net Framework Web API - Server Error Pin
Kevin Marois23-Aug-21 11:50
professionalKevin Marois23-Aug-21 11:50 
AnswerRe: .Net Framework Web API - Server Error Pin
Richard Deeming23-Aug-21 21:18
mveRichard Deeming23-Aug-21 21:18 
GeneralRe: .Net Framework Web API - Server Error Pin
Kevin Marois24-Aug-21 4:36
professionalKevin Marois24-Aug-21 4:36 
GeneralRe: .Net Framework Web API - Server Error Pin
Richard Deeming24-Aug-21 6:13
mveRichard Deeming24-Aug-21 6:13 
GeneralRe: .Net Framework Web API - Server Error Pin
Kevin Marois24-Aug-21 6:27
professionalKevin Marois24-Aug-21 6:27 
QuestionWebrequest is obselete what is the alternatieve Pin
Ger F. Versteeg26-Jul-21 23:45
Ger F. Versteeg26-Jul-21 23:45 
AnswerRe: Webrequest is obselete what is the alternatieve Pin
Richard Deeming27-Jul-21 23:57
mveRichard Deeming27-Jul-21 23:57 
For a start, you'll need to make your method async to use the HttpClient class. Which unfortunately means you'll need to make the calling method async, and so on - it's async all the way down.

At the basic level, your code would look something like this:
C#
public async Task<ToProgModel> ProgCsvAsync(Uri webSiteProg, ToProgModel prog, string complextProg)
{
    HttpClient client = new HttpClient();
    SetBasicAuthHeader(client.DefaultRequestHeaders, AuthorisatorProg, PasswordProg);

    using (HttpResponseMessage response = await client.GetAsync(webSiteProg))
    {
        if (!response.IsSuccessStatusCode)
        {
            prog.Ret = $"Http response EX: {response.StatusCode}";
            return null;
        }
        
        string progTextString = await response.Content.ReadAsStringAsync();
        ...
        return prog;
    }
}

public void SetBasicAuthHeader(HttpRequestHeaders headers, string userName, string userPassword)
{
    string authInfo = userName + ":" + userPassword;
    authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));
    headers.Authorization = new AuthenticationHeaderValue("Basic", authInfo);
}
There are several improvements you can make to this - for example, using IHttpClientFactory[^] to manage the HttpClient instances.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

GeneralRe: Webrequest is obselete what is the alternatieve Pin
Ger F. Versteeg28-Jul-21 0:58
Ger F. Versteeg28-Jul-21 0:58 
GeneralRe: Webrequest is obselete what is the alternatieve Pin
Richard Deeming28-Jul-21 3:09
mveRichard Deeming28-Jul-21 3:09 
GeneralRe: Webrequest is obselete what is the alternatieve Pin
Ger F.28-Jul-21 4:24
Ger F.28-Jul-21 4:24 
QuestionWebsite Deployment Pin
Promise Sheggs21-Jul-21 10:32
Promise Sheggs21-Jul-21 10:32 
AnswerRe: Website Deployment Pin
Member 150787164-Jul-22 18:53
Member 150787164-Jul-22 18:53 
QuestionHow to place text over an image using HTML/CSS? Pin
Alex Dunlop21-Jul-21 7:52
Alex Dunlop21-Jul-21 7:52 
AnswerRe: How to place text over an image using HTML/CSS? Pin
Member 1529865622-Jul-21 21:43
Member 1529865622-Jul-21 21:43 
GeneralRe: How to place text over an image using HTML/CSS? Pin
Alex Dunlop23-Jul-21 7:44
Alex Dunlop23-Jul-21 7:44 
GeneralMessage Closed Pin
23-Jul-21 18:28
Member 1529865623-Jul-21 18:28 
GeneralRe: How to place text over an image using HTML/CSS? Pin
Alex Dunlop24-Jul-21 4:21
Alex Dunlop24-Jul-21 4:21 
QuestionWhat does an "Error 503 first byte timeout" mean? Pin
swampwiz1-Jul-21 19:15
swampwiz1-Jul-21 19:15 
AnswerRe: What does an "Error 503 first byte timeout" mean? Pin
Richard MacCutchan1-Jul-21 21:02
mveRichard MacCutchan1-Jul-21 21:02 
QuestionMessage Closed Pin
30-Jun-21 23:43
Member 1527182330-Jun-21 23:43 
QuestionHow Much the Budget should be for a website like OLA and UBER Pin
Ali Salman Jun14-Jun-21 1:52
Ali Salman Jun14-Jun-21 1:52 
AnswerRe: How Much the Budget should be for a website like OLA and UBER Pin
Member 1346058222-Jun-21 23:36
Member 1346058222-Jun-21 23:36 
AnswerRe: How Much the Budget should be for a website like OLA and UBER Pin
SeeSharp214-Jul-21 10:41
SeeSharp214-Jul-21 10:41 
QuestionImport Excel sheet into Gridview and SQL Pin
Michael Hinkle18-May-21 16:41
Michael Hinkle18-May-21 16:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.