Hi,
I created a webservice for use with ajax. I noticed this error being throw and could not figure out what it was. After inspecting the .dll i found it
Compiled in debug mode
Public Sub New()
AddHandler MyBase.Disposed, New EventHandler(AddressOf Me.WebTitleDetail_Disposed)
WebTitleDetail.__ENCList.Add(New WeakReference(Me))
End Sub
the add is not thread safe and was throwing the index out of range error
compiled is release mode that line is gone
Public Sub New()
AddHandler MyBase.Disposed, New EventHandler(AddressOf Me.WebTitleDetail_Disposed)
End Sub
Here is the problem. My boss wants to keep the application running in debug mode but the webservice
will not work in debug mode. Does anyone know if there is a way to tell the compiler to skip the debuginfo
on the web service. The only other chioce I could think of was to create the webservice in a different app.
This seems to cause more trouble then its worth because from what i here ajax bridges aren't included in the release.
Somebody please help me.