I am installing MS CRM. I am following installation guide provided my Microsoft. During intsallation I am getting error as "Set up was unable to configure web services that are using Microsofts ASP.NET" Any one faced such kind of error while installing MS CRM? I tried by giving different credentials (like "local system", Administrator priviledges, Domian Admin priviledges) for installing this ASP.NET related services. even I tried changing ASP.NET service log on user to "local system". any guess why this is hapenning ? ur guess may help me out is sorting out this issue... Config info: I am having separate domain for this installation. Win 2k Server as OS. .. MS CRM Installation needs domain admin rights(for adding data on PDC and SQl server within the domain) Thanks in advance... The chosen One :)
Anand Paranjpe
Posts
-
MS CRM Installation error related to ASP.NET -
CString insertion operator faulty?When you typecast object of CString with LPCTSTR, internally overloaded operator LPCTSTR will get called. else explicily call function of CString class "operator LPCTSTR()" This will convert CString object to Long Pointer To Constant String which is acceptable format for ofstream. The chosen One :)
-
A funny thing happened to me. Who can explain?why are you tampering code by removing const while declaring variable a. it should be const int a=10; The chosen One :)
-
A funny thing happened to me. Who can explain?this is because of compiler optimization. Just have a look at assembly code. const int a=10; 0041B1CE mov dword ptr [a],0Ah int* p=(int*)&a; 0041B1D5 lea eax,[a] 0041B1D8 mov dword ptr [p],eax *p=100; 0041B1DB mov eax,dword ptr [p] 0041B1DE mov dword ptr [eax],64h int i=a; 0041B1E4 mov dword ptr [i],0Ah Also while printing on console... cout << "a=" << a << endl; 0041B291 push offset std::endl (4194BAh) 0041B296 push 0Ah 0041B298 push offset string "a=" (44E0C8h) 0041B29D push offset std::cout (457668h) 0041B2A2 call std::operator<< > (419A96h) 0041B2A7 add esp,8 0041B2AA mov ecx,eax 0041B2AC call std::basic_ostream >::operator<< (4195DCh) 0041B2B1 mov ecx,eax 0041B2B3 call std::basic_ostream >::operator<< (419AC3h) You will not experience this behavour with all the compilers. Thanks, Anand The chosen One :)
-
Saving Documents Without Confimation Dialog(Grab active window, click the button with name "&save") U will find such program on net which will do this for u. e.g. dismiss.exe which will do the same explained on 1st line. The chosen One :)
-
how to beautify a button in a dialog?Hi, U will find different articles on codeproject in MFC/C++ >> Button Controls else visit link below. http://www.codeproject.com/buttonctrl/cxskinbutton.asp B4 asking any question, "google":rolleyes: it and try to find out answer. That saves time and speed up the development. This is what I follow :cool: The chosen One :)
-
About XML parser with MSXML 4hi, try to understand syntax of XPath. its simple. first "/" means root node, second "/" means child node, in ur case "list" level, now u need to fire query to enumerate cities. when u say "//city/*" u r on level of "city" node and u r gathering infor inside city node. try this "/list/city/*" Try this out, till the time I will explore how 2 use XML in .NET!! The chosen One :)
-
IOCP goes wrong?u gave the answer in ur question!! read it carefully U will get the key!! The chosen One :)
-
About XML parser with MSXML 4hi, use XPath query language. "//list/city/*" pass this query to SelectNodes(); it will return u list of cities. Try it out. I cannot give u compilable code as I am using .NET IDE now a days. Search on MSDN @ writting XPath query. The chosen One :)
-
Kernel32.dllI hope u have gone through article below: "Three Ways to Inject Your Code into Another Process" By Robert Kuster The chosen One :)
-
Function to pass from text to floatuse atof() function inside ur func. Thanks The chosen One :)
-
Named Pipes access accross networkIf you specify NULL as DACL, the named pipe gets a default security descriptor. The ACLs in the default security descriptor for a named pipe grant full control to the LocalSystem account, administrators, and the creator owner. They also grant read access to members of the Everyone group and the anonymous account. So check if u can communicate with client machine with administartor rights. Else set named pipe's security descriptor by calling the SetSecurityInfo function. Chill, The chosen One :)
-
Preferred size for memory block alloc?If u r using string from STL, it gives facility of reserving memory space. Read more on Function reserve(). This will suffice the need. The chosen One :)
-
help socket newbieGo through MFC Sample CHATSRVR code. The chosen One :)
-
wstring/stringString Conversion Macros on MSDN will satiates ur need The chosen One :)
-
StrRetToStrWhat @ IE version u r having on ur machine? The chosen One :)
-
StrRetToStrHi, What IE version u have ? Use the func below. Check if same thing happening with this also StrRetToBuf The chosen One :)
-
Removing icon from headerWhat space u c is not space it is blank image. :) Live with it if possible :) The chosen One :)
-
Need help wif toggling check boxcheckbox is button with style as BS_CHECKBOX Use GetState() and SetState() of CButton class. The chosen One :)
-
how to read unicode fileHi, add "_UNICODE" in project/settings/C++/general/Preprocessor definations. CStdioFile file; CString str; while( file.ReadString(str)) { //Do something } if u get any linking error with libraries starting or ending with "u" (e.g. uafxcwd.lib), then u need to install unicode support for VC ide on ur machine. The chosen One :)