UWL Mail Content Format Error

Hi Frnds,
     The UWL Mail Content is displayed in single line without line break. Is there any solution for it? I have used even html tag <br /> for line break, but it appears for some only.
Kindly provide with the solution.
Thanks
Suganya

Hi frnds,
Solved by applying latest patch to UWLJWF component.
Thanks,
Suganya

Similar Messages

  • How to get Formatted Mail Content through Java Application

    I am using a mail sending function in my applet code which is listed below:
    Main content is fetched from a format tool bar in JSP Page and it is passed as parameter to applet and it is used inside the mail content.
    Same content when passed and executed in a JSP page, the formatted content is not lost and it is included in mail content as what it is fetched from Format Tool Bar.
    Format is lost when it is used inside the Java Application mail sending function.
    The below code I have used to send mail:
    package com;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    class mailsendClass
    public void sendmail(String from,String host,boolean debug,String msgText)
         try
              Set tomailsid = new HashSet();
              Set ccmailsid = new HashSet();
              //to mail ids           
              tomailsid.add("[email protected]" );          
              tomailsid.add("[email protected]" );
              tomailsid.add("[email protected]" );
              //cc mail ids
              ccmailsid.add("[email protected]" );
              ccmailsid.add("[email protected]" );
              String mailarray[]= (String[])tomailsid.toArray(new String[tomailsid.size()]);
              String ccmailID[]= (String[])ccmailsid.toArray(new String[ccmailsid.size()]);
              Properties props = new Properties();
              //props.put("mail.smtp.port","425");
              props.setProperty("mail.smtp.host", host);
              if (debug) props.setProperty("mail.debug", ""+debug);
              Session session = Session.getInstance(props, null);
              session.setDebug(debug);
              String mailsubject = "Mail Subject";
              // create a message
              Message msg = new MimeMessage(session);
              msg.setFrom(new InternetAddress(from));
              javax.mail.internet.InternetAddress[] toAddress=new javax.mail.internet.InternetAddress[mailarray.length];
              for (int i=0;i<mailarray.length ;i++ )
              toAddress=new javax.mail.internet.InternetAddress(mailarray[i]);
              System.out.println ("id inside to address loop " + i + " is "+ mailarray[i]);
              System.out.println ("toAddress " + i + " is "+ toAddress[i]);
              msg.setRecipients(Message.RecipientType.TO, toAddress);
              msg.setSubject(mailsubject);
              try
                   javax.mail.internet.InternetAddress[] CCAddress=new javax.mail.internet.InternetAddress[ccmailID.length];
                   for (int i=0;i<ccmailID.length ;i++ )
                        CCAddress[i]=new javax.mail.internet.InternetAddress(ccmailID[i]);
                        System.out.println("CC Array is ===> " +CCAddress[i] );//          
              msg.setRecipients(Message.RecipientType.CC,CCAddress);
              catch(Exception ss)
                   System.out.println("CC mail Exception is ====>"+ ss);     
                   msg.setSentDate(new java.util.Date());
    //          Multipart multipart = new MimeMultipart("relative");
                   Multipart multipart = new MimeMultipart("alternative");
              BodyPart messageBodyPart = new MimeBodyPart();
              messageBodyPart.setContent(msgText, "text/html");
    //          messageBodyPart.setContent(msgText, "text/plain");
              multipart.addBodyPart(messageBodyPart);          
                   msg.setContent(multipart);
              Transport.send( msg );
         catch (Exception e)
              System.out.println("The Exception is ------>"+e);
    public class SendMail {
    public static void main(String[] args)
         System.out.println("before Mail Send ");
         mailsendClass mail = new mailsendClass();
         String from="[email protected]";
         String host="172.16.2.6";
         String msgText="<p><strong>Index</strong><br />I have posted the following PDFs (Second Pages) as mentioned to start producing the Index:<br />• Engage<br />• Chapters 1–6<br /><a title='ftp:///Index' href='ftp://index/'>ftp:///Index</a><strong><br />XML Coding - Files with errors</strong><br />• Engage<br />• Chapters 1–6<br /><a title='ftp:///XML_Coding_Need%20Fixing' href='ftp://xml_coding_need%20fixing/'>ftp:///XML_Coding_Need%20Fixing</a></p>";
         mail.sendmail(from,host,true,msgText);
         System.out.println("after Mail Send ");
    Content placed in format tool bar is as follows:
    Index
    I have posted the following PDFs (Second Pages) as mentioned to start producing the Index:
    • Engage
    • Chapters 1–6
    ftp:///Index
    XML Coding - Files with errors
    • Engage
    • Chapters 1–6
    ftp:///XML_Coding_Need%20Fixing
    Content fetched from format tool bar inside JSP page is as follows:
    <p><strong>Index</strong>
    I have posted the following PDFs (Second Pages) as mentioned to start producing the Index:
    &bull; Engage
    &bull; Chapters 1&ndash;6
    <a title="ftp:///Index" href="ftp://index/">ftp:///Index</a><strong>
    XML Coding - Files with errors</strong>
    &bull; Engage
    &bull; Chapters 1&ndash;6
    <a title="ftp:///XML_Coding_Need%20Fixing" href="ftp://xml_coding_need%20fixing/">ftp:///XML_Coding_Need%20Fixing</a></p>
    Fetched Content inside Java Application through parameter and it will use as input for mail content is as follows:
    <p><strong>Index</strong>
    I have posted the following PDFs (Second Pages) as mentioned to start producing the Index:
    • Engage
    • Chapters 1–6
    <a title="ftp:///Index" href="ftp://index/">ftp:///Index</a><strong>
    XML Coding - Files with errors</strong>
    • Engage
    • Chapters 1–6
    <a title="ftp:///XML_Coding_Need%20Fixing" href="ftp://xml_coding_need%20fixing/">ftp:///XML_Coding_Need%20Fixing</a></p>
    Actual mail received after Java Application execution is as follows:
    Index
    I have posted the following PDFs (Second Pages) as mentioned to start producing the Index:
    ? Engage
    ? Chapters 1?6
    ftp:///Index
    XML Coding - Files with errors
    ? Engage
    ? Chapters 1?6
    ftp:///XML_Coding_Need%20Fixing
    Unicode characters in the mail content are replaced by “?”.
    In the function listed above I have used the MIME Setting as
    Multipart multipart = new MimeMultipart("alternative");
    I have tried by using “relative” MIME format also as
    Multipart multipart = new MimeMultipart("relative");
    But I am not getting the actual format passed as input to the Java Application in the mail content.
    Can anybody let us know how to overcome this problem?
    Thanks in advance.

    You need to really understand how the different multiparts work instead of just guessing.
    But for your application, you don't need a multipart at all. Just use msg.setText(msgText, null, "html");
    Although that doesn't explain your problem, it will simplify your program.
    How are you determining that the mail received doesn't have the formatting? Are you viewing it in a
    mail reader (e.g., Outlook)? Or are you fetching it with JavaMail?
    Are you using an Exchange server? Exchange will often reformat your message to what it thinks you meant.

  • Receiver Mail Adapter: Formatting the mail content

    Dear All,
    I'm using a receiver mail adapter. I would like to format the content of the mail using the contents of the XML message. For example:
    XML Message
    <Order>
      <OrderID>1234</OrderID>
      <CustomerName>Sandeep Joseph</CustomerName>
      <NetValue>7467.99</NetValue>
      <Link>http://locahost:7000?OrderID=1234</Link>
    </Order>
    Mail Content
    Dear Approver,
    Please approve the Order - 1234, Customer - Sandeep Joseph
    Link: http://locahost:7000?OrderID=1234
    Thanks,
    Are there any modules which would help formatting to this extend? Or any other mechanism?
    Thanks,
    Sandeep

    The easiest means is to use XSL mapping and create the Content Type as HTML and emded the cotent within HTML tags.
    One such example is shown by Praskash in this blog,
    /people/community.user/blog/2006/09/07/email-reporting
    /people/community.user/blog/2006/09/08/email-report-as-attachment-excelword
    If you use the Mail Package option then you can also wite a UDF in your mapping that will populate the content field. For every newline you can use the java new line \n and so on.
    Regards
    Bhavesh

  • Mail adapter fails when using Mail Package Format

    Hi.
    Using XI 3.0 stack level 9.
    When i set up the mail adapeter to Use mail package format (by ticking the "Use Mail Package") checkbox I get the following error :
    "error occured: [2005-09-14T09:42:46Z] unable to call the mailer; com.sap.aii.messaging.srt.BubbleException: Failed to call the endpoint  [null "null"]; nested exception caused by: com.sap.aii.messaging.util.XMLScanException: expecting end tag: Mail, but found Subject at state 1".
    The scenario is basic : file in mail out.
    File coming in has the structure :
    <ns:Mail xmlns:ns="http://sap.com/xi/XI/Mail/30">
      <ns:Subject>Sap test</ns:Subject>
      <ns:From>SAP</ns:From>
      <ns:To>[email protected]</ns:To>
      <ns:X_Mailer>Outlook</ns:X_Mailer>
      <ns:Content>Contect</ns:Content>
    </ns:Mail>
    Any help would be appreciated.

    Hi Rodney,
    try to use the following structure...
    <ns:Mail xmlns:ns="http://sap.com/xi/XI/Mail/30">
      <Subject>Sap test</Subject>
      <From>SAP</From>
      <To>[email protected]</To>
      <X_Mailer>Outlook</X_Mailer>
      <Content>Contect</Content>
    </ns:Mail>
    The namespace should only be included in the Mail tag. On our side it works fine with the mentioned structure.
    Hope it helps...
    Regards,
    Lars

  • Can't Mail Contents of this Page after MobileMe update!

    In Safari, you used to be able to do a "cmd I" or go to the File Menu and go down to "Mail Contents of this Page" select it and it would paste in to Mail a screen shot of the Safari page you were on.
    Now when you do this, after the MobileMe update has been run and installed. Safari no longer can find the Mail app. Here is a copy of the text of the error message that you get now.
    "Safari couldn’t create an email message because it couldn’t locate an email application.
    You can use the Mail application included with Mac OS X to send webpages. To do so, you need to install Mail using the Mac OS X installation CDs."
    I'm on a MacBook 2 Ghz INtel Core 2 Duo, with MAC OS X (10.5.2), Mail version 3.4 (last modified 7/11/08) Safari version 3.1.2 (last modified 6/30/08), MobileMe version 5.1 in the Preference Pane.
    The suggested solution of reinstalling mail would not seem to work as it would reinstall older versions of mail that would not have the functionality of being use MobileMe. It would seem to be that a Safari path is what is required to have the code know that the Mail app has been renamed(?).
    CW Rice
    Sheldonville, MA

    Hi, I'm on 10.5.4 I must have mistyped my OS version number. I took the version number for MobileMe from the About This Mac information. I was surprised like you see a version number of 5.1 I have run Software update as well just now to see if any newer versions of my software are there. None I'm up to date.
    I do know that when I ran the MobileMe updater it said that it fixes problems in Mail, right now some things in various software applications still refer to .Mac. I still think that somewhere in the Mail app that the name was changed, so that Safari is looking for the old name in a string of code that executes the placing a copy of the current page in Mail as an outgoing mail message.
    As for that activity bar in Safari, I guess I have never noticed it until now, on a laptop the bottom of the page is some times obscured by the dock which I have at the bottom. I truly noticed it more when I ran the MobileMe page.

  • Format Error : mkfs.ocfs2 1.2.7 file system too small for a journal

    Hi All,
    I am trying to implement Oracle 10g RAC on my laptop using vmware and openfiler software . But while executing the command
    #mkfs.ocfs2 -b 4K -C 32K -N 4 -L oracrsfiles /dev/iscsi/crs11/part1
    I am getting the error
    Format Error : mkfs.ocfs2 1.2.7 file system too small for a journal
    Please anybody can help me to resolve this problem.
    Thanks in Advance.

    How large is the device that you are formatting?
    The default journal size depends on the type specified. If none specified,
    then it assumes "mail" which sets the default journal per slot to 256M.
    If database type, default is 64M.
    Use "-T database" to specify database type, etc.
    BTW, one can always override the defaults. Say "-J size=16M" to make
    a smaller journal.
    man mkfs.ocfs2 and the user's guide has more.

  • ** File Content Conversion Error in Receiver CC - How to solve this?

    Hi friends,
    My target structure looks like below.
    EmployeeJobDetails                                        --> Message Type
       JobCode                                                      --> Node
            EmployeeNumber            xsd:string
            Domain                           xsd:string
       JobTrack                                                     --> Node
             Department                    xsd: string
             Position                         xsd: string
    I use the FCC parameters in the receiver CC as below:
    Recordset Structure:    JobCode,JobTrack
    JobCode.fieldSeparator = |
    JobCode.endSeparator = 'nl'
    JobTrack.fieldSeparator = |
    JobTrack.endSepartor = 'nl'.
    Because, we want the output like below
    1099|Raja
    Accts|JuniorAccountant
    1100|Ram
    HR|Recruiter
    like this.
    In this scenario Source is XML and target is txt file.
    I am using XSLT Mapping. The FCC works fine, if my source input file contains some records. But, when we send empty source XML file as below
    <?xml version="1.0" encoding="UTF-8"?>
    <EMPLOYEE_DATA/>
    Mapping works fine. Message is processed successfully in SXMB_MONI. The payload in response also comes with Message Type name like below
    <EmployeeJobDetails    namespace >
    </EmployeeJobDetails>
    While convert this, the system throws below error.
    Error Message:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'Conversion configuration error: Unknown structure '' found in document', probably configuration error in file adapter (XML parser error)': java.lang.Exception: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'Conversion configuration error: Unknown structure '' found in document', probably configuration error in file adapter (XML parser error)'
    Friend, how to convert this when source XML is empty.
    But, if we remove JobTrack node in target strucutre and remove the JobTrack parameters in CC, then if we send the same empty XML file FCC is working  fine and  we  get the target text file 0 KB. (Amazing !!)
    But, in the first case, how to solve the issue?
    Kind Regards,
    Jegathees P.

    Hi friends,
    If we remove JobTrack node in target strucutre and remove the JobTrack parameters in CC, then if we send the <b>same empty XML file</b> FCC is working fine and<b> we get the target text file 0 KB</b>. (Amazing !!)
    But, if we give parameters like JobCode,JobTrack then send pass the same empty file, we face the problem 'File Content Conversion' Error.
    Searching solution for this problem ...

  • "Content generation error. Failed to Export the PDF file"

    Building a multi-folio in InDesign 6 Folio Builder V30. Received "Content generation error. Failed to Export the PDF file" on several of the spreads. I have tried reducing the original pdf files sizes, but that did not help.
    Any suggestions on other possible causes or way to fix.?
    thanks
    Christopher Huber
    MMN

    I'm very new to DPS so I hope the following description makes some kind of sense.
    My magazine is in the process of doing trial runs for an iPad edition. I'm setting some templates up for us to work off so the process from magazine to iPad will run a lot smoother month to month.
    So far I've set up some dummy stock pages in an InDesign CS6 document, currently 15 pages long.
    All images are linked and all fonts have paragraph styles applied to them.
    I'm at the stage I want to check the document on my iPad to test run font sizes and their legibility.
    We have successfully been able to export the document as a jpg file but we really need the PDF format. When attempting this we get the above message.
    Sonia.

  • APEX on Oracle XE PDF printing produces: Format error: not a PDF or corrupted.

    Dear fellow Apexers and Oracle Gurus,
    I have the following configuration:
    Oracle XE 11gR2
    APEX 4.2.3.00.08
    Listener 2.0.5
    On this setup I can create workspaces and applications as I please.
    Now I want to print a PDF report.
    I have set up PDF printing to "Oracle Listener" in the "manage Instance" settings in the instance administration.
    I have created a classical report on the EMPLOYEES table (Select * from EMPLOYEES)
    and enabled PDF printing in the "Printing" area of the "Print Attributes" of the page.
    When I run the page I do get the "print" link on the bottom of the page.
    Clicking the link does produce a .PDF but showing this file triggers an error in my PDF reader: Format error: not a PDF or corrupted.
    Opening the .PDF file in a text editor reveals the corrupt content.
    %PDF-1.4
    %ª«¬
    Unknown function: gatherContextInfo
    The same setup works fine and produces the expected PDF file with the report on the following configuration:
    Oracle Vbox with Developer days image;
    DB 11gR2
    Upgraded to apex 4.2.3.00.08
    Listener 2.0.5
    Since the PDF shows "unknown function" I suspected the XE configuration to lack some of the necessary rights, maybe I forgot to configure the ACLs correctly.
    So I compared the ACL info on both configurations. Alas,.. on both machines they return the same result..
    SQL> SELECT * FROM DBA_NETWORK_ACLS
    HOST         LOWER_PORT    UPPER_PORT    ACL
    localhost    null          null           /sys/acls/local-access-users.xml
    *            null          null           /sys/acls/power_users.xml    
    SQL> select * from dba_network_acl_privileges
    ACL                                  PRINCIPAL      PRIVILEGE   IS_GRANT    INVERT
    /sys/acls/local-access-users.xml     APEX_040200    connect     true        false
    /sys/acls/power_users.xml            APEX_040200    connect     true        false 
    Anyone any idea why this works fine on the Vbox and not on the local XE configuration?
    Any hint or answer as to where the problem might be is appreciated
    TIA
    Wouter

    I'm having the same issue. I'm using Oracle XE 11gR2 as well. I've tried with APEX 4.2.2 and APEX 4.2.4. I have set up the Oracle Listener in instance settings and set the report to print and I have the same result as you. Have you had any progress yet?
    Thanks
    Jason

  • Sending Mail Content as Input to Java WebService through SOA

    Hi Experts,
    I am working on a SOA project in 11.1.1.6
    My project requirement is to send Mail Content (a paragraph with 3 lines with new lines in middle of statements) as input to the Java API which is deployed as webservice.
    To one of the arguments of the Java API, I need to pass this mail content as Input. Need your expert advice on the same. Thanks in Advance.
    Example of Mail Content:
    Hi,
    This is a Test Mail
    Thanks

    - create a new webservice in the composite and link it to your bpel
    - in your bpel invoke the partnerlink
    - to "format" you mail you could create a custom xsl which will create the mail in html format for you"
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="html"/>
    <xsl:template match="/">
    Hi,<br/>
    <br/>
    This is a Test Mail<br/>
    <br/>
    Thanks
    </xsl:template>
    </xsl:stylesheet>Or css and style the html email in a big cleaner way

  • Network message format error on Site Studio Designer

    Hi all,
    I am facing a very wierd issue in Site Studio. I have enabled accounts on the content server. When i use the content server User interface, i can check in any content using the standard check in form with or without specifying the account for it. In the case of Site Studio Designer, when i try to create a new asset/ content( basically check in anything) , it checks in the content successfully when the account metadata field is left blank. If the account field is specified, it gives me an error sayin :
    Failed to check in file from location "".
    (Network message format error).
    When i checked the content server logs, it says:
    The request was not processed by the Service handler because of a protocol error.
    The request headers parsed from the request are:
    {HTTP_USER_AGENT=Site Studio Designer, REQUEST_METHOD=POST, IdcAuthChallengeType=http, SERVER_NAME=punitp97194d.ad.infosys.com, SERVER_SOFTWARE=Apache/2.2.2 (Win32), HTTP_CGIPATHROOT=/idc/idcplg, HTTP_HOST=punitp97194d.ad.infosys.com, GATEWAY_INTERFACE=CGI/1.1, REMOTE_ADDR=10.76.135.190, SERVER_PROTOCOL=HTTP/1.1, SERVER_PROTOCOL_TYPE=NONE, IDC_REQUEST_AGENT=webserver, REMOTE_HOST=10.76.135.190, HTTP_CONNECTION=Keep-Alive, SERVER_PORT=80, HTTP_COOKIE=viscnt=3; IntradocLoginState=1; IdcTimeZone=Asia/Calcutta; IdcLocale=English-US; IntradocAuth=Internet, CONTENT_TYPE=text/hda, CONTENT_LENGTH=617, IDC_REQUEST_CTIME=1250602911, HTTP_INTERNETUSER=eBiz_Designer, SCRIPT_NAME=/idc/idcplg, PATH_TRANSLATED=D:/oracle/ucm/server/weblayout/idcplg}
    Network message format error. Unable to parse browser environment or content item. Unable to parse properties. Name-value pairs are missing an '='. Unable to parse properties. Name-value pairs are missing an '='. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !$The request was not processed by the Service handler because of a protocol error.<br>The request headers parsed from the request are:<br>{HTTP_USER_AGENT=Site Studio Designer\, REQUEST_METHOD=POST\, IdcAuthChallengeType=http\, SERVER_NAME=punitp97194d.ad.infosys.com\, SERVER_SOFTWARE=Apache/2.2.2 (Win32)\, HTTP_CGIPATHROOT=/idc/idcplg\, HTTP_HOST=punitp97194d.ad.infosys.com\, GATEWAY_INTERFACE=CGI/1.1\, REMOTE_ADDR=10.76.135.190\, SERVER_PROTOCOL=HTTP/1.1\, SERVER_PROTOCOL_TYPE=NONE\, IDC_REQUEST_AGENT=webserver\, REMOTE_HOST=10.76.135.190\, HTTP_CONNECTION=Keep-Alive\, SERVER_PORT=80\, HTTP_COOKIE=viscnt=3; IntradocLoginState=1; IdcTimeZone=Asia/Calcutta; IdcLocale=English-US; IntradocAuth=Internet\, CONTENT_TYPE=text/hda\, CONTENT_LENGTH=617\, IDC_REQUEST_CTIME=1250602911\, HTTP_INTERNETUSER=eBiz_Designer\, SCRIPT_NAME=/idc/idcplg\, PATH_TRANSLATED=D:/oracle/ucm/server/weblayout/idcplg}<br>--------------<br>Network message format error.!csUnableToParseBrowserEnvironment!syUnableToParsePairs!syUnableToParsePairs
    intradoc.data.DataException: !csUnableToParseBrowserEnvironment!syUnableToParsePairs
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:187)
    Caused by: java.io.IOException: !syUnableToParsePairs
         at intradoc.serialize.DataBinderSerializer.readProperties(DataBinderSerializer.java:625)
         at intradoc.serialize.DataBinderSerializer.parseProperties(DataBinderSerializer.java:601)
         at intradoc.serialize.DataBinderSerializer.parseReaderData(DataBinderSerializer.java:493)
         at intradoc.serialize.DataBinderSerializer.parsePost(DataBinderSerializer.java:1806)
         at intradoc.serialize.DataBinderSerializer.parseRequestBody(DataBinderSerializer.java:1065)
         at intradoc.data.DataSerializeUtils.parseRequestBody(DataSerializeUtils.java:112)
         at intradoc.server.ServiceManager.init(ServiceManager.java:128)
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:167)
    Please advice.
    Thanks in advance,
    Nithya

    The config .cfg entries are:
    <?cfg jcharset="UTF8"?>
    #Content Server System Properties
    IDC_Name=EBIZ
    IdcProductName=idccs
    SystemLocale=English-US
    InstanceMenuLabel=EBIZ
    InstanceDescription=STAGING SERVER
    SocketHostAddressSecurityFilter=*.*.*.*
    #Database Variables
    IsJdbc=true
    JdbcDriver=oracle.jdbc.OracleDriver
    JdbcConnectionString=jdbc:oracle:thin:@localhost:1521:EBIZ
    JdbcUser=EBIZ_admin
    JdbcPassword=ZS5CtJYdpcn2mEVqKVQAZ7LKQqacsT+XLnX3PZ/EKqo=
    JdbcPasswordEncoding=Intradoc
    DatabasePreserveCase=true
    #Internet Variables
    HttpServerAddress=punitp52975d.ad.infosys.com
    MailServer=192.168.170.26
    SysAdminAddress=[email protected]
    HttpRelativeWebRoot=/idc/
    CgiFileName=idcplg
    UseSSL=
    WebProxyAdminServer=true
    #General Option Variables
    IsOverrideFormat=false
    DownloadApplet=false
    MultiUpload=false
    IsAutoNumber=true
    EnableDocumentHighlight=false
    EnterpriseSearchAsDefault=false
    IsJspServerEnabled=false
    JspEnabledGroups=
    #Additional Variables
    UseAccounts=True
    IdcAdminServerPort=4440
    SearchIndexerEngineName=DATABASE.FULLTEXT
    IntradocServerPort=4444
    DatabaseType=oracle
    WebServer=apache
    and httpd.conf entries are:
    LoadModule IdcApacheAuth C:/Oracle/ucm/server/shared/os/win32/lib/IdcApache22Auth.dll
    IdcUserDB EBIZ "C:/Oracle/ucm/server/data/users/userdb.txt"
    <Location /idc>
    Order allow,deny
    Allow from all
    DirectoryIndex portal.htm
    IdcSecurity EBIZ
    </Location>
    <Location "/">
    IdcSecurity EBIZ
    </Location>
    EBIZ is our content server instance name.
    Thanks and Regards,
    Nithya

  • Network message format error. GET request must have a QUERY_STRING value

    I have installed new Content Server 10gR on my laptop.
    Web Server is : Apache 2.2.4
    DB is : Oracle 10g (Standard Edition)
    Platform : Windows
    CS is up & running. I am able to login and browse through content store. But when I try to perform any type of Submit operation anywhere in CS Portal ( for example "Updating My Profile and clicking on Submit" ) I get following error:
    "Network message format error. GET request must have a QUERY_STRING value (the CGI parameters on the URL) "
    1. Does any one know why I am getting this ?
    2. Is some configuration missing for Apache which connects Apache with CS ?
    Below is the httpd.conf changes:
    LoadModule IdcApacheAuth D:/oracle/ucm/idc/shared/os/win32/lib/IdcApache22Auth.dll
    IdcUserDB idc "D:/oracle/ucm/idc/data/users/userdb.txt"
    Alias /idc "D:/oracle/ucm/idc/weblayout"
    <Location /idc>
    Order allow,deny
    Allow from all
    DirectoryIndex portal.htm
    IdcSecurity idc
    </Location>
    3. One things that I see that before hitting the Submit button the URL is:
    http://delrpatha76669.sapient.com:8989/idc/idcplg/?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=HOME_PAGE&Auth=Internet
    And after hitting Submit button on "My Profile" the URL becomes:
    http://delrpatha76669.sapient.com:8989/idc/idcplg/
    I guess part of URL gets truncated/missed etc and so we are getting this error ?
    Any way to fix this ?
    Edited by: user12188052 on Sep 21, 2010 10:10 AM

    This issue is resolved.
    Cause
    - After installation when I started CS , I saw "D:\oracle\ucm\idc\weblayout\idcplg" folder missing error in logs. Reason why I created this "idcplg" folder inside "weblayout" folder was because I thought it was not created during installation. I created this folder & copied "idc_cgi_isapi.dll" this file into it.. This was the issue
    Fix
    - I deleted the folder "D:\oracle\ucm\idc\weblayout\idcplg" and everything started working fine now.

  • Home Page Date Format ERROR ...

    I installed language support on my Portal 3.0.9.8 with 3 different languages: us, i=italian, f
    but when i use the "i" language there are many problems with format date ...
    in the Portal Home Page i have a message like "date format not valid"
    and i have problems in the creation of the content area's items with the publish date.
    Any one have an idea ???

    HI All,
    I have check my own data date format.
    But when i tried to activate the cycle count under
    Menu path: 
    Materials Management > Inventory Management and Physical Inventory>Physical Inventory> Cycle Counting
    I will not put any date on it, that's why its weird that i get an date format error.
    Where this error came from?
    Thanks..

  • Format Error

    Hi friends,
    Im trying to print PDF report with Oracle APEX 4.0 by following the step by tutorial from the below link
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31rpt.htm_
    Inorder to print the report in PDF manner..i have made the following settings...These are the settings
    Under in print attributes i have given enable printing yes, view as inline, output as PDF and also i have given the respective Print URL....
    Soon after that change a print icon appear underneath the report column in the application...
    if i clicked the Print Icon, it has to print the report in PDF...
    But what the error im getting is.....Soon after pressing the Print Icon..
    Im getting the pop up window like
    A website wants to open web content using this program on your computer
    Name: foxit reader 3.2,best reader for every
    publisher: foxit s/w companyif i give ALLOW for that pop up means, im getting the error like..
    >format error: not a PDF or corrupted.....
    It is not opening the report in PDF...
    what may be the issue friends...Kindly help me...
    Thanks
    Sabi
    Edited by: Mini on Feb 10, 2011 8:19 PM

    The key to getting the iPod to install is to follow the instructions exactly (which you said that you did).
    Try this:
    DO NOT leave the iPod Connected to PC.
    Fully charge the iPod on ac before you start.
    1) Unistall the iPod software from the PC, reboot and install the iPod software.
    2)Reset the iPod.
    3) Run the Updater but do not connect the iPod until the Updater prompts you to do so.
    If this fails repeat from step two, but before connecting the iPod put it into disk mode.
    Also when the iPod is connected check that windows can see the iPod and that it has allocated a sensible drive letter to it (i.e. not A: - C:, not a letter used by any other device and not a letter used to map a network drive). If the iPod is using an inappropriate drive letter use Windows Disk Management to allocate a more sensible (and unused) drive letter perhaps I:.

  • How to modify the mail content in Spaces

    How can the default mail content dispatched from "Send Email" in Discussion Forum can be modified ? Please can someone guide on how this can be achieved?
    I need to modify the subject of the message being broadcasted to the Space members.
    Version WebCenter Spaces PS4 (no cutomizations have been done)

    Hi,
    Do you mean to read the mail content in R/3 inbox or UWL..?
    If in R/3 then SBWP transaction Unread Documents..
    If in UWL see notifications part.
    Please if this does not solve your problem> please elaborate on your problem
    Regards
    Sai

Maybe you are looking for