Sehrish Hasan

Ranch Hand
+ Follow
since Aug 15, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Sehrish Hasan

Hi All,

What does part I of the exam focus on more: webservices or JSF? I dont have much time before I take Part I and would like to know which topic I should be reading in depth. I have fundamental knowledge of both.

Suggestions on which one to read up on if I absolutely had to pick one over the other?

Thanks,
SH.
Hi All,

I am about to write Part I of the certification in the hopes that I will be able to finish up Part II/III before August 1st deadline. Is one month sufficient to submit Part II/Part III? I have a fulltime job and I can put in 2-4 hours per day with more hours on weekends.

Anybody out there who PASSED Part II/III within one month timeframe?

Thanks,
SH
I am trying to integrate Tapestry 5 and Spring 2.5.6
Hi,

I am having trouble understanding what to code in Tapestry and what to code in Spring. We are choosing to use Tapestry Web Component with Spring IoC. I am new to both frameworks.

I am assuming I do not need a view resolver since Tapestry will be routing the request. What do I need in Spring? Do I need Forms and Beans in Spring? I think Tapestry Page classes are same as Spring Beans and Forms? I believe the only things I need to use from Spring are Services and DAO?

Am I off track here? Does anybody has a spring-tapestry integration example that they can share? Please help!
Hi All,

Could somebody please point me to a resource for Java web services design patterns covered in the Beta test?

Thanks,
Sehrish.
Hi All,

Are there any chapters from RMH book that are applicable to the Beta exam?

Thanks,
Sehrish.
Hi,

Could somebody pleasee tell me the difference between WS-I Basic Profile 1.0 and WS-I Basic Profile 1.1? I was preparing for the previous version of SCDJWS and have a good understanding of WS-I Basic Profile 1.0, but the Beta Version requires us to know WS-I Basic Profile 1.1. Is there a white paper or an article that states the differences between the two versions?

Any help is appreciated.

Thanks,
Sehrish.
Can somebody please provide a concise list of version #s of the following for the Beta certification?

WS-Basic Profile
XML
SOAP
WSDL
UDDI
JAX-WS
JAXR
JAXP
JAXB
SAAJ
SwA

Thanks,
S Hasan.
I am getting the following error when try to deploy the ear file on Oracle Application Server 10g:

"Archive Location - Failed in uploading archive. Invalid archive file: Unsupported archive type. unknown"

I have another ear file with exact same structure and it deploys fine.

Any clue what might be causing this?

Any help is appreciated.

Thanks,
S Hasan.
16 years ago
Do we know when new SCDJWS exam (5.0) will be released? Any official/unofficial dates? Does this survey means its going to be released very soon???
Hi David,

What are the three things that other servers (like Tomcat and Weblogic)dont have and Glass Fish does? Why should any company put in effort to move to this application server, in your opinion?

Does your book elaborate on this?

Thanks,
S Hasan.
Here is the problem that I am trying to solve: I have a web application already coded using Struts Framework and I want to expose all the functionality of the application as a webservice. The problem is that all business logic is in the Struts Action classes and I am kind of lost as to how to solve this problem. I can take out the business logic into Business Delegates as methods and expose these new methods but how do I keep track of Session from there?

If i dont use request, how do I set attributes in session? how do I even get to the session? I am confused about what should I leave in the Action class and what should I take out.

Example: One action class uses DAO to get information from database per user role, set this information into the session, jsp displays the information on the page.

My question is whose responsibility is it to get the information from the database and set it in session. Should this logic be in the method exposed as a webservice or the client using the webservice should set it in the session? I think I am unable to draw a line between what webservice should do and what the client using it should implement...

Please help!

s Hasan.
I am trying to expose a method as a webservice that calls the DAO class to get the data from the database and sets it as an attribute in the session. How do I expose this method as a webservice?

Can a method exposed as a webservice set and get attributes to/from session? Can a method exposed as a webservice get request parameters?

Please reply.

S Hasan.
That makes sense... Now if I want to expose a method that takes a bean as a parameter and returns an ArrayList of beans, how do I go about doing that??

How and where do I define, which properties the parameter bean must have and how do I format my response back so its readable...

Thanks for the reply. It helped.

S Hasan.