Click here to Skip to main content
15,913,055 members
Home / Discussions / C#
   

C#

 
GeneralRe: Getting last element from dictionary collection Pin
Jim Crafton15-Dec-09 10:50
Jim Crafton15-Dec-09 10:50 
QuestionDirectX (9) Video Renderer Pin
Eduard Keilholz15-Dec-09 2:47
Eduard Keilholz15-Dec-09 2:47 
AnswerRe: DirectX (9) Video Renderer Pin
Migounette15-Dec-09 4:30
Migounette15-Dec-09 4:30 
GeneralRe: DirectX (9) Video Renderer Pin
Eduard Keilholz15-Dec-09 23:48
Eduard Keilholz15-Dec-09 23:48 
QuestionWorkflow service not starting on WinServer 2003 - any ideas, hitting a wall here! Pin
Yoken15-Dec-09 2:17
Yoken15-Dec-09 2:17 
AnswerRe: Workflow service not starting on WinServer 2003 - any ideas, hitting a wall here! Pin
Migounette15-Dec-09 4:41
Migounette15-Dec-09 4:41 
GeneralRe: Workflow service not starting on WinServer 2003 - any ideas, hitting a wall here! Pin
Yoken16-Dec-09 19:35
Yoken16-Dec-09 19:35 
AnswerRe: Workflow service not starting on WinServer 2003 - Solution!! Pin
Yoken17-Dec-09 5:01
Yoken17-Dec-09 5:01 
Hi All,

Just to let you know, after how long of searching for an answer, in the end the problem was inside the code on initializing a public variable.

instead of having [very rough]

public class myclass
{
   workflowservicehost host = new workflowservicehost();

   public myclass(...) {}

}


I had to change it to

public class myclass
{
   workflowservicehost host;

   public myclass(...) 
   {
      host = new workflowservicehost();
   }
}



Doing this fixed the "Error 1053", and the service started without hassle!

Now, if only I can find out WHY that worked on my dev machine (Win7, VS2008) and not when deployed to the server (WinServ2003), it sure would be great! My only thought is something to do with the underlying infrastructure, but any guess further that that is well.. yet another guess.
QuestionUnary And Binary Minus Operator Pin
dataminers15-Dec-09 1:12
dataminers15-Dec-09 1:12 
AnswerRe: Unary And Binary Minus Operator Pin
harold aptroot15-Dec-09 1:26
harold aptroot15-Dec-09 1:26 
AnswerRe: Unary And Binary Minus Operator Pin
Luc Pattyn15-Dec-09 1:28
sitebuilderLuc Pattyn15-Dec-09 1:28 
GeneralRe: Unary And Binary Minus Operator Pin
OriginalGriff15-Dec-09 1:33
mveOriginalGriff15-Dec-09 1:33 
GeneralRe: Unary And Binary Minus Operator Pin
Luc Pattyn15-Dec-09 1:51
sitebuilderLuc Pattyn15-Dec-09 1:51 
GeneralRe: Unary And Binary Minus Operator Pin
Mirko198015-Dec-09 6:56
Mirko198015-Dec-09 6:56 
AnswerRe: Unary And Binary Minus Operator Pin
OriginalGriff15-Dec-09 1:30
mveOriginalGriff15-Dec-09 1:30 
AnswerRe: Unary And Binary Minus Operator Pin
PIEBALDconsult15-Dec-09 4:27
mvePIEBALDconsult15-Dec-09 4:27 
QuestionToolbar for browser Pin
hemant.kaushal15-Dec-09 0:27
hemant.kaushal15-Dec-09 0:27 
QuestionAmbiguous Pin
ddecoy15-Dec-09 0:15
ddecoy15-Dec-09 0:15 
AnswerRe: Ambiguous Pin
Paulo Zemek15-Dec-09 0:30
Paulo Zemek15-Dec-09 0:30 
GeneralRe: Ambiguous Pin
ddecoy15-Dec-09 1:56
ddecoy15-Dec-09 1:56 
GeneralRe: Ambiguous Pin
Paulo Zemek15-Dec-09 2:25
Paulo Zemek15-Dec-09 2:25 
GeneralRe: Ambiguous Pin
ddecoy15-Dec-09 2:44
ddecoy15-Dec-09 2:44 
GeneralRe: Ambiguous Pin
morten11216-Dec-09 1:13
morten11216-Dec-09 1:13 
AnswerRe: Ambiguous Pin
#realJSOP15-Dec-09 7:34
professional#realJSOP15-Dec-09 7:34 
GeneralRe: Ambiguous Pin
ddecoy16-Dec-09 1:29
ddecoy16-Dec-09 1:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.