reference

Book recomendation for Solr

I want to know how to get the best of Solr. Which books, tutorials, reference sites should I read to learn about it? Thanks. ...

Visual Studio 2008;: adding a webreference

Aloha I have a VS2008 solution to which I want to add a webservice reference. I enter an url like 'http://192.168.100.87:7001/wsdl/IMySOAPWebService'. The Add Web Reference dialog starts looking then throws me this error: There was an error downloading 'http://192.168.100.87:7001/wsdl/IMySOAPWebService/$metadata'. Adding the ex...

Best Resource for Character Encodings

I'm searching for a document (not printed) that explains in details but still simply the subject of character encoding. ...

Create pointer to parent object in deserialization process in C#

I have a classes like: [Serializable] public class child { public Parent parent; } [Serializable] public class Parent { public List<child> children; } When I deserialize Parent, I want each of each children to have a reference to it's parent. Question is, where in the deserialization process can I set the child's "parent" poi...

What other sites do you go to for your coding questions?

This site is pretty good but I'm wondering what other resources are out there. I guess it's probably pretty language dependent but in general I have not found any other sites with a good wealth of general programming knowledge where I can just post a question and someone will actually answer it. Especially when you're posting some sort...

Reference 3.5 assembly from 2.0 application?

I have an assembly that is targeted for .NET 3.5. I have an application targeted for .NET 2.0 and wonder if I should have any trouble referencing the 3.5 assembly from the 2.0 application. I understand that the IL is supposedly the same, so I'm assuming that it will work, but would like to hear some experiences from others who have tri...

Reference Counting in C++

Hello. I'm implementing a math library in C++. The library will be compiled to a DLL so those who use it will only need the header files the classes' definitions. The users of my classes will be people who are new to the language. However, there are some objects that might be referenced in several parts of their programs. Since I don't ...

Managed C++ Web reference to WCF service problems

Hi, I deveploped a simple WCF service called CLSAPIService that it's Contract contains a method named UpdateLastOpenCloseCall: [OperationContract(Name = "UpdateLastOpenCloseCall", Action = "http://uniform.com/UpdateLastOpenCloseCall")] CallResult UpdateLastOpenCloseCall(int iSwitchID, int iAgentID, string strExtension, BusinessD...

Dependencies of references not copied to output directory

I have a CommonUtils lib I have built into a dll which I file reference from several of my projects. CommonUtils depends on log4net.dll which was set as a file reference and copy-local=true when CommonUtils.dll was built. log4net.dll and CommonUtils.dll are not in GAC. Everything works fine in MyWorkingProject where I only have a file r...

Assembly reference error on web site with same signature

I've more than one ASP.NET 2.0 web site on IIS 6 and Windows Server 2003. Each site reference some DLLs: design, logic and so on. Each site is on a different ApplicationPool with default configuration about recycling techniques. Every DLL is strong named (not delayed) and has a version that never changes (2.0.0.0), all DLLs are placed i...

Add Non-GAC reference to project

Every time I add a reference to a web project in visual studio 2008 that is in my GAC, it adds the reference as a GAC reference and doesn't copy the file to my bin directory. But for deployment purposes, I would like to add the reference as a non-GAC reference so it adds the dll to my bin directory. I've tried using the browse button to ...

Javascript reference for offline browsing.

I am going offline for a few days, and would like to bring the javascript documentation with me on my laptop :) Does anyone know of a place where I can get downloadable reference documentation for javascript, preferably for firefox? I have cheked the mozilla site, but have only been able to find an online version. Thanks, Jonas ...

What is 'the' definitive book on Unit Testing?

I would consider myself fairly well versed in the concepts of Unit Testing. I am curious though if there is a publication that is considered the definitive book on Unit Testing. This would be along the same lines as Martin Fowler's Refactoring: Improving the Design of Existing Code being considered (arguably) the definitive book on Ref...

How Do I Pass A Method Reference to A Different Method in C#

I would like to pass a reference of a method into another method and store it as a variable. Later, I would like to use this reference to define an event handler. When making an event handler, a method reference is passed like: myButton.Click += new RoutedEventHandler(myButton_Click); And if you look at the constructor for "RoutedEv...

Web App Compiling Error - ASP.NET Reference

My current web app works fine locally and on live, what i am currently playing around with is compiling my Web App with the Visual Studio Option "Add Web Deployment Project" so all the code behind is compiled into DLL's. There's is one particular build error i can not get rid off Error 50 The type or namespace name 'usercontrols_calend...

Where is XMLHttpRequest.responseStream defined?

Take a look at the graphics part of the GoogleAPI reference. It says that loadImage takes either a string, or the responseStream property of an XMLHttp. By XMLHttp, I assume it means XMLHttpRequest. My problem is that I can't find documentation for this field (the responseStream field) anywhere. I've had no luck googling it (ironc), it...

MATLAB Java referencing problem

I have a MATLAB class which contains a reference to a java object classdef MyClass properties j = myJavaClass end methods ... end end and after I use it (using clear, scope exit or explicitly setting myClass = 0; ) the java object is still alive - even after calling Runtime.gc. I see in the dump that the object is still i...

Why can I assign an existing reference to a literal value in C++?

Consider the following: int ival = 1.01; int &rval = 1.01; // error: non-const reference to a const value. int &rval = ival; rval = 1.01; The first assignment of &rval to a literal value fails as expected. If I comment out that line the code compiles and runs. I understand why the initialization fails, but I'm confused why the assi...

VB.NET: how to reference a DataTable?

I am trying to reference a DataTable and I do not know how to achieve this. Please help and thank you very much. In my code, I would like to assign dtTmp to dtTarget(i) through the reference dtCurr. Is it possible to achieve that in VB.NET? Private dtA, dtB As DataTable Dim dtTarget() As DataTable = {Me.dtA, Me.dtB} For i As Integer ...

When can't an object be converted to a reference?

I want to compile the following line of code from http://code.google.com/p/enhsim: enh::eout << enh::setw(26); gcc gives the following error: error: no match for 'operator<<' in 'enh::eout << enh::setw(26)' But the EnhSimOutput class (of which enh::eout is an instance) does declare: EnhSimOutput& operator<< (setw& p); This probl...