My name is Rahul.I am new to flex. I am trying to integrate flex with blazeds using java. I have written some code as per my knowledge. But it is not connecting to database. I am pasting my code here.Please look into this and let me know if i have done any mistakes over there:
My Flex code:
<fx:Script>
<![CDATA[
import com.hello.vo.FeedbackVO;
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
import mx.utils.ObjectUtil;
public function insertData():void
{
var feedbackvo:FeedbackVO = new FeedbackVO();
feedbackvo.name = input_name.text;
feedbackvo.number = input_number.text;
feedbackvo.email = input_email.text;
feedbackvo.feedback = input_feedback.text;
ro.insertData(feedbackvo);
}
public function onResult(event:ResultEvent):void
{
Alert.show(ObjectUtil.toString(event.result));
}
public function onFault(event:FaultEvent):void
{
Alert.show(ObjectUtil.toString(event.fault));
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
<s:RemoteObject id="ro"
destination="feedback"
source="com.hello.Feedback"
endpoint="http://localhost:8082/Feedback/messagebroker/amf">
<s:method name="insertData"
result="onResult(event)"
fault="onFault(event)"/>
</s:RemoteObject>
</fx:Declarations>
<s:BorderContainer x="0"
y="0"
width="100%"
height="100%">
<s:Panel width="364"
height="333" x="206" y="83">
<mx:Form x="0"
y="0"
width="100%"
height="100%">
<mx:FormItem label="Name:">
<s:TextInput id="input_name" width="249"/>
</mx:FormItem>
<mx:FormItem label="Number:">
<s:TextInput id="input_number" width="249"/>
</mx:FormItem>
<mx:FormItem label="Email:">
<s:TextInput id="input_email" width="248"/>
</mx:FormItem>
<mx:FormItem label="Feedback:">
<s:TextInput id="input_feedback" width="248" height="143"/>
</mx:FormItem>
<mx:FormItem>
<s:Button id="insert_btn"
label="Insert Data"
click="insertData();"/>
</mx:FormItem>
</mx:Form>
</s:Panel>
</s:BorderContainer>
My Java Code:
FeedbackVO.java:
package com.hello.vo;
public class FeedbackVO
{
private String name;
private String number;
private String email;
private String feedback;
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getNumber()
{
return number;
}
public void setNumber(String number)
{
this.number = number;
}
public String getEmail()
{
return email;
}
public void setEmail(String email)
{
this.email = email;
}
public String getFeedback()
{
return feedback;
}
public void setFeedback(String feedback)
{
this.feedback = feedback;
}
}
Feedback.java:
package com.hello;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import com.hello.vo.FeedbackVO;
public class Feedback
{
Connection connection;
Statement stmt;
ResultSet rs;
public Feedback()
{
String host = "localhost";
String port = "5432";
String dbName = "test";
Connection connection = null;
try
{
connection = DriverManager.getConnection(
"jdbc:postgresql://" + host + ":" + port + "/" + dbName,"postgres", "admin");
System.out.println("Database is connected");
stmt = connection.createStatement();
}
catch (Exception e)
{
e.printStackTrace();
}
}
public String insertData(FeedbackVO feedbackvo)
{
try
{
stmt = connection.createStatement();
String sql = "INSERT into feedback(name,number,email,feedback) VALUES ('" + feedbackvo.getName() + "','" + feedbackvo.getNumber() + "','" + feedbackvo.getEmail() + "','" + feedbackvo.getFeedback() +"')";
if(stmt.execute(sql))
{
return "Thanks For your Valuable Feedback";
}
}
catch (Exception e)
{
e.printStackTrace();
}
return "Sorry Your feedback is not entered";
}
}
If i try to execute the Feedback.mxml then i am getting "Sorry your feedback is not entered" as output.I dont know where the problem is.I think flex is connected successfully but problem is in java code.If anyone got an idea please help me.
Thanks a lot, Rahul