Questions tagged [sam]

Simple Asynchronous Messaging is a PHP framework that provides a very simple API that can be used to access a number of messaging middleware systems from PHP.

This extension provides access to the functionality of messaging and queueing systems, such as the IBM WebSphere MQSeries family of products, from PHP scripts. The interface is designed to make it extremely simple to do the more commonly required tasks such as deliver simple text messages to queues while still allowing skilled users to do more complex messaging operations. For many users the complexities of setting up numerous options can be simply ignored.

The SAM extension is a framework that provides a very simple API that can be used to access a number of messaging middleware systems. Currently the package includes built-in support for the MQTT (MQ Telemetry Transport) messaging protocol and support for the IBM Messaging and Queuing middleware products. SAM is designed to be readily extended to support other messaging systems and extension modules may be written in C or PHP.


Do not use this tag for the sequencing SAM file format.

194 questions
0
votes
1 answer

ClassNotFoundException when uploading java project to AWS Lambda

I have a Java Serverless Application. When I am doing the sam build, package and deploy.The application is getting deployed in the s3 bucket but it is saying that the handler class is not found. { "errorMessage": "Class not found:…
Sunny
  • 858
  • 3
  • 17
  • 39
0
votes
0 answers

Lambda-API gateway : "message": "Internal server error"

I am using AWS CodeStar (Lambda + API Gateway) to build my serverless API. My lambda function works well in the Lambda console but strangely throws this error when I run the code on AWS CodeStar: "message": "Internal server error" Kindly help me…
prash
  • 13
  • 1
  • 4
0
votes
1 answer

API Gateway SAM specify HTTP GET: 500 Internal Server Error

I always get a 500 Internal Server Error when I try to call my GET endpoint that I defined using SAM. I am able to define a POST request that works. For the GET request it's showing me: Lambda invocation failed with status: 403 Execution failed due…
xtra
  • 1,957
  • 4
  • 22
  • 40
0
votes
1 answer

How to resolve permission errors while installing AWS SAM local on Ubuntu 16.04 using Jenkins user?

I am trying to install AWS SAM local on Ubuntu 16.04 I am getting the following error while trying to install using jenkins user npm install -g aws-sam-local Note : AWS SAM local is successfully installed on root user.But getting error while trying…
Jithin Justice
  • 231
  • 1
  • 5
  • 15
0
votes
1 answer

GPIO Pin Control SAMC21

i'm having trouble trying to use my new SAMC21 Xplained Pro from Atmel. I'm currently trying to understand the basics of Cortex M0+, but i stuck. I'm using ASF in Atmel Studio. I started from basic, learning how to toggle the LED with the switch.…
0
votes
2 answers

USB issue SAM3S-EK -> Custom card

I am developing my project with SAM3S-EK demo board. I used USB CDC and MSC Driver with example code and ASF and everything work fine. Now I want to put the code into my custom card (with a SAM3S1B). But that is my problem. I have assigned the pin…
0
votes
0 answers

Windows registry and installed software

I am trying to make a script, that will give me a report of the software installed on a Windows machine. Right now i am pulling the information from the registry uninstall folder, but there is a problem. I get two much info I am not interested in…
0
votes
4 answers

.ELF too big when adding two C++ files to ARM MCU project

I'm trying to write some C++ code for a Atmel SAM3S1 microcontroller. I'm Using the ASF Library with the FreeRTOS library included. I wrote a simple and small C++ wrapper (3 .cpp files) so I can easily inherit it in my device classes. The Atmel SAM…
0
votes
2 answers

Where to find LM-Hashes

Are there any other places besides the SAM file? Are LM-Hashes used in any protocols, so they can be found by scanning the network traffic?
SteffenG
  • 274
  • 2
  • 12
-1
votes
0 answers

GPU OOM issue segment anything model google colab

I am relatively new to using AI models so forgive me if I sound basic (lol). I have been successfully using the segment anything model weights to find masks and crop a batch of ~ 1800 images, ~ 900 of which were successfully cropped but now I keep…
-1
votes
1 answer

How to retrieve event.json file to unit test lambda

I am able to run AWS lambda using postman. I want to use the event to run unit test along it. I am not sure how I can generate the event.json file. I tried logging event that I receive in my handleRequest method on cloudwatch logs but it does not…
Tanu
  • 1,286
  • 4
  • 16
  • 35
-1
votes
1 answer

Unlink non-logged on account from Microsoft in Windows 10

One of my customers got hacked big time: Hotmail (where it probably started), Facebook, Instagram, Snapchat. She couldn't log on to her computer anymore, since her password on her Microsoft account has been changed by the hacker. I enabled the…
Kairos
  • 147
  • 1
  • 12
-2
votes
3 answers

How does one call a function from it's memory address in AVR C?

I am writing a function: void callFunctionAt(uint32_t address){ //There is a void at address, how do I run it? } This is in Atmel Studio's C++. If previous questions are to be believed, the simple answer is to write the line "address();". This…
tuskiomi
  • 190
  • 1
  • 15
1 2 3
12
13