Questions tagged [envelope]
185 questions
1
vote
1 answer
SIM Card Authentication through envelope
I'm doing some tests on the SIM Cards. I wanted to know how the SIM could be authenticated with the ADM keys. I have found my answer in SIM Card Authentication
However, the solution ("f0 2a 00 01 08 31 32 33 34 35 36 37 38") does not work with the…

Amir Torfandi
- 31
- 4
1
vote
0 answers
Envelope of signal + how to generate nice smooth 2d lines animation
I'm trying to set the envelope of a signal with the function obspy.signal.filter.envelope. So far, my program is generating 2 lines: the red one is the raw signal. The blue one is the signal filtered with a bandpass filter (filter_sinc…

GeoffreyB
- 536
- 1
- 7
- 17
1
vote
0 answers
How to draw the area that cover given points on listplot in Mathematica
I have a lot of points' coordinates. I drew them on a 2d plot with ListPlot, and the points cover an area. Then I need to get the region that cover these points. Is there a way to do that? Thanks.

RLU
- 23
- 2
1
vote
0 answers
How to generate a pkcs7 signature envelope using pkcs11interop
To prevent the token password dialog, I usually use pkcs11interop to login to the usbkey and do data signature use capi or some COM+ control in C#.
But now I have a new usbkey. When I do signature the first time it still display the login dialog.…

Fred Zeng
- 33
- 8
1
vote
0 answers
Envelope detection in Matlab
I am trying to get an envelope for a spectrum I measured.
I have used the hilbert function in MATLAB which works for a dummy function I wrote,
but it does not give the correct result for my spectrum. (I got back the exact same curve).
I am thinking…

kmb
- 11
- 2
1
vote
0 answers
How to communicate BOTH error and informational messages in a REST API?
We have a legacy application that allows our developers to "add" messages via a ThreadLocal in Java.
The current SOAP endpoints will scoop these messages off the thread and then package them up in the response.
The endpoints also catch all…

Tyler Van Gorder
- 453
- 6
- 14
1
vote
1 answer
Envelope R Error
I'm trying to write a little script in R wich create a K Ripley's graph function in QGIS.
This is the code:
##Point pattern analysis=group
##Layer=vector
##Titulo=string
##Folder=folder
##showplots
library("maptools")
…

Luismi
- 115
- 4
1
vote
1 answer
Playready Envelope Format
I'm trying to encrypt arbitrary content using the PlayReady envelope format, in order to send it to a 3rd party app which supports that format.
I was not able to find the format specification online.
Does anybody know where I can find the spec, or…

AssafD
- 31
- 4
1
vote
1 answer
How can I crop the area containing the recipient's details in a mail through Image Processing in C#?
Given this image link as my input image:
How can I possibly crop the image using C# and Image Processing Techniques so I could only get the Rounded Rectangular area with the recipient's details, the fastest way possible?
As of now, I'm using…

JD Rose
- 13
- 2
1
vote
1 answer
Using String Envelope on Ksaop Android
I want to know how can i use a String envelope in my Soap call method. Here is my envelope :
String soapEnvelope = "\n"
+…

Mel
- 1,730
- 17
- 33
1
vote
1 answer
Fatal error: Uncaught SoapFault exception: [SOAP-ENV:Client] The request is either not well-formed or is not valid against the relevant schema
$client = new SoapClient("http://soap.m4u.com.au/?wsdl", array("trace" => 1));
$params = array(
"authentication" => array(
"userId" => "user",
"password" => "pass"
),
"requestBody" => array(
"messages" =>…

Harish Singh
- 3,359
- 5
- 24
- 39
1
vote
1 answer
How do I apply a template to a document using Docusign REST API
I'm currently working with the docusign rest API and I'm wondering if anyone has an example of how I can add documents and templates in one envelope. I have access to the template id's I need and I've used composite templates to create an envelope…

user3002092
- 495
- 2
- 11
- 29
1
vote
2 answers
eventNotification XML structure
I'm sending a document for signature following "Send an Envelope or Create a Draft Envelope" in the docusign rest api v2, page 93.
The document gets sent and signed, but I'm having a problem with the event notification feature.
I'm a little…

Trying...
- 127
- 9
1
vote
0 answers
How to use Hessian envelope with spring remote
is there anybody with experience with using hessian envelope (X509 and Compression) with the spring remote framework? I tried to subclass on the client and server site the HessianProxyFactory with no success:
/*
* (non-Javadoc)
*
* @see
*…

user2765926
- 11
- 2
1
vote
2 answers
Supercollider: automatic sustain in events with envelope
(
SynthDef(\testEvt,{
arg out, gate = 1;
var sint = Blip.ar(440) * Linen.kr(gate,doneAction:2,releaseTime:0.8);
Out.ar(out, Pan2.ar(sint, 0));
}).add();
Synth(\testEvt)
(instrument: \testEvt, freq:220, sustain: inf).play;
(instrument:…

MrBloom
- 91
- 6