Saurabh Saha

Ranch Hand
+ Follow
since Dec 08, 2004
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 Saurabh Saha

Thanks William,
I'll try to figure out wscompile problem.

Thanks
Saurabh
17 years ago
Hi William,
thanks for reply.
I am new for web services, I am trying deploy a sample web services as shown in a web site link.
http://home.earthlink.net/~adamsw/webservices/JBossDocLitWS/JBoss_4.0.3/index.html

Actually I have to deploy my webservices on JBoss server which is currently runnig on systinet server.

For systinet server we deploy just a jar we don't need to write any xml file systinet take care about this.

For JBoss what I am trying to do, I'll make a war file that will contain
web.xml
config.xml
JAX-RPC mapping xml file
wsdl file
interface
implemented class.

what I have :
interface
implemented class
wsdl file

while studying I come to know that by using wstools or wscompile we can generate xml file giving wsdl file as input.

Please help me for generating these files.

Thanks & Regards,
Saurabh
17 years ago
Hi everybody,
I have wsdl file, I want to generate a JAX-RPC mapping file for this wsdl file using wscompile tool.
In command prompt I am try as:

wscompile -import C:\work\tutorial\wsdl -keep -d C:\work\tutorial\src\server -f ocumentliteral,wsi C:\work\tutorial\descriptors\config.xml
-mapping C:\work\tutorial\descriptors\jaxrpc-mapping.xml


I am getting error as:

error: only one configuration file can be specified: C:\work\tutorial\descriptor
s\config.xml
Usage: wscompile [options] configuration_file


Thanks & Regards,
Saurabh
17 years ago
Hi,
I have one webservices jars named as:
PowerHubQueryService.jar

I want to deploy this jar on JBoss.

I put this jar inside JBoss/server/default/deploy folder

when I restart JBoss server and try to check wsdl code for this web service as:

http://localhost:8080/PowerHubQueryService

it is not working.
I have successfully deployed this jar on Systinet server.
Please help me.

Thanks & Regards,
Saurabh
17 years ago
Hi,
I'm new in web services, I need to make a sample prototype web service using jdk1.6 on JBoss server.
I want to create simple web service that will show "Hello World"
for last three days I'm struggle to make a simple web service
Please help me, while searching on google I found some useful links as:

http://blogs.sun.com/dannycoward/date/20060227
http://ranganaths.wordpress.com/2006/10/04/web-services/

I tried but could not understand properly in the link

http://blogs.sun.com/dannycoward/date/20060227[/B]]http://blogs.sun.com/dannycoward/date/20060227

I found code as

javax.jws.WebService;

@WebService
public class NumberAdderUpperer {

public int addEmUp(int number1, int number2) {
return number1 + number2;
}

}

OK, so now you'd hit deploy in your IDE of course and stick it on the corporate app server, tell the world, and be done. But for the slightly more cautious amongst you, let's you and I do it with nothing more than the Mustang SDK, which has its own mini-Http server just for things like this:-

import javax.xml.ws.Endpoint;
...
Endpoint.publish("http://localhost:8080/ws-tmi/adderupperer", new NumberAdderUpperer ());

Oops ! And now your new number adding service is published at: "http://<hostname>:8080/ws-tmi/adderupperer".


I don't know how can I use this code in my sample web service.
Please help me.

Thanks & Regards,
Saurabh
17 years ago
Hi,
I think it is too late I waiting for last two months but didn't received my certificate.I think it might be happen that sun send my certificate at my address but that time nobody would be available so they sent it back.

please tell me how can I get my certificates. I have contacted prometic center they gave me a mail id as SunCert@Prometic.com and SunCert@Thomson.com. I mailed 10 times on these mail Ids but didn't received any response.

please help me I am really upset.
Do I need to give SCJP exam again

Thanks & Regards,
Saurabh
Hi,
I have cleared my certification on 29 July 2006 but didn't get my certificate, how can I get my certificate, one of my friend who has given his exam after me got his certificate.
Please help me who can I get it.
I am staying in Delhi (INDIA)

Thanks & Regards,
Saurabh
Hi,
Thanks for replies.
I want to open a popup window in which I show some message and there would be a close button to close this window, if user does not close this window I want to close this window after 10 seconds.I had tried an example code with window.open as show below:

windowHandle = window.open('childPage.jsp','mywindow','width=400,height=200');
setTimeout('windowHandle.close()',10000);

It is working fine it open a new window and close this window after 10 seconds, but I can not send any argument by using window.open so I tried showModalDialog() to open a new window, I'm specific for IE so showModalDialog() is working fine in this browser. In my new code I'm using:
showModalDialog('childPage.jsp',ArgumentPassed,'dialogHeight:9;dialogWidth:27;help ff;status:no;fullscreen=no;unadorned=yes');
I want to close this window after 10 seconds.

Thanks,
Saurabh Saha
Hi,
I want to open a new popup window that not depend on it's parent window. I'm using window.open inside javascript that display some message. when user click on the ok button of this window only then remaining code of my parent window are executing. I want to open a separate window to dispay a message so that if user not click on the ok button my code on the parent window still execute.
please help me!

Thanks,
Saurabh
Hi,
This is a custom tag that I want to create.

Thanks!
Saurabh
18 years ago
JSP
Hi,
how can we get number of child inside a parent tag in JSTL.

Thanks,
Saurabh
18 years ago
JSP
Hi,
Please tell me how can we get child attribute value in parent tage.
my tage is:
<mytag:list type="link" display="image">
<mytag:listItem name="saurabh" />
</mytag:list>

I don't want to use id attribute inside my parent tag.
I need to get child tag attribute value inside by parent handler class.
18 years ago
JSP
Hi,
which is the best approach for session tracking, somebody told me that hidden fields are the best approach. Is it true, please confirm me.

Thanks,
Saurabh
18 years ago
Thanks Ben,

Now it's clear to me.
18 years ago
JSP
Thanks Ben,
It means using RequestDispatcher is better than <jsp:forward >, please correct me, if I'm wrong.
18 years ago
JSP