dbeau's Q&A profile
Visual Studio 2008 (Pre-release) The Security Support Provider Interface (SSPI) negotiation failed.
I have WCF service hosted in a windows service with wsHttpBinding. In my client application, added service reference feature by using http://mytestsite.com:8001/MyServices.RecordsReceiver . But I keep getting the error mentioned in the subject. Any pointer or help will be greatly appreciated! Here is my client config file: < xml version = " 1.0 " encoding = " utf-8 " > < configuration > < system.diagnostics > < sources > < source name = " System.ServiceModel.MessageLogging " switchValue = " Verbose,ActivityTracing " > < listeners > < add type = " System.Diagnostics.DefaultTraceListener " name = " Defaul ...Show All
.NET Development I'm new, and I am very confused
Hi, before I begin, i'll tell you a bit about where I am with programming. I'm trying to learn web services with VB2005, and I'm having alot of trouble finding reliable tutorials that exceed "HelloWorld." HelloWorld is a good place to start, but right now I'm trying to connect to NorthWind. I have no idea where to begin, aside from (I think) using System.Data.SqlClient. If you would at least point me in the direction of a nice tutorial site (other than W3schools, i've cleared through every piece of info I could find on that page), I would be most appreciative. If you are going to take the time to explain what I should be doing (which would be VERY appreciated, I know how time consuming it is) please explain yourself as t ...Show All
Visual Basic Microsoft outlook Calendar Control ?
Requirement: I need to create a VB.NET front end that has a Microsoft Outlook style calendar control. The very basic thing would be a calendar control in which you can add TEXT to each day. An advanced version would be a calendar control in which i can add appointments to each day. Another good enhancement would be a calendar control in which i can add a VB.NET control (like a DGV) to each day..... Can anyone recommend me to any control like that.... Thanks !! TkNeo, Have you tried too bind the Controls like DataGridView control to the class not bind to the object The following source shows the method that use the BindingSource control to bind the DGV control to the Class: Imports System Impor ...Show All
Visual Basic Using a declared function in a dir' address.
Hi Guys, Ill be upfront, i am extremely new to VB and am still learning the ropes, so apologies if i do not make much sense lol! Ok, what i am trying to do is place the current user logged on to the computer into a directory. Eg, ------------------------- ChDir "C:\Documents and Settings\ USERNAMELOGGED IN \Desktop" Workbooks.OpenText Filename:= _ "C:\Documents and Settings\ USERNAMELOGGED IN \Desktop\IMEI.xls", Origin:= _ xlMacintosh, StartRow:=1, DataType:=xlDelimited, TextQualifier:= _ xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=False, _ Comma:=False, Space:=False, Other:=False, FieldInfo:=Array(1, 1) ----------------------------- I am wanting to repla ...Show All
Visual C++ unresolved external symbol __invalid_parameter_noinfo
Hi friends, We are building a sample project in debug mode with release build of library say test.lib we got error like "error LNK2001: unresolved external symbol __invalid_parameter_noinfo". Can anybody give solution for this problem Regards, Mukilan i tried with preprocessor option _SECURE_SCL=0, still i am gettting the same error. I buit both test.lib and sample application with _SECURE_SCL=0. i didnt solve my problem. ...Show All
Visual Studio Team System Project field mapping questions
All I am trying to use Project in conjunction with TFS for tracking both my project and the accuracy of my planning. To that end, I would like to have Project show me the dates I planned each task to go (based mainly on links with other tasks), and have the dates in TFS be the Actual dates. To support this, I am thinking that I need to remove the mappings between TFS StartDate and Project pjTaskStart as well as TFS EndDate and Project pjTaskEnd. I also have to add mappings from TFS ActivatedDate to Project's Actual Start Date and TFS Resolved Date to Project's Actual End. Regarding this I have 2 questions: 1) What are the correct names of the project fields 2) Is there something that I am missing that makes this idea "out ...Show All
SQL Server Memory Configuration Problem ! Please help ....
Hi All I would appreciate any help from you all with regards to this: I have a SQL 2005 standard installation with windows server 2003 enterprise Operating system The server has 7GB of memory available to it, but as I know SQL 2003 standard edition would make use of the total server memory available to it. Here are the changes that I have made. (I have converted it all to GB for easy reading) I added the 3GB switch to the boot.ini file I enabled AWE I set mini server memory to 5GB I set max server memory to 6GB I turned on Performance monitor and the Target server memory counter = 6GB, the total server memory is also set to 6GB. Now after all the changes above, the ...Show All
Visual Studio Express Editions Local Or Remote
Can someone please explain What is the definition of a "local" and a "remote" table Is a local - within your network Is a remote - somewhere in If a local is within your local network, how do you connect from other pc's. I asked a question the other day and someone made the remark that I would not have to use a mapped drive like I have with Access. How do you connect to the data What do you do to the other pc's to see the sql server There again- take it easy on me until I get a sharp as you. Bumfuzzled. David IDE - Integrated development Environment You can use SQL 2000 in development if you happy to code directly against the database without some of the nice d ...Show All
Connected Services Framework Eventing in CSF
Hello, I would like to get more details about how to use eventing when writing a WES for CSF. First of all I would like whether there is any difference between the Provisioning Events, Health Events and Usage Events The provided samples with the WES toolkit don't implement any of them (except usage) so I would like to know if they are all implemented in the same way. To the more importaint question: how do I configure the sample from the WES toolkit for Usage eventing to work What is the role of Usage Event Poller included with the WES toolkit Generally what I would like to know is how to send events Is there any more documentation written on this matter And one more dummy question. What is the difference between sending a message in CSF ...Show All
.NET Development WebService vs ASP.Net pages
me new to ASP.Net and Web Service. My target is GUI less web site response result in a XML format for any request. and me found ASP.Net provide a way that did it called WebService. but me confusing what difference between ASP.Net pages and WebService. because ASP.Net pages also can return XML instead of HTML an example for basic website [SignIn] and [SignOut] with WebService member.asmx/SignIn username=xxx&password=xxx member.asmx/SignOut and with ASP.Net pages SignIn.aspx username=xxx&password=xxx SignOut.aspx WebService seem work similar to ASPX, just combined all methods into one "ASMX" so anyone please be kind to explain to me, what the diffenrece between them, and what the benefit of using WebService. In my c ...Show All
SQL Server UPDATETEXT problem
Hi, For a report I need to run in my app I have an SP that will in short, create a temp table, populate table and return table. The table contains a ntext column so add more data to it I need to use UPDATETEXT. My code is: CREATE TABLE #TempReport ( [Person] varchar(255), [Status] ntext ) INSERT INTO #TempReport SELECT surname, IsNull(s.thevalue, '') --+ '<BR /><BR />' + o.thevalue FROM tbl_people p INNER JOIN tbl_lu_people lup on lup.personid = p.personid and persontypeid = 1 LEFT JOIN tbl_memo s on s.caseid =p.caseid and s.memotypeid = 6 LEFT JOIN tbl_memo o on o.caseid = p.caseid and o.memotypeid = 8 declare @value varbinary(16) SELECT @value = TEXTPTR(RT.Status) FROM #TempReport RT updatetext #tempreport.S ...Show All
Smart Device Development How To Invoke A Non-Public Constructor On Compact Framework?
Hi, I'm hoping someone can help please. I am using the factory pattern to instantiate a family of generated classes, for which I have made their default (and only) constructor internal to ensure that these are only instantiated using the factory. On the desktop .NET framework, this was trivial using the Activator .CreateInstance(Type, Boolean) overload, where the Bool param can be used to include "non-public" constructors when Reflecting. On CF 2.0, there are no such overloads on Activator .CreateInstance (in fact, there are NO overloads for Activator .CreateInstance ). I have tried using myType .InvokeMember(".ctor", BindingFlags .CreateInstance | BindingFlags .NonPublic, null, null, null) , discovering ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Learning a programming language AND game programming concepts simultaneously a pipe dream?
I'm tryig to learn C# programming with the aim of creating games, but boy is it a struggle. I think the stumbling block for most people (and I include myself in this group) whose primary interest in programming is games related, is that a large conceptual leap is required between document-based programming and real-time programming - and there simply isn't any sufficient discussion or tutorials explaining the fundamentals of the concept to ease the transition. The basic problem is anyone who starts out learning a language like C# pretty much finds themself with nothing but books teaching the language from the perspective of programming forms, event-handlers, interacting with controls and basically looking at exer ...Show All
Visual C++ A final WMI question (I hope)
Hi Folks; I need to use WMI to determine the disk drive sizes in a system with multiple drives. The system I've tested this on has the drives but WMI seems to add the drive sizes together. I've looked on the msdn site and checked out the Win32_DiskDrive table but couldn't find anything to specifically meet my needs. I was wondering if there was a way to pull out individual drive sizes. OK. What I need though is not so much the free space but the sizes of the drives. So if I had an 80Gb and 20Gb then I need a query that returns a list 80Gb,20Gb as opposed to what it does now and that is return 100Gb. ...Show All
Software Development for Windows Vista How to get the value of the Property in statemachineworkflow
I registered some properties in my statemachineworkflow When my workflow is running, I have the instanceID of the workflow, How can I get the value of the property Thank you very much. I tried following way,but failed. StateMachineWorkflowInstance smwi=new StateMachineWorkflowInstance(WorkflowRuntime,instanceID); return ((myWorkflow)smwi.StateMachineWorkflow).myValue; Thank you very much. I've read your sample on Tracking, that's too complex. Is there some sample code for how to use a CallExternalMethod activity to pass the value back to the host ...Show All
