Create Packet Header Using Socket Programming C#?
Jun 11, 2010I want to create custom packet header and append it to data.and send the data to remote machine using socket programming C#.
View 1 RepliesI want to create custom packet header and append it to data.and send the data to remote machine using socket programming C#.
View 1 RepliesI am working on live trading system, in this web system i have to show live data so i am calling my store procedure for bind my data. I have few questions -
Is it possible to use MSMQ in web ?
Is it possible to use socket programming in web ?
Its because i am calling SP in every 5 seconds and its very lengthy. I want to use socket programming or MSMQ in LIVE trading system because if any thing update or modify in tables then only web page get notification from MSMQ or Socket and i will bind my page then only. And if possible then its secure and perfect for web live environment ?
I'm building a Gridview and set it AutoGenerateColumns = true and bind it with a DataTable, but I want to create a new row in that gridview during OnRowDataBound (to separate the gridview to many parts). How can I do this?
View 2 Repliesbut I am rather confused about what to invest in. I heard that server-side code translates into client-side code. So, if you have an .aspx file, it will be converted to HTML/CSS/JavaScript. I have experience with the latter three technologies put into a rather dull text file and rendered by a web browser. My question is how much HTML/CSS/Javascript coding would I have to do when server-side programming? In other words, can someone using ASP.NET program purely on the server side and not bother to write for the client side? Of course, I don't care about server-side being translated into client-side, but I am wondering if client-side programming needs to be done explicitly and to what degree.
View 4 RepliesWe have a windows service running that listens on e.g. port 9999. Now we want to be able to send a TCP packet through an ASPX page to that service. Both the service and ASP.NET WebApp run on the same server.
The problem is that this works fine on my dev machine (without IIS though, through Visual Studio Web Server) and on our older Win 2003 Server machine. But it doesn't work on our new Win2008 R2 Server. The packet just won't arrive.
I'm absolutely clueless as to what the problem may be. I'm the only one wanting to send TCP packets through an aspx site.
What I have tried so far:
1) Changing the identity of the corresponding Application Pool
2) Disabled the Firewall
3) In web.config set the trust level to "Full" (which seems to be default anyways)
I downloaded your codes for fetching and reading of emails from POP3 mail server and tried it, however when i run it i got this error: The handshake failed due to an unexpected packet format.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IO.IOException: The handshake failed due to an unexpected packet format.
Source Error:
Line 16: {
Line 17: pop3Client = new Pop3Client();
Line 18: pop3Client.Connect(txtMailServer.Text, int.Parse(txtPort.Text), chkSSL.Checked);
Line 19: pop3Client.Authenticate(txtUserName.Text, txtPassword.Text);
Line 20: Session["Pop3Client"] = pop3Client;
We have an exisiting Web Service which receives SOAP requests and returns the data accordingly. However, we have a new project which requires the same information but the Android SDK doesn't support SOAP so we need to use JSON. As JSON is just a data container format, I need to write a new module to replace the SOAP WSDL which receives a querystring from the Android app and then processes the data and returns it in a JSON packet. The problem is that having never used JSON I'm unsure as to how I return the data to the app in JSON format. Does anyone have any examples I can look at in VB.Net or C#?
View 2 RepliesI have been trying to create a header and a footer for a class assignment. I thought all you had to do was create a masterpage and proceed from there, but nothing seems to work?
View 2 RepliesIs this Possible that write a Socket by C# in ASP.net ?
for Example Can i write a Code Like this Perl Code in C# and asp.net ? :
> use HTTP::Request::Common qw(POST);
> use LWP::UserAgent; $ua = new
> LWP::UserAgent(agent => 'Mozilla/5.0(Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5)Gecko/20060719 Firefox/1.5.0.5');
> $ua -> timeout(20);
> my $req = POST 'http://Example.com/',
> [ login_username => 'mehdi' , login22 => '654321' , go => 'submit'];
> my $content = $ua->request($req);
I want to create header for reports(.rdls).Now i am designing reports ,all reports have same header ...so i want to create fixed header file for all of my reports.
View 1 RepliesIam trying to make a socket connection and am facing with the following error.
Socket tempSocket =new
Socket(ipe.AddressFamily,
SocketType.Stream,
ProtocolType.Tcp);
The tempSocket is connected to the particular IP and tempSocket.Connected is giving me value as True. But the property MultiCastLoopBack property is giving me the following error with error code 10042.
"An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call."
So is there any problem with the IP or Tcp is not supported with Stream as SocketType?
I've a project in C which acts as a server and accepts socket communication. The server project has multiple C files is an exe which accepts messages from the client program and responds accordingly. I've to write a Client program in C# which should open a socket communication and send a series of messages depending on the result of previous message sent.
Is it possible to send a message in such a way that it will call a function in one of the C file in the server project?
I'm creating dynamic table which having more than 20 rows and number of columns can be change according to user input. first column is header and other columns need to bind using data returning from web services. And there are few rows which can editable. when user click on submit button need to validate the changed cells and process the data.I have created ASP.net table and added rows and cells one by one. but this is not reusable way of doing, is there any alternative to create editable dynamic table with left column as header?
View 3 Replieshow to create a dynamic grid view and a drop down box in its header ?
where should this be called like in page load ?
where should the events be handled ?
I am having a form with asp panel which contains table under it,I need to create a Header with Image I have done in the following way,but only image is coming,If I try with only panel then its working.I need both of them. Below is my code,
<asp:Panel ID="pnlPerson" runat="server">
<table border="1" style="font-family: Arial; font-size: 10pt; width: 200px">
<tr>
<td colspan="2" style="background-color: #18B5F0; height: 18px; color: White; border: 1px solid white">
<b>
Payment Confirmation for ProJKRM Membership</b>
[code]....
Am using socket connection to send and receive values. The following code is used to receive response.
[Code]....
In the above code, am facing a prob in skt.Available. If i dont give the thread.sleep, it is not repeating the while loop and it exits after onetime. And if i dont give skt.Available line, sometimes it throws socket Exception. I do not want to use thread.sleep. Does anyone knows why this is happening and how can i resolve this?
I am in the progress build a client ASP.NET application (C#) that can display messages from a server application as soon as it receives them.
At the moment I am using an Asynchronous Client Socket but the OnRead event does not fired as soon as the server sent the strings
How to do client asynchronous socket in ASP,NET?
I am crating one web site in which i have to show date information wise in gridview. for this i have to set particular date at header in below this i have show information of this date. Here i jsut post a link for similar example. [URL] in tha Above link you can see date. below this events with particular date. so i have to show similar like this. but not getting how to put date between two lines.
View 4 RepliesI wrote a small socket client application talking to my asp.net server application.
On the asp.net side, I created a IHttpHandler. I want to send data back and forth on one HTTP request.
I tried the following code which run an infinite loop inside function ProcessRequest(). The client side opens a socket connection and send HTTP POST request.
I am not sure how asp.net work. In HTTP POST I have to specify Content-Length, I tried a small value, like 20, then asp.net handler can only get 20 bytes in the inputstream. I tried to use 4096000 bytes(close to the maximum IIS allowed), then the inputstream cannot get anything, it seems IIS is waiting for all data(4096000) to come from client side before it gives the handler a chance to read from the socket.
public class DeviceDataHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
try
{
Stream inputstream = context.Request.InputStream;
Stream outputstream = context.Response.OutputStream;
/loop forever until exception is thrown
while (true)
{
ProcessData(inputstream, outputstream);
}
}
catch (Exception ex)
{
ZenLog.logError("DeviceConnector exception: " + ex.Message);
}
}
public bool IsReusable
{
get
{
return true;
}
}
}
I have an html table. I want to set table header as fixed and table body as scrollable.. How can i do this...?
View 1 RepliesI'm calling Another url from my web aspx page. I'm writing
[code]....
But I'm getting error
A socket operation was attempted to an unreachable host 208.101.14.59:80
I tried the same url by pasting it on address bar and works fine. When I call my vendor they r saying that there is no any problem from their side. Someone has suggested me that there may be some settings in web.config.
I want to send socket information to aspx page.eg. I have 80 clients connected to server. Server is doing some calculation based on the user input and if one of the condition is true, it will send the signal to all the connected clients. I'm the client. The other vendor is the server. Currently, my application is windows based, I want to change it to web based. So, When the server send the signal , I want to receive this signal from the web page.
View 1 RepliesWe have a component that needs to sit in asp.net that creates a listening socket on a well known port.The reason we have the socket is the asp.net need component needs to received events from external services and other technologies weren't quick or flexible enough.We start the socket listening in application_start,and close the socket in application_end. The issue is if we are receiving http requests to the web site, and modify the web.config, the application_start event is called before the application_end is called,so we cannot open the socket (we get an error about duplicate socket being open). We dont have a reference to the original socket in the application_start after the web.config change, so we cannot shut it down from there.
View 3 RepliesI write code for sending mail. Its working fine in local at Execution time. After i Hosted into server. it shows the Error.
A socket operation was attempted to an unreachable host [IP]:587
code:
Dim mail As New MailMessage
mail.To.Add("xxx@abc.com")
mail.From = New MailAddress("yyy@gmail.com")
mail.Subject = "Subject"
mail.IsBodyHtml = True
mail.Priority = MailPriority.High
[Code] ....
i have a datalist .
i used an object datasource to show data in datalist .
and my datalist have two or more repeated columns .
how i can make header for top of each column ?
not for each item and not for each row .just for each column .?