 |
|
 |
There was no endpoint listening at http://localhost/WCFChat/OnlineUsers.svc/basic that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
|
|
|
|
 |
|
|
 |
|
 |
when the pop Up window is Minimized, The popup chat window to flash blinking color(orange) like the way Yahoo, Google, MSN instant messengers do. pls give me any suggestion about code
|
|
|
|
 |
|
 |
Try window.focus() on a new message.
|
|
|
|
 |
|
 |
Thanks a lot for your reply.But it is not Working in firefox and chrome,it is working only for 'IE', Is there any suggestions plz help me
-- modified 30 Apr '12.
|
|
|
|
 |
|
 |
Hi,
I need to know about WCF .if i am create the wcf service in local host and i can customizing in client side as a local host but when i going to make except in local server mean what am doing ,please give me some idea about wcf service make in server .
|
|
|
|
 |
|
 |
There was no endpoint listening at http://localhost/WCFChat/OnlineUsers.svc/basic that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
|
|
|
|
 |
|
 |
There is issue with endpoint configuration, please check your endpoint configuration on both the service and client. Just check that http://localhost/WCFChat/OnlineUsers.svc is opening from browser, it will show if there are any issues. And later after resolving that issue try adding the proxy to client. You can send more information to keshagouni@gmail.com.
|
|
|
|
 |
|
 |
I am getting error in performing steps 2 and 3 to configure your web site can u help me
the error for step2 is
Resource not found and
for 3 is error in downloading
i am working under .NET3.5 framework.
Please guide me whole process
modified 25 Mar '12.
|
|
|
|
 |
|
 |
If step 2 is not working, the service is not workin and there may be something wrong with your configuration. First check if the service is running by copying the url of the service to browser and see if the service is running, if not it will show the error message. Correcting the step 2 will fix step 3 also.
Or if you are unable to fix, please send me the screenshot by copying url of the service to address of the browser.
|
|
|
|
 |
|
 |
Hello. Thank you very much for the article. It helped a lot.
But I have a question. How can I notify the user when I sent the message? How can I get the user's window focused?
Please help.
|
|
|
|
 |
|
 |
Hi, sorry for the delay,
To autofocus a window, you can just use the window.focus(); statement below
'document.getElementById('msgPanel').scrollHeight;' in stateChangeHandler() function.
|
|
|
|
 |
|
 |
Hello, thanks a lot for your reply.
window.focus() works fine but it's a little bit annoying.
I know this is too much but what i really need is title alert at least.
I've searched the web and tried to implement the code but no luck.
When a user received a message, window title changes a couple of times and you can see it on the task bar that a new message arrived. And when you focused the window or reply it, window title changes back to normal. I've tried many times but window title couldn't change back to normal. Thanks for your time and help.
|
|
|
|
 |
|
 |
Hi Is it working In Google Chrome And Firefox,Can u plz help me if it is Working for Chrome and firefox Thanks & Regards RaviChaitanya
|
|
|
|
 |
|
 |
Thanks a Lot,I have very useful for the code
|
|
|
|
 |
|
 |
Hi,
I have gone through ur article "ASP.NET Chatting using WCF Services and JSon". But I have some doubts. So can u provide me your mail Id or cell no. And just guide me the detail step by step procedure.
|
|
|
|
 |
|
 |
You can send mail to knarsingr@gmail.com.
|
|
|
|
 |
|
 |
Says it doesn't contain any public member or cannot be found
OnlineUsersProxy.OnlineUsersServiceClient is not defined
Can you tell me what I did wrong?
modified 13 Dec '11.
|
|
|
|
 |
|
 |
There is something wrong with adding the service reference to OnlineUsersService. Please try deleting the reference and adding again. First check if the service is running, you can check from IIS.
|
|
|
|
 |
|
 |
Consider adding these in:
- RichText editor (no need to type html)
- Invite new people to existing chat
- Uninvite people from existing chat
- Person A invites Person B; Person B gets a notification request (versus just opening a new window). Person B either Accepts or Declines invite.
- Ability for a person to specify their status, such as:
= Online,
= Incognito (person not listed, but can still 'invite' other to chat)
= Meeting
= Lunch
= Away
= Other ??
Optional:
- Send subliminal messages to have other person send $$ via PayPal ... (haha)
= Better yet, just have everyone send *me* $$ .... (double haha
Oh, I've done all these things, except the send $$ part, in my WCF chat app.
~ [Don't] Visual[ize the] Basic[s], C#[ly instead]
~ ASPX: Apple Simply Performs eXcellently
|
|
|
|
 |
|
 |
Gary,
Thank you very much for suggestion. In this article I just provided the idea. My intention was not to give a full library or a control with full feature, but to share an idea. Developers can build their own logic and functionality around this.
For-
RichText editor :
As it is complete HTML, developers can easily add CSS.
Invite new people to existing chat (and)
Uninvite people from existing chat :
Make changes to the 'Chat.aspx' page to support multiple users by adding a right-side panel. System still supports multiple users as it gets messages by Unique Id.
Person A invites Person B; Person B gets a notification request (versus just opening a new window). Person B either Accepts or Declines invite. :
Yes, this can be done just before opening the new window by default. Just call your own method and only after clicking Accept open the chat window.
Ability for a person to specify their status :
Statuses can be maintained in the same 'OnlineUsersService' service and can be updated on client side.
And please share your application on CodeProject.
Thanks,
Narsimlu
|
|
|
|
 |
|
 |
thanks for such a nice article
|
|
|
|
 |
|
|
 |
|
 |
Good Work but need more explain i think :/
|
|
|
|
 |
|
 |
Hey,
First of all good work.. Narisimlu. I was looking for a similar chat application. When I tried to compile ChatService project to add the service (Access OnlineUsers.svc, WCFChat.svc. It provides an error.
Unrecognized attribute 'multipleSiteBindingsEnabled'. Note that attribute names are case-sensitive.
I googled and find out that this is mainly because MultipleSiteBindingsEnabled property is coming only with the .NET framework 4.0.
MSDN MultipleSiteBindingsEnabled
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
Is there any fix which we can use to compile it in the .NET Framework 3.5.
Thanks ,
SLMERC7
|
|
|
|
 |