|
I am trying to connect to Office Communication Server using the Unified Communications Managed API. I have tried my user and a fresh user enabled for OCS. Both account can successfully log into the Office Communicator client, but fail using the API. When...
Started by Robin Clowers on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You also need to pass in the user URI as well - for example:
//Initialize and register the endpoint, ... .
There should be a separate Domain property of NetworkCredential that you should be using .
Two things to note:
Username should not contain the domain.
|
|
We get
"""The communication object, System.ServiceModel.Channels.ServiceChanne, cannot be used for communication because it is in the Faulted state."""
message when we close the application. Can anyone tell me how to fix it? We know it is communication...
Started by Gopalakrishnan Subramani on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When you ask a question about an exception, you ... .
It basically involves inheriting from a class which will automatically recreate the channel if it faults .
We had a similar problem and this technique fixed it .
Take a look at the proxies project here.
|
|
Posted 28 February 2006 - 12:06 PM
Some people feel the intense need to communicate with someone who is dead. Usually, they desire to contact a loved one that they have lost or some simply harbor a fascination with death or the dead. When one wishes to...
Started by MoonChild on
, 15 posts
by 12 people.
Answer Snippets (Read the full thread at ghostvillage):
Posted 04 March 2006 - 11:14 PM
Thanks for the great advice! Posted 17 March 2006 - 08:45 PM
Moon, they are called Skrying Mirrors - at least I hope I spelled that right! One method is to have a sheet of glass - doesn't have to be large - and you paint... .
|
Ask your Facebook Friends
|
The title basically says it all. I'm looking for any way to get a flash app to communicate with a silverlight app, and vice versa.
Are there any drawbacks to communication between the two apps? What are (or not) you able to communicate?
Started by Joseph on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Of course, right after I asked this question, I find this article about... .
I believe both have hooks into it from inside their programming environments .
I imagine you could try communicating via the DOM on the page in which the controls are hosted.
|
|
I want to enable an user to be able to communicate with other users through a site. I know that ASP.net is stateless, but what can I use for this synced communication? Java servlets?
Thank you
Started by Artur Carvalho on
, 8 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You mean a chat-like functionality....
Look at http://msdn.microsoft.com/en-us/library/ms972429.aspx for some details from Microsoft.
You can use them by default just using the Session[] keyword .
ASP.NET is "stateless" but it maintains state using Sessions.
|
|
What's the best .NET communication component or protocol for very low bandwidth and intermittently connected communication (i.e.: < 10 kilobits/sec)?
Started by Adrian on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You probably want a Socket and TCP/IP for the connection a very ... .
Yeap!, sockets is what you're looking for
RUDP looks pretty promising .
There is also a TcpClient and UdpClient in that namespace .
Socket.
What about UDP
Probably System.Net.Sockets.
|
|
How to balance "zone" time against open and active communication within a development team?
Started by Gonçalo Veiga on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, people....
There are some phases of development when lots of collaboration is very productive and other times where individual focus is important .
Emails
Usable common areas with whiteboards.
Phones you can turn off.
Read "Peopleware"
Offices with doors.
|
|
I want communicate between a parent and child process both written in C#. It should be asynchronous, event driven. I does not want run a thread in every process that handle the very rare communication.
What is the best solution for it?
Started by Horcrux7 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I would suggest using the Windows Communication Foundation:
http://en.wikipedia.org/wiki/Windows_....
Http://msdn.microsoft.com/en-us/library/bb546102.aspx
Use Asynchronous operations with BeginRead/BeginWrite and AsyncCallback.
Anonymous pipes.
|
|
Where is a good place to start with making an application in .NET that communicates through OPC ?
Started by Geoffrey Chetwood on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Alternatives include OPC Foundation's own .NET....
You can find a good article and a library to start with here: http://www.codeproject.com/KB/COM/opcdotnet.aspx
The Code Project article is from the early days of .NET and may not be the best option today .
|
|
What application do you use to monitor HTTP communication on OS X?
Started by lajos on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This includes requests, responses ....
HTTPTracer
http://simile.mit.edu/wiki/HTTPTracer
Charles Proxy
Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP traffic between their machine and the Internet .
|