My favorites | Sign in
Project Logo
             
Details: Show all Hide all

Earlier this year

  • Nov 27, 2009
    r146 (Fix: WCF object proxy) committed by zol...@thesilentgroup.com   -   Fix: WCF object proxy
    Fix: WCF object proxy
  • Nov 27, 2009
    r145 (Fix: CallContext access under medium trust) committed by zol...@thesilentgroup.com   -   Fix: CallContext access under medium trust
    Fix: CallContext access under medium trust
  • Nov 26, 2009
    r144 (Fix: ASPX post fails when using StreamingAMF channels) committed by zol...@thesilentgroup.com   -   Fix: ASPX post fails when using StreamingAMF channels
    Fix: ASPX post fails when using StreamingAMF channels
  • Nov 14, 2009
    issue 8 (Number type test failed.) reported by umbrahan   -   What steps will reproduce the problem? 1. service function "public long echoLong(long lVal) { return lVal; }" 2. test this function with arg lVal = -8589433953703838308 3. this function returns: -8589433953703839000 What is the expected output? What do you see instead? return -8589433953703838308, -8589433953703839000 returns. What version of the product are you using? On what operating system? v1.0.0.15 Windows XP Please provide any additional information below. none
    What steps will reproduce the problem? 1. service function "public long echoLong(long lVal) { return lVal; }" 2. test this function with arg lVal = -8589433953703838308 3. this function returns: -8589433953703839000 What is the expected output? What do you see instead? return -8589433953703838308, -8589433953703839000 returns. What version of the product are you using? On what operating system? v1.0.0.15 Windows XP Please provide any additional information below. none
  • Nov 02, 2009
    r143 (Fix(Mono): XmlAnyElement cannot be used with classes of type...) committed by zol...@thesilentgroup.com   -   Fix(Mono): XmlAnyElement cannot be used with classes of type XmlNode
    Fix(Mono): XmlAnyElement cannot be used with classes of type XmlNode
  • Oct 28, 2009
    issue 7 (AMFWriter.UseLegacyCollection not exposed in FluorineFx API) reported by daniel.l.cameron   -   AMFWriter.UseLegacyCollection is not publicly exposed in the FluorineFX public API. What is the expected output? What do you see instead? An API option to control on-wire collection serialisation similar to how NetConnection.ObjectEncoding is exposed. It appears it is not possible to change AMFWriter.UseLegacyCollection from the default value (without editing the source code). What version of the product are you using? On what operating system? FluorineFX 1.0.0.15
    AMFWriter.UseLegacyCollection is not publicly exposed in the FluorineFX public API. What is the expected output? What do you see instead? An API option to control on-wire collection serialisation similar to how NetConnection.ObjectEncoding is exposed. It appears it is not possible to change AMFWriter.UseLegacyCollection from the default value (without editing the source code). What version of the product are you using? On what operating system? FluorineFX 1.0.0.15
  • Oct 28, 2009
    r142 (Fix: Delay the RSO connection notification Do not update the...) committed by zol...@thesilentgroup.com   -   Fix: Delay the RSO connection notification Do not update the RSO attribute store if this is a notification that the SetAttribute is accepted
    Fix: Delay the RSO connection notification Do not update the RSO attribute store if this is a notification that the SetAttribute is accepted
  • Oct 28, 2009
    r141 (New: ISharedObject.SetDirty) committed by zol...@thesilentgroup.com   -   New: ISharedObject.SetDirty
    New: ISharedObject.SetDirty
  • Oct 19, 2009
    issue 6 (Exceptions thrown from RemotingClient callbacks are swallowe...) reported by daniel.l.cameron   -   What steps will reproduce the problem? 1. Edit FluorineFx\Samples\Silverlight\AMFCall\SilverlightApplication\Page.xaml.cs to throw an exception from GetXDocumentHandler.ResultReceived() What is the expected output? What do you see instead? Expect to result in an exception bubbling up the call stack. Exception is swallowed and exposed as a NetStatus event. What version of the product are you using? On what operating system? WinXP, VS2008, SilverLight 3, FluorineFX 1.0.0.15 Please provide any additional information below. Silverlightut unit tests become messier when asserts thrown from the callback handler are swallowed. To work around this issue, I created a callback wrapper class posts the actual callback work to the originating thread so call-back exceptions are thrown from that thread, instead of the FluorineFX callback context. Eg: public class GenericPendingServiceCallback : IPendingServiceCallback { private Action<IPendingServiceCall> callback; public GenericPendingServiceCallback(Action<IPendingServiceCall> callback) { this.callback = callback; } public void ResultReceived(IPendingServiceCall call) { // callbacks affecting the UI should be posted to the UI thread, not a background thread. BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += (o, e) => { callback(call); }; worker.RunWorkerAsync(); } } [TestMethod] [Asynchronous] public void ShouldReturnFailureWhenCallingNonexistantService() { connection.Call("ServiceName.ServiceMethodName", new GenericPendingServiceCallback((call) => { Assert.IsFalse(call.IsSuccess); TestComplete(); })); }
    What steps will reproduce the problem? 1. Edit FluorineFx\Samples\Silverlight\AMFCall\SilverlightApplication\Page.xaml.cs to throw an exception from GetXDocumentHandler.ResultReceived() What is the expected output? What do you see instead? Expect to result in an exception bubbling up the call stack. Exception is swallowed and exposed as a NetStatus event. What version of the product are you using? On what operating system? WinXP, VS2008, SilverLight 3, FluorineFX 1.0.0.15 Please provide any additional information below. Silverlightut unit tests become messier when asserts thrown from the callback handler are swallowed. To work around this issue, I created a callback wrapper class posts the actual callback work to the originating thread so call-back exceptions are thrown from that thread, instead of the FluorineFX callback context. Eg: public class GenericPendingServiceCallback : IPendingServiceCallback { private Action<IPendingServiceCall> callback; public GenericPendingServiceCallback(Action<IPendingServiceCall> callback) { this.callback = callback; } public void ResultReceived(IPendingServiceCall call) { // callbacks affecting the UI should be posted to the UI thread, not a background thread. BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += (o, e) => { callback(call); }; worker.RunWorkerAsync(); } } [TestMethod] [Asynchronous] public void ShouldReturnFailureWhenCallingNonexistantService() { connection.Call("ServiceName.ServiceMethodName", new GenericPendingServiceCallback((call) => { Assert.IsFalse(call.IsSuccess); TestComplete(); })); }
  • Oct 19, 2009
    issue 5 (ReflectionUtils.GetTypeConverter NullReferenceException when...) reported by daniel.l.cameron   -   ReflectionUtils.GetTypeConverter() throw exception when the target type does not have a TypeConverter attribute. Reproduction steps: Call an endpoint returning a type containing a generic list member (eg SampleClass { public List<int> PropertyCausingCrash { get; set; }; } ) from a SilverLight application. Resolution: Adding "if (typeConverterAttribute == null) return null;" before the return statement in ReflectionUtils.GetTypeConverter [Util/ReflectionUtils:685] fixes this issue & allows for deserialisation to List<*> instead of ArrayCollection within Silverlight. What version of the product are you using? On what operating system? Windows XP SP3 Visual Studio 2008 SilverLight 3 FluorineFX 1.0.0.15 (source debug build)
    ReflectionUtils.GetTypeConverter() throw exception when the target type does not have a TypeConverter attribute. Reproduction steps: Call an endpoint returning a type containing a generic list member (eg SampleClass { public List<int> PropertyCausingCrash { get; set; }; } ) from a SilverLight application. Resolution: Adding "if (typeConverterAttribute == null) return null;" before the return statement in ReflectionUtils.GetTypeConverter [Util/ReflectionUtils:685] fixes this issue & allows for deserialisation to List<*> instead of ArrayCollection within Silverlight. What version of the product are you using? On what operating system? Windows XP SP3 Visual Studio 2008 SilverLight 3 FluorineFX 1.0.0.15 (source debug build)
  • Oct 15, 2009
    r140 (Fix: ignore EntityReference properties when serializing EF o...) committed by zol...@thesilentgroup.com   -   Fix: ignore EntityReference properties when serializing EF objects
    Fix: ignore EntityReference properties when serializing EF objects
  • Oct 15, 2009
    r139 (Fix: use IObjectProxy for AMF0 (to handle correctly EntityOb...) committed by zol...@thesilentgroup.com   -   Fix: use IObjectProxy for AMF0 (to handle correctly EntityObjects from the Entity Framework)
    Fix: use IObjectProxy for AMF0 (to handle correctly EntityObjects from the Entity Framework)
  • Oct 06, 2009
    issue 4 (unable to pass auto generated id to child table) reported by ksrmramesh   -   What steps will reproduce the problem? 1. created the tables like dept and employee table. 2. i am passing the employee information and dept information one page itself. 3. i need after creating the dept table i want to pass that id in the emp table. What is the expected output? What do you see instead? whit out user interaction we need to pass the dept primary key value to employee table in one single procedure for this i am using fluent nhibernate. What version of the product are you using? On what operating system? FluorineFx v1.0.0.15 , vs 2008 , sqlserver2005, flex3.0 and fluent nhibernate. Please provide any additional information below. it works fine for me in .net console and web application. when i am passing the same dll to flex application through flourinefx its not working. here reference id is not saved in the dept table.
    What steps will reproduce the problem? 1. created the tables like dept and employee table. 2. i am passing the employee information and dept information one page itself. 3. i need after creating the dept table i want to pass that id in the emp table. What is the expected output? What do you see instead? whit out user interaction we need to pass the dept primary key value to employee table in one single procedure for this i am using fluent nhibernate. What version of the product are you using? On what operating system? FluorineFx v1.0.0.15 , vs 2008 , sqlserver2005, flex3.0 and fluent nhibernate. Please provide any additional information below. it works fine for me in .net console and web application. when i am passing the same dll to flex application through flourinefx its not working. here reference id is not saved in the dept table.
  • Sep 26, 2009
    issue 3 (deserialize error) Owner changed by zol...@thesilentgroup.com   -   Can you give more details about this issue: what are you sending from AS and what is the exception message you are getting here
    Owner: zol...@thesilentgroup.com
    Can you give more details about this issue: what are you sending from AS and what is the exception message you are getting here
    Owner: zol...@thesilentgroup.com
  • Sep 26, 2009
    issue 2 (CreateSharedObject caused StackOverFlow in RoomStart or AppS...) changed by zol...@thesilentgroup.com   -  
    Status: Fixed
    Owner: zol...@thesilentgroup.com
    Status: Fixed
    Owner: zol...@thesilentgroup.com
  • Sep 26, 2009
    fluorine_iis7_x64.zip (FluorineFx IIS7 Native Module x64) file uploaded by zol...@thesilentgroup.com   -  
    Labels: OpSys-Windows Type-Archive
    Labels: OpSys-Windows Type-Archive
  • Sep 26, 2009
    fluorine_iis7_x86.zip (FluorineFx IIS7 Native Module x86) file uploaded by zol...@thesilentgroup.com   -  
    Labels: OpSys-Windows Type-Archive
    Labels: OpSys-Windows Type-Archive
  • Sep 26, 2009
    fluorine_isapi_x64.zip (FluorineFx ISAPI Filer x64) file uploaded by zol...@thesilentgroup.com   -  
    Labels: OpSys-Windows Type-Archive
    Labels: OpSys-Windows Type-Archive
  • Sep 26, 2009
    fluorine_isapi_x86.zip (FluorineFx ISAPI Filer x86) file uploaded by zol...@thesilentgroup.com   -  
    Labels: FluorineFx ISAPI RTMPT RTMPT OpSys-Windows Type-Archive
    Labels: FluorineFx ISAPI RTMPT RTMPT OpSys-Windows Type-Archive
  • Sep 22, 2009
    issue 3 (deserialize error) reported by shapenlone   -   when deserialize amf3 message,found some errors...can't deserialize StackTrace " 在 System.DateTime.AddTicks(Int64 value)\r\n 在 System.DateTime.Add(Double value, Int32 scale)\r\n 在 System.DateTime.AddMilliseconds(Double value)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Date()\r\n 在 FluorineFx.IO.Readers.AMF3DateTimeReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object(ClassDefinition classDefinition)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object()\r\n 在 FluorineFx.IO.Readers.AMF3ObjectReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object(ClassDefinition classDefinition)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object()\r\n 在 FluorineFx.IO.Readers.AMF3ObjectReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object(ClassDefinition classDefinition)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object()\r\n 在 FluorineFx.IO.Readers.AMF3ObjectReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.Readers.AMF0AMF3TagReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadData(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadData()\r\n 在 FluorineFx.IO.AMFDeserializer.ReadBody()" string
    when deserialize amf3 message,found some errors...can't deserialize StackTrace " 在 System.DateTime.AddTicks(Int64 value)\r\n 在 System.DateTime.Add(Double value, Int32 scale)\r\n 在 System.DateTime.AddMilliseconds(Double value)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Date()\r\n 在 FluorineFx.IO.Readers.AMF3DateTimeReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object(ClassDefinition classDefinition)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object()\r\n 在 FluorineFx.IO.Readers.AMF3ObjectReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object(ClassDefinition classDefinition)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object()\r\n 在 FluorineFx.IO.Readers.AMF3ObjectReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object(ClassDefinition classDefinition)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Object()\r\n 在 FluorineFx.IO.Readers.AMF3ObjectReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadAMF3Data()\r\n 在 FluorineFx.IO.Readers.AMF0AMF3TagReader.ReadData(AMFReader reader)\r\n 在 FluorineFx.IO.AMFReader.ReadData(Byte typeCode)\r\n 在 FluorineFx.IO.AMFReader.ReadData()\r\n 在 FluorineFx.IO.AMFDeserializer.ReadBody()" string
  • Sep 14, 2009
    r138 (Fix: handle IListSource and IEnumerable (AMF0)) committed by zol...@thesilentgroup.com   -   Fix: handle IListSource and IEnumerable (AMF0)
    Fix: handle IListSource and IEnumerable (AMF0)
  • Sep 07, 2009
    r137 (Fix: Add RemotingService attribute and import namespaces whe...) committed by zol...@thesilentgroup.com   -   Fix: Add RemotingService attribute and import namespaces when wsdl proxy generation is enabled
    Fix: Add RemotingService attribute and import namespaces when wsdl proxy generation is enabled
  • Sep 06, 2009
    r136 (Fix: GetHashCode warnings) committed by zol...@thesilentgroup.com   -   Fix: GetHashCode warnings
    Fix: GetHashCode warnings
  • Sep 06, 2009
    r135 (New: ISharedObjectHandlerProvider, IServiceHandlerProvider s...) committed by zol...@thesilentgroup.com   -   New: ISharedObjectHandlerProvider, IServiceHandlerProvider support
    New: ISharedObjectHandlerProvider, IServiceHandlerProvider support
  • Sep 06, 2009
    r134 (Fix: Potential timeout race condition may cause deadlock) committed by zol...@thesilentgroup.com   -   Fix: Potential timeout race condition may cause deadlock
    Fix: Potential timeout race condition may cause deadlock
  • Sep 05, 2009
    r133 (Update: guard against custom service adapter failures) committed by zol...@thesilentgroup.com   -   Update: guard against custom service adapter failures
    Update: guard against custom service adapter failures
  • Sep 05, 2009
    r132 ([No log message]) committed by zol...@thesilentgroup.com   -   [No log message]
    [No log message]
  • Sep 05, 2009
    r131 (Asynchronous PushMessageToClients support for message servic...) committed by zol...@thesilentgroup.com   -   Asynchronous PushMessageToClients support for message service adapters
    Asynchronous PushMessageToClients support for message service adapters
  • Sep 04, 2009
    r130 (Fix: ObjectDisposedException thrown when PolicyServer is sto...) committed by zol...@thesilentgroup.com   -   Fix: ObjectDisposedException thrown when PolicyServer is stopped Fix: Starting PolicyServer in non-hosted mode Update: Notify RTMP clients though NetConnection.NetStatus when a server call fails and the client did not define a IPendingServiceCallback for the call
    Fix: ObjectDisposedException thrown when PolicyServer is stopped Fix: Starting PolicyServer in non-hosted mode Update: Notify RTMP clients though NetConnection.NetStatus when a server call fails and the client did not define a IPendingServiceCallback for the call
  • Aug 30, 2009
    r129 (Fix: pending call result/error code) committed by zol...@thesilentgroup.com   -   Fix: pending call result/error code
    Fix: pending call result/error code
  • Aug 30, 2009
    r128 (Fix: status codes in the client library Fix: object encoding...) committed by zol...@thesilentgroup.com   -   Fix: status codes in the client library Fix: object encoding in the client library
    Fix: status codes in the client library Fix: object encoding in the client library
  • Aug 30, 2009
    r127 (Fix: Environment.ProcessorCount SecurityCritical in Silverli...) committed by zol...@thesilentgroup.com   -   Fix: Environment.ProcessorCount SecurityCritical in Silverlight 3
    Fix: Environment.ProcessorCount SecurityCritical in Silverlight 3
  • Aug 25, 2009
    r126 (Fix: handle when NetworkStream is disposed between async cal...) committed by zol...@thesilentgroup.com   -   Fix: handle when NetworkStream is disposed between async callbacks
    Fix: handle when NetworkStream is disposed between async callbacks
  • Aug 25, 2009
    r125 (Fix: send ErrorMessage when SecurityException occurs) committed by zol...@thesilentgroup.com   -   Fix: send ErrorMessage when SecurityException occurs
    Fix: send ErrorMessage when SecurityException occurs
  • Jul 01, 2009
    r124 (Fix: message client unsubscribe operation fails when client ...) committed by zol...@thesilentgroup.com   -   Fix: message client unsubscribe operation fails when client is already removed from destination
    Fix: message client unsubscribe operation fails when client is already removed from destination
  • Jun 30, 2009
    r123 (Fix: Service adapter not notified when a message client is i...) committed by zol...@thesilentgroup.com   -   Fix: Service adapter not notified when a message client is invalidated
    Fix: Service adapter not notified when a message client is invalidated
  • Jun 29, 2009
    r122 (Trace outgoing (response) messages) committed by zol...@thesilentgroup.com   -   Trace outgoing (response) messages
    Trace outgoing (response) messages
  • Jun 29, 2009
    r121 (Fix: handle WSAECONNREFUSED and WSAETIMEDOUT cases) committed by zol...@thesilentgroup.com   -   Fix: handle WSAECONNREFUSED and WSAETIMEDOUT cases
    Fix: handle WSAECONNREFUSED and WSAETIMEDOUT cases
  • Jun 29, 2009
    r120 (Fix: Flex message error response (type coercion error)) committed by zol...@thesilentgroup.com   -   Fix: Flex message error response (type coercion error)
    Fix: Flex message error response (type coercion error)
  • Jun 29, 2009
    r119 (Fix: DataAvailable fails for SslStream) committed by zol...@thesilentgroup.com   -   Fix: DataAvailable fails for SslStream
    Fix: DataAvailable fails for SslStream
  • Jun 25, 2009
    r118 (Fix: Session handling error when SQL session state is used i...) committed by zol...@thesilentgroup.com   -   Fix: Session handling error when SQL session state is used in the application
    Fix: Session handling error when SQL session state is used in the application
  • Jun 17, 2009
    issue 2 (CreateSharedObject caused StackOverFlow in RoomStart or AppS...) commented on by zoroufatal   -   I'll try to get the latest version when I'm free. Thanks a lot~
    I'll try to get the latest version when I'm free. Thanks a lot~
  • Jun 17, 2009
    issue 2 (CreateSharedObject caused StackOverFlow in RoomStart or AppS...) commented on by zoroufatal   -   Yep,zol,your example is just what I have met.
    Yep,zol,your example is just what I have met.
  • Jun 17, 2009
    issue 2 (CreateSharedObject caused StackOverFlow in RoomStart or AppS...) commented on by zol...@thesilentgroup.com   -   Can you please check out with the latest version? Is this test code similar to your case: public override bool AppStart(IScope application) { CreateSharedObject(application, "TestSO", false); ISharedObject so = GetSharedObject(application, "TestSO"); return base.AppStart(application); }
    Can you please check out with the latest version? Is this test code similar to your case: public override bool AppStart(IScope application) { CreateSharedObject(application, "TestSO", false); ISharedObject so = GetSharedObject(application, "TestSO"); return base.AppStart(application); }
  • Jun 15, 2009
    r117 (Silverlight project file update) committed by zol...@thesilentgroup.com   -   Silverlight project file update
    Silverlight project file update
  • Jun 15, 2009
    r116 (Shared object update Verbose RTMP packet and Flex message tr...) committed by zol...@thesilentgroup.com   -   Shared object update Verbose RTMP packet and Flex message tracing Long handshake detection
    Shared object update Verbose RTMP packet and Flex message tracing Long handshake detection
  • Jun 15, 2009
    r115 (Update API docs) committed by zol...@thesilentgroup.com   -   Update API docs
    Update API docs
  • Jun 14, 2009
    issue 2 (CreateSharedObject caused StackOverFlow in RoomStart or AppS...) reported by zoroufatal   -   What steps will reproduce the problem? 1. Download the latest version from SVN 1.0.0.17 2. Try to do CreateSharedObject in event RoomStart or AppStart on server side. 3. A dead loop will be caused. Guess that the latest version faild to create the scope object's service contianer 'cause CreateSharedObject can work in both RoomConnect and AppConnect. Also when I restored the code to version 1.0.0.15,everything works fine.
    What steps will reproduce the problem? 1. Download the latest version from SVN 1.0.0.17 2. Try to do CreateSharedObject in event RoomStart or AppStart on server side. 3. A dead loop will be caused. Guess that the latest version faild to create the scope object's service contianer 'cause CreateSharedObject can work in both RoomConnect and AppConnect. Also when I restored the code to version 1.0.0.15,everything works fine.
  • Jun 09, 2009
    r114 (FluorineContext tracing) committed by zol...@thesilentgroup.com   -   FluorineContext tracing
    FluorineContext tracing
  • Jun 09, 2009
    r113 (Fix: add correctly service browser destinations when the con...) committed by zol...@thesilentgroup.com   -   Fix: add correctly service browser destinations when the configuration file does not explicitly define an adapter
    Fix: add correctly service browser destinations when the configuration file does not explicitly define an adapter
 
Hosted by Google Code