System.UnexpectedException: error ID: 1502628612-2761 (-677061709) - oracle-apex

When I try to invoke a Java service from an apex class with the wsdl2 apex class I get this error. Can anyone help me please?
System.UnexpectedException: Got an unexpected error in callout : null. Contact support with error ID: 1502628612-2761 (-677061709)

Any time you see the text to contact support and an error ID, it was actually a bug in Salefsorce's code and there's nothing you can really do to make it work as you are trying to use it.
The best you can do is contact their support team and log a ticket. A lot of times they can find a suitable workaround that'll work in the meantime.

Related

Error Processing Request - Oracle Application Express (APEX)

I have a Master-Detail Interactive Grid page in Oracle Application Express. Occasionally, users get the error message "Error Processing Request" when they attempt to save changes to the interactive grids. The users don't see any other detail on the error (including the code for the error). In those instances, there are no obvious problems with the data being entered (no mandatory fields missing, validations that would fail, etc). I am unable to reproduce these errors myself. I suspect that the errors may be caused by some sort of connectivity problem, but I have no way to verify this. Is anybody aware of the cause (or common causes) of this error?
Not an answer, but a tip to try to find more information on the "monitor activity".
1 - Go to "monitor activity"
2 - Click on "By View"
3 - Try to find in the report, filtering in the error column, some occurrence of this error.
4 - Check if is there a link in the "debug id" column; it will take you to more details about page execution; see if you find any error code or some other useful information ...

OpenCart 2.2 error undefined when viewing order info

When I click the view button next to an order (whether from the dashboard or orders page) I get an "error undefined" alert as the page is loading.
I also get the same error when I try and change the order status from the same page and it yields no results.
It also produces no errors in the error log.
I can however change the order status from the edit order page but this is very inconvenient.
If anyone knows a common solution or maybe pointers as to how to start diagnosing the issue please post them here. I've been hunting for answers most of the day and have had no luck with any solutions.
ty in advance.
if you are using SSL Tyr this at upload/admin/controller/sale/order.php
After
$data['store_name'] = $order_info['store_name'];
Remove
$data['store_url'] = $this->request->server['HTTPS'] ? preg_replace("/^http:\/\//", "https://", $order_info['store_url']) : $order_info['store_url'];
Add
$data['store_url'] = $this->request->server['HTTPS'] ? HTTPS_CATALOG : HTTP_CATALOG;
Unfortunately OpenCart 2.2.0.0 is known to be a bit buggy.
Best thing would be to start using 2.3.0.2 (avoid 2.3.0.0 and 2.3.0.1) if possible.

What is the proper way to append view/component to existing view

I have been trying to add a component within a view, I could do it but I am getting some warning message as well like "DEPRECATION: Using the defaultContainer is no longer supported". There is a related post here : emberjs append works but raises Assertion Failed error but not sure what I am doing wrong. Here is my jsbin link : http://jsbin.com/tuwanava/1/
Your help will be very much appreciated. Thanks.
Use
sticky.pushObject(App.ConfirmDeleteComponent.create());

Sharepoint 2013 Online - Newsfeed error

Adding a news feed from Mysite of Sharepoint 2013 Online gives this error
"
The following error is returned: The request is invalid. Internal type name: Microsoft.Office.Server.Microfeed.MicrofeedException. Internal error code: 14. Contact your system administrator for assistance in solving this problem.
This can not be sent, because there are some problems have occurred."
Adding a newsfeed from home page works though.
In my case i had jquery library refrence in the page. I created a new jquery object using noConflict() and used that instead of the default $. For some reasoms $ caused some issues and i was unable to post in the news feed.
var jQ = jQuery.noConflict();
jQ(document).ready(function(){
//demo code
});
Below is the error message that used to get.
The request is invalid. Internal type name : Microsoft.Office.Server.Microfeed.MicrofeedException . Internal error code : 14+sharepoint
Another reason was i have multiple references of jquery library in my page which was the reason.
Hope this might be useful to someone.
Internal error code 14 says "Invalid_Content_Null_Or_Empty". So it might be possible that the content you are updating is invalid. So you need to check that.

Facebook Group invite via Graph API

I about to built a little online game in Action Script 3. At the moment everything is working pretty fine and there is just one thing left to do that makes me going crazy. After every Level of the Game the user should notified about his success and in case that the success was good enough, the user should be invited to a facebook group. At the Moment i have got an Facebook App, Authentification and Authorisation are working and what still is to manage is the invitation itself.
Does anybody know if there is a way to make this happen, and if so, how could it be done? Thanks a lot for a reply!
greetings!
So, after having a nice day of »facebook api investigation« i would sum up the things i found out:
I'm quite sure that there is no way to make an group invitation via the graph api. The best result i could reach was an Error that told me: »requires the manage_groups permission«.
Consequently I added this permission to the login method and »tada«: the app didn't work anymore, just told me that there is an error with the app and I should try later again.
The code for getting this great message looked like this:
FB.api( "//members","POST", { name : "user name" }, function( response ){
//the great error appears here in the response
} );
I also was looking for something in the facebook.connect api but could not find something related to the problem i tried to solve.
If there is anybody who knows something better to try, i would very interested.
Greeting Philipp
Looks like "manage_groups" is not available to the public, (yet?). I'm following this and this discussion about it, as "manage_groups" seems to be required to invite a user to a group, but is not listed in the Facebook reference of extended permissions.