Deploying MoonMail resoruces AwsMarketplaceNotificationsQueuePolicy - aws-cloudformation

I'm getting an invalid parameter error on AwsMarketplaceNotificationsQueuePolicy while creating the stack.
Has anyone run into a similar problem?

I've had the same problem. In my case, the reason was a missing variable - awsMarketplaceUserArn in the _meta/variables/s-variables-<stage>-<region>.json file.

Related

I’m getting below error while I try to execute a workflow on Powercenter

Transformation Parse Warning [<<P M Parse Warning>> <<Invalid constant sun-expression>> <<Expression Error>> [TO_DATE]:invalid string for converting to Date
… t:TO_DATE(s:s:”,s:s:’YYYYMMDD’)
……….
AND SATIS_TARIHI = >>>> TO_DATE($$RUN_DATE,’YYYYMMDD’)<<<<];
How can I solve this?
This is the first time I encounter this error. Normally, this is a daily routine for our job. The parameter is successfully added to the mapping and all the other things seem okay. I’d appreciate your help.
I tried to start the workflow and got this error.
You need to define a $$RUN_DATE in mapping. Currently its not defined in mapping or its null in parameter file.
You need to set a default value in mapping like 20221221 for today.
Or else you can set it up in a parameter file like this
[folder.workflow_name]
[folder.session_name]
$$RUN_DATE=20221221
Considering this is your daily routine and up till now it has been working fine, I assume this is not a new development and no recent changes have been made. Apparantly PowerCenter got an invalid value for the parameter.
Check you parameter file and how it gets generated.
Was the process of generating paramfile executed without issues?
Was there enough storage space?
Can you verify the paramfile contents?
Can you regenerate it?
Can you modify it and provide some value manually?
Feel free to get back with some updates for more help if your problem won't get resolved by checking the items on the list above.

Dropbox API v2 error message

When trying to get a delta result/cursor in the Java API:
client.files.listFolderBuilder(BASE_DIR).recursive(true).start();
I get the following error message:
com.dropbox.core.v2.DbxFiles$ListFolderException: Exception in list_folder: ListFolderError.{".tag":"path","path":{".tag":"other"}}
As far as I can tell it doesn't really say what is wrong. Any suggestions on what to do?
It seems that the reason was that my BASE_DIR ended with a slash. Removing the trailing slash of the path seems to have fixed the problem.

Timthumb.php: internal image not found

I'm getting the following error when using the Timthumb.php script from (http://www.binarymoon.co.uk/projects/timthumb/):
The following error(s) occured:
Could not find the internal image you specified.
Query String : src=http://www.xxxxxxxxx.com/templatename/wp-content/uploads/2010/09/mainimage.jpg
TimThumb version : 2.8.10
I'm not sure whats going on, the internal image does exist, when I try resizing an external image (http://farm3.static.flickr.com/2340/2089504883_863fb11b0a_z.jpg&h=200&w=120), the script works with no issues.
Any thoughts appreciated.
Regards,
Stephen
There is timthumb.php file with problem fixed by someone here:
http://code.google.com/p/timthumb/issues/detail?id=363
and here:
http://code.google.com/p/timthumb/issues/detail?id=315

Load Runner: InvokeMethod failure: Unable to deserialize non XmlElement node #text in path

I passing the following to LoadRunner:
<makeAtmPayment xmlns=\"http://[URL]" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">"
"<billerId>BILL01</billerId>"
"<userId>950002</userId>"
"<productCode>P1</productCode>"
"<productParameter><value>923</value></productParameter>"
"<paymentChannel>PAY01</paymentChannel>"
"<paymentAmount>2</paymentAmount>"
"<convenienceFee>1.50</convenienceFee>"
"<effectiveDate>2011-04-14</effectiveDate>"
"<accountId xsi:nil=\"true\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"/>"
"<atmCardNumber>564373636363636</atmCardNumber>"
"<editedConfirmationId xsi:nil=\"true\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"/>"
"</makeAtmPayment>"
and it's throwing me the following error:
InvokeMethod failure: Unable to deserialize non XmlElement node #text in path '/makeAtmPayment/productParameter/name/#text'.
Can anyone give me any pointers on what I am doing wrong ?
Thanks!!
Try to change
<productParameter><value>923</value></productParameter>
To
<productParameter><name>923</name></productParameter>
I don't understand the double quotes. There is one missing at the very beginning and there is one without a slash after xmlns=\"http://[URL]". Could it be the problem?
Is this an XML of your own creation or one picked up off of a loadrunner recording? If it is the latter consider recording twice to see what differences get picked up that you need to accommodate during your development. If it is the former, then consider validating your XML through the application's business rules before submitting it via LoadRunner, just to ensure that the XML is sound independent of your testing tool

Crystal Reports problem

I'm having problem in the following line:
rd.PrintOptions.PaperSize = PaperSize.PaperFanfoldStdGerman;
it throws an exception saying HRESULT: 0x8002000B (DISP_E_BADINDEX))
if I skip this line, the same error eccurs here:
rd.PrintOptions.ApplyPageMargins(config)
Did anyone have this problem before?
thanks!
My guess is that your line before is failing and as such gets reported on the next call.
Check the line before
rd.PrintOptions.PaperSize = PaperSize.PaperFanfoldStdGerman;
Fixed!
The problem was a field that did not exist in the DataSet.