Hi blore,
I found the problem!!!. It was the upper case "O" in
ObjectUri="RemotableType.rem"
... and this is after a very long lifetime of writing "c", and though I
don't think it is an excuse, I am somehow dissapointed that the compiler did
not flag this one out.
On a related subject, do you know if this area of the framework (remoting)
is going to change substantially in Version 2.0?, and if not, and you have
some ideas, what are a couple of good books on this subject?
Thanks,
Ivan
> Hi Ivan
> I tried with a sample program and could replicate 'Requested service not
[quoted text clipped - 7 lines]
>
> > Hello blore,
blore crafter - 07 Jul 2005 12:49 GMT
Hi Ivan
Good to hear the problem is solved.
Ok regarding change to remoting, i'm not aware of it and
Books- I so far used to read the msdn articles and also some blogs as and
when i get an issue kinda. No specific book i have read on remoting but books
like
inside c# - Tom Archer
visual c# step by step
Applied Microsoft .Net Framework Programming -Jeffrey Richter
give you basics on remoting
Regards
Easwaran
> Hi blore,
>
[quoted text clipped - 23 lines]
> >
> > > Hello blore,
Anusha - 14 Nov 2006 10:10 GMT
Hi,
I am also facing a similar Problem. On running the client Application I get
an error Requested Service Not Found. The o in Object Uri is small case only.
The web.config file is as follows:
configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown mode="SingleCall" type="ClsRemoteObject.Maths,
ClsRemoteObject" objectUri="Maths.soap" />
</service>
<channels>
<channel ref="http" port="80"/>
</channels>
</application>
</system.runtime.remoting>
</configuration>
The client side Remoting code is as follows:
Dim channel As HttpChannel = New HttpChannel
ChannelServices.RegisterChannel(channel)
RemotingConfiguration.RegisterWellKnownClientType(GetType(Maths),
"http://localhost:80/TestClsRemoteWeb/Maths.soap") '"tcp://Anita:8085/Maths")
'
Here TestClsRemoteWeb is the Virtual directory.
Help me out.
> Hi Ivan
> Good to hear the problem is solved.
[quoted text clipped - 36 lines]
> > >
> > > > Hello blore,