Excellent Videos. The way you have explained each concept with details along with the practical coding in Visual Studio makes it all the more easier to understand the concepts clearly. Thank you so much and keep up the good work. These set of videos are the best I have found! :)
It is the perfect .Net Channel i have ever seen and really i have a lot of benefits from those videos thank you very much also if you can publish XAML and windows phone courses it will be a great thing thank you very much
Can you please explain why you need to create an instance of HelloRemotingService if you do not use it? It will be created automatically once client connects to the server. Isn't it? Another thing is that they ask to use security flag in RegisterChannel method.. you didn't say anything about it.
+naveen nvn Thanks a lot for your feedback. This means a lot. I am pleased you found these videos useful. Dot Net & SQL Server video tutorials to help you become a web developer th-cam.com/users/kudvenkatplaylists?view=1&sort=dd DVDs for offline viewing www.pragimtech.com/Order.aspx Slides & Text Version of the videos can be found on my blog csharp-video-tutorials.blogspot.com Tips to effectively use my youtube channel th-cam.com/video/y780MwhY70s/w-d-xo.html To receive email alerts, when new videos are uploaded, please subscribe to my channel th-cam.com/users/kudvenkat If you like these videos, please click on the THUMBS UP button below the video May I ask you to please share the link with your friends and family who you think would also benefit from them Thank You Venkat
Excellent presentation, explanation.. Stumbled across your videos, started watching some of the later ones in the WCF series, but thought it be best to start from the beginning. Well done.
Thanks a lot man. Your way of representation is too good. and thanks for highlights into why should we prefer to WCF. Means what is drawback of Web service and Remote service. This is awesome. I will go through all the video. And i hope you would have explain Security mechanism, authentication and SSL also in next videos.
@Venkat - I have one question. Please tell me why we need TCP communication? Most of the people related this neccessity with cross-machine communication over intranet. But not easy to grab. Can you please give a demonstration on it?
Best Video to easy understand the Remoting service.It's traditional service I want to learning from Webservice to WCF .I have one Question. In real time what scenarios prefer webservice? and what scenarios used for Remoting?.Could you please clarify it.
Hi Venkat. In RemotingServiceHost you create an instance of HelloRemotingService. However, it is not used. I tested to remove 'RemotingConfiguration.RegisterWellKnownServiceType(...' and add 'RemotingServices.Marshal(remotingService , "GetMessage");' It worked just as well. Was it your intention to add e.g. 'RemotingServices.Marshal(remotingService);'? Do you know the difference between 'RegisterWellKnownServiceType' and'Marshal'?
Hello Pettersson, I also got the same doubt, in the video at 16.54, remotingservice object is created, but not used, even if you comment that and the application is working, fine, i tried by the way you have give, it also worked. Venkat, can you clarify this doubt. Thanks in advance. Siva.
I am WCF begginer. Video is great but remoting service is been quite difficult for me to understand. Is there any other basic video i should look into.?
Sir I am using visual Studio 2015, and i have get some error -> WcfPOC.RestServiceImpl' does not implement interface member 'WcfPOC.IRestServiceImpl.SaveEmployee(WcfPOC.RequestData)' . How to solved this .
Hi, I am getting this error while button click in RemotingServiceClientForm that is "System.Net.Sockets.SocketException (0x80004005): No such host is known". Is there any setting to make it correct?
Hello sir, I am using visual studio 2915, but i am not getting any response ( but just blank) when I click on the get message button. I did all same as you did, please help me out. Thank you.
I really like your style and your efforts. Keep up the great work. While executing your example the line of code doesnt allow me to select Label1.Text = Client. GetMessage --- GetMessage doesnt populate. Any insights to this? I have researched for about 1.5 hours now to no avail.
Wow, My bad. Having a Exception Details: System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:51795 issue now and I turned off the proxy in web.config.
thanks for the great video series. i have a question. i have single windows forms application running on two other machines in Intranet. i have installed sql server on both machines. all i want is to share the database with each other like i want my database to be hosted on first machine and second machine should use the database from there, i am looking for solution over a week ago but nothing is working for me. please help me solve this. thank you !
Hi @venkat, on HelloWebServicesHost proyect the method that you choose does not exist, RemotingConfiguration.GetRegisteredWellKnownServiceType (typeof(HelloRemotingService.HelloRemotingService),"GetMessage",WellKnownObjectMode.Singleton); maybe is my .net version but doesn't work instead of that I used the next RemotingConfiguration.GetRegisteredWellKnownServiceType(); /*No overloadings available*/ Everything looks fine at building and run the service, but when I run the windows form client i get a not handled exception : ************* Texto de la excepción ************** System.Runtime.Remoting.RemotingException: No se encontró el servicio solicitado ( **Requested service not found) Server stack trace: en System.Runtime.Remoting.Channels.BinaryServerFormatterSink.ProcessMessage(IServerChannelSinkStack sinkStack, IMessage requestMsg, ITransportHeaders requestHeaders, Stream requestStream, IMessage& responseMsg, ITransportHeaders& responseHeaders, Stream& responseStream) What can I do :P ? I understood the main idea but this is a tricky code, I hope real WCF doesn't work like that. Regards!!
I'm using VS2013. At 1.45 you add a web service by adding the Web Service template but VS2013 doesn't seem to have that. Does it go under a different name?
I am a ltlle confused in the 1st video you siad wcf was introduced to unify commuincation technologies so why and when would I implement a remoting service. Thanks I love your videos excellent work wish I could find the same quality of videos for java
Hello Venkat, i am sorry to say this but this is the first time i haven't understood something in your videos. You just kept writing line of codes without clearly mentioning the intention.
One important thing to remember is that you have to run your application through IIS ant not through default VS IIS express . Otherwise you will see HTTP Error 403.14 - Forbidden error message.
I get this error: "Project '..\HelloRemotingService\HelloRemotingService.csproj' targets 'netcoreapp2.1'. It cannot be referenced by a project that targets '.NETFramework,Version=v4.6.1'." ...If I try to add a WPF, WFA or a Console application. if I create a Web Console Application then I cannot add the .net assemblies: System.Runtime.Remoting; System.Runtime.Remoting.Controller; System.Runtime.Remoting.Controller.Tcp; Does anyone has a suggestion to what I should do? (Oh, I am using Visual Studio 2017)
You mention at the beggining of the video that .NET remoting is for .NET to .NET communication, is not interoperable, at the end of the video you mention that maybe is posible just taking care of the client-objects, events, some stuff and knowing that is not the purpose of that technology. So, is it possible? as the video shows is tricky to coding for .net to .net and this is only for a simple service. But well just want to make it clear :) Cheers!
I am getting this error . please help me out ... "No connection could be made because the target machine actively refused it 127.0.0.1:65100" getting error at " Line 119: HellowWebClient.HelloWebService.GetMessageResponse HellowWebClient.HelloWebService.HelloWebServiceSoap.GetMessage(HellowWebClient.HelloWebService.GetMessageRequest request) { Line 120: return base.Channel.GetMessage(request); Line 121: }"
There is no template for that (not in VS 2015) you can see on the video that the template is c#>Class library, the other used proyects are c#>Console Application and Windows Forms, just add the necesary references.
Hi when I used the 8080 port getting error No connection could be made because the target machine actively refused it 127.0.0.1:8080 can anybody help me.
we usually use the 8080 as the default port number for mexHttpBinding which is used by client to generate proxy classes. You should always you use any other port number for your general end points like basic or wsHttpBinding or net.tcp etc
Hi Kudvenkat, instead of showing this small displaying name , can u show us real time example....then it will be more helpful....could u teach us with real time examples
RemotingConfiguration.GetRegisteredWellKnownServiceTypes(typeof( Helloremotingservice.Helloremotingsevice), "Getmessage", WellKnownObjectMode.Singleton);,,in this part
At first I didn't know where you were going with this video series.
Now I know.....
Very well done.
Thank you.
Yep ! very Clear explanations and Voice sounds is very radiophonic; keep on doing so - congratulation We are happy !!!
Excellent Videos. The way you have explained each concept with details along with the practical coding in Visual Studio makes it all the more easier to understand the concepts clearly.
Thank you so much and keep up the good work. These set of videos are the best I have found!
:)
Thanks you! New job, old tech.
You are the man. Kudos and God bless, so glad I found your channel.
Keep up the good work!
Much better than anyother tutorial on Pliralsight
It is the perfect .Net Channel i have ever seen and really i have a lot of benefits from those videos thank you very much also if you can publish XAML and windows phone courses it will be a great thing
thank you very much
Can you please explain why you need to create an instance of HelloRemotingService if you do not use it? It will be created automatically once client connects to the server. Isn't it?
Another thing is that they ask to use security flag in RegisterChannel method.. you didn't say anything about it.
Super voice Quality and explanation
+naveen nvn Thanks a lot for your feedback. This means a lot. I am pleased you found these videos useful.
Dot Net & SQL Server video tutorials to help you become a web developer
th-cam.com/users/kudvenkatplaylists?view=1&sort=dd
DVDs for offline viewing
www.pragimtech.com/Order.aspx
Slides & Text Version of the videos can be found on my blog
csharp-video-tutorials.blogspot.com
Tips to effectively use my youtube channel
th-cam.com/video/y780MwhY70s/w-d-xo.html
To receive email alerts, when new videos are uploaded, please subscribe to my channel
th-cam.com/users/kudvenkat
If you like these videos, please click on the THUMBS UP button below the video
May I ask you to please share the link with your friends and family who you think would also benefit from them
Thank You
Venkat
Excellent presentation, explanation.. Stumbled across your videos, started watching some of the later ones in the WCF series, but thought it be best to start from the beginning. Well done.
Thanks a lot man. Your way of representation is too good. and thanks for highlights into why should we prefer to WCF. Means what is drawback of Web service and Remote service. This is awesome. I will go through all the video. And i hope you would have explain Security mechanism, authentication and SSL also in next videos.
What a great way of explaining... Thank you sir
@Venkat - I have one question. Please tell me why we need TCP communication? Most of the people related this neccessity with cross-machine communication over intranet. But not easy to grab. Can you please give a demonstration on it?
Best Video to easy understand the Remoting service.It's traditional service I want to learning from Webservice to WCF .I have one Question. In real time what scenarios prefer webservice? and what scenarios used for Remoting?.Could you please clarify it.
Thanks for your efforts.I get a clear idea in remoting services.
Muy pero muy bueno la explicación!.. Muchas gracias.
Thanks for making me understand the concepts. Really helpful.
Very Nicely explained. Thank you sir for your effort :)
Hi Venkat.
In RemotingServiceHost you create an instance of HelloRemotingService.
However, it is not used.
I tested to remove 'RemotingConfiguration.RegisterWellKnownServiceType(...'
and add 'RemotingServices.Marshal(remotingService , "GetMessage");'
It worked just as well.
Was it your intention to add e.g. 'RemotingServices.Marshal(remotingService);'?
Do you know the difference between 'RegisterWellKnownServiceType' and'Marshal'?
Hello Pettersson,
I also got the same doubt, in the video at 16.54,
remotingservice object is created, but not used, even if you comment that and the application is working, fine,
i tried by the way you have give, it also worked.
Venkat, can you clarify this doubt.
Thanks in advance.
Siva.
Really great explanation ..😊👍👍
Good work Venkat...Thanks a lot.
I am WCF begginer. Video is great but remoting service is been quite difficult for me to understand. Is there any other basic video i should look into.?
Sir I am using visual Studio 2015, and i have get some error -> WcfPOC.RestServiceImpl' does not implement interface member 'WcfPOC.IRestServiceImpl.SaveEmployee(WcfPOC.RequestData)' . How to solved this .
Dear Venkat,where could I get the slides for this tutorial,since I am trying to translate all these in to Chinese
csharp-video-tutorials.blogspot.in/p/wcf-slides.html
Hi,
I am getting this error while button click in RemotingServiceClientForm that is "System.Net.Sockets.SocketException (0x80004005): No such host is known". Is there any setting to make it correct?
Hello sir, I am using visual studio 2915, but i am not getting any response ( but just blank) when I click on the get message button. I did all same as you did, please help me out. Thank you.
awesome series and explanation !!!!
Very nicely done. Thank you.
I really like your style and your efforts. Keep up the great work. While executing your example the line of code doesnt allow me to select Label1.Text = Client. GetMessage --- GetMessage doesnt populate. Any insights to this? I have researched for about 1.5 hours now to no avail.
Wow, My bad. Having a Exception Details: System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:51795 issue now and I turned off the proxy in web.config.
thanks for the great video series. i have a question. i have single windows forms application running on two other machines in Intranet. i have installed sql server on both machines. all i want is to share the database with each other like i want my database to be hosted on first machine and second machine should use the database from there, i am looking for solution over a week ago but nothing is working for me. please help me solve this. thank you !
Wonderfull tutorial Congrats !!!!
Excellent! Thank you so much for this!
Hi sir , I got an error like
The Web server is configured to not list the contents of this directory.
what can be the cause of causing the error?
Very Nice work.
Great work,Venkat can you come up with SOLID/Design principles.
Too good thanks for detailed information. Much appreciated
Hi Venkat,
Really appreciate your efforts. Great videos.
Can u please create a playlist for MVVM in WPF.
Da si ziv i zdrav :D
Hi @venkat, on HelloWebServicesHost proyect the method that you choose does not exist,
RemotingConfiguration.GetRegisteredWellKnownServiceType
(typeof(HelloRemotingService.HelloRemotingService),"GetMessage",WellKnownObjectMode.Singleton);
maybe is my .net version but doesn't work instead of that I used the next
RemotingConfiguration.GetRegisteredWellKnownServiceType(); /*No overloadings available*/
Everything looks fine at building and run the service, but when I run the windows form client i get a not handled exception :
************* Texto de la excepción **************
System.Runtime.Remoting.RemotingException: No se encontró el servicio solicitado
( **Requested service not found)
Server stack trace:
en System.Runtime.Remoting.Channels.BinaryServerFormatterSink.ProcessMessage(IServerChannelSinkStack sinkStack, IMessage requestMsg, ITransportHeaders requestHeaders, Stream requestStream, IMessage& responseMsg, ITransportHeaders& responseHeaders, Stream& responseStream)
What can I do :P ?
I understood the main idea but this is a tricky code, I hope real WCF doesn't work like that.
Regards!!
Supper video sir
pls come with wcf Rest
I'm using VS2013. At 1.45 you add a web service by adding the Web Service template but VS2013 doesn't seem to have that. Does it go under a different name?
You can do this configuration. You must chose a 2012 Project and .NET 4 to acess the same options. I had the same problem.
I am a ltlle confused in the 1st video you siad wcf was introduced to unify commuincation technologies so why and when would I implement a remoting service. Thanks I love your videos excellent work wish I could find the same quality of videos for java
So much good, this video!!
sir is that enough to create wcf without using remote and web service like this this seems tedious?
Hey venkat m getting error
while i try to implement same,can you please help me
superb videos.....
Hello Venkat, i am sorry to say this but this is the first time i haven't understood something in your videos. You just kept writing line of codes without clearly mentioning the intention.
Genius at work
hey your video is nice but i have doubt regarding local host its not redirecting when i use in my browser
can you give me some solution about that
非常有用,感谢,赞
Thank you sir very good vedio..
it is asking for welknown array to retrieve the value
Good, nice vedio...
great sir
One important thing to remember is that you have to run your application through IIS ant not through default VS IIS express . Otherwise you will see HTTP Error 403.14 - Forbidden error message.
Hey i am getting the same error will u please help how to fixed it?;...
I get this error:
"Project '..\HelloRemotingService\HelloRemotingService.csproj' targets 'netcoreapp2.1'.
It cannot be referenced by a project that targets '.NETFramework,Version=v4.6.1'."
...If I try to add a WPF, WFA or a Console application. if I create a Web Console Application then I cannot add the .net assemblies:
System.Runtime.Remoting;
System.Runtime.Remoting.Controller;
System.Runtime.Remoting.Controller.Tcp;
Does anyone has a suggestion to what I should do? (Oh, I am using Visual Studio 2017)
try this : stackoverflow.com/questions/53083554/project-classlibrary1-csproj-targets-netcoreapp2-1-it-cannot-be-referenced
You mention at the beggining of the video that .NET remoting is for .NET to .NET communication, is not interoperable, at the end of the video you mention that maybe is posible just taking care of the client-objects, events, some stuff and knowing that is not the purpose of that technology. So, is it possible? as the video shows is tricky to coding for .net to .net and this is only for a simple service.
But well just want to make it clear :) Cheers!
I am getting this error . please help me out ... "No connection could be made because the target machine actively refused it 127.0.0.1:65100"
getting error at "
Line 119: HellowWebClient.HelloWebService.GetMessageResponse HellowWebClient.HelloWebService.HelloWebServiceSoap.GetMessage(HellowWebClient.HelloWebService.GetMessageRequest request) {
Line 120: return base.Channel.GetMessage(request);
Line 121: }"
I dnt have the web service template in my studio. Could you help
There is no template for that (not in VS 2015) you can see on the video that the template is c#>Class library, the other used proyects are c#>Console Application and Windows Forms, just add the necesary references.
Awsum
Thanks a lot Sir Venkat
thanks a lot Best teacher on NET
i didn't find my exe file in debug folder.
I am so glad that these meatballs have now been replaced by WebAPI
Hi when I used the 8080 port
getting error No connection could be made because the target machine actively refused it 127.0.0.1:8080 can anybody help me.
we usually use the 8080 as the default port number for mexHttpBinding which is used by client to generate proxy classes. You should always you use any other port number for your general end points like basic or wsHttpBinding or net.tcp etc
Hi Kudvenkat,
instead of showing this small displaying name , can u show us real time example....then it will be more helpful....could u teach us with real time examples
Thanks a lot.
You have added reference of IHelloRemotingService to RemotingServiceHost where it is not even used.
Thanks a lot
thnx a lot sir
Please write a tutorial for Web API.
I get error when runnig client application. How can we get source codes of these applications????
Thanks a lot.
csharp-video-tutorials.blogspot.in/2013/11/part-2-creating-remoting-service-and_17.html
Pragim technologies!!!
Sir, you Are mental Giant or forte or Genius!
RemotingConfiguration.GetRegisteredWellKnownServiceTypes(typeof(
Helloremotingservice.Helloremotingsevice), "Getmessage", WellKnownObjectMode.Singleton);,,in this part
i wanna ur email Sir Venkat
6 years later, i have a doubt, "The Channel.TCP was discontinued?"
add the using directives in the program.cs file, not in the remoting service file.