File tree Expand file tree Collapse file tree 9 files changed +17
-14
lines changed Expand file tree Collapse file tree 9 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 3131//
3232// You can specify all the values or you can default the Revision and Build Numbers
3333// by using the '*' as shown below:
34- [ assembly: AssemblyVersion ( "1.4.1 " ) ]
35- [ assembly: AssemblyFileVersion ( "1.4.1 " ) ]
34+ [ assembly: AssemblyVersion ( "1.4.2 " ) ]
35+ [ assembly: AssemblyFileVersion ( "1.4.2 " ) ]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public abstract class BaseClient
1616 /// <summary>
1717 /// Version of this client.
1818 /// </summary>
19- public const string CLIENT_LIBRARY_VERSION = "1.4.1 " ;
19+ public const string CLIENT_LIBRARY_VERSION = "1.4.2 " ;
2020
2121 /// <summary>
2222 /// Proxy object that is initialized during start-up, if needed.
@@ -46,6 +46,7 @@ public abstract class BaseClient
4646
4747 static BaseClient ( )
4848 {
49+ ServicePointManager . SecurityProtocol = ( SecurityProtocolType ) 3072 | ( SecurityProtocolType ) 768 ;
4950 SetupProxy ( ) ;
5051 }
5152
Original file line number Diff line number Diff line change @@ -74,9 +74,11 @@ private void ExtractFields( string nspace )
7474 mMessage = GetTextValue ( "faultstring" , String . Empty ) ;
7575
7676 // requestID goes into mRequestID
77- mRequestID = GetTextValue (
77+ if ( nspace != null )
78+ {
79+ mRequestID = GetTextValue (
7880 "requestID" , nspace ) ;
79-
81+ }
8082 // faultcode goes into mCode. If it has a prefix, look up
8183 // the namespace for that prefix.
8284 XmlNode faultCodeText = GetText ( "faultcode" , String . Empty ) ;
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ private static void SetVersionInformation(Hashtable request)
222222 request [ "clientLibrary" ] = ".NET NVP" ;
223223 request [ "clientLibraryVersion" ] = CLIENT_LIBRARY_VERSION ;
224224 request [ "clientEnvironment" ] = mEnvironmentInfo ;
225- request [ "clientSecurityLibraryVersion" ] = ".Net 1.4.1 " ;
225+ request [ "clientSecurityLibraryVersion" ] = ".Net 1.4.2 " ;
226226 }
227227 }
228228}
Original file line number Diff line number Diff line change 3131//
3232// You can specify all the values or you can default the Revision and Build Numbers
3333// by using the '*' as shown below:
34- [ assembly: AssemblyVersion ( "1.4.1 " ) ]
35- [ assembly: AssemblyFileVersion ( "1.4.1 " ) ]
34+ [ assembly: AssemblyVersion ( "1.4.2 " ) ]
35+ [ assembly: AssemblyFileVersion ( "1.4.2 " ) ]
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ private static void SetVersionInformation(
222222 requestMessage . clientLibrary = ".NET Soap" ;
223223 requestMessage . clientLibraryVersion = CLIENT_LIBRARY_VERSION ;
224224 requestMessage . clientEnvironment = mEnvironmentInfo ;
225- requestMessage . clientSecurityLibraryVersion = ".Net 1.4.1 " ;
225+ requestMessage . clientSecurityLibraryVersion = ".Net 1.4.2 " ;
226226 }
227227 }
228228}
Original file line number Diff line number Diff line change @@ -472,7 +472,7 @@ XmlNode previousSibling
472472
473473 SetField ( requestMessageNode , ref previousSibling ,
474474 "clientSecurityLibraryVersion" ,
475- ".Net 1.4.1 " , nspace ) ;
475+ ".Net 1.4.2 " , nspace ) ;
476476 }
477477
478478 private static void SetField (
Original file line number Diff line number Diff line change 2929// Build Number
3030// Revision
3131//
32- [ assembly: AssemblyVersion ( "1.4.1 .0" ) ]
33- [ assembly: AssemblyFileVersion ( "1.4.1 .0" ) ]
32+ [ assembly: AssemblyVersion ( "1.4.2 .0" ) ]
33+ [ assembly: AssemblyFileVersion ( "1.4.2 .0" ) ]
Original file line number Diff line number Diff line change 2929// Build Number
3030// Revision
3131//
32- [ assembly: AssemblyVersion ( "1.4.1 .0" ) ]
33- [ assembly: AssemblyFileVersion ( "1.4.1 .0" ) ]
32+ [ assembly: AssemblyVersion ( "1.4.2 .0" ) ]
33+ [ assembly: AssemblyFileVersion ( "1.4.2 .0" ) ]
You can’t perform that action at this time.
0 commit comments