How do I add data to HTTP response headers in Tomcat?

Hello
I am in the process of making our site Platform for Privacy Preferences(P3P) compliant. We are running Tomcat 3.2.2(standalone) on a Linux box. I am looking for information regarding adding data to HTTP header responses(see example below). One of the aspects of P3P compliancy is referencing where a Policy is located and referencing the "Compact Policy" via the "CP" tag. I need to add these values and as I am
new to Tomcat I need know where to find the header information.
<!-- example -->
HTTP/1.1 200 OK
P3P: policyref="http://somesite.com/P3P/PolicyReferences.xml",
CP="NON DSP COR CURa ADMa DEVa CUSa TAIa OUR SAMa IND"
Content-Type: text/html
Content-Length: 8104
Server: ...
...content...
<!-- end example -->
Any suggestions would be appreciated.
Joe Dalessandro
e: [email protected]

Hmm... If you check your server.xml -file, you'll probably find that Tomcat has been configured to use org.apache.tomcat.service.http.HttpConnectionHandler as the connection handler (right under the "Connector classname" value)...
Would it be possible to tweak that handler or extend it in such a way that you could add your headers?
Unfortunately I don't work with Tomcat myself, otherwise I could try it...
If this seems too complicated, I'd just recommend you to install Apache, and do it there...

Similar Messages

  • How do i add data from database to JTable ! Urgent

    How do i add data from database to the columns of JTable?.

    hi,
    Thanks for ur link. but this is just a part of my application which i am developing user interface in swing package for which i want to know how to show data to user in the table format where by table input data will be from the database. say something like todays activity is shown to the user in table format... So u have any idea of how to do this...

  • [Forum FAQ] How to display an image from Http response in Reporting Services?

    Question:
    There is a kind of scenario that users want to display an image which is from URL. In Reporting Services, if the URL points to an image file, we can directly display it by typing the URL in embedded image. However, some URLs are just sending Http requests
    to server side, then redirect to another position and the server will return the image. For these kind of URLs, Reporting Services can’t directly render the image from Http response.
    Answer:
    To achieve this goal, we can add custom code into the report. Pass the URL as argument into our custom function so that we can create HttpRequest and get the HttpResponse. Then we can use custom function to return the Bytes() from the HttpResponse and render
    it into an image in report.
    Ps: In Reporting Services, it only support drawing Bytes() array into image, so we need to have our custom function return Bytes array.
    Add the assembly and custom code into the report.
    Public shared Function GetImageFromByte(Byval URL as String) As byte() 
                    Dim photo as System.Drawing.Image 
             Dim Request As System.Net.HttpWebRequest 
           Dim Response As System.Net.HttpWebResponse 
                  Request = System.Net.WebRequest.Create(URL)         
                     Response = CType(Request.GetResponse, System.Net.WebResponse) 
                 If Request.HaveResponse Then  
                      If Response.StatusCode = Net.HttpStatusCode.OK Then                    
                           photo = System.Drawing.Image.FromStream(Response.GetResponseStream) 
                     End If 
                 End If 
                  Dim ms AS System.IO.MemoryStream = new System.IO.MemoryStream() 
                 photo.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg) 
                    Dim imagedata as byte()  
                    imagedata = ms.GetBuffer()  
                    return imagedata
    End Function
    Grant the permission for assemblies. 
    Go to: 
    C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\RSpreviewPolicy.config 
    C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\rssrvpolicy.config
    Give “FullTrust” for Report_Expressions_Default_Permissions.
    Insert an image into report. 
    Expression:
    =Code.GetImageFromByte("https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSrVwPoAtlcA2A3KaiAJi-XjS4icr1QUnKYr7uzpX3IL3g2GPisAQ")
    The Result looks below:
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    >
    Hi, I'd like to display a dynamic image from the web inside a JLabel or any other swing component it could work in. I've been looking on the Swing tutorials and others forums, all I can have is that a JLabel can load an Icon object, defined by an image URL, but can this URL be like "http://xxxxx/image.jpg" somehow or can it only be a local image URL?>
    I do not know why you start talking about an image on the web then go on to show concerns about whether it will work for a 'local' URL.
    But perhaps this answer will cover the possibilities.
    So long as you can from an URL to the image, and the bytes are available for download (e.g. some web sites wrap a direct call to an image in HTML that embeds the image), the URL based icon constructors will successfully load it.
    It does not matter if that URL points to
    - a web site,
    - a local server ('localhost'),
    - an URL representation of a File on the local file system, or
    - it is inside a Jar file that is on the application's run-time classpath.
    How you go about forming a valid URL to a 'local resources' (or indeed what you regard as local resources) is another matter, depending on the form of the project, and how the resources are stored (see list above).
    Probably the main reason that examples use images at a hard coded URL on the net is that it makes an 'image example' self contained. As soon as we compile and run it, we can see the result. I have posted a few examples like that on these forums.
    Edit 1:
    BTW - Welcome to the Sun forums
    Edited by: AndrewThompson64 on Apr 21, 2009 12:15 PM

  • How can I add date to photos taken on my iphone 4s

    How can I add a date to photos taken on my iphone 4s?

    That's correct - Photos supports geotagging, but only allows viewing of that information. Once an image is in Photos, geotags cannot be added, deleted, or edited. This post suggests some apps for editing geotags outside of the Photos app. As you mentioned, you can edit the geotags in iPhoto, export to the finder and then import to Photos. I would guess (and hope!) we'll see this added in an update, and hopefully soon!

  • How would I add data to this DB?

    CREATE TABLE "ASSESMENT_TYPE"
    (     "ASSESMENT_TYPE" VARCHAR2(15),
    "ASSESMENT_DESCRIPTION" VARCHAR2(70),
    CONSTRAINT "ASSESMENT_TYPE_PK" PRIMARY KEY ("ASSESMENT_TYPE") ENABLE
    CREATE TABLE "COURSE"
    (     "COURSE_NO" NUMBER,
    "COURSE_NAME" VARCHAR2(30),
    "COURSE_START_DATE" DATE,
    "COURSE_END_DATE" DATE,
    "TOTAL_UNITS" NUMBER,
    "COURSE_COORDINATOR_STAFF_NO" NUMBER,
    "TOTAL_COURSE_COST" NUMBER,
    "THIRD_PARTY_SUPPLIER_NO" NUMBER,
    CONSTRAINT "COURSE_PK" PRIMARY KEY ("COURSE_NO") ENABLE,
    CONSTRAINT "COURSE_CON_FK" FOREIGN KEY ("COURSE_COORDINATOR_STAFF_NO")
    REFERENCES "EMPLOYEE" ("EMPLOYEE_NO") ENABLE,
    CONSTRAINT "THPARTY_SUPPLIER_FK" FOREIGN KEY ("THIRD_PARTY_SUPPLIER_NO")
    REFERENCES "THIRD_PARTY_SUPPLIER" ("THIRD_PARTY_SUPPLIER_NO") ENABLE
    CREATE TABLE "COURSE_OUTCOME"
    (     "COURSE_OUTCOME" VARCHAR2(5),
    "COURSE_OUTCOME_DESCRIPTION" VARCHAR2(25),
    CONSTRAINT "COURSE_OUTCOME_PK" PRIMARY KEY ("COURSE_OUTCOME") ENABLE
    CREATE TABLE "DEPARTMENT"
    (     "DEPARTMENT_NO" NUMBER,
    "DEPARTMENT_NAME" VARCHAR2(50),
    "DEPARTMENT_LOCATION" VARCHAR2(150),
    "DEPT_MANAGER_NO" NUMBER,
    CONSTRAINT "DEPARTMENT_PK" PRIMARY KEY ("DEPARTMENT_NO") ENABLE,
    CONSTRAINT "DEPTMANNO_FK" FOREIGN KEY ("DEPT_MANAGER_NO")
    REFERENCES "EMPLOYEE" ("EMPLOYEE_NO") ENABLE
    CREATE TABLE "EDUCATIONAL_INSTITUTION"
    (     "SCHOOL_UNIVERSITY_NAME" VARCHAR2(100),
    "SCHOOL_UNIVERSITY_ADDRESS" VARCHAR2(200),
    CONSTRAINT "EDUCATIONAL_INSTITUTION_PK" PRIMARY KEY ("SCHOOL_UNIVERSITY_NAME") ENABLE
    CREATE TABLE "EMPLOYEE"
    (     "EMPLOYEE_NO" NUMBER,
    "EMPLOYEE_NAME" VARCHAR2(50),
    "EMPLOYEE_ADDRESS" VARCHAR2(150),
    "JOB_DESCRIPTION" VARCHAR2(50),
    "STATUS" VARCHAR2(15),
    "START_DATE" DATE,
    "SALARY_CODE" NUMBER,
    "SUPERVISOR_EMPLOYEE_NO" NUMBER,
    "DEPARTMENT_NO" NUMBER,
    CONSTRAINT "EMPLOYEE_PK" PRIMARY KEY ("EMPLOYEE_NO") ENABLE,
    CONSTRAINT "SALARYCODE_FK" FOREIGN KEY ("SALARY_CODE")
    REFERENCES "SALARY" ("SALARY_CODE") ENABLE,
    CONSTRAINT "SUPEMNO_FK" FOREIGN KEY ("SUPERVISOR_EMPLOYEE_NO")
    REFERENCES "EMPLOYEE" ("EMPLOYEE_NO") ENABLE,
    CONSTRAINT "EMDEPNO_FK" FOREIGN KEY ("DEPARTMENT_NO")
    REFERENCES "DEPARTMENT" ("DEPARTMENT_NO") ENABLE
    CREATE TABLE "EMPLOYEE_COURSE_OUTCOME"
    (     "EMPLOYEE_NO" NUMBER,
    "COURSE_NO" NUMBER,
    "COURSE_OUTCOME_CODE" VARCHAR2(5),
    "COURSE_EMPLOYEE_MARK" NUMBER,
    CONSTRAINT "EMPLOYEE_COURSE_OUTCOME_PK" PRIMARY KEY ("EMPLOYEE_NO", "COURSE_NO") ENABLE,
    CONSTRAINT "EM_FK" FOREIGN KEY ("EMPLOYEE_NO")
    REFERENCES "EMPLOYEE" ("EMPLOYEE_NO") ENABLE,
    CONSTRAINT "EMPLOYEE_COURSE_FK" FOREIGN KEY ("COURSE_NO")
    REFERENCES "COURSE" ("COURSE_NO") ENABLE,
    CONSTRAINT "EMPLOYEE_COURSE_OCODE_FK" FOREIGN KEY ("COURSE_OUTCOME_CODE")
    REFERENCES "COURSE_OUTCOME" ("COURSE_OUTCOME") ENABLE
    CREATE TABLE "EMPLOYEE_COURSE_UNIT_OUTCOME"
    (     "EMPLOYEE_NO" NUMBER,
    "COURSE_NO" NUMBER,
    "UNIT_NO" NUMBER,
    "UNIT_OUTCOME_CODE" VARCHAR2(5),
    "EMPLOYEE_UNIT_MARK" NUMBER,
    CONSTRAINT "EMPLOYEE_CUO_PK" PRIMARY KEY ("EMPLOYEE_NO", "COURSE_NO", "UNIT_NO") ENABLE,
    CONSTRAINT "EMPCU_FK" FOREIGN KEY ("EMPLOYEE_NO")
    REFERENCES "EMPLOYEE" ("EMPLOYEE_NO") ENABLE,
    CONSTRAINT "EMCU-FK" FOREIGN KEY ("UNIT_NO")
    REFERENCES "UNIT" ("UNIT_NO") ENABLE
    CREATE TABLE "EMPLOYEE_CRS_UNIT_ASSESMENT"
    (     "EMPLOYEE_NO" NUMBER,
    "COURSE_NO" NUMBER,
    "UNIT_NO" NUMBER,
    "ASSESMENT_TYPE" VARCHAR2(15),
    "EMPLOYEE_ASSESMENT_MARK" NUMBER,
    CONSTRAINT "EMPLOYEE_CRS_PK" PRIMARY KEY ("EMPLOYEE_NO", "COURSE_NO", "UNIT_NO") ENABLE
    CREATE TABLE "EMPLOYEE_QUALIFICATION"
    (     "EMPLOYEE_NO" NUMBER,
    "QUALIFICATION_TYPE" VARCHAR2(5),
    "SUBJECT" VARCHAR2(20),
    "GRADE" NUMBER,
    "SCHOOL_UNIVERSITY_NAME" VARCHAR2(100),
    "AWARDING_BODY" VARCHAR2(50),
    "DATE_QUALIFICATION_OBTAINED" NUMBER,
    CONSTRAINT "EMPLOYEE_QUALIFICATION_CON_PK" PRIMARY KEY ("EMPLOYEE_NO", "QUALIFICATION_TYPE", "SUBJECT") ENABLE,
    CONSTRAINT "DEPTNO_FK" FOREIGN KEY ("EMPLOYEE_NO")
    REFERENCES "EMPLOYEE" ("EMPLOYEE_NO") ENABLE,
    CONSTRAINT "EMQUALREF_FK" FOREIGN KEY ("QUALIFICATION_TYPE")
    REFERENCES "QUALIFICATION_TYPE" ("QUALIFICATION_TYPE") ENABLE,
    CONSTRAINT "SCHUNINAME_FK" FOREIGN KEY ("SCHOOL_UNIVERSITY_NAME")
    REFERENCES "EDUCATIONAL_INSTITUTION" ("SCHOOL_UNIVERSITY_NAME") ENABLE
    CREATE TABLE "QUALIFICATION_TYPE"
    (     "QUALIFICATION_TYPE" VARCHAR2(5),
    "QUALIFICATION_DESCRIPTION" VARCHAR2(25),
    CONSTRAINT "QUALIFICATION_TYPE_PK" PRIMARY KEY ("QUALIFICATION_TYPE") ENABLE
    CREATE TABLE "SALARY"
    (     "SALARY_CODE" NUMBER,
    "SALARY_AMOUNT" NUMBER,
    CONSTRAINT "SALARY_PK" PRIMARY KEY ("SALARY_CODE") ENABLE
    CREATE TABLE "THIRD_PARTY_SUPPLIER"
    (     "THIRD_PARTY_SUPPLIER_NO" NUMBER,
    "THIRD_PARTY_NAME" VARCHAR2(100),
    "THIRD_PARTY_CONTACT_NAME" VARCHAR2(100),
    CONSTRAINT "THIRD_PARTY_SUPPLIER_PK" PRIMARY KEY ("THIRD_PARTY_SUPPLIER_NO") ENABLE
    CREATE TABLE "UNIT"
    (     "UNIT_NO" NUMBER,
    "UNIT_NAME" VARCHAR2(30),
    "UNIT_COST" NUMBER(7,2),
    CONSTRAINT "UNIT_PK" PRIMARY KEY ("UNIT_NO") ENABLE
    CREATE TABLE "UNIT_OUTCOME"
    (     "UNIT_OUTCOME_CODE" VARCHAR2(5),
    "UNIT_OUTCOME_DESCRIPTION" VARCHAR2(25),
    CONSTRAINT "UNIT_OUTCOME_PK" PRIMARY KEY ("UNIT_OUTCOME_CODE") ENABLE
    I need to add 10 people to this database, all im getting is blooody errors. Someone please help! I am having trouble due to constraints and so on.
    Thanks
    Ollie

    I would make this one as answered if it was directly the same as the other, however that one I do need to makr an answered as the point of that one was for someone to decipher an error message, this one is asking how i would insert the following data into the database, I shall mark the other one as answered now.
    insert into department values (01, 'Management', 'London',01);
    insert into department values (02, 'Programming', 'Surrey', 02);
    insert into department values (03, 'Cleaning', 'London', 03);
    insert into department values (04, 'Data Analysis', 'London', 04);
    insert into department values (05, 'Cleaning', 'Surrey', 05);
    insert into department values (06, 'Reception', 'London', 06);
    Insert into department values (07, 'Reception', 'Surrey', 07);
    commit;
    insert into salary values (1, 100000);
    insert into salary values (2, 75000);
    insert into salary values (3, 60000);
    insert into salary values (4, 40000);
    insert into salary values (5, 30000);
    insert into salary values (6, 20000);
    commit;
    insert into employee values (0002, 'Mitch Vaughan', '145A Green Street', 'Administrator','Active','01-December-2010', 1,1,1);
    insert into employee values (0001, 'Ollie Marriott', '12 Ghetto Road', 'Administrator','Active','02-December-2010', 2,2,1);
    insert into employee values (0003, 'Tim Reynolds', '12 Shoebury Way', 'Cleaner','Inactive','02-December-2000', 3,0002,3);
    insert into employee values (0004, 'Tom Watson', '90 Seymour Road', 'Data Analyst','Active','10-December-2008', 4,0001,04);
    insert into employee values (0005, 'Wajj Queda', '125 Hamlet Court', 'Cleaner','Active','15-September-2007', 5,0001,05);
    insert into employee values (0006, 'Nathan Mann', '33a Bushey Hill Road', 'Receptionist','Active','02-December-2010', 6,0004,06);
    insert into employee values (0007, 'Tim DeLong', '34 Buena Vista Drive', 'Receptionist', 'Active','21-December-2010',7,1,06);
    commit;
    insert into course values (1, 'BSC degree', '10-October-2005', '10-July-2008', 5, 10000', 1);
    insert into course values (1, 'BSC degree', '11-October-2006', '11-July-2009', 5, 11000, 1);
    insert into course values (2, 'A-levels', '30-September-1997', 30-August-1999', 3, 0, 2);
    insert into course values (3, 'GCSE's', '10-September-1979', '10-August-1981', 8, 0, 3);
    insert into course values (3, 'GCSE's', '14-September-1988', '14-August-1990', 5, 0, 3);
    insert into course values (2, 'A-levels', '12-September-2005', '12-August-2007', 4, 0, 2);
    insert into course values (4, 'BSC degree', '10-October-2000', '10-July-2003', 5, 9000, 1);
    commit;
    insert into course_outcome values ('First', 'Excellent');
    insert into course_outcome values ('First', 'Excellent');
    insert into course_outcome values ('A-B-B', 'Good');
    insert into course_outcome values ('5A*-C', 'Fair');
    insert into course_outcome values ('5A*-C', 'Fair');
    insert into course_outcome values ('B-B-B', 'Good');
    insert into course_outcome values ('2/1', 'Great');
    commit;
    insert into educational_institution values ('Nottingham Trent', 'Clifton Lane-Clifton Campus-Nottingham');
    insert into educational_institution values ('Sheffield Uni', 'Uni Road-Sheffield');
    insert into educational_institution values ('none', 'none');
    insert into educational_institution values ('none', 'none');
    insert into educational_institution values ('none', 'none');
    insert into educational_institution values ('none', 'none');
    insert into educational_institution values ('Nottingham Trent', 'Clifton Lane-Clifton Campus-Nottingham');
    commit;
    insert into employee_course_outcome values (1,
    insert into employee_course_outcome values (1,
    insert into employee_course_outcome values (3,
    insert into employee_course_outcome values (4,
    insert into employee_course_outcome values (4,
    insert into employee_course_outcome values (3,
    insert into employee_course_outcome values (2,
    The progblem is all my contraints are making it impossible to add data!

  • How i can add data to the dev ?

    hello  ,
    we have  dev / qa / prod .
    the problem is that the "dev" don’t have enough data and we need
    to pass the development to the qa for any simple test  .
    is it possible to insert data just to the tables without erase or make
    damage to the existing  programs/develops ?

    //the problem is that the "dev" don’t have enough data and we need
    to pass the development to the qa for any simple test .
    How much is the data content to be created into the table ?
    For unit testing is this a report or what program is to be run in the QA?
    Can u elaborate the query in this regard?
    //is it possible to insert data just to the tables without erase or make
    damage to the existing programs/develops ?
    Are u trying to transport the table with entries into QA for just testing purpose ?
    confirm this .
    in my opinion if at all the entries are required to test some scenario
    like say one or two max 5 per scenario ,
    can't u create some entries in debugging itself by appending the entry in ur QA itself .
    regards,
    vijay.

  • How to post xml data on http trafic

    Broker lisiting this http://localhost:7080/testHTTP
    i need to send data to the above http in XML formatt...
    bellow my JSP once submit the page the data should come on URL in this format
    http://localhost:7080/testHTTP?<data><name>BASHER</name><cell>123</cell></data>
    <HTML>
    <HEAD>
    <TITLE>test</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
    function mailMe(){
    name=document.testform.inputbox1.value
    cell= document.testform.inputbox2.value
    document.testform.action="http://localhost:7080/testHTTP<data>" + name + "<name></name><address></address></data>";
    //document.testform.action="http://localhost:7080/testHTTP<data><name>BASHER</name><cell>123</cell></data>";
         I need data in URL like bellow
         http://localhost:7080/testHTTP?<data><name>BASHER</name><cell>123</cell></data>
    document.testform.submit();
    </SCRIPT>
    </HEAD>
    <BODY>
    <FORM NAME="testform">
    Name: <BR><INPUT TYPE="text" NAME="inputbox1" VALUE="BASHER" SIZE=50><P>
    Cell NO: <BR><INPUT TYPE="text" NAME="inputbox2" VALUE="123" SIZE=50><P>
    <INPUT TYPE="button" VALUE="Send Mail" onClick="mailMe()"><BR>
    </FORM>
    </BODY>
    </HTML>

    Conclusion from my point of view:
    1) You cannot have this thing interactive if you want to work with all the features of OM, if you want to cover all the details. In that case you need to create some tool for drawing the pictures for you and then only send the picture into the form. If anybody would like to do the changes you would add the table at the bottom of the page where a guy can say something like "chair A move under the big banana B" or "fire Mr. C, remove the position of Mr. C". That is probably the thing I would go for
    2) I am afraid you or your employer do not understand how the Adobe forms work. This is possible, but as I said before, that would be a nightmare for the developer (I cannot tell the price, would start with like 20 MDs).
    3) If you would like to mimic some existing solution and don´t want to buy that, then it´s ok for me. But don´t try to re-create the existing .NET or Java stuff in ABAP. I am skilled Java programmer and I can tell the freedom and the speed of the development is quite different. If the customer/ boss insist on developing such thing, use WEB development, go for PURE JAVA (I would go this way), use Java Connector in a JSP/ J2EE stuff and then incorporate the result into the portal.
    Hope that clarifies the problem a little,
    regards Otto

  • .How can I add data from one list to other in Jsp Page

    Hi..I have three multiple selection ListBox..I want to add the selected item from 2 list boxes to 3rd list box how can i do that..do i need to write javascript? If possible then suggest me some link where i can get help?
    Thanks
    Regards
    Chintan

    Yep, Javascript.
    Unless you want to post the data to the server and then rewrite the page (ie. jsp/servlets) then you are going to need to use a client side script to modify the page.
    Javascript. You need to get the onClick() event of one list box and get the item that was clicked. then you can rewrite the 3rd list box.
    If possible, try doing a search on google. Or do you want someone to hold your hand.

  • How to merge source data with RFC response and post back again as Idoc

    Hi All,
    This is the requirement we have for an interface
    The legacy application is sending Vendor master to PI 7.0
    If it is new vendor then it is send as an Cremas Idoc into SAP. Legacy (New Vendor) -
    > PI 7.0  -
    >Cremas Idoc SAP
    If it is changed Vendor legacy will only send changed fields for that Vendor.In PI we would like to call an RFC which will return all the data for that changed Vendor Number and then merge the RFC response with changed data from legacy and then send it to SAP as Cremas Idoc again with all values.
    I know these can be achieved using Proxy by custom Abap Code in SAP.But we would like to avoid it.
    How can we achieve it?
    1.RFC lookup - Shall we use these , when PI receives changed Vendor from legacy ,it will call RFC using RFC lookup and the response message from RFC lookup should be merged with source data .Is this possible?
    2.Shall we achieve this using BPM ?Is it feasible and How?
    Any Help greatly appreciated
    Thanks,
    V

    If it is changed Vendor legacy will only send changed fields for that Vendor.In PI we would like to call an RFC which will return all the data for that changed Vendor Number and then merge the RFC response with changed data from legacy and then send it to SAP as Cremas Idoc again with all values.
    I am not sure why you want to pull whole data from R3 and send back to R3.
    you can follow any of these approach..
    if you have any indicator for new/ changed cusotmer in the legacy data then trigger CREMAS IDoc accordingly.
    mapping rules will be diffrent for New and changed CREMAS idoc.
    otherwise just do RFC look up for each record then based on the output(new/changed) create or update cusotmer data through CREMAS IDoc.
    when changing the customer through CREMAS no need to pass whole data again. it is enough if pass the changed fields. offcourse qualifier values  for segments will differ.

  • How do You add dates to calander

    like how do you put something on a specifc date on ur ipod calander and be able to veiw it through your ipod?
    PLEASE HELP!!!!
    eh   Windows XP  

    If you have Outlook...
    http://docs.info.apple.com/article.html?artnum=302269
    If not...
    http://docs.info.apple.com/article.html?artnum=93678
    You could use Mozilla Sunbird...
    http://www.mozilla.org/projects/calendar/sunbird/
    btabz

  • How do I add data to an existing file, without having to create a new one?

    Hi,
    I made a servlet which is supposed to write the word "new" in a file everytime the server creates an instance:
    File chatInfos = new File("LOCATION_OF_THE_FILE/infos.dat");
       if(chatInfos.exists()) {
        try {
        FileOutputStream fos = new FileOutputStream(chatInfos);
        ObjectOutputStream os = new ObjectOutputStream(fos);
        os.writeObject("new");
        os.close();
        fos.close();
        } catch(IOException e){};
       }But it doesnt work. It seems like that every time the old file is destroyed and a new one is created. But I dont want that. I simply want to add a new object to the file.
    thanx

    http://java.sun.com/j2se/1.4.1/docs/api/java/io/FileOutputStream.html#FileOutputStream(java.io.File, boolean)
    Kind regards,
    Levi

  • How to avoid version information in http response

    Hi,
    We have a SAP java web application in webdynpro framework developed using SAP NetWeaver.
    If I right click on broswer and see View Source of the page, it is displaying information related to Development components, java version, SAP version etc..
    I am very new to SAP and would like to know how to avoid the information.
    I have already tried setting useServerHeader to false and DevelopmentMode to False in SAP J2EE engine.
    Below is the information displayed in the view source.
    This page was created by SAP NetWeaver. All rights reserved.
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E), client type: msie7, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Accessibility mode: false
    Web Dynpro runtime:
    Vendor: SAP, build ID: 7.0026.20120524121557.0000 (release=NW04S_26_REL, buildtime=2012-05-24:14:38:29[GMT+00:00], changelist=141071, host=VMW4330.wdf.sap.corp), build date: Fri Nov 16 03:56:13 CET 2012
    Web Dynpro code generators of DC
    SapDictionaryGenerationCore: 7.0021.20091119120521.0000 (release=NW04S_21_REL, buildtime=2009-12-11:15:55:08[UTC], changelist=76328, host=PWDFM114.wdf.sap.corp)
    J2EE Engine:
    7.00 PatchLevel 129925.450
    Java VM:
    SAP Java Server VM, version: 4.1.024 21.1-b02, vendor: SAP AG
    Operating system:
    Linux, version: 2.6.32-131.17.1.el6.x86_64, architecture: amd64
    Hope I explained the issue and thank you so much in advance..

    Or
    Have a look and these query on WD and portal
    refer; Disabling the Right click functionality in the Detailed Navigation?
    Disable WD ABAP default context menu
    Remove / Hide standard right click menu in Web Dynpro ABAP application
    Regd Right click functionality in portal

  • How to access/add data in windows registry[regedit]

    Sir,
    We are making a trial version software. How can we register this software with our own specified data eg product name, duration, duration left, account no.etc in windows or any other os registry.

    jdk 1.4 preferences

  • How can you add data from a variable into a column in a data flow?

    I need to populate a table with data from a variable. The data type of the variable is String. I'm running into issues doing it the way I am. I have variable
    User:VariableName = "Some moderately sized string of data"
    When I try to use a Derived Column Transformation Editor to insert the variable into the data flow as a new column, SSIS forces the Data Type to be Unicode String[DT_WSTR] and I can't change it. Additionally the length is 0 and I also can't change that.
    When I run the package it errors with a truncation error. If the length is 0 then that makes sense but then why can't I change it to something that makes more sense?
    What is the correct way to go about this?

    Use advanced editor to change data type and length.
    http://www.sureshjoshi.com/development/ssis-string-variables-in-derived-columns/

  • How do I add date/time to my 6120? Can't locate in manual? Thanks

    Solved!
    Go to Solution.

    Hello Moe.
    Unfortunately, the date and time cannot be programmed into the PIXMA MG6120.  I apologize for this inconvenience.
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

Maybe you are looking for

  • Lack of good functionality for iPod Nano alarm timer?

    Hi, I'm the proud new owner of a Gen 2 - 2GB Nano, and I had figured that between the Sleep function, the Alarm function, and the Stopwatch function, it would be something I could use to listen to music while working out, and at the same time use it

  • My safari keeps quitting unexpectedly

    How do I keep my safari from quitting unexpectedly? I have relaunched, reset, and force quit without success. I quits each time after about 10-20seconds.

  • Error when I put a component in the stage and I change any property

    Hello I'm using Flash CS4, as3 and adobe air file. I have an application with 3 scenes, first scene to login, second to set up, and third to see an video. The problem is that, when I put a component in the second or third scene, if a change any prope

  • Windows Live Mail not connceting with BT email

    Hi After 11 weeks trying to get help from BT I managed to get my BT email working, sort of. The problem I'm left with is that Windows Live Mail will not connect to it, an error message of user or password not recognised appears. I've read various mes

  • What .ora file is required for client?

    what .ora file is required on client side in order to connect to oracle database server? can we connect to db server without any .ora file? such as tnsname.ora, or even sqlnet.ora, etc.