Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c x 9
java x 6
c++ x 1
Member Avatar for itsmeisuru

Hi, Im new to web services. I have written an EJB(3) project in Eclipse Id(Using jpa to retrieve data from database). Now I want to make this Ejb project to web service. I do not have clear idea about how to do this. The eclipse generates webService and webServiceClient easily, …

Member Avatar for jwenting
0
94
Member Avatar for itsmeisuru

Hi, I followed the following [URL="http://www.coderanch.com/t/424312/JBoss/Configuring-Eclipse-JBoss-MySQL-EJB"]http://www.coderanch.com/t/424312/JBoss/Configuring-Eclipse-JBoss-MySQL-EJB[/URL] to configure JBOSS and MSSQL Server in Eclipse. But I'm getting an error and I tried many ways but I'm still there. (In this guide "5. Copy the driver libraries to jboss-5.0.0.Beta4\server\default\lib" means copying jdbc.jar ??? right?) When I run an EJB project I'm …

0
79
Member Avatar for itsmeisuru

Hi The error I stated in the title appears when I try to run the following code in Eclipse. I have created the Table which is named as "Emp" in Microsoft SQL Server. I can't find the error I have done here, and I googled but nothing helped me.. Plz …

Member Avatar for masijade
0
2K
Member Avatar for itsmeisuru

Hi, I have a value in a string variable in java, and I want that string to get print using a printer. Please help me..

Member Avatar for jon.kiparsky
0
78
Member Avatar for itsmeisuru

what I want to do is I have two txt files named as number.txt and numAndName.txt In number file it contains only one character and it is a number. IN numAndName file it contains both number and Names as follows 5 name5 4 name4 3 name3 2 name2 1 name1 …

Member Avatar for N1GHTS
0
104
Member Avatar for itsmeisuru

[code] #include<stdio.h> #include<conio.h> #include<stdlib.h> int main(){ int i = 2; char a[1]; itoa(i, a, 10); char *command = ("md %s", a); system(command); char *cop = ("copy %s.jpg \%s\%s.jpg" , a, a, a); // want to copy the jpg file in to system(cop); //new made folder the path as (2/2.jpg) getch(); …

Member Avatar for itsmeisuru
0
101
Member Avatar for itsmeisuru

Hi [code] #include "cv.h" #include "cxcore.h" #include "cxtypes.h" #include "highgui.h" int main() { CvCapture* capture = cvCreateFileCapture("RosewellBst.mp4"); cvNamedWindow( "Example2", 1 ); cvMoveWindow( "Example2", 100, 100); IplImage* frame; while(1) { frame = cvQueryFrame( capture ); if( !frame ) break; [COLOR="Red"]cvShowImage( “Example2”, frame );[/COLOR] char c = cvWaitKey(33); if( c == 27 …

0
59
Member Avatar for itsmeisuru

[code] if (a>b || a==2){ System.out.println("yes") } [/code] [quotes] in if command it gives an error, sayin operator || can not be applied to a boolean. I want to know how to use the and &&, or || operations in java.. [\quates]

Member Avatar for staneja
0
133