moneer mohammed

Ranch Hand
+ Follow
since Feb 18, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by moneer mohammed

Hi guys
i am going to create mobile application using LWUIT (of course ) so what the application about
for the first time user can get this app to his mobile by Bluetooth or Wi-Fi then after he install this app he can interact with this app to get some files(audio ,videos ..) from server(by by Bluetooth, Wi-Fi …) and the coverage area for this network has to be as minimum 10 meters
so my questions is
1 this can be or no and if yes then what best way for network(Bluetooth , Wi-Fi …..)
2 is there any open source app like this app.

thanks

13 years ago
sorry i forgot to say i am not getting any exception
Hi
i am try to write some data to the servlet but no data going and when i put same address in browser it working but from my programme the servlet not receiving any request

import java.io.*;
import java.net.*;


public class test {
public static void main(String[] args) {

URL url;
try {
url = new URL("http://localhost:8080/xxxx/ReconciliationReport");

URLConnection connection = url.openConnection();
connection.setDoOutput(true);

connection.connect();





OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());
writer.write("testToSend");
writer.flush();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
}
Hi
after i create keystore and CSR using keytool i went to openssl to create certificate then using keytool i tried to import this certificate the our keystore but i got this exception
keytool error: java.lang.Exception: Public keys in reply and keystore don't match
Thanks

13 years ago
hi guys
Please I have some problem about the step I need to flow for understanding SSL how it's work
What I know have to give the CA my CSR but for creating CSR I have to use my private key
Then I will import this certificate I got from CA to my keyStore, now the peivate key that will be use for encryption is the private key I have in my keystore or CA will give me private key in the certificate I got from them and what about public key from where I will get it


Thanks in advance
13 years ago
Hi guys
I need some library for connecting to the server by SMS ,HTTP.WS
I know that there is MIDP profile has some API but I need library more abstraction and easy
thank you
14 years ago
HI guys I have to create one project which is for hospital
Where there will be form (at his mobile) showing the tasks which should be done by cleaner man so when he finish the task he must inform the manager by clicking the check box column
And the interaction between server and the client is by SMS,Web Service and HTTP
So please give me your suggest about
Witch IDE I have to use
Witch library
Witch books
Whatever suggest you have


15 years ago
Hi all,

This is Muneer ,I am a java programmer but new in j2me .
Currently we are working in a project which is mainly concerned
with sending selected sms to others.
But we lack the knowledge in j2me , Our project is described as a GUI to enable the user
to select a specific category from a list of categories provided by us for example sport category, then selecting a sms from the
selected category after that sending it to desired number.

So please help us in finding the folowing :
***Best IDE to use.
***Suitable API or Library for using the Networking or any thing related (Exampls are preferable) .
***How about storing the sms in the categories,If there is an API or any thing related (presistence).
***Recommed books and websites relevent to our project.
Note :
we are developing this project just for nokia phones and in arabic language
so please help us
15 years ago
Hi guys
Please I am beginner in java and I have to write project(services Office) which provide general services to customers
In project I have
7 tables (my sql)
10 forms
6 reports (easy reports)
so what the best and short way as I have sample reports to writes the reports
Thank in advance
16 years ago
hi guys
i got on project but as i am jouner java programmer and it first project i can not imaging the border of this
project this project is website work as general reference(for newspaper,chating sites,channels,and so on),
and i am planing to do it by java of course .
so my friends i want to know
1 how to manage the content of the site by which CMS
2 which IDE i have to use
3 how much time it will take(i am only)
4 if you can give some site for same purpose(general reference)
5 please your suggest
thank you in advance
16 years ago
hi guys
i got on project but as i am jouner java programmer and it first project i can not imaging the border of this
project this project is website work as general reference(for newspaper,chating sites,channels,and so on),
and i am planing to do it by java of course .
so my friends i want to know
1 how to manage the content of the site by which CMS
2 which IDE i have to use
3 how much time it will take(i am only)
4 if you can give some site for same purpose(general reference)
5 please your suggest
thank you in advance
16 years ago
hi guys
I am working in small company where they want me to develop website for their company and it has (site) almost static pages but the most important and difficult is admin panel
where administrator can change contain of the any page and the names appear for links (navigator )may add some now things(image ,links,) .
I came to know I can do it by using WCMS software (free open source) but my company saying these software provide so many facilities witch we are not in need to them(facilities) , and really I don�t have any idea about WCMS and also not logical to start from scratch so guys can I get any one of these solutions ?
1- Small WCMS software which I can customize it to satisfy our requirements.
2-can i get java bean library or framework to simplify the work.
3- Your suggests
Thanks in advance
17 years ago
thank you for your advices
17 years ago
JSP
I am doing some project where i have t display some data to the client in tabular format
And user can select whatever row he wants to update by clicking on userId
And data for that row should come in new page in editable format (like using text filed)
So how to do it by using client side technology(javascript�..)
As it is not logical go back to the server to get the data
Thanks in advance
I am doing some project where i have t display some data to the client in tabular format
And user can select whatever rows he want to delete and he can chose more than one row
But the problem in JSP where I am using JSTL for deleting set of rows
This the code

<c:forEach var="checkboxValue" items="${paramValues.checkboxName}">
<sql:update var="user" dataSource="jdbc/poolDB">
DELETE FROM userInfo
WHERE userId='${ checkboxValue }'
</sql:update>
</c:forEach>

And it is working will.
Now the problem is for deleting one row by using this code it kill the performance,
As for every row I have to get connection and statement after that close them
And agene for new row do same thing agene so to delete set of rows by using one Connection object in this example
Note
I had change the name of the variables for readable purpose
Thanks in advance
17 years ago
JSP