Glimpse output not appearing on MVC 4 - asp.net-mvc-4

I have been through all the instructions and FAQ's regarding how to get glimpse to work.
I am however running MVC 4....
I have installed the Glimpse.MVC package as well as straight Glimpse.
It all configures just fine. I even added my own IP to the config.
On the client, under Chrome I can run Glimpse.AXD and it informs me that Glimpse is on.
In the associated "Config Settings: it shows:
•On = True
•Allowed IP's =
1.127.0.0.1
2.::1
3.192.168.97.180
•Allowed ContentType's =
1.text/html
2.application/json
•Blacklisted Plugins =
Under "Your Settings" it shows:
•IP = ::1
•glimpseState = On
I note that this last list shows an IPV6 address (::1) but I don't know if this is incorrect or how to change it if it is wrong.
So the first question is "what is the difference between "config settings" and "Your Settings"
Same result in IE 9.
Second and real question is: Why do I get no Glimpse output when everything seems to be configured properly?

Support for MVC4 has recently been announced for Glimpse, you can download it from NuGet.
If you use the version linked to (1.1), you should have no problems.

I had similar problem where glimpse wasn't appearing after installing through nuget.
In my case I forgot to enable glimpse for the first time after installing it.
To resolve this, goto http://applicationpath/Glimpse.axd and you will see a big button to enable glimpse which will just set cookie on the client. Refresh the screen and Glimpse appeared.

Have you tried clicking?
If you application is services only the GUI will not show.

Related

Idempiere: 'External POS Integration' option not showing up in Menu

I am trying to setup Unicenta POS on my Windows 10 64 bit machine.
My configuration:
Idempiere server v5.1 (http://127.0.0.1:8080/)
ActiveMQ v5.15.2
(http://127.0.0.1:8161/)
POS Integration plugin (Available
here)
I followed instructions given Here. ActiveMQ is running fine, Unicenta can also send request to ActiveMQ, I can see that in Queues. Idempiere server is also running fine.
I installed POS integration plugin through Felix Web Console. It shows up in the list and It is active. But, that plugin doesn't show up in Idempiere Menu option. Either that plugin has some problems or I am missing something.
I also performed Role Access Update on GardenWorld Client Admin but that didn't change anything. Menu option is still missing.
Please help.
The real issue was that 2Pack did not Pack in into the Database. I had install 2Pack manually and Pack In in my SystemAdmin. After that I logged out and logged in with SuperUser credentials and with GardenAdmin role. And then menu item appeared!
2Pack zip file location - Download
How to Pack In:

GeoDesic Buffers sample code does not work in my local IIS Server

I am new to use ArcGis Api for javascript, I am using JS Api 3.20.
I have been trying for 3 days but it does not work.
I have taken code from the following link
Geometry Engine - Geodesic buffers | ArcGIS API for JavaScript 3.20
I paste this in My Html file create in VS website for .Net , and setup a local server for my page using IIS server
I also downloaded proxy from GitHub resource-proxy/DotNet at master · Esri/resource-proxy · GitHub
setup it in same application in IIS
Downloaded excel file added in my application from https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/4.5_week.csv
but still I am getting the following error in console using developer mode when set Proxy URL to this
config.defaults.io.proxyUrl = "/192.168.8.188/Proxy/proxy.ashx";
GET http://192.168.8.188:1555/192.168.8.188/Proxy/proxy.ashx?http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/4.5_week.csv 404 (Not Found)
and when I set proxy url to this
config.defaults.io.proxyUrl = "/Proxy/";
then the following error occurs in console
GET http://192.168.8.188:1555/Proxy/?http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/4.5_week.csv 403 (Forbidden)
Could you please help me out. I would be thankful in advance.
I Resolved My Issue thanks.
Basically I didn't enable IIS 4.5 web features so I read readme file of proxy which resolved my issue.
Here is what I read from ReadMe file located in DotNet folder of Proxy
Troubleshooting: If you get an error message 404.3, it's possible that ASP.NET have not been set up. On Windows 8, go to "Turn Windows features on or off" -> "Internet Information Services" -> "World Wide Web Services" -> "Application Development Features" -> "ASP.NET 4.5".
First off, try setting the proxyUrl value to this:
config.defaults.io.proxyUrl = "/proxy/proxy.ashx";
That may resolve the issue.
EDIT (based on clarification that IIS is in fact running on port 1555):
You might want to confirm that you can access the proxy at all, by entering the proxy url directly in your browser (with no arguments), eg:
http://192.168.8.188:1555/Proxy/proxy.ashx
If this resolves correctly, you should get an error response in JSON format like this:
{error: {code: 400,message:"This proxy does not support empty
parameters."}}
That at least would confirm that the proxy is accessible and functioning properly on your system.

Unable to add connector update from Mulesoft exchange

I am using AnypointStudio 3.7 and trying to install object-store plugin from exchange. but when I click on install button I got an error displaying the message
"There was a problem loading the update site located at
http://repository.mulesoft.org/connectors/releases/3.5.0"
The same error also occurs in order to install other plugins/connector like box from same repository.
I have tried to add the plugin from Help->Install New software window but there also getting the same error.
error getting here is :
"Unable to read repository at http://repository.mulesoft.org/connectors/releases/3.5.0/content.xml."
However I am able to install the updates from other sites like Anypoint update, DevKit etc but not able to install updates from connector update site.
Please anyone help me to find the reason why Anypoint is behaving like this:
FYI , I am using proxy setting in my machine. Could it be the cause of failure?
Thanks in advance !!
Instead of adding from exchange, you can also try an option to add new software from Help -> Install New Software -> work with "Anypoint connector update site" -> specify "objectstore" in search. Select the appropriate ve
#Md. Sadique Ansari ... Please check http://repository.mulesoft.org/connectors/releases/3.5.0/content.xml this url from your browser first because this error mostly due to network firewall setting.
Are you assessing this in your organization network ??
I spotted the message about this in the error logs...googling lead me here...
I noticed, in my attempts to manually test the urtl in a browser that some paths got flipped to HTTPS...so I changed the url in preferences to use HTTPS...and now no errors in the log!
(No updates either but...)

setting "server name" when using kestrel with dotnet core

I am writing an app using asp.net mvc that right now runs against microsoft's kestrel server. It works fine, and I pass values to it at startup using a hosting.json file defined as follows;
{
"server": "Microsoft.AspNet.Server.Kestrel",
"server.urls": "http://localhost:5000;https://localhost:5001"
}
Is there any way to give the "server" a name, so that it isn't always reporting as localhost or undefined all the time?
Please replace localhost with *. This will give the below benefits:
If you give localhost, you can access the application only through http://localhost:5000 and not using IP [http://192.168.1.2:5000, an example]. By using *, you can access through the IP.
You can connect to the server from other PCs or Mobile Devices.
A few days back, I had the same requirements as yours and got the solution from: docs.asp.net. [The Comments section is hidden by default. Please click Show Comments and search for localhost.]
Tip 1: To view the application from a mobile device, please check: Viewing localhost website from mobile device.
Tip 2: My question and answer has been posted here: Compiling an ASP.NET 5 Web Application and generating DLL files.

sonatype nexus does not fully log in

I just upgraded from nexus 1.8.0.1 to 2.8.0-05 and now I cannot fully log in anymore. When I try to login nothing happens. There is still the "Log In" button on the top right and the menu on the left does not show anything (except what was there when not being logged in). So, the login has no effect.
I also tried to log in with invalid account info and it gives me the login error ("incorrect username, pass..."), so the login data is checked. I tried it with the admin and with a user login - no difference. The actual content is still there (all repos with artifacts) and are shown in a browser.
How can I log in?
Details:
I upgraded from nexus 1.8.0.1 to 2.7.2-03 (file: "nexus-2.7.2-bundle.tar") and then to 2.8.0-05 (file: "nexus-2.8.0-05-bundle.tar") on my CentOS 5.10 according to the upgrade notes and some instructions I found (except for the step with plexus as there was no such file). For nexus 2.7 I got an InvalidMagicMimeEntryException but according to NEXUS-6102 this was fixed in 2.8 and therefore I went on with upgrading to 2.8 and it does not happen anymore - I'm not sure, if this has caused the problem.
This is a bit of a shot in the dark... but I do know of an issue that could cause this. If you have an SSL enabled reverse proxy (like nginx or Apache+mod_proxy) in front of Nexus you need to make sure it is setting the X-Forwarded-Proto header. If you're using apache you can do this with:
RequestHeader set X-Forwarded-Proto "https"
If this isn't the problem I'm going to need some diagnostic information. If you can submit your nexus.log file to https://support.sonatype.com I'll take a look at it.