Click here to Skip to main content
15,890,282 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to start windows service automatically Pin
Philip.F5-Feb-09 0:13
Philip.F5-Feb-09 0:13 
GeneralRe: How to start windows service automatically Pin
arun_pk5-Feb-09 0:24
arun_pk5-Feb-09 0:24 
QuestionMulti Instance application Pin
himuskanhere4-Feb-09 23:23
himuskanhere4-Feb-09 23:23 
AnswerRe: Multi Instance application Pin
Christian Graus4-Feb-09 23:28
protectorChristian Graus4-Feb-09 23:28 
GeneralRe: Multi Instance application Pin
benjymous4-Feb-09 23:57
benjymous4-Feb-09 23:57 
AnswerRe: Multi Instance application Pin
musefan4-Feb-09 23:29
musefan4-Feb-09 23:29 
AnswerRe: Multi Instance application Pin
tasumisra5-Feb-09 1:10
tasumisra5-Feb-09 1:10 
Questionweb Service Error "There was an error generating the XML document." Pin
bfis1081374-Feb-09 23:13
bfis1081374-Feb-09 23:13 
I wrote a web service and when I ran it on the clent I get the following error. Does anyone have any idea what this could mean? This is the Stack Trace
System.InvalidOperationException was unhandled
  Message="There was an error generating the XML document."
  Source="System.Xml"
  StackTrace:
       at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
       at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Serialize(SoapClientMessage message)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at TestClient.WS.Service1.ExecuteOrder(User u, Order o) in C:\prog\finalProject\BookStore\WSClient\WindowsApplication1\Web References\WS\Reference.cs:line 143
       at TestClient.BillingShipping.button1_Click(Object sender, EventArgs e) in C:\prog\finalProject\BookStore\WSClient\WindowsApplication1\BillingShipping2.cs:line 147
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
       at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
       at System.Windows.Forms.Form.ShowDialog()
       at TestClient.bookList2.CreateOrder_Click(Object sender, EventArgs e) in C:\prog\finalProject\BookStore\WSClient\WindowsApplication1\bookList2.cs:line 80
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
       at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.Run(Form mainForm)
       at TestClient.Program.Main() in C:\prog\finalProject\BookStore\WSClient\WindowsApplication1\Program.cs:line 18
       at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()

AnswerRe: web Service Error "There was an error generating the XML document." Pin
SeMartens5-Feb-09 1:43
SeMartens5-Feb-09 1:43 
Questionwrite a c# program Pin
srinivasvaluri4-Feb-09 22:52
srinivasvaluri4-Feb-09 22:52 
AnswerRe: write a c# program Pin
musefan4-Feb-09 22:58
musefan4-Feb-09 22:58 
AnswerRe: write a c# program Pin
Christian Graus4-Feb-09 23:19
protectorChristian Graus4-Feb-09 23:19 
GeneralRe: write a c# program Pin
musefan4-Feb-09 23:24
musefan4-Feb-09 23:24 
GeneralRe: write a c# program Pin
PIEBALDconsult5-Feb-09 3:50
mvePIEBALDconsult5-Feb-09 3:50 
GeneralRe: write a c# program Pin
Guffa5-Feb-09 5:50
Guffa5-Feb-09 5:50 
GeneralRe: write a c# program Pin
PIEBALDconsult5-Feb-09 5:52
mvePIEBALDconsult5-Feb-09 5:52 
AnswerRe: write a c# program Pin
Guffa5-Feb-09 5:56
Guffa5-Feb-09 5:56 
AnswerRe: write a c# program Pin
darkelv5-Feb-09 18:18
darkelv5-Feb-09 18:18 
Questionspam Pin
meenatiruppathi4-Feb-09 22:49
meenatiruppathi4-Feb-09 22:49 
AnswerRe: spam Pin
musefan4-Feb-09 22:55
musefan4-Feb-09 22:55 
Questiongenerating gradient histogram Pin
meenatiruppathi4-Feb-09 22:48
meenatiruppathi4-Feb-09 22:48 
AnswerRe: generating gradient histogram Pin
musefan4-Feb-09 22:50
musefan4-Feb-09 22:50 
AnswerRe: generating gradient histogram Pin
Bharat Jain5-Feb-09 3:24
Bharat Jain5-Feb-09 3:24 
QuestionListing drives from a server Pin
mrithula84-Feb-09 22:26
mrithula84-Feb-09 22:26 
AnswerRe: Listing drives from a server Pin
Christian Graus4-Feb-09 22:45
protectorChristian Graus4-Feb-09 22:45 

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.