Gidjett's Q&A profile
Visual Studio 2008 (Pre-release) NTLM not negotiated without blank userPrincipalName
Hello, We're running into issues with Kerberos/NTLM negotiation, I think. Given this configuration: We get an exception on the client side: SecurityNegotiationException: "A call to SSPI failed, see inner exception.". Inside, we have a Win32Exception: "The target principal name is incorrect". The client configuration is the following: <endpoint address="net.tcp://testmachine:6105/XService/" binding="netTcpBinding" contract="Foo.IXService" name="XService"> </endpoint> The client runs as Network Service on TEST-WEB00. If we add an identity element, everything works ok (we're successfully authenticated to the service and the service works): <identity> ...Show All
Windows Forms cancel navigator add new on double add -using no null allowed exception
hi how can i cancel when the add button is pressed twice, i get no null allowed Public Class Navigator Inherits BindingNavigator Private Sub BindingNavigatorAddNewItem_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles BindingNavigatorAddNewItem.Click If BindingSource IsNot Nothing Then Try BindingSource.AddNew() Catch r As NoNullAllowedException MsgBox( "Please finish edit the current new row first." ) End Try End If End Sub Set the bindingnavigators AddNewItem to none so your code runs instead of the built in code. ...Show All
Customer Care Framework Agent Desktop Error, CCF 2005 .NET 2.0
Finished the installation, when I try starting Agentdesktop I get the following error: Error: Unable to login - make sure your domain\\user name is correctly configured in the system. Application will exit now. System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: AgentLogin: User does not exist in the database. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior run ...Show All
Visual Studio 2008 (Pre-release) Connecting a WCF client to a Service running on QNX
Hi everybody, I’m trying to have a WCF client serviced by a Service C++ program running under QNX Neutrino. I have used GSOAP to generate the wsdl and xsd files and feed them to the svcutil to get a ServiceProxy.cs and an App.config files, all this had been done and when executed both programs seems to connect well but my WCF client crashes with the next error: "The request channel timed out while waiting for a reply after 00:00:57.6562500. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout." Here are the wsdl and xsd files which were gotten from QNXService Header for soapcpp2.exe compiled with ...Show All
Visual Basic InteropForm bug in Chinese OS
I install InteropForm in VS2005 Simplified Chinese Edition. when i start VS2005,i recive a error message,and i found the "Generate InteropForm Wrapper Class" is not apper.and i tryed the method posted in this forum,it isn't work either. and after view the source code in install directory,i found that: the original code in "OnConnection" method in "Microsoft.InteropFormTools.InteropFormProxyGenerator" project is that: "...... Dim toolsMenuNameKey As String = String.Concat(dteCultureInfo.Name, "Tools") " and in chinese OS,the return value is "zhTools" so the value is not match the resource keyname define in the "Commandbar.resx" : "zh-CHSTools ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Content Pipeline vs. XNABuild/ARM
Just out of curiosity ... what is the relationship between the XNABuild/ARM stuff and the content pipeline in GSE Seems like there's a bit of overlap with the two -- at the very least with the incremental content build stuff. :) Joel Martinez wrote: ahh, interesting ... so is it safe to say that the content pipeline is basically an implementation of xnabuild/arm I wouldn't really call it an implementation. These are different technologies, even though they share some similar ideas and techniques, and obviously have some amount of overlap in terms of what problems they are intended to solve. The content pipeline doesn't currently support distributed build farms (neither does xnabuild, for that matter). It's ...Show All
Visual Studio Express Editions Copy Data from MS Access To SQL Server 2005 Express Database - I did it!!!
I could copy a MS Access table content to a SQL Server 2005 Express doing the following: 1) Create a Database in VB5 Express 2) Create a table in database 3) Open Access Database and attach the file from SQL 2005 Database. 4) Copy and Paste records. Be carefull with data types qhen creating the table, and convert all field in access to the corresponding data. I have lost a lot of time trying to do this, but using the invert way you can do it. You dont need any of the utilities from other SQL versions. I hope this help somebody. Sorry for my english. I'm happy. There are other more fun ways!!! Get SMSEE Here: http://www.microsoft.com/downloads/details.aspx FamilyI ...Show All
Visual Studio Team System TF60096: Ghost files in VSS
I am getting hundreds of errors when attempting to migrate source code from VSS to VSTF. It keeps erroring out on files that don't even exist in VSS (from what I can see). I have run a VSS analyze and it states that there are no inconsistencies. How can one remove these ghost files from VSS before I do the conversion ...Show All
SQL Server The merge process failed to execute a query because the query timed out
Hi there. I have occasional sincronization error. -XSUBSYSTEM Merge -XSERVER MYSERVER -XCMDLINE 0 -XCancelEventHandle 000006E0 2006 - 12 - 22 14 : 55 : 00 . 833 Connecting to Subscriber 'Subscriber01' 2006 - 12 - 22 14 : 55 : 00 . 895 Connecting to Distributor 'Publisher01' 2006 - 12 - 22 14 : 55 : 02 . 974 Initializing 2006 - 12 - 22 14 : 55 : 03 . 083 Connecting to Publisher 'Publisher01' 2006 - 12 - 22 14 : 55 : 06 . 005 Retrieving publication information 2006 - 12 - 22 14 : 55 : 06 . 130 Retrieving subscription information. 2006 - 12 - 22 15 : 00 : 07 . 222 The merge process failed to execute a query because the query timed out . If this failure continues, increase the query timeout ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Multiple Textures to shader
hi.. im making a projekt, and want to send more than one texture to my vertex shader... im using the Textures[0] from the graphicsdevice.. and trying to use the first 10 spaces in this texturecollecion.. and have the first 10 TEXCOORD's defined in the shader. When this is running i only have access to the first texture [0] and all the others have the same texture.. should i somehow tell xna how many textures im putting into this collextion or what could be the problem... They are just texture coordinate registers. They dont hold textures. Either way you will need samplers. if you dont want the texture in the shaders you can do: sampler2D Texture0 : register( s0 ); sampler2D Texture1 : regi ...Show All
Windows Forms Iterating through the DataSource property via a Foreach Loop
I've created a custom drop down list control which inherits from DropDownList: public partial class CustomDropDownList : DropDownList I need to add a method to this class which will iterate through the items contained in the DataSource property via some sort of loop (foreach or for) and attempt to match one of the items to a variable value that is set earlier. But I can't figure out to loop through the DataSource property. If anybody can show me how to do that I'd be very grateful. Thank you in advance. Sean. When you create a DataSource for binding, you'll have a DataSet created for you. In the form_load event, you'll probably find something like this.[tableName]Adap ...Show All
Visual C# "Smalltalk’s object-based hierarchy does not work so well".Also c#??
I read a book , "Thinking in C++".At pg:694( Introduction to templates) he writes: "The Smalltalk solution. Smalltalk (and Java, following its example) took a simple and straightforward approach: You want to reuse code, so use inheritance. To implement this, each container class holds items of the generic base class Object (similar to the example at the end of Chapter 15). But because the library in Smalltalk is of such fundamental importance, you don’t ever create a class from scratch. Instead, you must always inherit it from an existing class. You find a class as close as possible to the one you want, inherit from it, and make a few changes. Obviously, this is a benefit because it minimizes your effort (and explains why yo ...Show All
Visual Studio Express Editions Building A Cd Collection Program Article
When I first started doing research on the express versions of the visual studio programs I came across an article that talked about using sql express and on of the languages to make a program to keep track of a cd collection but now I can not find that article anywhere. If someone could post a link to that article it would be much appreciated. do you perhaps mean the My Movie Collection starter kit see http://msdn2.microsoft.com/en-us/library/w6ce4ebt.aspx (This is the Visual Basic version.) when you load and run the starter kit application, a tutorial is launched in Visual Studio hope this helps -Mick ...Show All
.NET Development Calendar Required Field Problem?
Hellos; i want to validate the Calendar.SelectedDate in FormView Panel (asp.net auto insert, update,delete forms) because if Calendar.SelectedDate is nothing it inserts db NULL however i want to insert Today Date inside of null value. In the Page_Load you can't reach any control of the FormView. How can i achnieve this big problem. Thanks a lot ... Here is how to validate the date input. < asp : RegularExpressionValidator ID ="RegularExpressionValidator15" runat ="server" ControlToValidate ="txtDate" ErrorMessage =" * Invalid" Font-Names ="Tahoma" Font-Size ="10px" ValidationExpressio ...Show All
SQL Server ReportViewer axd path
Hello, I'm having problems using the ReportViewer control (which you can use in VS2005). When I go to the page that contains the control, the images (back, next, print, etc) don't show up and I get different javascript errors (one of them is the "RSClientController is undefined" error). After some investigation, I found out that the path to the Reserved.ReportViewerWebControl.axd file is incorrect (as I see it in the page source). On every place this axd file is used (for the images and the necessary javascript file), the path is "/Reserved.ReportViewerWebControl.axd ...", while it should be "/reportserver/Reserved.ReportViewerWebControl.axd ...". If I go directly to the "/reportserver/..." url, I ...Show All
