error code i am receiving
I am currently trying to connect my Salesforce account with Anypoint studio for Mulesoft practice. I consistently get the same error.
I have tried resetting my token and i know the password is correct.
This does not mean your SFDC credentials are incorrect. It means your tooling service in Anypoint Studio has an issue.
To try and remedy go to menu:
Studio -> Preferences/Setttings(on windows?) -> Anypoint Studio -> Tooling and choose 'Restart Instance'
If that does not remedy:
Studio -> Window -> Show view -> Other and search for 'Error Log'. There will contain any errors that may be causing the tooling to fail.
Related
I'm starting with the default Blazor app in Visual Studio 16.3.7 with authentication:
I go to the registration page, enter the email and password, and click the Register button and up comes the following error:
Next I go to Package Manager Console in Visual Studio, and run Update-Database, getting the following error:
CREATE FILE encountered operating system error 5(Access is denied.) while attempting to open or create the physical file 'C:\Users\Halaspnet-BlazorAuthentication-0X0X0X0X0X0-X0X0-X0X0-X0X0-0X0X0X0X0X0.mdf'.
CREATE DATABASE failed. Some file names listed could not be created. Check related errors.
The message points to the culprit, a backslash is missing from the file specification. It should be C:\Users\Hal\aspnet... , not C:\Users\Halaspnet...
So, how do I fix this? I can't find the string "CREATE DATABASE" anywhere in my solution.
Also, how do I get this to Microsoft as a bug report?
Problem solved!
I created the database that the 00000000000000_CreateIdentitySchema.cs wanted using Visual Studio's SQL Server Object Explorer. Then I ran Update-Database in the Package Manager Console, and it completed successfully.
The problem seems to be that I was using the Express edition of SQL Server.
This link got me to the fix for this problem:
Creating A Step-By-Step End-To-End Database Server-Side Blazor Application
I recently worked on a signature solution. Now i have this worry, it works fine from Visual studio and signs the document. Now the problem is, when i try the same having deployed to IIS , it just stops along the line, shows the confirmation page, but the worry is, it does not even load the base64 from the Database neither does it print the image on the MS word file as it does on Visual Studio. Anyone noticed something like this?
You are probably using Windows authentication when you are running the project in Visual Studio. You have to switch to SQL Authentication through a Database User specific for SQL Server. You do this by:
Creating a database user in SQL Server. See this documentation on Microsoft SQL docs.
Changing the connection string to the following format: ConnectionString="DataSource=.;Database=Sample;user id = test; password=test"
I am not able to access database through visual studio.
I am getting an error domain/machine$ login failed error on debugging in visual studio.I had set Windows Authentication as "Enable" in IIS.
I think it should use my credentials for login.Instead it is using my machine name. Please help .
I recently installed Visual Studio 2017 on my computer and am having issues with SSRS. I previously had 2016, which worked fine, but I had to reinstall the OS on my system and only found 2017 to download. When I try to preview a report on SSRS locally I get the error:
"There was no endpoint listening at net.pipe://localhost/PreviewProcessingService9512/ReportProcessing
that could accept the message. This is often caused by an incorrect address or SOAP action."
I've read other people suggesting to right click the .rdl and click run, but if I do that I get a reporting services error "The item cannot be found." I've also read that the Net.Pipe Listener Adapter needs to be restarted, but this isn't even installed on my machine and I don't see where to install it. I've experimented and found that if I create a new user in SQL Server and grant it administrator privileges then the report preview will work for a short time, maybe 15-60 minutes, before going back to the "endpoint" error. I've even tried uninstalling and reinstalling both SQL Server and Visual Studio, but I get the same problems.
I'm completely stuck here. Does anyone know how to fix this?
Apparently it was a permissions issue. Even though I was logged in as an administrator I need to run Visual Studio under the "run as administrator" mode. This doesn't make sense as I'm logged in as an admin, but at least it works.
I have IIS6 configured such that browsing to http://localhost:8082/Reports gets me the reporting services default home page, which is all as expected. However, when I try to publish a report via Microsoft Business Intelligence Visual Studio 2005 I get the following error: A connection could not be made to the report server http://localhost:8082/Reports The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
I have windows authentication turned on for report server. Does that have anything to do with not being able to publish projects?
Have you tried to publish you report to:
http://localhost:8082/ReportsServer
"/ReportsServer" is the webservice for Reporting Services. "/Reports" is the front end.
I cannot upvote, but guy is correct. Go into Project->Properties and change TargetServerURL to "http://localhost:8082/ReportsServer". This should alleviate your problems.
If you need to deploy to a named instance remember that your URL will be "http://servername/ReportServer$instancename".
Step 1 : Just log in to the corresponding server
step 2 : Do the settings in internet explorer[IE] browser, Tools => Internet Options => Select connections tab => Click on LAN settings => Just check the check box use a proxy server
Step 3 : Issue will get fixed