Skip navigation.
Home

Feed aggregator

Re: Call for Java developers 6mnths+ exp as trainee

Group Discussions - 3 hours 46 min ago
Hi All,
This is referring to my earlier mail about Java trainee search. My apologies
for mentioning wrong company name. Please disregard that mail which
mentioned Infospectrum.
1. I had wrongly mentioned the name of Infospectrum.
2. At present there is no vacancy for trainee java developers in
Infospectrum.

Re: [jugnagpur] Cannot find constructor "new GeneralDataCoding(Alphabet.ALPHA_DEFAULT, MessageClass.CLASS1,false)"

Group Discussions - 3 hours 46 min ago
Charu,
I downloaded the latest ALL version of the JSMPP project from
[link]
I ran this project in Eclipse and it worked
** The key is open the main folder jsmpp-2.1.0 in Eclipse with use existing
sources option in the New Java project wizard
with regards

Cannot find constructor "new GeneralDataCoding(Alphabet.ALPHA_DEFAULT, MessageClass.CLASS1,false)"

Group Discussions - 3 hours 46 min ago
Hi,
I have to use jsmpp to send a message.
here is the link of homne page
[link]
SO I'm trying to test the sample exqamples provided on the home page of
jsmpp.
Now when I try to compile ist example I get following message.
There is no ample documentation available for me to understand the error or

how to print/check encrypted data in servlet or in servlet header

Group Discussions - 3 hours 46 min ago
hello everyone,
i have one project in which user login data is getting encrypted first
then it send to servlet in header. In servlet it is using bean/
interface to decrypte data from header.
I want to known how can i view or display that encrypted data or
decrypted data.
and how can i add some additional data to header when i click submit

Re: [jugnagpur] Help in sending SMS using jsp

Group Discussions - 3 hours 46 min ago
Many companies provide the SMS gateway for sending the SMSs.
These gateways provides simple web services access to send and even receive
the smss.
Few gateways also provide the facilities that you have listed like reports,
etc.
Now you will have to contact such service providers for more information

Re: [jugnagpur] Help in sending SMS using jsp

Group Discussions - 3 hours 46 min ago
First of all to send SMS you need to buy SMS packs from service providers.
They will provide options to send SMS using their server.
Options are: 1. Direct as url 2. SMPP connection 3. Excel Plugins 4. APIs
in almost all languages
Refer: [link]
[link]
or just search Bulk SMS providers

Help in sending SMS using jsp

Group Discussions - 3 hours 46 min ago
HI,
I want to create a website which will allow the users to send sms from it in
jsp/Servlet.
Requirements to be fulfilled,
1) Sending single sms at a time,
2) Broadcasting up to 100 sms at a time.
3) Controlling the throughput .
4) Distributing the throughput within concurrent the clients.
Regards,

Re: [jugnagpur] Prolem with tomcat

Group Discussions - 3 hours 46 min ago
Hi,
I think you must be missing JAR file "el-api.jar" In Tomcat lib folder OR in
your classpath.
- Sandeep Bhiwgade

Prolem with tomcat

Group Discussions - 3 hours 46 min ago
HI,
Actually I was getting this most popular error screen in jsp developers who
work with tomcat.
my jsp page was .
<%
out.println("This is test.");
%>
I tried reinstalling tomcat using widows installer as well as zip
installation.
If I type localhost:8080 tomcats admin console is successfully opening.

problem in spring framework

Group Discussions - 3 hours 46 min ago
hello everyone,
I am new to spring.
I want to known that how to transfer control from doSubmit.. method of
controller in spring to another resources

Re: [jugnagpur] Exception while creating jasper report

Group Discussions - 3 hours 46 min ago
Have a look at the following link. This may help you..

[link]

Regards,
Parag

--
------------------------------ ------------------------------ ------------------------------ ---------------------
Java User Group Nagpur
Home Page: [link]

[jugnagpur] Exception while creating jasper report

Group Discussions - 3 hours 46 min ago
Following is the servlet i am using to genrate jasper report but
getting exception

package report;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.DriverManager;

[jugnagpur]

Group Discussions - 3 hours 46 min ago
Hi,

I am using Apache Commons Net 2.1 API for accessing FTP files. But now I have new requirement for SFTP(Secure FTP). I have checked in API, there is class
org.apache.commons.net.ftp.FTP SClient

But I did not found sample running programes for it. I also tried some examples example but its not working.

[jugnagpur] Re: how to access limited number of data from database in ms-access

Group Discussions - 3 hours 46 min ago
Hello Sagar,
As you are MySQL user you are using "Limit" keyword.
For Microsoft products we have "TOP" keyword to limit the number of
rows in select statement.
I hope this will solve your problem, Let me know if you still have the
problem.

Regards,
--
Chetan Gole
chetangole.com
+91 996039297

Functional Programming Concepts in JDK 7

Javalobby - Sat, 07/31/2010 - 17:30
There's much excitement about JDK 7 and in particular Lambdas! I've waded through the bloat to help you get an understanding of it. If you search for JDK 7 in your favourite search engine the chances are you'll hit the controversies surrounding lambadas in Java fairly early on in your hunt. It's a contentious subject, which means it's getting a lot of attention from a lot of clever people,...

Daily Dose - Clojure 1.2 Moves Quickly Towards GA

Javalobby - Sat, 07/31/2010 - 09:30
Project committer Stuart Halloway just announced the launch of the first release candidate for Clojure 1.2.  Although there have been few changes between this release and the last, the news is significant because the first beta of Clojure 1.2 went live only two weeks ago.  They only had one beta release and they may only have one release candidate as well.  Expect the GA very soon.JBoss...

File Locking and File Sharing in the Cloud

TheServerSide - Fri, 07/30/2010 - 21:09
Block storage is a key foundation to most file systems. File sharing and file locking are important processes for sharing cloud data resources, and for eliminating race conditions. Efficient implementation can make a significant mark on your system's and applications' performance levels. In this article, we use an open source example -- cloud platform Eucalyptus and its storage component Walrus -- to demonstrate how to modify block storage to improve the file-sharing and -locking mechanisms. Learn how to install Eucalyptus so you can deliver a top-notch Infrastructure-as-a-Service platform.



Open source - Filesharing - Cloud computing - File system - Infrastructure as a service

The key to being a good programmer

Javalobby - Fri, 07/30/2010 - 17:11
One blog topic that never seems to get old is what makes a good programmer, or how to be a good programmer, or what you can do to be a better programmer. The same activities are often listed as being the path to successful codesmithing, when really it is just the method by which the true magic happens. With programming, like many things, it isn’t what you do, it’s what you learn from it...

Why Scala’s “Option” and Haskell’s “Maybe” Types Won’t Save You From Null

Javalobby - Fri, 07/30/2010 - 12:47
The more I think about it, the less I understand the point in Scala’s Option class (which originated in Haskell under the name Maybe). If you read the voluminous material that describes the concepts behind the Option class, there are two main benefits: It saves you from NullPointerException It allows you to tell whether null means “no object” or “an object whose value is null” I claim...
Syndicate content