System.Runtime.Remoting.Proxies

  • Thread starter Thread starter SenthilVel
  • Start date Start date
S

SenthilVel

Hi All

i am getting an error in remoting proxies like the below :

Exception rethrown at [0]:

at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
reqMsg, IMessage retMsg)

at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&
msgData, Int32 type)

at Method 1

at Method 2

at MessageProcessData(String usrlogin, String patKey, String intKey1, String
intKey2, String intKey3, String intKey4, String intKey5, String stringKey1,
String stringKey2, String stringKey3, String stringKey4, String stringKey5,
String cgd, String eventName, IFilterTrigger theFilterClass, String
obqStatus, String group)

Nested Exception

Exception: System.Data.Odbc.OdbcException

Message: ERROR [HY001] [Informix][Informix ODBC Driver]Memory
allocation failure.

1.Is this something to do with the datatype of the data which is been sent
across the Remotable channel and not being accepted by the database.

2. is it because of the remoting channels ?



Can any one let me know what is the probable cause of this error ?
 
SenthilVel said:
i am getting an error in remoting proxies like the below :

Exception rethrown at [0]:

at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
reqMsg, IMessage retMsg)

Exception: System.Data.Odbc.OdbcException

Message: ERROR [HY001] [Informix][Informix ODBC Driver]Memory
allocation failure.

1.Is this something to do with the datatype of the data which is been sent
across the Remotable channel and not being accepted by the database.

2. is it because of the remoting channels ?

It looks to me that the error is simply marshaled by the remoting
infrastructure, and that the error has nothing to do with remoting per
se but has been thrown by the Informix ODBC driver.

-- Barry
 
Thanks Barry .

So do u think that if i can Analyse all the Fields updated in to Informix
table , with the proper datratypes this will be solved.

what are the steps do u think for solving from the Database Point of view ?

Thanks in advance.

Thanks
Senthil



Barry Kelly said:
SenthilVel said:
i am getting an error in remoting proxies like the below :

Exception rethrown at [0]:

at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage
reqMsg, IMessage retMsg)

Exception: System.Data.Odbc.OdbcException

Message: ERROR [HY001] [Informix][Informix ODBC Driver]Memory
allocation failure.

1.Is this something to do with the datatype of the data which is been
sent
across the Remotable channel and not being accepted by the database.

2. is it because of the remoting channels ?

It looks to me that the error is simply marshaled by the remoting
infrastructure, and that the error has nothing to do with remoting per
se but has been thrown by the Informix ODBC driver.

-- Barry
 
Back
Top