Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. zallen

    How do I get MTS

    If you use MTS 2.0 instead of COM+ then you can export a client side exe and run it on client side to register your components. If you use late-binding technology you donot need to register any MTS components on client side. Regards! zallen@cmmail.com Long live of freedom!
  2. zallen

    How to build a VOD system...

    Recently i find some information from http://www.videolan.org/.But i cannot run its miniserver successfully.However it seems that videolan uses cgi mode which cannot meet our needs. Maybe someoe out there can help me. Thanks! zallen@cmmail.com Long live of freedom!
  3. zallen

    Starting client on NT but want to use remote orbix daemon on unix

    Does the Orbix in GNOME support distributed computing? Regards! zallen@cmmail.com Long live of freedom!
  4. zallen

    Can't Install MTS Components ("Finish" Button Grayed-Out)

    I think you are losing some file your component needs.Try opening your dll by some tool(delphi,etc.) and to see which type library it imports. Hope this helps you! zallen@cmmail.com Long live of freedom!
  5. zallen

    How to grant the file privilege

    marsd, I understand what you said. But is it possible to implement it without changing the ownership? In windows i only need to share the directory in which the file lives.I can easily control who can read the file and who can write the file. Regard! zallen@cmmail.com Long live of freedom!
  6. zallen

    How to grant the file privilege

    Maybe it is difficult to implement your goal.I think the privilege bits are not enough :( Do you think about the PAM? Regards! zallen@cmmail.com Long live of freedom!
  7. zallen

    MTS Startup/Shutdown

    "having each public method check the time" may be a heavy work. Whether or not we can stop some services such as DTC to prevent user from using MTS packages. If your batch processes donot need to login to function then you can logout and change the MTS packages to interactive user...
  8. zallen

    mtx.exe consuming processor

    You donot need to explicitly destroy objects creatd under MTX context.You just need to tell MTS that the game is over by calling SetComplete or SetAbort. For my experience the stateless objects is necessary even if the MTS supports stateful objects. Regards! zallen@cmmail.com Long live of freedom!
  9. zallen

    Is it possible to port MTS to linux

    Hi,friends I know the MTS runs only on windows platform.However if we use samba to mimic windows network and wine to emulate windows environment,is it possible to run MTS on linux? The reason why i have such a thought is we want to migrate our MTS-based system to linux to oprovide a cheap...
  10. zallen

    memory leak

    I think "set obj = nothing" is not needed.In your MTS object you should can SetComplete/SetAbort to tell MTS executive to "release" the object. Regards! zallen@cmmail.com Long live of freedom!
  11. zallen

    about telnet

    ifincham : Thanks you! but it doesnot work.Do i need to add %.yourdomain.com in /etc/host.allow? Regards! zallen@cmmail.com Long live of freedom!
  12. zallen

    When to use GetObjectContext?

    SetComplete/SetAbort will tell the MTS executive whether the operation is successful by changing a flag in object context. Even if your operation doesnot need transaction eg. getting data from DBMS,you can also call SetComplete/SetAbort: .... try //get_data from db SetComplete; except...
  13. zallen

    about telnet

    After i diable the firewall i can telnet it from windows box now.But one same problem appears! i can use mysql client side on the same linux box as the mysql server(version:3.23.36).When i use mysql client side on windows i cannot connect to the linux box. The message is Host 'myhost-name' is...
  14. zallen

    about telnet

    Thank you very much! Sorry for my poor English . I think it is the firewall to disable the remote visit .I will test it once i return to my office. Regards! zallen@cmmail.com Long live of freedom!
  15. zallen

    about telnet

    Hi,friend After installing Redhat7(seawolf) i can telnet itself on the same box,But i cannot telnet to it from other windows box though i can ping it. Any suggestion is appreciated! zallen@cmmail.com Long live of freedom!
  16. zallen

    Error registering COM+ application

    From your code i donot think it is late-binding because late-binding doesnot need to look up the registry.Here is some delphi code snippet: ... with dcomConnection do try ComputerName := 'my_server_computer_name'; Connected := True; AppServer.my_method(...); //late binding finally...
  17. zallen

    Error registering COM+ application

    If you use late-binding technology you donot need to register the components on client side.Of course it is slower than early-binding but it is easy to maintain and dispatch. Regards! zallen@cmmail.com Long live of freedom!
  18. zallen

    about debug COM+ component

    Hi,friends When debugging MTS 2.0 components i simply set the run parameters as below: Host Application : c:\windows\system\mtx.exe Parameters : /P:"my_mts_package_name" then i can debug it . However when upgrading to COM+ i cannot do it now ! Host Application ...
  19. zallen

    Delphi Debugger

    Have a look at SoftICE http://www.numega.com/.If you have a adaptive symbol file for ICE then you can use it to debug delphi program . Regards! zallen@cmmail.com Long live of freedom!
  20. zallen

    one way to improve MTS performance

    Hi,friends I want to use IMDB(In Memory DB) as cache.When the client wants data,it can be fetched from the cache instead of RM(MS SQL server,etc.).In this way the performance can be improved intensively. However i donot find out a good solution to synchronize the cache with RM. I want to build...

Part and Inventory Search

Back
Top