Porting an application

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
Phani Arava

Porting an application

Post by Phani Arava »

Dear All,

Trying to port an application to linux using wine. The program seems to have
got struck with some kind of socket issues.

Here is the last few lines of the log generated . Anything thats going wrong
. ClientPlugHandler.dll, ClientPlug.dll and Dispatcher.dll are dlls within
the application folder .I registered these dlls. Any help would be
appreciated.

***********************************************************************************************
warn:wininet:CreateUrlCacheEntryW Could not find a unique filename
warn:wininet:HTTP_HttpSendRequestW Could not create cache entry: 00000003
warn:module:load_builtin_dll failed to load .so lib for builtin
L"C:\\IndigoTx\\Gotx\\Main\\ClientPlugHandler.dll":
/home/phani/.wine/dosdevices/c:/IndigoTx/Gotx/Main/ClientPlugHandler.dll:
invalid ELF header
warn:module:load_builtin_dll cannot open .so lib for builtin
L"ClientPlugHandler.dll": /usr/bin/../lib/wine/clientplughandler.dll.so:
cannot open shared object file: No such file or directory
warn:module:alloc_module disabling no-exec because of
L"ClientPlugHandler.dll"
warn:module:load_builtin_dll failed to load .so lib for builtin
L"C:\\IndigoTx\\Gotx\\Main\\ClientPlug.dll":
/home/phani/.wine/dosdevices/c:/IndigoTx/Gotx/Main/ClientPlug.dll: invalid
ELF header
warn:module:load_builtin_dll cannot open .so lib for builtin
L"ClientPlug.dll": /usr/bin/../lib/wine/clientplug.dll.so: cannot open
shared object file: No such file or directory
warn:module:alloc_module disabling no-exec because of L"ClientPlug.dll"
warn:module:load_builtin_dll failed to load .so lib for builtin
L"C:\\IndigoTx\\Gotx\\Main\\Dispatcher.dll":
/home/phani/.wine/dosdevices/c:/IndigoTx/Gotx/Main/Dispatcher.dll: invalid
ELF header
warn:module:load_builtin_dll cannot open .so lib for builtin
L"Dispatcher.dll": /usr/bin/../lib/wine/dispatcher.dll.so: cannot open
shared object file: No such file or directory
warn:module:alloc_module disabling no-exec because of L"Dispatcher.dll"
warn:winsock:wsaErrno errno 115, (Operation now in progress).
Inside RequestHandler Thread's loop, AdvanceConnect = 1, IsConnected() = 1 1
0Inside RequestHandler Thread's loop, AdvanceConnect = 1, IsConnected() = 1
1 0
****************************************************************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-us ... chment.htm>
User avatar
dimesio
Moderator
Moderator
Posts: 13373
Joined: Tue Mar 25, 2008 10:30 pm

Re: Porting an application

Post by dimesio »

Phani Arava wrote: Trying to port an application to linux using wine. The program seems to have
got struck with some kind of socket issues.

Here is the last few lines of the log generated . Anything thats going wrong
. ClientPlugHandler.dll, ClientPlug.dll and Dispatcher.dll are dlls within
the application folder .I registered these dlls. Any help would be
appreciated.

***********************************************************************************************
warn:wininet:CreateUrlCacheEntryW Could not find a unique filename
warn:wininet:HTTP_HttpSendRequestW Could not create cache entry: 00000003
warn:module:load_builtin_dll failed to load .so lib for builtin
L"C:\\IndigoTx\\Gotx\\Main\\ClientPlugHandler.dll":
/home/phani/.wine/dosdevices/c:/IndigoTx/Gotx/Main/ClientPlugHandler.dll:
invalid ELF header
warn:module:load_builtin_dll cannot open .so lib for builtin
L"ClientPlugHandler.dll": /usr/bin/../lib/wine/clientplughandler.dll.so:
cannot open shared object file: No such file or directory
Set those dlls to native in winecfg. Wine is looking for builtin versions that don't exist.
Phani Arava

Porting an application

Post by Phani Arava »

Did change that . The Application is still hanging :
warn:wininet:CreateUrlCacheEntryW Could not find a unique filename
warn:wininet:HTTP_HttpSendRequestW Could not create cache entry: 00000003
warn:module:alloc_module disabling no-exec because of
L"ClientPlugHandler.dll"
warn:module:alloc_module disabling no-exec because of L"ClientPlug.dll"
warn:module:alloc_module disabling no-exec because of L"Dispatcher.dll"
warn:winsock:wsaErrno errno 115, (Operation now in progress).
Inside RequestHandler Thread's loop, AdvanceConnect = 1, IsConnected() = 1 1
0Inside RequestHandler Thread's loop, AdvanceConnect = 1, IsConnected() = 1
1 0


Regards
Phani


On Thu, Sep 16, 2010 at 6:19 PM, dimesio <[email protected]> wrote:
Phani Arava wrote:
Trying to port an application to linux using wine. The program seems to
have
got struck with some kind of socket issues.

Here is the last few lines of the log generated . Anything thats going
wrong
. ClientPlugHandler.dll, ClientPlug.dll and Dispatcher.dll are dlls
within
the application folder .I registered these dlls. Any help would be
appreciated.

***********************************************************************************************
warn:wininet:CreateUrlCacheEntryW Could not find a unique filename
warn:wininet:HTTP_HttpSendRequestW Could not create cache entry: 00000003
warn:module:load_builtin_dll failed to load .so lib for builtin
L"C:\\IndigoTx\\Gotx\\Main\\ClientPlugHandler.dll":
/home/phani/.wine/dosdevices/c:/IndigoTx/Gotx/Main/ClientPlugHandler.dll:
invalid ELF header
warn:module:load_builtin_dll cannot open .so lib for builtin
L"ClientPlugHandler.dll": /usr/bin/../lib/wine/clientplughandler.dll.so:
cannot open shared object file: No such file or directory
Set those dlls to native in winecfg. Wine is looking for builtin versions
that don't exist.





-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-us ... chment.htm>
Locked