hola compañeros,
Â
tengo el siguiente caso del cual agradezco la poca o mucha ayuda...
Â
debo consumir un webservice, del cual nos dan un archivo tlb, e importado este
tlb por poryect / import type library
Â
me a adicionado unos componentes....en la pestaña XXXX
Â
he tratado de usarlo asi...
Â
procedure TForm1.Button2Click(Sender: TObject);
begin
  ProcInt1.Autenticar('NOMBRE_USER', 'CONTRASENA') ;
Â
 // siendo ProcInt1 el componente tipo TProcInt
 // autenticar uno de los metodos que trae ProcInt
end;
Â
Â
----
Â
en el uses adicione la correspondiente unidad GProcInt_TLB
Â
en donde esta definido ..
...
...
...
Â
// *********************************************************************//
// Declaration of CoClasses defined in Type
Library                     Â
// (NOTE: Here we map each CoClass to its Default
Interface)Â Â Â Â Â Â Â Â Â Â Â Â Â
// *********************************************************************//
 ProcInt = IProcModules;
Â
...
....
....
Â
// *********************************************************************//
// The Class CoProcInt provides a Create and CreateRemote method
to        Â
// create instances of the default interface IProcModules exposed
by            Â
// the CoClass ProcInt. The functions are intended to be used
by           Â
// clients wishing to automate the CoClass objects exposed by
the       Â
// server of this
typelibrary.                                  \
        Â
// *********************************************************************//
 CoProcInt = class
   class function Create: IProcModules;
   class function CreateRemote(const MachineName: string): IProcModules;
 end;
Â
Â
--------------------------------------------------
Â
luego de presionar el boton me saca este mensaje de error
Â
---------------------------
Debugger Exception Notification
---------------------------
Project Project1.exe raised exception class EOleSysError with message 'Clase no
registrada'. Process stopped. Use Step or Run to continue.
---------------------------
OK  Help Â
---------------------------
la verdad... se que algo tengo mal... por eso recurro a su ayuda...y pues he
buscado en internet y no he visto algo parecido...
Â
gracias por la ayuda
Â
Ricardo Cabra
[Non-text portions of this message have been removed]