Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
1k views

How to secure Java webservices with login and session handling

I'd like to secure my (Java metro) webservice with a login. Here's how I'm planning to do that: Steps required when calling a webservice method are: call login(user,pwd), receive a session token ...
2
votes
1answer
1k views

How to cache a WSDL with Java-WS

I've created an app that interacts with a SOAP service using java WS. I generate classes and manage the WSDL using the built in netbeans functions. Every time I run the application, it has to ...
1
vote
1answer
20 views

How can I get JAXB2 to emit CamelCase bindings?

I'm generating Java classes from a WSDL using the jaxws-maven-plugin's wsimport goal. Out of the box, this generates hideous classes and methods from the XML schema; e.g., a class called MYOBJECT from ...
1
vote
0answers
105 views

Can JNLP API load resources during runtime?

is there a way to load JAR resources into an app during runtime? JNLP API ( http://download.oracle.com/javase/6/docs/jre/api/javaws/jnlp/ ) is great because i have custom management of resources, but ...
1
vote
1answer
221 views

Webstart application is very slow when server is down

What I have: Tomcat server which contains jnlp file with all required libraries and which could be turned off for some reason Very fat swing application which requires all securities permissions ...
1
vote
2answers
629 views

.NET client calling HTTPS Java web service

I have a HTTPS Java Web Service, I am trying to access the web service with .NET[.NET 2.0 style client / WCF client]. I am getting back this error from WS. "HTTP Status 401 - This request requires ...
1
vote
2answers
175 views

what is a singleton class? Can it help me running single instance of a class for two related services?

This might sound complex but i will ask anyway: I am running a service A which uses class X. I want to start another service B which uses classes A besides new classes. Service A is already ...
1
vote
1answer
750 views

Delphi 2007 isn't generating the XML I want to send to my Java-WS web service

I have a Java web service to which I've linked from a Delphi 2007 app using the WSDL Importer. Setting it up has been a rocky road but I'm almost there! I now have the situation where my arrays ...
0
votes
1answer
900 views

Java Webservice Client UsernameToken equivalent to PHP

I have a webservice build in PHP that uses UsernameToken as authentification mechanism. I have PHP client side code that can access this web service. Now I need to do this in Java. Maybe you can help ...
0
votes
1answer
31 views

Java command that lists JAR files and associated paths (similar to Ruby's gem list -d)

The Java TM API for XML Web Services mentions using the Java Endorsed Standards Override Mechanism to substitute 2 JAR files (jaxws-api.jar and jaxb-api.jar) for the ones that are included in standard ...
0
votes
2answers
177 views

what is the Difference between the “/com/sun/xml/ws/” package in jaxws-rt.jar and “/com/sun/xml/internal/ws/” package inside rt.jar

i do not understand the use of an "internal" implementation of jax-ws packages inside rt.jar when they are already available through jaxws-rt.jar. Why would Sun/Oracle take such a decision to ...
0
votes
1answer
2k views

How can I use Java WebService to push data to client

I have some CMS. and have a requirement that these CMS can send article together whenever needed. I think I can use WebService to solve my problem by do following: 1/ CMS-01 invoke WS by sending ...
0
votes
5answers
125 views

Can you view the XML generated by .Net when using a JavaWS service?

Does anyone know how I can view the XML being sent to a Java Web Service from a C# based ASP.NET page? I've created a disco object web ref in .Net from my Java WSDL but when I use the likes of ...