I am using java 5. I have a prolem with access to web service by java
applet. When applet is launched as standalone application it works
fine, but when i try to launch applet in my browser as a part of
website it doesn't work. Applet is loading and loading and it can't
finish. I am trying to access web service in init method, when i
comment this part of method everything works fine.
I am using sun AS 9.1, and web service has been tested.
Maybe someone has similar problems. I can also post sources if there
is need.
ballo0
> I am using java 5. I have a prolem with access to web service by java
> applet. When applet is launched as standalone application it works
[quoted text clipped - 9 lines]
>
> ballo0
Did you look at the java console to see if there was an exception?
My guess is that you're trying to access a web service that isn't at
the same domain that your applet is served from.
In order to allow this without throwing an exception, you have to get
your applet signed (it is free for self-signed certs I've heard).
ballo0 - 28 Mar 2007 01:45 GMT
> > I am using java 5. I have a prolem with access to web service by java
> > applet. When applet is launched as standalone application it works
[quoted text clipped - 16 lines]
> In order to allow this without throwing an exception, you have to get
> your applet signed (it is free for self-signed certs I've heard).
i don't think this is the problem, because both java AS serving web
service and applet are on my computer