Serialize - Send Object Over The Internet To Another Client?

Jun 12, 2011

I'm trying to serialize an object so that I can send it over the internet to another client. There is 1 problem however I wrote the code and it threw an exception, I searched google to see what I had done wrong.

[Code]....

View 2 Replies


ADVERTISEMENT

Send Serialize Object From Client To Server?

Aug 10, 2010

I am trying to send an Arraylist over to my server to broadcast to all other clients but I am not sure after serializing it, how do I proceed to send across. [code]....

View 1 Replies

C# - Send An Object From Client-side Javascript To Server-side Code Via ASP.NET?

May 23, 2011

Can I send an object from client-side javascript to server-side code via ASP.NET ?

View 5 Replies

De-serialize Object Inside Object?

Dec 6, 2011

Is this possible?

Public Class Foo
public var as string
public sub Load(byval filename as string)

[Code]....

Up until now i've had a function that that returns Foo as Object (I'm trying to make the serialize / deserialize process general so I can just copy and paste and avoid explicitly setting each variable)

View 1 Replies

How To Serialize An Object Into XML

Oct 9, 2011

How can I serialize a .net object into XML and then de-serialize it back?

View 3 Replies

Serialize An Object And Exchange With Another Assembly

Jun 12, 2011

I want to send a serialized object from my server to the connected client. A little problem is that the BinaryFormatter needs the source assembly to deserialize the object properly.

View 2 Replies

VS 2008 Serialize A Property Of An Object As Another?

Aug 4, 2010

Basically I have created an object that has a graphicspath as one of its properties... and i want to serialize it...

I was basically wondering if i could somehow automate the serializing of the GraphicsPath to another object (for the purposes of serializing since the graphicspath cannot be natively serialized)

eg serialize it to a list of the following class:

vb
<Serializable()> _
Public Class sPath
Public PathPoints() As PointF

[Code].....

View 1 Replies

Serialize An Object, Exception Because Form Is Not Serializable

Jul 28, 2010

I have a class called Truck and a form called frmTruck I have some code like this in a method. It recieves obj as Truck

Dim ms As New MemoryStream(1000)
Dim bf As New BinaryFormatter(Nothing, New StreamingContext(StreamingContextStates.Clone))
bf.Serialize(ms, obj)

To simplify my code, I have basically something like this for frmTruck:

public class frmTruck
private truckValue as Truck
public sub DoSomething()

[code]....

During the LoadTruckFromDatabase function I call the SerializeTruck method, here everything goes fine. But when I call the SerializeTruck just before End sub of DoSomething, it goes wrong I get an exception saying that frmTruck is not serializable My truckinstance doesn't have any references to frmTruck...

View 12 Replies

Serialize Object In Method Binary Mode?

Sep 2, 2010

I am trying to serialize object in method binary mode. However, I would like to get a file in human-unreadable format. which means i want to encrypt file. In my memory, if i want to write text into binary file in C, when I set writing mode as binary, I will get a file in human-unreadable format, but in .net, I can't get that.

View 4 Replies

Client Socket - Send Message Through Client Socket Receive Specified Argument Was Out Of Range Of Valid Values

Oct 15, 2011

Below is my code, but when i send the message thru client socket i receive Specified argument was out of the range of valid values. Parameter name: size

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim serverStream As NetworkStream = clientSocket.GetStream()
Dim outStream As Byte() = _
System.Text.Encoding.ASCII.GetBytes("0800822000000000000004000000000000000920092126012345001")

[CODE]...

View 1 Replies

VS 2008 TCP Server / Client - Client To Send The Server 4 Numbers - Depending On The User's Choice

May 9, 2009

how to create a client/server... But I couldn't... I don't want anything fancy. Just want the client to send the server 4 numbers, depending on the user's choice; after that, the server would turn off the pc, restart it, etc. It all depends on the number received. Is there a rather "simple" way to do it? If it's not to much trouble you could use Atheist's example. (Btw I don't understand the code and, yes, I've checked on [URL])

View 9 Replies

VS 2010 : Send Data From Client To Server (encrypted) And The String Sent From The Client Is Not The Same As Received From The Server?

Jun 27, 2011

Hey guys, I am trying to send data from client to server (encrypted) and the string sent from the client is not the same as recieved from the server. I've been killing my brain for hours to get this to work but I cant manage. Im converting everything to Base64 string.

Client:

Public Sub SendMessage(ByVal msg As String)
Try
SyncLock myclient.GetStream
sw = New IO.StreamWriter(myclient.GetStream)

[code]....

View 4 Replies

C# - Serialize A Class Containing An Object (of Any Serializable Type) To XML (Conditon: .NET 1.1)?

Sep 21, 2011

Question: I must get the content of all sessions in a HttpModule, under .NET 1.1. (don't ask my why certain people still use it) I can write the module, I can get the sessions. But... sessions are stored as

[Code]...

View 2 Replies

VS 2005 Checking Whether The Client Is Connected To The Internet Or Not?

Mar 13, 2010

I have written a code for sending emails using my vb.net application,ok.Now i want to inform my client if and only if he is not connected to the internet before the sending emails.so it means the purpose of my code will be to check if he is online or nt and if not then inform him to get online and then try sending the email.How to do this?

View 5 Replies

TCP Server/Client "Individual Send To Conected Client"?

Jul 4, 2009

I have got the server app an the Client app Both Working to what i can see But My issue is i was only asked 4 days ago if i could add a Private msg and Whisper Feature as well as admin controls I have Done what i could to it then realised i have no idea how to only send the data to the selected client.

View 14 Replies

VS 2008 : TCP Server/Client "send Hashtable To Client App"?

Jul 15, 2009

i have been working on a chat program Server side and client side i have most of the features i was asked to put in but then once i got most of the bugs out i noticed something the server admin could send whispers and alerts to single users but then when you try do do it on the client side it wont work so i looked through it all and found my issue the user list on the client is only a list of the names in server hash table so i was wondering how do i send the hashtable and all of its data E.G. user connection information to the client so that it can send commands to individual users like the server side can

vb
Public clients As New Hashtable()
' This subroutine checks to see if username already exists in the clients
' Hashtable. If it does, send a REFUSE message, otherwise confirm with a JOIN.

[code]....

i tried to send the hashtable over the same method used to send the user names to the client but it cannot convert the hashtable to a string so that wont work so my question is How do i send the hash table to the user from the server then display the username on the client ??

View 39 Replies

VS 2008 Serialize A Class That Implements An Event That Don't Want To Serialize?

Aug 17, 2010

If a class is serialized and has events fired from it that are handled on a form you get the error "Form1 cannot be serialized" in c# you can use (to work around this):

[Code]....

View 1 Replies

Send Data From Client To Sever And Sever To Client In 2010

Jan 13, 2011

Client/Server Application in vb.net 2010 i have created but it was just basic one. I need to show send data from client to sever and sever to client and and more functionality. (like showing price ot item or anything

View 2 Replies

Send Emails Over The Internet?

Jul 13, 2009

i had a code to send emails but it is giving me problems, so i was wondering if there are some settings that i have to do in my computer first before i can run the program, or can you please give me a working code

View 4 Replies

Send Image Over The Internet?

Jun 27, 2010

I have two programs running, a client and a server. They are connected through a socket, and a TCPListener. The server is pure VB.NET, but the server needs to take pictures of the desktop, which works, but then needs to send it to the client application.

View 3 Replies

VS 2008 : Send Files Via Internet?

Sep 29, 2009

how to make a program that sends files from a computer to another?

View 7 Replies

Send Data To Application Via Internet Website?

Aug 11, 2009

I need to somehow send data from a website (On different computer from application) to my application. How would I go about this?

View 5 Replies

Send TCP Client Info?

Nov 13, 2009

Alright im having some trouble with this peace of code

I use this to send my Account to the server but the server is just not reading it.[code]...

View 2 Replies

Game Programming :: Send Words And Numbers To Another Computer Using Internet?

Mar 16, 2009

ability to send words and numbers to another computer using internet. (I would prefer if a server computer wasn't needed.)

View 1 Replies

Queue Unsent SMSs And Send It Later When The Internet Connection Is Restored?

Mar 17, 2010

In my application i have integrated SMS functionality using HTTP. Due to unstable internet connection, sometimes it so happens that the SMS failed to get delivered. how to queue these unsent SMSs and send it later when the internet connection is restored?

View 9 Replies

VS 2008 Window Form Application - How To Send Data Over Internet

Jun 2, 2011

I got a window form, and I want to send data to another computer or a server over internet after the submit button is clicked. Yes, this is a very "general" question (I cant not ask it in more detail), because I don't have any information how to do that, I google it, and I heard WCF, but I am not sure how it actually can do this job (seem like WCF is related, but still researching).

View 4 Replies

Send An Email Via The SMTP Client?

Jan 3, 2012

I'm trying to send an email via the SMTP Client. The following line is rejected

CredentialCache.DefaultNetworkCredentials
The intellisense suggests this one:
Net.CredentialCache.DefaultNetworkCredentials

I'm using the System.Net.Mail Namespace...is this the correct one?

View 11 Replies

Send Data To A Particular Client From Server?

Aug 20, 2010

I have programmed a chat application in VB but as soon as I send any data from a client the server will send it to all. It should send a reply only to a particular client. This is the function I have used.

[Code]...

View 1 Replies

Send Email - Client Not Authenticated

Jun 2, 2010

I have a code here to send email, but its shows a error.
Error : The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

Code:
Dim smtpServer As New SmtpClient()
ProgressBar1.Value = 10
Dim mail As New MailMessage()
ProgressBar1.Value = 17
smtpServer.Credentials = New Net.NetworkCredential("myemailacc@gmail.com", "Password")
[Code] .....

View 2 Replies

Send Mail Via Default Client?

Mar 4, 2010

how to send mail via .net. However I do not seemlessly want to send the mail. I want a new mail message to open and I want to attach a file that i will export from crystal. So in short, It should use outlook on the client pc, open new mail, and add attachment. The user can then type custom message, and type email addresses.

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved