sawal lubis

Greenhorn
+ Follow
since Dec 28, 2007
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 sawal lubis

yes for LWUIT...!!
i think it is easy to using it, LWUIT..
15 years ago
hi..this thread is more than 3 years old now...
but i want to ask about this thread, yes, about TripleDes in bouncycastle or in mobile application when we want to use ECB chiper mode..

i want to use ECB chiper mode, becouse in server, my friend had been devlop encrypt and dencrypt with this mode.So i must using the same mode, ECB chiper mode..

how can i encrypt in TripleDEs and ECB chiper mode with bouncycastle library..?if it can't, any library can i use to solve my problem..?

is Sun (java.crypto) for mobile can to what i want...?
15 years ago
anyone have some sample about java webservice and the client with SSL cerficate...?
i want to build a client which that client will have SSL certificate with the service..
i had build a client web service use axis2 with client stub use WSDL2Java.
Can we use wsdl2java to make client stub which the client will send SOAP with certificate..?
16 years ago
my web service need SOAPAction in my SOAPMessage request from my client.
So i add this code in my client for adding the SOAPAction. Here is :
------------------
SOAPMessage soapMessage = null;
...
soapMessage = MessageFactory.newInstance().createMessage();
soapMessage.getMimeHeaders().setHeader("SOAPAction",
"http://tempuri.org/GetComInfo");
...
------------------
And then i run my client n i get the following problem, it doesn't show up in the request.
The HTTP header section contains only
----------------
SOAPAction: ""
----------------

Anyone can help me in my problem???
16 years ago