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

Web Development

 
GeneralRe: API Controller Question Pin
Richard Deeming26-Aug-21 21:41
mveRichard Deeming26-Aug-21 21:41 
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 
Hello,
This is my program with the obsolete WebRequest.
Who will help me to set this up with HttpClient.
Thanks in advance, Ger

		public ToProgModel ProgCsv(Uri webSiteProg, ToProgModel prog, string complexProg)
		{
			string ProgTextString;

			try
			{
				var AuthorisatorProg = _config.GetConnectionString("AuthorisatorProg");
				var PasswordProg = _config.GetConnectionString("PasswordProg");

#pragma warning disable SYSLIB0014 // Type or member is obsolete
				WebRequest webrequest = WebRequest.Create(webSiteProg);
#pragma warning restore SYSLIB0014 // Type or member is obsolete

				SetBasicAuthHeader(webrequest, AuthorisatorProg, PasswordProg);
				WebResponse webresponse = webrequest.GetResponse();
				Stream webstream = webresponse.GetResponseStream();
				StreamReader streamreader = new(webstream);
				ProgTextString = streamreader.ReadToEnd();

				webresponse.Close();
				webresponse.Dispose();
				streamreader.Dispose();
				webstream.Dispose();
			}
			catch (HttpRequestException ex)
			{
				prog.Ret = $"Http response EX: {ex.Message}";
				return null;
			}

			//............
			//............

			return prog;
		}

		public void SetBasicAuthHeader(WebRequest request, string userName, string userPassword)
		{
			string authInfo = userName + ":" + userPassword;
			authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));
			request.Headers["Authorization"] = "Basic " + authInfo;
		}

AnswerRe: Webrequest is obselete what is the alternatieve Pin
Richard Deeming27-Jul-21 23:57
mveRichard Deeming27-Jul-21 23:57 
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 

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.