Andrea Modica

Greenhorn
+ Follow
since Mar 09, 2007
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 Andrea Modica

It's a server error. I call the service method using a Client Proxy class built by the IDE (Rational Application Developer). Do you know how I can insert the user credential (username/password), I used to secure the WS, in the call I send to the service?
16 years ago
Hi all
I receive an error while I'm trying to access a secured webservice from a JSP.
The WS is secured with Tivoli Access Manager and it has a WebSEAL proxy server in front of it that manage the authentication mechanism.
I builded a WS client and I invoke a WS function receiving the following error:

Error 500: org.xml.sax.SAXException: Can't find resource for bundle com.ibm.ws.webservices.engine.resources.ProjectResourceBundle, key unsupportedSAXEvent Message being parsed:

after this message Websphere's log file contains the HTML form that WebSEAL return to authenticate the WS call.
Calling the WS directly from the browser it works fine.
My scenario include a HTTP Server in front of WebSphere and the WebSEAL junction it's made with it.

I'll be glad if someone could suggest me an idea to solve the problem.

Andrea
16 years ago
Hi all
I receive an error while I'm trying to access a secured webservice from a JSP.
The WS is secured with Tivoli Access Manager and it has a WebSEAL proxy server in front of it that manage the authentication mechanism.
I builded a WS client and I invoke a WS function receiving the following error:

Error 500: org.xml.sax.SAXException: Can't find resource for bundle com.ibm.ws.webservices.engine.resources.ProjectResourceBundle, key unsupportedSAXEvent Message being parsed:

after this message Websphere's log file contains the HTML form that WebSEAL return to authenticate the WS call.
Calling the WS directly from the browser it works fine.

I'll be glad if someone could suggest me an idea to solve the problem.

Andrea
16 years ago
Hi all
I receive an error while I'm trying to access a secured webservice from a JSP.
The WS is secured with Tivoli Access Manager and it has a WebSEAL proxy server in front of it that manage the authentication mechanism.
I builded a WS client and I invoke a WS function receiving the following error:

Error 500: org.xml.sax.SAXException: Can't find resource for bundle com.ibm.ws.webservices.engine.resources.ProjectResourceBundle, key unsupportedSAXEvent Message being parsed:

after this message Websphere's log file contains the HTML form that WebSEAL return to authenticate the WS call.
Calling the WS directly from the browser it works fine.

I'll be glad if someone could suggest me an idea to solve the problem.

Andrea
16 years ago
Thanks
but I solved the problem configuring the stanza PD login directly on WebSphere admin console.
17 years ago
Hi
I receive this error
javax.security.auth.login.LoginException: No LoginModules configured

when I call LogincContext class from a JSP even if I put the following line in my java.security file

login.config.url.1=file:${java.home}/lib/security/config.pd

here the content of config.pd file

pd-debug {
com.tivoli.pd.jazn.PDLoginModule required debug=true;
};
pd {
com.tivoli.pd.jazn.PDLoginModule required;
};
pd-nopass {
com.tivoli.pd.jazn.PDLoginModule required nameOnly=false;
};

Any idea?
17 years ago