Exception while sending mesg in a lan environment using PTP

hi
     i have a problem while running the simpleQueueSender/Receiver in mutilple system(in Lan environment). i follow the steps given in the tutorial under (Running JMS Client Programs on Multiple Systems) where they have said .
On sender end, create a connection factory with the same name that points to the server on receiver. Enter a command like the following:
j2eeadmin -addJmsFactory jms/EarthQCF queue -props
url=corbaname:iiop:earth:1050#earth
* what i need to know is what command have i to give
* what those corbaname:iiop and #earth mean here.
note:: i work in a linux OperatingSystem so what command i have to give to run my application.
when i try to run the application by giving the
j2eeadmin -addJmsFactory jms/EarthQCF queue -props url=hostname of my m/c:1050#hostname of my m/c
then i have changed the lookup to jms/EarthQCF and recomplied as told and while running the sender end the error what i got was,
Queue name is MyQueue
Java(TM) Message Service 1.0.2 Reference Implementation (build b14)
SEVERE unable to locate resource bundle: com.sun.jms.LocalStrings
SEVERE unable to locate resource bundle: com.sun.jms.LocalStrings
Exception in thread "main" java.lang.NullSointerE ception     &at com.sun.jms.client.ConnectionImpl.invokeRemoteCreateConnection(ConnectionImpl.java:149)
at com.sun.jms.ConnectionFactoryImpl.createConnection(ConnectionFactoryImpl.java:293)
at com.sun.jms.QueueConnectionFactoryImpl.createQueueConnection(QueueConnectionFactoryImpl.java:77)
at com.sun.jms.QueueConnectionFactoryImpl.createQueueConnection(QueueConnectionFactoryImpl.java:58)
at com.sun.enterprise.jms.ConnectionFactoryWrapperStandalone.createQueueConnection(ConnectionFactoryWrapperStandalone.java:44)
at SimpleQueueSender.main(SimpleQueueSender.java:90)
advance thanx for the helping brain's
perums

hello
     this is perums y dont u help
perums

Similar Messages

  • I'm getting an exception while sending a mail . .

    i'm get an excpetion while sending a mail, example i'm getting
    this particular error
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/activation/DataSource
    at MailTest.<init>(MailTest.java:25)
    at MailTest.main(MailTest.java:42)
    this is my code
    pls help me out
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    public class MailTest
         String mailHost = "mail.business-functions.com";
         String to = "[email protected]";
         String from = "[email protected]";
         String subject = "This is Test Mail Thru Java Mail API";
         String body = "This is Test Mail to check whether the Java Mail APi is Working or not. This is prototype developed by Snehal K gandhi of Business Functions Software Solutions Pvt Ltd.";
         Provider provider;
         public MailTest()
              try
                   Properties props = System.getProperties();
                   props.put("mail.smtp.host", mailHost);
                   Session session = Session.getInstance(props,null);
                   Message message = new MimeMessage(session);
                   message.setFrom(new InternetAddress(from));
                   message.setRecipients(Message.RecipientType.TO,new InternetAddress[]{new InternetAddress(to)});
                   message.setSubject(subject);
                   message.setContent(body, "text/plain");
                   Transport.send(message);
                   System.out.println("Mail has been Sent");
              catch(MessagingException me)
                   System.out.println("2. Error While Sending the Mail and the exception is : " + me.toString());
         public static void main(String arg[])
              new MailTest();
    ***********************************************************************/

    <sigh>
    You need activation.jar in your classpath and or
    import javax.activation.*;
    See the JavaMail Readme for more info.
    If you haven't got JAF get it here
    http://java.sun.com/products/javabeans/glasgow/jaf.html
    Rgds,
    SH

  • Exception while unmarshalling UTF-8 encoded XML String, using JAXB.

    hi folks. First of all, thank you for contributing to my queries as of now.
    Problem statement.
    - This happens when i try to unmarshall a webservice response, which is nothing but a simple UTF-8 encoded XML string in an soap envelope.
    - 0xae is the register character: &reg;.
    - My next step was to ensure that my code works without this character. So I removed all occurances from my XML. It worked just fine...
    - So what do you guys suggest me to get rid of this problem?
    - Any suggestion will be treated as valuable resource.
    - Is there some kind of encoding setting with jaxb ?
    An invalid XML character (Unicode: 0xae) was found in the element content of the document.
    org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0xae) was found in the element content of the document.
         at weblogic.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1273)
         at weblogic.apache.xerces.framework.XMLDocumentScanner.reportFatalXMLError(XMLDocumentScanner.java:603)
         at weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1319)
         at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:396)
         at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1119)
         at weblogic.xml.jaxp.WebLogicXMLReader.parse(WebLogicXMLReader.java:135)
         at weblogic.xml.jaxp.RegistryXMLReader.parse(RegistryXMLReader.java:133)
         at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:139)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:129)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:166)
         at com.hp.wwopsit.econfigure.helper.JaxbUtils.xmlStringToJaxbObject(JaxbUtils.java:66)
         at com.hp.wwopsit.econfigure.core.transformation.IPCAdapterMapper.x2oLoadConfig(IPCAdapterMapper.java:376)
         at com.hp.wwopsit.econfigure.core.adapter.IPCAdapter.loadConfiguration(IPCAdapter.java:144)
         at com.hp.wwopsit.econfigure.core.adapter.IPCAdapter.main(IPCAdapter.java:291)
    --------------- linked to ------------------
    javax.xml.bind.UnmarshalException
    - with linked exception:
    [org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0xae) was found in the element content of the document.]
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.createUnmarshalException(AbstractUnmarshallerImpl.java:284)
         at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:143)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:129)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:166)
         at com.hp.wwopsit.econfigure.helper.JaxbUtils.xmlStringToJaxbObject(JaxbUtils.java:66)
         at com.hp.wwopsit.econfigure.core.transformation.IPCAdapterMapper.x2oLoadConfig(IPCAdapterMapper.java:376)
         at com.hp.wwopsit.econfigure.core.adapter.IPCAdapter.loadConfiguration(IPCAdapter.java:144)
         at com.hp.wwopsit.econfigure.core.adapter.IPCAdapter.main(IPCAdapter.java:291)
    ***Jaxb Exception while converting xml file to object. Possible cause, Invalid schema or unrecognized elements in input XML. Actuall exception message:javax.xml.bind.UnmarshalException
    - with linked exception:
    [org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0xae) was found in the element content of the document.]
    End..
    Output completed (44 sec consumed) - Normal Termination

    This is how the XML looks like ..
    <?xml version="1.0" encoding="UTF-8" ?>
    - <configresponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <csticShortText>processor</csticShortText>
    - <csticValues>
    - <csticValue id="024" selected="false">
    <desc>Pentium� 4 1.7GHz/400MHz</desc>
    </configresponse>

  • Java Client throws exception – while sending NTLMV2 Response from WIN7 to W

    We have written a Java client which connects to a webservices application using NTLM authentication against Windows 2008 R2 Server (using IIS7). This program works fine when running from Windows XP, Linux but failing when running from Windows 7.
    Error encountered is: java.io.IOException: Authentication failure.
    Here is what we have written to connect to HTTPS with credential using SSLContext as mentioned below.
    SSLContext sc = SSLContext.getInstance( "SSL" );
    sc.init( null, trustAllCerts, new java.security.SecureRandom() );
    HttpsURLConnection.setDefaultSSLSocketFactory( sc.getSocketFactory() );
    ( ( HttpsURLConnection )( m_oHttpURLConnection ) ).setHostnameVerifier( this );
    URL url = new URL("https://testsite...");
    HttpsURLConnection m_oHttpURLConnection = (HttpsURLConnection) url.openConnection();
    Following properties are set to HttpsURLConnection:
    RequestMethod : GET
    InstanceFollowRedirects : true
    AllowUserInteraction : true
    UseCaches : false
    DoOutput : true
    DoInput : true
    After setting all the above parameters the following code is used to set credentials data and connect to site
    Authenticator.setDefault(new MyAuthenticator ());
    m_oHttpURLConnection.connect();
    After connection is successful request XML is sent to server and expecting a response from the server. So when the below line is called exception is thrown.
    m_oHttpURLConnection.getResponseCode();
    Exception :
    java.io.IOException: Authentication failure
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1173)
         at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:373)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:318)
    After changing LAN Manager Authentication level setting of Windows 7 from “Send NTLMv2 response only” to “Send LM & NTLM – use NTLMv2 session security if negotiated”, application is working fine.
    Local Security Settings àSecurity SettingsàLocal Policies à Security Optionsà Network security: LAN Manager Authentication level
    By default in Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2: Send NTLMv2 response only , Lowering the security level at the client end is bit risk and typically is not recommended.

    this subforum is about Kerberos and GSS and not about NTLM. Why are you hasseling with NTLM? Take Kerberos.

  • WLI 7.0 - XOCP Transport Exception while sending message in B2B Integration

    Hi,
    I am trying to implement B2B integration on two WLI Servers . I have done the
    configuration of
    Trading Partners, Conversation and Collaboration Agreements on both the machines.
    The business protocol used is XOCP. I am trying to implement XOCP
    Peer-to-Peer Messaging with one WLI server(first) having two trading partners
    configured, one with a Hub delivery channel and the other with a spoke delivery
    channel.One Trading Partner(with a spoke delivery channel) is configured on the
    other WLI server(second).
    When I start the second WLI server (the other Trading Partner) I get the following
    error on the console:
    <Error> <B2B> <000000> <<CA> ERROR: Failed to register Collaboration Agreement
    WLP_SERVER/10.3.8.183:57bef0:f8f7b78128:-8000 with error ERROR: Failed to join
    Channel, received null reply.>
    At the same time the WLI server of the first Trading Partner shows the following
    error:
    <Error> <B2B> <000000> <<XOCP-Protocol> ERROR: CA received WLP_SERVER/10.3.8.183:2aabf2:f8f7c4b9f2:-8000
    in XOCP message
    http://10.3.8.183:9001/ExampleReplierPartner:JoinCSpace_ExampleReplierPartner_1069318538697:0
    not found in repository. Rejecting the message...>
    <Error> <B2B> <000000> <<XOCP-Protocol> ERROR: While decoding XOCP request, received
    transport exception: ERROR: CA received WLP_SERVER/10.3.8.183:2aabf2:f8f7c4b9f2:-8000
    in XOCP message
    http://10.3.8.183:9001/ExampleReplierPartner:JoinCSpace_ExampleReplierPartner_1069318538697:0
    not found in repository. Rejecting the message...>
    Please find attached the files with WLI console errors for your reference.
    Any help on solving this problem would be highly appreciated.
    Nirupama Srivastava
    MBT, MUMBAI
    [B2BError.zip]

    Hi,
    I am trying to implement B2B integration on two WLI Servers . I have done the
    configuration of
    Trading Partners, Conversation and Collaboration Agreements on both the machines.
    The business protocol used is XOCP. I am trying to implement XOCP
    Peer-to-Peer Messaging with one WLI server(first) having two trading partners
    configured, one with a Hub delivery channel and the other with a spoke delivery
    channel.One Trading Partner(with a spoke delivery channel) is configured on the
    other WLI server(second).
    When I start the second WLI server (the other Trading Partner) I get the following
    error on the console:
    <Error> <B2B> <000000> <<CA> ERROR: Failed to register Collaboration Agreement
    WLP_SERVER/10.3.8.183:57bef0:f8f7b78128:-8000 with error ERROR: Failed to join
    Channel, received null reply.>
    At the same time the WLI server of the first Trading Partner shows the following
    error:
    <Error> <B2B> <000000> <<XOCP-Protocol> ERROR: CA received WLP_SERVER/10.3.8.183:2aabf2:f8f7c4b9f2:-8000
    in XOCP message
    http://10.3.8.183:9001/ExampleReplierPartner:JoinCSpace_ExampleReplierPartner_1069318538697:0
    not found in repository. Rejecting the message...>
    <Error> <B2B> <000000> <<XOCP-Protocol> ERROR: While decoding XOCP request, received
    transport exception: ERROR: CA received WLP_SERVER/10.3.8.183:2aabf2:f8f7c4b9f2:-8000
    in XOCP message
    http://10.3.8.183:9001/ExampleReplierPartner:JoinCSpace_ExampleReplierPartner_1069318538697:0
    not found in repository. Rejecting the message...>
    Please find attached the files with WLI console errors for your reference.
    Any help on solving this problem would be highly appreciated.
    Nirupama Srivastava
    MBT, MUMBAI
    [B2BError.zip]

  • Getting exceptions while sending mail using javamail api

    Hi to all
    I am developing an application of sending a mail using JavaMail api. My program is below:
    quote:
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class sms
    public static void main(String args[])
    try
    String strstrsmtserver="smtp.bol.net.in";
    String strto="[email protected]";
    String strfrom="[email protected]";
    String strsubject="Hello";
    String bodytext="This is my first java mail program";
    sms s=new sms();
    s.send(strstrsmtserver,strto,strfrom,strsubject,bodytext);
    catch(Exception e)
    System.out.println("usage:java sms"+"strstrsmtpserver tosddress fromaddress subjecttext bodyText");
    System.exit(0);
    public void send(String strsmtpserver,String strto,String strfrom ,String strsubject,String bodytext)
    try
    java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties p=new Properties(System.getProperties());
    if(strsmtpserver!=null)
    p.put("mail.transport.protocol","smtp");
    p.put("mail.smtp.host","[email protected]");
    p.put("mail.smtp.port","25");
    Session session=Session.getDefaultInstance(p);
    Message msg=new MimeMessage(session);
    Transport trans = session.getTransport("smtp");
    trans.connect("smtp.bol.net.in","[email protected]","1234563757");
    msg.setFrom(new InternetAddress(strfrom));
    msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(strto,false));
    msg.setSubject(strsubject);
    msg.setText(bodytext);
    msg.setHeader("X-Mailer","mtnlmail");
    msg.setSentDate(new Date());
    Transport.send(msg);
    System.out.println("Message sent OK.");
    catch(Exception ex)
    System.out.println("here is error");
    ex.printStackTrace();
    It compiles fine but showing exceptions at run time.Please help me to remove these exceptions.I am new to this JavaMail and it is my first program of javamail.Please also tell me how to use smtp server.I am using MTNL 's internet connection having smtp.bol.net.in server.
    exceptions are:
    Here is exception
    quote:
    Javax.mail.MessagingException:Could not connect to SMTP host : smtp.bol.net.in, port :25;
    Nested exception is :
    Java.net.ConnectException:Connection refused: connect
    At com.sun.mail.smtp.SMTPTransport.openServer<SMTPTransport.java:1227>
    At com.sun.mail.smtp.SMTPTransport.protocolConnect<SMTPTransport.java:322>
    At javax.mail.Service .connect(Service.java:236>
    At javax.mail.Service.connect<Service.java:137>
    At sms.send<sms.java:77>
    At sms.main<sms.java:24>

    Did you find the JavaMail FAQ?
    You should talk to your ISP to get the details for connecting to your server.
    In this case I suspect your server wants you to make the connection on the
    secure port. The FAQ has examples of how to do this for GMail and Yahoo
    mail, which work similarly. By changing the host name, these same examples
    will likely work for you.

  • Exception while sending mail using javamail

    below i am using the code to send a mail to [email protected]
    but it is giving exception
    "class com.sun.mail.smtp.SMTPSendFailedException: 554 <[email protected]>: Recipient address rejected: Relay access denied"
    please can any body help me to solve this problem
    Properties props = new Properties();
    props.put("mail.smtp.host", "xxxxxxxxxxxxx");
    Session s = Session.getInstance(props,null);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress("[email protected]");
    message.setFrom(from);
    InternetAddress to = new InternetAddress("[email protected]");
    message.addRecipient(Message.RecipientType.TO, to);
    message.setSubject("Test from JavaMail.");
    message.setText("Hello from JavaMail!");
    Transport.send(message);

    I was getting the same error as the others, and I added authentication, but it still gives me the error.
    All "AutomailingUtility" constants are strings
    public class SMTPSender {
    private Session session;
    public SMTPSender() {
    Properties props = new Properties();
    props.setProperty("mail.smtp.host", AutomailingUtility.HOST);
    props.put("mail.smtp.auth", AutomailingUtility.AUTH);
    Authenticator auth = new MyAuthenticator(AutomailingUtility.USERNAME, AutomailingUtility.PASSWORD);
    session = Session.getInstance(props, auth);
    public void sendMessage(String toUser, String message, String subject) {
    try {
    Message msg = new MimeMessage(session);
    msg.setSubject(subject);
    msg.setSentDate(new Date());
    InternetAddress ia = new InternetAddress(AutomailingUtility.FROM_ADDRESS);
    msg.setFrom(ia);
    msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(toUser));
    msg.setText(message);
    Transport.send(msg);
    } catch (AddressException e) {
    e.printStackTrace();
    } catch (MessagingException e) {
    e.printStackTrace();
    any ideas?

  • Classcast exception while sending objects to the server

    I'm getting classcast exception when i try to send objects from the java webstart application at the client side to a server. Its working fine if I do the same without using javaweb start. I'm using hessian client to send objects to the server.
    I've a web app that gets outlook contacts from the client machine and send those to the server. I'm sending these contacts as custom objects(OutlookContact) to the server using hessian client. But these objects are being sent to the server as String objects but not as OutlookContact objects. I don't know whats happening. Can anyone please tell me is there any setting that I need to set in the jnlp file.
    thanks,
    Jayaram

    I am also getting the same error. Please anybody can help

  • Exception while sending json payload

    getting this exception when i send a json payload for auhtentication to a rest service
    Content-Type: application/json {"X-Idaas-Rest-Subject-Type":"USERCREDENTIAL","X-Idaas-Rest-Subject-Username":"weblogic","X-Idaas-Rest-Subject-Password":"weblogic","X-Idaas-Rest-New-Token-Type-To-Create":"USERTOKEN"}
    java exception running circuit: java.lang.NullPointerException at com.vordel.circuit.CircuitActivationProcessor.getGeneratedAttributesFromStack(CircuitActivationProcessor.java:26) at com.vordel.circuit.CircuitActivationProcessor.invoke(CircuitActivationProcessor.java:54) at com.vordel.circuit.InvocationEngine.invokeFilter(InvocationEngine.java:160) at com.vordel.circuit.InvocationEngine.invokeCircuit(InvocationEngine.java:52) at com.vordel.circuit.InvocationEngine.processMessage(InvocationEngine.java:241) at com.vordel.circuit.SyntheticCircuitChainProcessor.invoke(SyntheticCircuitChainProcessor.java:36) at com.vordel.dwe.http.HTTPPlugin.invokeDispose(HTTPPlugin.java:300) at com.vordel.dwe.http.HTTPPlugin.invoke(HTTPPlugin.java:166)

    could you provide the policy flow also.
    From the exception it looks like there is something wrong with the authentication part as if it is not getting the required attributes.

  • Exception while sending Mail

    Hi I am getting javax.mail.sendFailedException: InvalidAddreses
    nested exception is class com.sun.mail.smtp.SMTPAddressFailedException:553 sorry that domain isn't in my list of allowed rcpthosts<#5.7.1>
    Here my Program:
    package com.fortune2win.mail;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    // Send a simple, single part, text/plain e-mail
    public class SendMail {
    public void sendMail(String TO,String secCode, String UserNumber){
                                                                          // SUBSTITUTE YOUR EMAIL ADDRESSES HERE!!!
    String from = "[email protected]";
                                                                          // SUBSTITUTE YOUR ISP'S MAIL SERVER HERE!!!
    String host = "207.234.145.236";
                                                                          // Create properties, get Session
    Properties props = new Properties();
              props.put("mail.transport.protocol","smtp");
                                                                          // If using static Transport.send(),
                                                                          // need to specify which host to send it to
    props.put("mail.smtp.host", host);
                                                                               // To see what is going on behind the scene
    props.put("mail.debug", "true");
    Session session = Session.getDefaultInstance(props);
    try {
                                                                               // Instantiatee a message
    Message msg = new MimeMessage(session);
                                                                               //Set message attributes
    InternetAddress addressFrom = new InternetAddress(from);
              msg.setFrom(addressFrom);
                   InternetAddress[] address = {new InternetAddress(TO)};
                   msg.setRecipients(Message.RecipientType.TO,address);
    msg.setSubject("F2W Player's Intimation");
                                                                               // Set message content
    msg.setText("Thank You for playing F2W online game.\n \n"+
    "CONGRATULATIONS\n \n "+
    "Your Number:" UserNumber""+"is a valid entry. \n"+
    "Your Security Code:"+""+secCode+""+"\n" +
    "You are entitled to claim the prize only if you produce a print of this mail."+
    "\n Click www.fortune2win.com/home_index.jsp for prizedetails.\n");
                                                                               //Send the message
    Transport.send(msg);
    catch (MessagingException mex) {
                                                                               // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
                                                                                    //End of class
    Plz it urgent...Help me

    Hi thanks for the reply.
    But the TO addreass I specified in the argumentlist. that is outside the program.
    But the mails are going to with in the same host that is under given host address(XXX.XXX.XXX.XXX) .
    Wht I mean is..mails are going with in my company...but outside mails are not going...like yahoo/gmail..etc..
    plz help .
    TO address i am taking from Form textbox
    Regards
    Varma

  • SLD name not recognized while sending mesg from R/3 to SUS

    Hi All,
    We are trying to send an IDOC from R/3 to SUS. Its IDOC to proxy scenario. messsage status in SXMB_MONI of XI server showing it to be successful, but SXMB_MONI of SUS is showing the folllowing error "An error occured within an XI interface: SLD system P2P is not known Programm: SAPLBBP_BD_MAPPING_SAPXML1; Include: LBBP_BD_MAPPING_SAPXML1F1Y; Line: 96"
    We have configured business system name of R/3 as P2P in the SLD and the logical system name as P2PCLNT100, which is same as the logical system defined in R/3 and SUS.
    Should the business sytem name be same as logical system name for R/3 in  a sender IDOC scenario?
    Regards,
    Rashmi

    Hi Rashmi,
    The problem seems to specific to SRM and not of any setting.
    same problem solved over here.
    Creation of a shipping notification for a PO in EBP from a XML file via XI.
    Regards,
    Ashwin M
    [Dont forget to mark helpful answers]

  • Marshal Exception while sending BigDecimal(0.00)

    Hello..
    I have a bunch of attributes in my class A which is ofcourse Serializable. One of my field is of type BigDecimal, which is causing a MarshallException when the value in the BigDecimal is 0.00.
    If I replace the call with objA.setBigDecimalValue(null) it works!!! Any inputs?
    I am using WSAD.
    thanks,
    sanjay.

    hello pradeep,
    thanks for your reply....
    answers to your questions
    =====================
    Did you face this exception with value 0.00 only or with other value too ?only with 0.00
    How the BigDecimal is being initialized, using constant inside BigDecimal >>class or using Constructor ? I am using it as returnValue.setValue(new BigDecimal(0.00));
    so I guess the answer is using constructor
    sanjay.

  • Exception while creating Database in oracle10g Solaris 10 using DBCA

    hi,
    While i am creating a DB using DBCA in oracle_home/bin directory i am getting the following mentioned exception.
    Exception in thread "main"
    I have set the DISPLAY to the local machine(DISPLAY=LocalMachineIp:0.0 ; export DISPLAY)
    After this i have executed dbca. i get the message ---Exception in thread "main".
    Can anybody kindly suggest me in resolving it.
    Thanks in Advance

    Can you run any other x-applications (eg. xclock)?
    Usually DBCA will give an appropriate error if it is a display issue. Can you run any other Oracle utilities, like NETCA?

  • New implementations possible in LAN environment using RMI

    In LAN setup of a college, what are the things I can implement using RMI?
    I have developed a gaming interface and Database set up.
    Other than the above mentioned things what can I develop?
    Please help me with your valuable suggetions.

    I did some more testing.
    I setup a test environment with:
    -Exchange 2013 SP1 on win2k12 r2
    -Outlook 2010 SP2 on windows 7 sp1
    -Outlook 2010 SP2 on windows 8.1
    -Outlook 2013 SP1 on windows 8.1
    Both windows 7 and windows 8.1 have the very slow upload issue to Exchange 2013. Windows 7 upload to Exchange 2013 is around 20-70KB/sec (bytes) via LAN. Windows 8.1 upload is a bit more responsive at around 500-600KB/sec (bytes) via LAN.
    I changed the TcpAckFrequency to 1 for windows 7 and 8.1 and the problem went away. The upload on both Windows 7 and 8.1 was going at megabytes after the change.
    I hope Microsoft fixes this soon.
    PowerShell script to have this automated via GPO:
    http://community.spiceworks.com/topic/571571-outlook-slow-after-migrating-to-exchange-2013
    PowerShell Script:
    $strGUIDS=[array](Get-WmiObject win32_networkadapter -filter "netconnectionstatus = 2" | select -expand GUID)
    foreach ($strGUID in $strGUIDS) {New-ItemProperty -path HKLM:\System\CurrentControlSet\services\Tcpip\Parameters\Interfaces\$strGUID -propertytype DWORD -name TcpAckFrequency -value 1}

  • CPALookupException while sending a Test message to Adapter engine

    Hello Experts,
    I am getting following exception while sending a test message to Adapter engine through Runtime Workbench.
    Error while sending message: com.sap.engine.interfaces.messaging.api.exception.ConfigException: ConfigException in XI protocol handler. Failed to determine a receiver agreement for the given message. Root cause: com.sap.aii.af.service.cpa.impl.exception.CPALookupException: Couldn't retrieve outbound binding for the given P/S/A values: FP=<Configured Party>;TP=;FS=<Configured Communication component>;TS=;AN=<Configured Outbound Interface>;ANS=<Configured Namespace>
    This scenario works fine when I submits the message through Integration engine. So ID configuration is perfect. Also cache contents are upto date.
    Thanks in advance.
    Regards
    Rajeev

    Error is clearly saying that it is unable to find receiver agreement for that particular interface.
    Please check your receiver agreement for the interface.
    If your receiver agreement is fine then do CPA cache refresh using following URL:-
    http://<host>:<port>/CPACache/refresh?mode=full

Maybe you are looking for

  • Using a Family Members upgrade

    Ok so i know this has been asked before and I think I get the gist of it. I currently have the Dinc and am giving it to my bro for his upgrade. My Dinc has insurance and unlimited data. I know I will have to activate it on his line before mine. My qu

  • Disclaimer in Sharepoint 2010

    I'm trying to set up a pop up window with a URL to a document each time my Sharepoint site is loaded. I read that it can be done by adding a content editor web part with a following code to a page: <script src="/_layouts/sp.core.js" type="text/javasc

  • Migration of archived classical g/L data to new G/L

    Priority :High Hi, Our client is in the process of archiving their financial data and they are using classical GL right now. After archiving they want to migrate to new GL. The question is after migrating to new GL would they be able to retrieve arch

  • Why a page posting the request more than one time?

    Hi, I'm sending some data from a normal html document's input fields to a server side code(serlvet). Normal POST method only. In this case, some times the servlet is invoked only once. and some times it is invoked twice. Why it is behaving like this?

  • KOCO -( Budget Carryforward)  & KOCF ( commitment carry forward ) report

    Hi Can some one explain me how to be sure that some one has  successfully run two t-codes KOCO -( Budget Carryforward)  & KOCF ( commitment carry forward ). I want to make sure that Budget and Commitment carry forward has taken place.Is there any rep