Caliendo's Q&A profile
Visual Studio 2008 (Pre-release) Method not allowed
Hi there! I have posted a question regarding Windows SDK before but it seems that the error was ocurring only when I try to install the documentation and the samples. So I excluded that and the installation complleted. Anyhow, I am facing strange problem now. I am using HelloWorld example (for Indigo) explained in msdn library and every thing worked fine until the exceution of the client. It halts once it tries to call the method in the server returning the following error: The remote server returned an unexpected response: (405) Method not allowed. Anyone faced a similar problem I appereciate any help Regards Salman Hi Salman, Sorry for late reply! Can you check if a normal ASPX page works You can put anythi ...Show All
Visual C# how to embed mainifest to executables which define it's execution level with following tags?
Hello everybody, I came across this problem when I was testing my application for the vista certification. This is the very first Test Case that my application exe is unable to pass. So please tell me How can I embed the manifest to the exe which defines it's execution level with following tag. <security> <requestedPrivileges> <requestedExecutionLevel level="asInvoker" uiAccess="false"/> </requestedPrivileges> </security> Please reply as early as possible. Thanx in advance. Ved. Information on this is available on MSDN. Try here: http://msdn2.microsoft.com/en-us/library/ms235542.aspx for C/C++, and it looks like a good blog entry on thi ...Show All
Software Development for Windows Vista LAN Driver problem
Hi all. Finally yesterday finished downloaded Vista x64 Ultimate for my pc, it is build 5600 rc1. Upon getting into vista and being very impressed with what ive seen i started to install the drivers and such, now i couldnt install the drivers using vista so i set the compatibility for Windows XP SP2 and the drivers installed fine Unfortunately under the network area in vista it says unidentified network and the onboard lan cannot connect to my router. whenever i try to renew my ip address nothing happens and the private 169 address is given to the adaptor. Im using an Asrock 939Dual-SATA2 - This has a ULi M1695 chipset. Does anyone have an idea where a vista compatible driver is for this chipset Any help appreciated! ...Show All
Visual C++ "Custom build step" of a project: execution rule ?
Hi, I am presently using "Visual Studio 2005". I defined a project to generate a DLL X but I needed to do other operations on this DLL X to generate a file Y. So I added a "Custom Build Step" on the project file to generate the Y file. I defined Y as the output file and I even added X as an additional dependency file. I changed the execution order of the Custom Build Step and put it before the "Post Build Event". The problem is that the generation of Y seems to be unpredictable. Sometimes the "Custom Build Step" doesn't run, even if Y is outdated compared to X. And sometimes the "Custom Build Step" always run, even if Y is newer that X... In both case the configuration seems the same. So I don't understand how it is supposed to work. I rea ...Show All
.NET Development Scoket access error
HI, Does anyone know why I get this error message: "attempt was made to access a socket in a way forbidden by its access permission" Using Visual Studio .Net & C#, I have a simple "Hello World" webservice which is running on my http://localhost/trial5 . And I have another Console Application project that acts as a listener and continues on listening on port 80 for any incoming traffic. I am trying to have my listener trap any incoming traffic on that port for additional analyzing of data, but when I try to run it to start listening, I get the error above. Is this an administrative fix If so, how can I fix it Worth mentioning is that my web service project is of type "HTTP" created by VS. Net 20 ...Show All
SQL Server Using SMO to create SQL Express accounts?
Hi, Please could someone let me know what the minimum Server and Database roles are for an Account to use SMO to create further accounts, using SQLSever accounts and not Windows authentication. I'm finding it hard to find the right documentation.... Could someone give me a link into SQ Server Books 2005 (Express) online, that explains SQL Server security from the ground up. ie What all the roles are for etc. Thanks John Many thanks, I've got my SMO code working now, but I have found that I need "db_owner" permission to be able to Add Database roles to a new created Database User. According to the docs, I would have expected "db_securityadmin" but this does not allow ...Show All
Microsoft ISV Community Center Forums MS Office document and image writer print driver
Besides removing this feature from Office during setup, is there a process to remove this virtual printer from 300 users with roaming profiles on an active directory network We are having an issue with this printer assuming the "default printer" selection for our users. As a work around we have changed their default printer, but after they reboot or log off / on it has defaulted back to the MS Ofc doc and image writer printer. Hi to all! At me a problem with installation Microsoft Office Document Image Writer under Windows 64-edition SP1 with Office 2003 Pro full instalation. On a step 3 at me in the list is not present Document image printer writer port. Somebody faced a similar problem ...Show All
Visual J# How to Convert Java.awt.Image object to System.Drawing.Image object in J#
I need to convert an instance of java.awt.image to System.Drawing.Image and vice versa. Is there any particular way to do this. You may need to handle pixel-by-pixel way using ImageObserver class. Converting System.Drawing.Image to java.awt.Image is described in the following URL . http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=279494&SiteID=1 ...Show All
SQL Server XML Source into Recordset ( ADO Enumerator )
In "Data Flow", I am attempting to use "XML Source" to read a XML document into a recordset and in "Control Flow", into a Foreach Loop Container ( foreach ADO enumerator ), where I map the attributes to DTS variables. SSIS allows you to specify the input columns by means of an index number. The problem is you don't know what index value to use for a particular input attribute. It does not seem to be in the same order as the what the XML input is. This is very troublesome. Ideally, you should be allowed to select the value based on attribute name. Has anyone seen this problem Any ideas Is there anyway in XSD to force the parser to return attributes in a specific order Thx. ...Show All
Visual C# i recieved this error : "No connection could be made because the target machine actively refused it"
i recieved this error while trying to send email "No connection could be made because the target machine actively refused it" and thats the code i wrote : private void button1_Click( object sender, EventArgs e) { System.Net.Mail. MailMessage message = new System.Net.Mail. MailMessage (); message.To.Add( "mnos7y@hotmail.com" ); message.CC.Add( "mnos7y@hotmail.com" ); message.From = new System.Net.Mail. MailAddress ( "mnos7y@hotmail.com" ); message.Body = "some text" ; System.Net.Mail. SmtpClient smtp = new System.Net.Mail. SmtpClient ( "localhost" , 25); smtp.Credentials = new NetworkCredential ( "mnos7y@hotmail.com" , &q ...Show All
Visual Studio 2008 (Pre-release) WCF and JMS
Hi, I'm a newbie with WCF, I would like to know whether it's possible or not to send a message to JMS (on a JBOSS Server) with WCF Thanks for your help Rod Not directly. For any Microsoft technology to directly interop with JMS you need a bridge to transform messages from one format to the other. JNBridge for example provides solutions for MSMQ to JMS. So, on the WCF side you'd be talking to MSMQ. ...Show All
Visual C# Trying to determine Class by a string value
I'm having a DUH moment here and hopefully someone can answer it before I'm bald... I have a string that contains the name of the class and I want to create a new instance of the class that's referrred to. I have: string classToUse = "StartMeUp"; I have a class called StartMeUp that does some function... Of course, I want to create a statement similiar to: StartMeUp smu = new StartMeUp(); However, I've forgotten how to use the string to get to an object name... any helpers out there StartMeUp oElem = (( StartMeUp )oType.InvokeMember( "StartMeUp" , BindingFlags .CreateInstance, null , null , null )); Well, obviously, he can't write the " StartMeUp oElem = (( StartMeUp )&q ...Show All
Visual Basic VB NET Debugging - How do show potential error corrections
I am using VS 2005 (VB NET) on two different machines. On one installation, when an error or warning is encountered, the editor shows potential corrections for the bug. This feature does not seem to be enabled in the other installation of VS 2005 that I am using. How do I enable/ disable this feature What is this feature called I think the thing you're looking for is: Tools->Options->Text Editor->Basic->VB Specific->Enable error correction suggestions ...Show All
SQL Server Installing SQL Server 2005
I am new at installing SQL Server 2005 for the first time. How do I configure the server for security and setup user logins Thanks! Please do not post questions to the announcement area, as it is reserved for forums announcements. I am moving this thread to the more appropriate forum. Best of luck, -chris ...Show All
Visual C# Not finding a web proxy class that should be auto-generated
I'm having difficulty running my web app. It was working correctly, but I had to move the project files around. After moving them, I added the web site and service back into the project. My service works perfectly but my site can't seem to find the class UserService.UserService (which I believe is auto generated by my web reference). I tried removing the web reference, closing VS, opening and cleaning the solution, closing, then adding it back in and deploying - but no luck. The disco, discomap, and wsdl files are added to the project correctly. Here is the exact error message C:\philipd\Visual Studio 2005\Projects\...\Global.asax(5,5): error CS0246: The type or namespace name 'UserService' could not be found (are you missing a using direc ...Show All
