From: Harsha on
Hello there,

I have a problem in client - server application.
My server is windows 2003.
Problem is whenever I try to send collection as an argument to the
remote method I get error saying
Runtime error 462. The remote server does not exists or is
unavailable.

It was working till recent days. Not sure whether I changed some
security settings.
Please help me to get thia resolved. It is taking lot of time.

Thanks
Harsha
From: Dee Earley on
On 13/08/2010 11:42, Harsha wrote:
> Hello there,
>
> I have a problem in client - server application.
> My server is windows 2003.
> Problem is whenever I try to send collection as an argument to the
> remote method I get error saying
> Runtime error 462. The remote server does not exists or is
> unavailable.
>
> It was working till recent days. Not sure whether I changed some
> security settings.
> Please help me to get thia resolved. It is taking lot of time.

This normally means it crashed inside that method (Or the call before).
Usual debugging methods apply such as logging, error handling, etc.

--
Dee Earley (dee.earley(a)icode.co.uk)
i-Catcher Development Team

iCode Systems

(Replies direct to my email address will be ignored.
Please reply to the group.)
From: Harsha on
On Aug 13, 11:52 am, Dee Earley <dee.ear...(a)icode.co.uk> wrote:
> On 13/08/2010 11:42, Harsha wrote:
>
> > Hello there,
>
> > I have a problem in client - server application.
> > My server is windows 2003.
> > Problem is whenever I try to send collection as an argument to the
> > remote method I get error saying
> > Runtime error 462. The remote server does not exists or is
> > unavailable.
>
> > It was working till recent days. Not sure whether I changed some
> > security settings.
> > Please help me to get thia resolved. It is taking lot of time.
>
> This normally means it crashed inside that method (Or the call before).
> Usual debugging methods apply such as logging, error handling, etc.
>
> --
> Dee Earley (dee.ear...(a)icode.co.uk)
> i-Catcher Development Team
>
> iCode Systems
>
> (Replies direct to my email address will be ignored.
> Please reply to the group.)

Hi Dee,

I have put debugging message as first line inside remote method.
apparently even that is not logging. So I am clue less what is wrong.

Any suggestions will be appreciated.
Thanks
Harsha
From: Schmidt on

"Harsha" <sriharsha.galve(a)gmail.com> schrieb im Newsbeitrag
news:50bbe51d-3da2-4327-962d-bd54ad98d9ed(a)x21g2000yqa.googlegroups.com...

[Collection Type as Parameter in DCOM-RPCs]
> I have put debugging message as first line inside
> remote method.
> apparently even that is not logging.
> So I am clue less what is wrong.

What happens, when you change:
Public Sub MyRemoteMethod(MyCol As Collection)

to:
Public Sub MyRemoteMethod(MyCol As Variant)

And then try to call that remotely (passing your
clientside Collection to the "untyped" Variant-
Parameter as before)?

Olaf


From: Harsha on
On Aug 13, 12:55 pm, "Schmidt" <s...(a)online.de> wrote:
> "Harsha" <sriharsha.ga...(a)gmail.com> schrieb im Newsbeitragnews:50bbe51d-3da2-4327-962d-bd54ad98d9ed(a)x21g2000yqa.googlegroups.com...
>
> [Collection Type as Parameter in DCOM-RPCs]
>
> > I have put debugging message as first line inside
> > remote method.
> > apparently even that is not logging.
> > So I am clue less what is wrong.
>
> What happens, when you change:
> Public Sub MyRemoteMethod(MyCol As Collection)
>
> to:
> Public Sub MyRemoteMethod(MyCol As Variant)
>
> And then try to call that remotely (passing your
> clientside Collection to the "untyped" Variant-
> Parameter as before)?
>
> Olaf

No Luck!

It is still the same issue. It is not able to call the method. My
first line of debussing message is not getting logged.

I doubt it is something to do with security settings inside server.
Any ideas?

Thanks for replies so far.