Web Forms :: Transfer Voice From One Client To Multiple Clients In Live

Apr 27, 2016

I'm trying to develop a new application for multiple users. the main idea is that one user talks and the entire users (who logged in ) could hear him (1 way).

How this can be made? how can i transfer voice from one client to multiple clients in live?

Note that my clients are mobile users (Android, IOS and Windows phone) and the server is .NET.

View 1 Replies


Similar Messages:

C# - Multiple Asp Requests From Multiple Clients Share Information?

Dec 9, 2010

Imagine a website where individual clients can see each-other's presence - like a social network or a chatroom.

For example:

Client1 connects to my website.The back-end C# code updates a static field to indicate Client1's presence.
Client2 connects to my website.Will the back-end C# code for the second request see the information stored in the static field from the first request? Is there anything I need to do to guarantee that these seperate instances of my ASP application are sharing static data?

View 4 Replies

Web Forms :: How To Send Email To Multiple Clients Located In Different Domains

Sep 21, 2010

How can i send email to multiple clients located in different domains such hotmail,yahoo,and gmail

is it required to provide Smpt server name, if we have multipe domain id, what should we do?

I am using fowling code but getting exception failed.

MailMessage mailMsg = new MailMessage();
mailMsg .From = "from@fromServer.com";
mailMsg .To = "to@toServer.com";
mailMsg .Cc = "cc@ccServer.com"";
mailMsg .Bcc = "bcc@bccServer.com";
mailMsg .Subject = "SubjectOfTheMailString";
mailMsg .Body = "BodyOfTheMailString";
SmtpMail.Send(mailMsg );

View 2 Replies

Web Forms :: Transfer Data From Server To Client And Client To Server Using XML Web Services

May 24, 2012

What is Web services? What is Web services? How can I Transfer the data from server to client and  client to server using XML. Need one simple Example program(C# web Application) ...

View 1 Replies

Web Forms :: How To Transfer A File From Client Machine To Web Server

Jul 23, 2010

I want to transfer a file from client machine to Web server. I need to allow the users to select a file on their machine and allow them to transfer the file to the web server? Also How does a file control work.

<INPUT
id="File1"
type="file" runat="server">

How to allow the users to transfer files to web servers from their local machine?

View 6 Replies

File Transfer From Client To Client?

Apr 28, 2010

I am working with a chatServer application. I want to transfer(share) one file from client machine to another client machine, like gtalk file send without saving that file in server (I meen directly transfer from client to client). How can i do this in asp.net

View 7 Replies

Web Forms :: Client And Server In WCF Chat Application For File Transfer

May 29, 2012

I need full code for client and server to transfer files. gone through net but didn't get through.

View 1 Replies

To Allow Multiple/ Different Clients To Access The Same Application?

Nov 4, 2010

i have an Asp.net application 3.5. I want to be able to allow multiple/ different clients to access the same application but using different url's. I have already managed to configure the database to allow this. So hia's the main part i want to host my application in a domain say... wwww.myapplication.com

then allow different client to access the same application using

1.www.clientOne.myapplication.com

2.www.clientTwo.myapplication.com

also the client subdomains i.e(clientone.myapplication.com and clienttwo.myapplication.com)should be autocreated by the client upon registration

View 5 Replies

MVC :: Make Multiple Clients (desktop And IPhone)

Feb 4, 2010

How can I make multiple Index pages (contains a list of data), one to be used for a regular client, and one special view for the iPhone. Based on the article found on http://dotnetslackers.com/articles/aspnet/DevelopingForTheiPhone.aspx , I know that I can distinguish using

[Code]....

View 1 Replies

C# - Remotely Execute A Program On Multiple Clients From A Web App?

Dec 21, 2010

So I have the following requirement for a project I'm working on, and I can't figure out the best (or any, for that matter) way to do this.

I have an asp.net web app sitting on IIS at HQ. When a particular event occurs, I need to then show a message on a dynamically selected subset of PC's throughout the company. The message must be shown due to the time restraints of this process (4 hours reaction time) and we legally can't afford to not show the message.

So I need to do the following:

Show a message to the users. I have a winforms app that puts up a dialog that the only way to get rid of it is to click a big "Acknowledge" button. To ensure that the message was shown. Some kind of report back that yes, it was shown and subsequently acknowledged. A way to react if the form is not shown.

I've considered the following:

PsExec - Iterating over every node asynchronously in my web app to fire off a remote executable sitting on each PC. .NET Remoting - I'm not familiar with this at all, and it lead me to look at WCF instead. Would it work for what I'm trying to do? WCF Callbacks - These seem to require a constant connection and I'm not sure what that means for our infrastucture. I imagined a client service that would kick off an app or show the form somehow. Our scheduling software (Tidal Enterprise Scheduler) - remotely executing an executable. This would introduce more points of failure.

In SO's opinion, what would be the best way to attack this problem?

View 3 Replies

C# - Events Through Application Scope To Multiple Clients?

Feb 15, 2011

First of all, I am creating a something like a client/server solution using a standard ASP.NET website - I do know this method is not adviced, and most people would love to scream "COMET!" or "HTML5 Sockets!" - but please don't ;-) !

What I am doing...

I am creating an MMORPG on a website.

I have several clients whom need to be in contact at the same time. This is done by a global object in the Application scope.

My problem

I need to invoke an event to several clients. For instance, when an attack has been performed, I need to update some graphics. The attack logic is resolved in the global object, but each of the clients has to respond to this.

Right now I do the following:

fightTrace.Reciever.InvokeMoveEnded(this);
fightTrace.FiredBy.InvokeMoveEnded(this);

(This is a kind of observer pattern)

What now happends is a race condition. The one who loads the page_load event will get both of these events, and the one who is not running them, will experience no changes in the UI.

So what is it I really want?

What I really need is some genuine and nice way to create an observer pattern through the application state. I need to send an event out to every "listener" which is in this case is a client, and then do some update.

View 1 Replies

Architecture :: Very Frequent Reads To Database Multiple Clients?

Dec 5, 2010

I have a website hosted with sql 2008 database on Godaddy. Here's my problem descriptionbefore I actually begin implementing.Entries are made in a table named "XYZ" by a third party program. Now, there are multipleclients (could be asp.net ajax web based or vb.net desktop clients which I have not decided yet) who
read data from this "XYZ" table every 10-15 seconds. The connection string used by these clients would be same. If I have 10000-20000 clients making connections and querying same table, would that cause any breakdown? Since my connection string is same, connection pooling isautomatically in place.

What else do you think I need to take care of? Or is there any better way to implement this setup?Also, should I go for asp.net ajax client implementation or vb.net(c#) client implemtation ?Your inputs would be highly helpful to me. I am looking for a medium to long term solution to thissetup.

View 10 Replies

Live Connection Between Server And Client In A Webpage?

Jun 4, 2010

How do I implement a real time updating /live html streaming method in applications like FriendFeed, Stackoverflow, Blip.fm ?

Is it done using a jQuery/Ajax request from client to server every X seconds? (FriendFeed is like every 1 second) or there is another technique?

View 2 Replies

How To Transfer The Visitors Amount To Client Account

May 4, 2010

i want to do the online purchase option with my web application. i dont know how to do that, because if we miss single dollar then that will be the serious issue for us, so please explain me how to transfer the visitors amount to my client account.

View 5 Replies

How To Generate Excel Report On Server Side And Transfer It To Client

Dec 7, 2010

Im newbie in asp .net, and maybe for asp this task can be solved different way... but...

i have winform application with method to generate excel report, now i want to transfer this to asp .net.

User click button and on the server side start method (generate excel report to temp file), then ready temp file transfer to client side. That's how i imagine this process in asp .net. There's no problem to transfer file from server side to client. Problem in process of generation excel report. Excisting code doesn't work, because excel application must be started and visible and how can i do this on server side?

Maybe this is absolutely wrong way and such things doing different way?

View 1 Replies

Web Forms :: How To Transfer Control To Client Side From Server Side

Dec 9, 2010

I have a requirement in which I have to call a JavaScript function in between my server side event and in that JavaScript function code I have to set hidden field value and in next line of that same event i have to use that hidden field value.

View 4 Replies

Web Forms :: How To Use Voice In Captcha

May 7, 2015

How to set voice in Captcha validation

View 1 Replies

C# - Build A Live Chat Connected With Windows Live Messenger?

Feb 26, 2011

Live Chat is a very famous tool on websites, and the operators use a special web/windows interface to talk to the clients.What I want to implement is to specify some email accounts, and when the client click's the live chat and starts typing, his/her instant messages are delivered to the available email account. My operators can talk back to them as if they are on their friends list.I don't need to require any login or registration for clients to use this Live Chat.So are there any ideas about how to implement such a thing? Are there any good third-party-modules that already do that?

View 4 Replies

HttpHandlers / Modules :: Generic Handler / Prevent Data From Being Written To Live Table Via The Live.aspx Page?

Jun 28, 2010

I am using a generic handler (indicator.ashx) to create a graphic that is overlayed from information from a table (called LIVE) from our SQL database. This is working very well and I am very happy with the results.

However I am having an undesirable issue where the query string that is used for this is also being accessed by another page (called ReceiveLive.aspx) which is populating our LIVE table with data when we don't want this. I have been able to track this issue down to our generic handler that seems to populate this table with data whenever the handler is accessed.

The query string that is used to access our graphic through our generic handler is
http://mydomain.com/indicator.ashx?ID=ABC001.

Our other page that writes data to our LIVE database used the query string
http://mydomain.com/live.aspx?ID=ABC001 which is normally only accessed by a small piece of software that sits on the users PC and sends the data when necessary.

My question is this: How do I prevent data from being written to our LIVE table via the Live.aspx page everytime a query string is processed by my indicator.ashx is accessed?

View 10 Replies

Web Forms :: Convert Text Into Voice?

Aug 5, 2010

in short how to convert text into voice in asp.net? when i enter a text in textbox like this "my name is ram" it specch me my name is ram in voice.

View 2 Replies

Web Forms :: How To Send Voice SMS From Website

May 7, 2015

How to send voice sms from internet to mobile in asp.net using c# language using your own website.

View 1 Replies

C# - Is It Safe To Use Server.Transfer() To Transfer A Request To A Static Image (.jpg - .png)?

Feb 8, 2011

I have a class which implements IHttpHandler that is designed to handle image resize requests. It handles Urls like so [URL] Currently the handler looks for myimg.jpg on disk, cuts a 100x100 thumbnail (if it isn't already present) and redirects the client to the thumbnail like so Response.RedirectPermanent("/some/virtualPath/to/thumbnail.jpg");

This has been working great, but I would like to avoid forcing the client to issue a second HTTP request. Is it safe to do the following? Server.Transfer("/some/virtualPath/to/thumbnail.jpg") All the MSDN documentation talks about using Server.Transfer() to redirect to an aspx page, so I'm not sure if this is the right thing to do or not.

View 1 Replies

Web Forms :: Find A Voice Recorder Software To Be Used In Website

Mar 8, 2011

find a voice recorder software to be used in my asp.net website in windows 2003 server. The recorder software must be installed only on the server and not on the client.

View 1 Replies

Security :: Windows Live Delegate Authentication And Emails / Access Emails (New, Read, Unread Etc) from Live Account?

Mar 21, 2011

I am able to get a token with Windows Live Delegate Authentication samples provided by Microsoft.

Now I want to access emails (New, Read, Unread etc) from live account. How can I achieve it with the help of Windows Live Delegate Authentication? Are there any examples for the same?

The Samples given by Microsoft are not related to emails.

View 2 Replies

Mvc Client Side Validation On Multiple Forms In One Page?

Mar 20, 2010

I have 4 forms in my asp.net mvc view.I have enabled client side validation on each by put <% Html.EnableClientValidation(); %> Above Html.BeginForm()of each form.The issue is that regardless of the fact that I've specified ID's for the forms the first form on the page gets validated whenever I click submit of the other forms.
Is this usage supported?

View 3 Replies







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