18 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
108
views
XNET CAN write error - two different type terminals
I'm really new to Labview and XNET CAN vi. I'm trying to interface with a board through CAN bus and I have to configure and set some parameters. As hardware I'm using a CAN HS/FD Interface NI-XNET USB-...
0
votes
1
answer
751
views
Leaf.xNet.HttpException: "Could not receive the message body of the response HTTP-server 'example.com'"
This error appears only on this link, other links work correctly
Internal exceptions (1/2) - IOException: Unable to read data from the transport connection. An attempt to establish a connection was ...
0
votes
1
answer
143
views
how to post data login in web vlogtruyen
i have installed all the headers requested by vlogtruyen web site but return error code 'Ошибка на стороне клиента. од . What happened and how to fix it?
using xNet;
HttpRequest httpRequest = ...
0
votes
1
answer
1k
views
Not getting response from server, leaf xnet
Using leaf xnet to make a request, but Im getting the could not get a response from server. Tried using postman and its working fine, but c# is giving me that error.
var request = new ...
1
vote
1
answer
1k
views
Rapidly Increasing Memory usage C#
I have code that basically opens a webpage + .ts file from a link and repeats it, but the problem is it increases memory usage each time and never removes the old data. After 2 Hours it uses more than ...
0
votes
0
answers
190
views
How do I use Leaf.xnet Substring recursively
I am trying to retrieve password reset links with Leaf.xnet I have been using the Substring but it only loads the first substring when there a recursive amount of password reset emails, how would I be ...
0
votes
0
answers
765
views
Change proxy server after Http Request using xNet (c#)
I'm currently working on a C# Application that sends requests to a server. I am using proxies to change my IP to avoid Bans...
Issue: The only problem is it doesn't work how I want it to. I want the ...
1
vote
1
answer
3k
views
C# - Writing to text file inside parallel.foreach loop
I made a proxy checker, however, since I usnig Parallel.foreach loop, I get after X amount of time, an error and the program just crash.
it says that the writing is already used by another process, ...
0
votes
1
answer
3k
views
C# - xNet - how to add proxy support
I made a checker for some website, however, I need to add Proxy support:
using (var request = new HttpRequest())
{
request.Proxy = new HttpProxyClient(ProxyRandom());
}
public static string ...
0
votes
1
answer
969
views
C# - xNet Proxy support
I wanted to ask if it's possible to use xNet with Proxies?
using (var request = new HttpRequest())
{
var attempt = request.Post("https://api.zcdn.de/oauth/authorizations").ToString();
}
the ...
20
votes
2
answers
45k
views
C# - how to do multiple web requests at the same time
I wrote a code to check urls, however, ir works really slow.. I want to try to make it work on few urls at the same time, for example 10 urls or at least make it as fast as possible.
my Code:
...
1
vote
1
answer
2k
views
C# - How to get cookies from website using xNet
I want to submit Emails in this website: https://www.bitdefender.com/site/Facebook/redFreeDownload?nfo%5Bemail%5D=agytnpbu%40gmx.com&nfo%5BreGoogle%5D=auto-detect&g-recaptcha-response=&nfo%...
0
votes
0
answers
617
views
How to get cookies from Fiddler?
I have starting to use xNet and I managed to log in to the website without cookies from a console application.
however, now I want to login to Roblox from Console Application but the problem is that ...
1
vote
0
answers
156
views
I can't use xNet to create a hostname on noip.com
I can't use xNet to create a hostname on noip.com. My post action will return a redirect to the login page. This is why?
using (var req = new HttpRequest())
{
req.UserAgent = "Mozilla/5.0 (...
0
votes
1
answer
1k
views
How to set custom host headers in xNet c#
HttpRequest request = new HttpRequest();
request.AddHeader("Host", "api.dwebsir.com");
request.Proxy = ProxyClient.Parse(ProxyType.Http, proxy);
this way of adding custom host header doesnt seems to ...