Questions tagged [ssp]
48 questions
16
votes
3 answers
MOSS SSP Issue - Failed database logons from deleted SSP
We've been having some issues with a SharePoint instance in a test
environment. Thankfully this is not production ;) The problems started
when the disk with the SQL Server databases and search index ran out
of space. Following this, the search…

Brian Lyttle
- 14,558
- 15
- 68
- 104
4
votes
1 answer
istream's tellg/seekg cannot be protected from stack smashing (g++)?
For a program that I'm writing, it is useful for me to calculate file sizes, which I calculate by using iostream's tellg and seekg functions, but this leads to a warning by -Wstack-protector. The following code reproduces the "problem":
#include…

Zorawar
- 6,505
- 2
- 23
- 41
3
votes
1 answer
Is scalate template size limited to 64k?
Trying to include bunch of HTML is a SSP template, I've got the following exception:
Caused by: java.lang.IllegalArgumentException: null
at scala.tools.asm.ByteVector.putUTF8(ByteVector.java:213)
at…

Alexey Kalmykov
- 1,958
- 2
- 15
- 27
3
votes
1 answer
DMA write to SD card (SSP) doesn't write bytes
I'm currently working on replacing a blocking busy-wait implementation of an SD card driver over SSP with a non-blocking DMA implementation. However, there are no bytes actually written, even though everything seems to go according to plan (no error…

Tiddo
- 6,331
- 6
- 52
- 85
3
votes
2 answers
How to interpret SBT error messages
Doing some work in scalatra, and when running ./sbt, I'm seeing this error message:
[trace] Stack trace suppressed: run last compile:sources for the full output.
[error] (compile:sources) org.fusesource.scalate.InvalidSyntaxException: `val' expected…

Alex Spangher
- 977
- 2
- 13
- 22
2
votes
1 answer
Can't set SSP mode in Bluez through DBus
I need to change the Secure Simple Pairing mode programmatically, but I can't figure out how to set SSP mode on or off in Bluez using a DBus command.
Using btmgmt utility, I just do:
btmgmt ssp off
btmgmt ssp on
Ok, but what I need is rather DBus…

Bludzee
- 2,733
- 5
- 38
- 46
2
votes
1 answer
Delete Security Support Package
so im working on a powershell script to manage security Support Providers for specialized controls. currently i have the script working to ADD a SSP, but when i try and change the script to DELETE a ssp, it breaks.
Here is the code:
$DynAssembly…

m2abrams15
- 31
- 5
2
votes
1 answer
Enabling Powershell Group Policy Exception via Command Line
I am trying to find a way to change Local Group Policy via command line. The change is to set Local Policy to enable "Allow Delegating Fresh Credentials" and set it to "wsman/*.domain.net" in Computer-> Admin Template -> System -> Cred.
The…

mr.buttons
- 685
- 1
- 9
- 18
1
vote
1 answer
Scalatra controller calling JSP page
Is there any framework which users Scalatra as controller and use JSP pages for presentation. Iam trying to find one such framework.

prassee
- 3,651
- 6
- 30
- 49
1
vote
0 answers
Bluetooth Pairing with SSP Passkey Entry with chosen Passkey does not work
For a project i need to connect two Raspberry Pis with Bluetooth SSP Passkey entry. For the sake of the project, the passkey should be chosen and entered in both devices. This should be handled by a script which changes the passkey periodically in a…

Scarecrow
- 11
- 1
1
vote
1 answer
Change empty strings to Null or "None" ssp class with PHP and Mysql
How to convert empty string to Null or "Nothing" when the column appears in the datatable.
For example, in the brand column, there are many empty strings. So, i wanted to change it to null or "None".
$columns = array(
array( 'db' => 'id', 'dt'…

Flucky
- 15
- 3
1
vote
1 answer
How to use UNION ALL in ssp simple class?
I want to use below SQL query in the ssp2 simple class
select * from table1 UNION ALL select * from table2
I tried below query ssp::simple class but it does not work.
$table ='';
$joinQuery = ' from table1 UNION ALL table2';
return…

Sakthivel M
- 13
- 6
1
vote
1 answer
Datatables, wrong results after pagination
When i have sorted my table, i'm getting some records double in the second page and some other records are not shown.
it's the first time i'm using datatables, it's a table to get records back of all shops created on the website. While i'm going to…

K. Takens
- 33
- 8
1
vote
0 answers
Scalate SSP fails on certain if blocks
Consider the following dummy SSP file:
#{
val testMap1 = Map("a" -> true, "b" -> true, "c" -> true)
val testMap2 = Map("d" -> false, "e" -> false, "f" -> true)
val something = true
val value =…

Gx1sptDTDa
- 1,558
- 2
- 11
- 23
1
vote
2 answers
Scalatra Render Page Cannot Determine Template Processor
I've tried to render a page index.ssp in my scalatra controller, but it shows me an error:
ssp("index")
//Error : Template file extension missing. Cannot determine which template processor to use.
My Servlet extends ScalatraServlet with…

Dineshkumar
- 4,165
- 5
- 29
- 43