Developing WPF application and using Redmine issue tracker to send reports to.
If Redmine issue tracker is hosted on server where there is not installed valid SSL certificate, NBug crashes because it can not send reports to server...
What if user does not have internet?
I do not want for NBug to crash application because it can not do what it wants to do.
Is there a setting for NBug that if can not send error reports, just allow application gracefully to continue running?
Enable release mode as per documentation:
NBug.Settings.ReleaseMode = true;
This catches all internal exceptions and logs them instead of throwing them.
Related
Used platforms:
Ionic mobile application with IBM MFP8.0 Server.
Configuration:
Mobile Application communicates to the server with public domain via HTTPS protocol. Request flow is passed from Internet to intranet & SSL offloading is done at RP and passed to LB. LB in-front of MFP server.
Problem Statement:
When the Application launched and closed continuously or when i refresh the application the below error occurs,
-- failure: {"status":-1,"responseText":"","responseHeaders":{},"errorMsg":"Read
error: ssl=0xc2befd00: I/O error during system call, Connection reset
by peer","errorCode":"UNEXPECTED_ERROR"}
The issue occurrence is intermittent
What I did:
There is SSL pinning code integrated with the Application
WL.Client.pinTrustedCertificatePublicKey('myCertificate.cer').then(onSuccess,
onFailure);
I tried commenting this piece of code as well never helped.
Any recommendation to fix this issue.
When trying to publish my site using a web deploy I am getting following error:
Error 1 Web deployment task failed. (The maximum number of connections for this site has been exceeded.
Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_EXCEEDED_MAX_SITE_CONNECTIONS.)
My website is hosted over a shared host. I already raised this issue to the hosting provider and asked them to restart "Web Management Services" in reply of which they said that they have "restarted publishing service on server". But this error is still not resolved.
What else should I do? Is there something I should check on my side or is it totally a server/hosting provider’s issue?
Error was caused by a 10054 socket error (basically host dropped connection). you publishing a lot of files and it appears that host had a connection time out.. watching publish and if you see the first socket error cancel the publish so that it doesn't hit the max site connections error. Then start publishing again and it picks right up where it left off.
You either have a ton of traffic on this site or the hoster is oversubscribing the box. An IIS restart may fix it temporarily.
I am using IBM MobileFirst 6.3, with Apple, Android, Blackberry and Windows Environments.
I have enabled Push Notifications for Apple, Android and Windows environment. I mistakenly uploaded application with sandbox certificate on my production server. On noticing the mistake, I removed the version with Sandbox certificate and uploaded the production certificate version properly and restarted the Websphere Liberty server.
After the restart, push notification is NOT WORKING for any platform.
Earlier I got APNS SSL connection error in my logs, but now I can not see any Push related error in my logs, I enabled trace on com.ibm.pushworks.server.notification.apns.*=all, and still got nothing back.
The only error I get is of could not piggyback ... , which I believe even IBM is suggesting to suppress. I have attached the finest level trace here
I have checked through Wireshark, and server receives request on HTTP GET method and replies with status 200. But what happens after that is a mystery.
P.S. The push notification worked once while the SandBox certificate version was enabled, but didn't work after the restart at all.
#eshaa when you use to change in certificate related settings in client side code you need to take new build i means new .wlapp files to be upload to the server then it will be effect whatever changes you done.
I'm trying to get TeamCity v7.1 to notify me about build events via Jabber. I have TeamCity on a server at work and I've setup an OpenFire XMPP server on my desktop machine. To complete the picture I have a Pidgin client running on my desktop listening for messages.
I've configured TeamCity to connect to the OpenFire server via an OpenFire user I called "teamcity" and when I "test connection" I am told that the connection is ok. When I'm testing the connection I'm sending to an OpenFire user I called "pidgin".
The problem is that Jabber messages sent from TeamCity never reach the "pidgin" user. TeamCity gives no indication of a problem and I see no sign of a problem in the TC notification log. Much the same way no notification from build events ever gets through to the "pidgin" user (fairly confident I've setup the Jabber notification rules correctly).
Any idea why this is or what I should try next?
I'm pretty sure I've resolved my problem by specifying the "full" XMPP username in TeamCity. In my example: pidgin#urisopenfire (where uriopenfire is the name of my OpenFire server instance).
When I used this full form when testing the connection and in the Jabber Notifier settings for my TC project, I did get notification from TeamCity coming into my Pidgin client.
Oddly enough, this full form is not needed when setting up the "teamcity" user in TeamCity's global Jabber Notification settings.
I implemented a web application that connects to a ProjectServer.svc web service. The application works on a project environment server, but returns an error in the production server. Unluckly, due to security settings the text and code of the exception taking place on the server is not shown, instead I get this message:
The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs
I modified the wcf settings in the web config of project server to make the web service return the error...but nothing happened, because probably Project server overrides the web config wcf settings.
How can I get the error message, so I can understand what is wrong with the server configuration?
Sometimes ULS log may help - when Project server process accepted your call and error somewhere inside of the process.
I touched the configs only once to create Proxy assembly and that time it worked... maybe the same approach will help you to find proper config. Here is a link http://msdn.microsoft.com/en-us/library/office/ff621594(v=office.14).aspx
Don't forget iisreset after you change the config