Tagged Questions
0
votes
0answers
7 views
Deploying war file on linux tomcat with spring
I've got .war file that works fine in windows tomcat 7.0.40. But on Linux I get following:
java.lang.NoClassDefFoundError: org/springframework/orm/jpa/EntityManagerFactoryUtils
and my spring app ...
0
votes
0answers
37 views
what is the linux cmd to get the SID [migrated]
If I want to get the SID of a particular user in windows. I would run the following cmd from a DOS windows:
cmd> wmic useraccount get name,sid
example output> kehelly ...
0
votes
1answer
24 views
Any suggestions for Automated deployments [closed]
I am working in a server application written in C++ and consist of multiple services that communicates via middle ware. This is developed in both Windows and Linux platforms.
Currently the ...
-4
votes
0answers
19 views
How to make .net application compatible for Mac OS [closed]
We have requirement to develop a .net application which has to run both on Windows,Mac and linux, Is it possible to create single .net application which wil be compatible for all these OS
0
votes
1answer
26 views
Dynamically load class in Linux Java
I'm doing as a school project a multi-platform Distributed Data Base System
I need to extract data from the Data Base in Java so i dynamically load my jdbc connector
Works Perfect in Windows
But ...
4
votes
6answers
128 views
A funny thing with sprintf
I'm so confused with sprintf that a funny problem with different platfrom.
Code :
int main ()
{
char sql[1024];
uint32_t app_id = 32;
uint64_t task_id = 64;
sprintf(sql, "%u, %u", ...
-1
votes
2answers
31 views
Specific multiplatform application. Can it be done good? [closed]
I'm looking for technology to develop one application for Windows, Linux and Android.
Is there a technology to do this task not writing more than one application and fulfilling constraints written ...
0
votes
1answer
64 views
XOR Crypt with Linux & Windows different
currently I'm programming a chat with XOR-Encryption. But today i encountered a problem. The encryption is under Windows different as in Linux. Under Linux the chat runs normally, but under Windows ...
0
votes
1answer
39 views
Copy to CUDA GPU Memory from a PCI Device
Is there is any way to write to CUDA Device memory from a PCI device. This PCI device is logging data a very fast rate. So attaining the maximum performance, i want to copy the data directly to GPU ...
1
vote
0answers
28 views
Mono + Linux + SQlite-> bad practice -> result unable to open database file
found and interesting problem :D
As many asking around why in Mono + Linux sometimes happens "unable to open database file" while opening SQLite database.
Well after few days we found a problem ...
0
votes
0answers
15 views
How to add “Read & execute” permission in Windows 7 for file on Samba drive [migrated]
From a C program I would like to add "Read & execute" permission in Windows 7 for a file on a Samba drive. The "icacls" program is used in example below, but a C library call could also be a ...
0
votes
2answers
42 views
how the .exe file interact with Windows kernel? same for Linux .bin file
Lets say I have a A.exe file and I'd like to run it on my windows machine X.
I'd like to know how this A.exe file interacts with the Windows kernel functions in X? Does A.exe file already contain all ...
0
votes
1answer
23 views
Alternative for file access in windows share files
We have an application (built on .NET), which will need to read some mass storage files.
So we deploy the application in the Web server, and put the data in the data server. Then the application in ...
0
votes
0answers
29 views
Porting a Fortran project from Windows Visual Studio to Linux
I have to compile a Fortran code with several files and dependencies that was developed in Windows using Visual Studio Intel Fortran to Linux. Is there any tool to convert the project to a Makefile, ...
1
vote
1answer
39 views
How to use static library generated by gnu C/C++ tools for arm with Microsoft C/C++ tools for arm
I have a static library (.a) generated by the GNU tools for ARM on Linux enviromnent and want to use this library in Windows environment (Visual Studio 2008) using the Microsoft tools for ARM ...