Communication Application

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
ais
Newbie
Newbie
Posts: 2
Joined: Mon May 18, 2009 4:17 am

Communication Application

Post by ais »

Hi Everyone.


I am testning my own communication application (like messenger). It works fine under Windows enviroment. The installation under Wine is succes but when I start the application I cant login to my sever. So my questions is there any way to debug? Or is there any special configurations for net applications?


Thanks.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Communication Application

Post by vitamin »

ais wrote:So my questions is there any way to debug?
If this is your own application why are you asking us? You should know how to debug programs you write. Wine can print lots of debug information if you know which exact part you need: http://wiki.winehq.org/DebugChannels
ais wrote:Or is there any special configurations for net applications?
No. Wine work with network as-is.
ais
Newbie
Newbie
Posts: 2
Joined: Mon May 18, 2009 4:17 am

Post by ais »

thanks for the reply.YES I can debug the code but I dont thing the problem is in the code.
I guess it is something conflicting with wine. So maybe I start some real time debug in wine.
krish
Level 2
Level 2
Posts: 25
Joined: Mon Apr 20, 2009 9:48 am

Post by krish »

To debug, run your application with the following option:

WINEDEBUG=+tid,+relay,+seh wine youapp.exe >& DbgOp.txt


You can check in the log file whether your application is missing any dependency or whatever....
Locked