cancel
Showing results for 
Search instead for 
Did you mean: 

Error while executing application in the PDA

Former Member
0 Kudos

HI All,

I am working on SAP MI 7.0. we had few enhacnement on MAM application.

We have deployed and tested the application [with enhacnements] in desktop - MI client. But when we try to deploy the same in PDA, we are facing the below issues:

1) When i created the .war file with the option: "Add JSP as a compiled classes" and deployed the application [.war file] in PDA We are getting Error:

-


Not Found (400)

Original request:/application name/start

Not found request: /application name/start

But i could not see either the JSP/ class files in the WAR file, which is causing this Error.

2) When i created WAR file by unchecking the option "Add JSP as a compiled classes" and deploy the application in PDA, i could see the JSP's but getting this Error:

Error 500:

Jasper. Compile Exceptions: unable to find the setter method for the attribute.

Any suggestion?

Regards

Nagraju

Accepted Solutions (1)

Accepted Solutions (1)

former_member53099
Participant
0 Kudos

Hi Nagaraju

can you please tell us the java versions on both the devices

~vaidehi

Former Member
0 Kudos

Hi Vaidehi,

I am using JDK 1.1.8 for both the desktop and PDA.

Regards

Nagaraju

chinna_babu2
Active Participant
0 Kudos

Hi

See if the class files are created in applicationname.jar file for war file lib folder. If so, extract the jar file and copy the class files to classes folder.

Former Member
0 Kudos

Hi Chinna,

I could see the app_name.zip in /WEB-INF/lib and unzip'd the JSP class in "WEb-INF/Classes" folder, but still i am getting the same error. Is there any assosiated changes in web.xml??

Regards

Nagaraju

chinna_babu2
Active Participant
0 Kudos

Hi Nagaraju,

Yes, you need to change the entiries in web.xml file aswell.

Check whether the web.xml file has the mapping for .jsp files or jsp converted .class files.

If your web.xml file contains the .class file and still giving the error that means your web.xml file is not generated properly.

Simple changes you have to do in web.xml file

1. Below content must be generated at the end of the file where as it should be immediate to the <web-app> tag.

2. Cut the content and place the code as shown below.

<servlet>
	<servlet-name>front</servlet-name>
	<servlet-class>
		com.sap.mbs.mam.application.web.FrontServlet
	</servlet-class>
	<init-param>
		<param-name>application</param-name>

------------------------------
------------------------------

<servlet>
	<servlet-name>mam_0005fstart</servlet-name>
	<jsp-file>/mam_start.jsp</jsp-file>
</servlet>

Please mark the thread as answer if it is useful to you

Regards

chinna_babu2
Active Participant
0 Kudos

Hi Nagaraju,

Please mark the thread as answered if your problem resolved.

Regards

Answers (0)