Remote Persistency And Entity Services References

Hi Guys,
I try to build a composite service with remote persistency (via webservices). There are several tuturials explainig it:
81 Using a Web Service as External Service
85 Using RFCs as External Services
95 Implementing Remote Persistency with CAF and RFCs
This is no problem at all, when only using one entity service or several entity service with no relations to each other. But for an demo application I try to create two entity services ("Main" and "Sub") and the "Main" entity service should have a relation to "Sub".
What I try:
1.) Create the entity services "main" with an own id.
2.) Create the entity services "sub" with an own id.
3.) Open the attributs for main again and create an relation to the entity service sub (via add button).
4.) deactivate "local persistency" for every entity service
5.) create the mapping for the read and find by operations.
But how can I "teach" my application the relation between these entity services? A look into the sql database shows an empty relation table and the pattern "relation tab" is empty, too.
I try to create a findby operation for the entity service "sub" like "findByMainID". But the attribut list only shows attributs of the "sub" entity service.
Are entity service relations working with remote persistency?
Kind regards
Martin

Hi Austin,
thank you for you answer. But the findBy operation is only one problem. The main problem is the missing option to map a webservice to a reference/relationship. Due this fact the application has no chance to know which child record is part of which main record or which main record is parent of which child record. As a result I have two totaly isolated entity services which doesnt know, that they relate to each other. The application has no information about the relationship.
When I create only one entity service with a complex attribute for child attributs I didn't have the these problem. I could map parameters to the (parent) attributs of the entity service and the (child) attributs of the complex attributes in the same step. In this way the application have informations about the relationship between parent and child records. For example a web service for the read operation could return exactly one record for the attributs of the parent entity service and a list of records to the child attributes (modelled as complex attributs) in case of a 0...n cardinality. I think there must be a solution like this for two entity services with a relationship between each other.
Do you understand my problem? Maybe I've missunderstood something. But what?
Thank you
Martin

Similar Messages

  • Obejct key mismatch between webservice and entity service

    Hi
    I created one web service using entity service in one caf project. Now i created another project. I have one entity service in this project which is using the previous web service. when i am testing my second project using service browser, I am getting object key values which are different from what i am getting using web service browser.
    Anyone has any idea regarding this?
    Regards
    Saurabh

    Hi Sauragb,
    the different object keys is normal, because even when you apply remote persistency caf core stores the "startup" attributes in an database. So when using a entity service you will always have attributes like key, createdBy, lastChangedBy... stored in lokal CAF Database.
    And that's why you have different keys.
    best Regards,
    Rene

  • Persistency in entity service

    Hi all,
    am facing a problem with entity servie persistence.
    I have created an entity service and am accessing this service in a webdynpro component. I have created all the UI elements(view) i need.I also bound these elements to the context.I also added parameters to the"CREATE" method which is built in method of entity service.But  If i want to store the data in local persistency,the "CREATE "method is not allowing to do so....Is there any way to access that "CREATE" method in my application...plz help me out.....
    points will be awarded....................

    Hi,
    you have to publish your busniss object as webservice.
    Than create a Webservice Destination in your NWA.
    Now you should import the Webservice as model in your WebDynpro Project.
    So you can use your entity service in your WebDynpro Apllication.
    regards,
    robin

  • Basic auth with RESTful WEb service and Web Service reference

    Hi, All,
    We have made much progress on getting an application working wtih RESTful web services but now are trying to figure out how to lock down a RESTful Web service while making it available for a particular application.
    We are using one of the sample 'emp' table web services that come with Apex 4.2 and are trying to apply Basic Auth to the WEb Service via Weblogic filter defined in the web.xml file. That works fine. I now get challenged when I try to go to :
    https://wlogic.edu/apex/bnr/ace/hr/empinfo/
    And when I authenticate to that challenge I am able to get the data. (we are usiing LDAP authentication at the Weblogic level)
    However, I am not sure how to get same basic authentication to work with the Web Service reference in my application. I see the error message in the application when I try to call that Web Service:
    401--Unauthorized<
    And I see:
    "The request requires user authentication. The response MUST include a WWW-Authenticate header field (section 14.46) containing a challenge applicable to the requested resource. The client MAY repeat the request with a suitable Authorization header field (section 14.8). If the request already included Authorization credentials"
    How do I provide the credentials in the Web REference or do I provide credentials in the Application?
    Web service works fine if I remove the RESTful web service basic auth from the Web.xml file.
    Should we NOT use Weblogic basic auth and instead use basic auth from Workspace RESTful web service definition. If so, how do we implement THAT basic auth in the Web Service definition and in the Web SErvice Reference on the application?
    Thanks,
    Pat

    What I mean is diid you try to use the PL/SQL package for APEX webservice. Here is an example I use (modified and shortened, just to show how much better this is than to use it from the application).
    CREATE OR REPLACE PACKAGE webservice_pkg
    IS
       PROCEDURE create_webservice (
          p_id            IN       NUMBER,
          p_message       OUT      VARCHAR2,
          p_workspace     IN       VARCHAR2 DEFAULT 'MY_WORKSPACE',
          p_app_id        IN       NUMBER DEFAULT v ('APP_ID'),
          p_app_session   IN       VARCHAR2 DEFAULT v ('SESSION'),
          p_app_user      IN       VARCHAR2 DEFAULT v ('APP_USER')
    END webservice_pkg;
    CREATE OR REPLACE PACKAGE BODY webservice_pkg
    IS
       PROCEDURE set_credentials (
          p_workspace     IN   VARCHAR2,
          p_app_id        IN   NUMBER,
          p_app_session   IN   VARCHAR2,
          p_app_user      IN   VARCHAR2
       IS
          v_workspace_id   NUMBER;
       BEGIN
          SELECT workspace_id
            INTO v_workspace_id
            FROM apex_workspaces
           WHERE workspace = p_workspace;
          apex_util.set_security_group_id (v_workspace_id);
          apex_application.g_flow_id := p_app_id;
          apex_application.g_instance := p_app_session;
          apex_application.g_user := p_app_user;
       END set_credentials;
       PROCEDURE create_webservice (
          p_id            IN       NUMBER,
          p_message       OUT      VARCHAR2,
          p_workspace     IN       VARCHAR2 DEFAULT 'MY_WORKSPACE',
          p_app_id        IN       NUMBER DEFAULT v ('APP_ID'),
          p_app_session   IN       VARCHAR2 DEFAULT v ('SESSION'),
          p_app_user      IN       VARCHAR2 DEFAULT v ('APP_USER')
       IS
          v_envelope          VARCHAR2 (32000);
          v_server            VARCHAR2 (400);
          v_url               VARCHAR2 (4000);
          v_result_url        VARCHAR2 (1000);
          v_collection_name   VARCHAR2 (40)    := 'PDF_CARD';
          v_message           VARCHAR2 (4000);
          v_xmltype001        XMLTYPE;
       BEGIN
          v_url := v_server || '.myserver.net/services/VisitCardCreator?wsdl';
          FOR c IN (SELECT *
                      FROM DUAL)
          LOOP
             v_envelope :=
                   '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" '
                || 'xmlns:bran="http://www.myaddress.com">'
                || CHR (10)
                || '<soapenv:Header/><soapenv:Body>'
                || CHR (10)
                || '<parameter:'
                || 'some_value'
                || '>'
                || CHR (10)
                || '<bran:templateID>'
                || p_id
                || '</bran:templateID>'
                || '</soapenv:Body>'
                || CHR (10)
                || '</soapenv:Envelope>';
          END LOOP;
          set_credentials (p_workspace, p_app_id, p_app_session, p_app_user);
          BEGIN
             apex_web_service.make_request
                                         (p_url                  => v_url,
                                          p_collection_name      => v_collection_name,
                                          p_envelope             => v_envelope
             p_message := 'Some message.';
          EXCEPTION
             WHEN OTHERS
             THEN
                v_message :=
                      v_message
                   || '</br>'
                   || 'Error running Webservice Request. '
                   || SQLERRM;
          END;
          BEGIN
             SELECT    v_result_url
                    || EXTRACTVALUE (VALUE (t),
                                     '/*/' || 'Return',
                                     'xmlns="http://www.myaddress.com"'
                    xmltype001
               INTO v_result_url,
                    v_xmltype001
               FROM wwv_flow_collections c,
                    TABLE
                        (XMLSEQUENCE (EXTRACT (c.xmltype001,
                                               '//' || 'Response',
                                               'xmlns="http://www.myaddress.com"'
                        ) t
              WHERE c.collection_name = v_collection_name;
          EXCEPTION
             WHEN OTHERS
             THEN
                v_message := v_message || '</br>' || 'Error reading Collection.';
          END;
       EXCEPTION
          WHEN OTHERS
          THEN
             p_message := v_message || '</br>' || SQLERRM;
       END create_webservice;
    END webservice_pkg;
    /If you use it this way, you will find out what the problem is much faster.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Composite Deployments and web service references

    Hi,
    I have a composite application that contains external references to the human task web services hosted on our development server; this means that my composite.xml file contains imports to http://mydevserver:8001/ integration/services/TaskQueryService/TaskQueryService?WSDL.
    When deploying the composite to mydevserver either through JDeveloper or using the ant script it works fine.
    Now I want to make sure that we can deploy the composite to another server, so I have created a configuration plan that replaces all references to http://mydevserver:8001 with http://anotherdevserver:7001
    When I run ant-sca-deploy on anotherdevserver I get the following in the ant output and the ant-sca-compile log file (/tmp/out.err):
    Load of wsdl "http://mydevserver:8001/.../....wsdl" failed
    oracle.fabric.common.FabricException: Error in getting XML input stream: http://mydevserver:8001/.../....wsdl: Connection timed out
    This occurs when the script tries to validate the composite.
    It appears this is caused by the fact that anotherdevserver cannot see mydevserver and because the script is only validating the composite at this point and the configuration plan is only used at deployment I have no way of overriding this. If it wasn’t for the difference in port number we could use a placeholder server name and point it to the appropriate server in our hosts file.
    I have two possible solutions to this issue:
    1)     Build the composite on my development environment and deploy the jar file with the configuration plan through enterprise manager – This is not ideal because we want to try and automate the process and remove unnecessary dependencies.
    2)     Install a local Weblogic server and SOA suite and change the references to localhost. However, his requires a lot of resource on our development machines and also means that the development servers have to be configured identically (i.e. same port number) on all development machines (not that this is necessarily a bad thing).
    Please can you tell me how you manage your development and deployments and what recommendations you have that might help me?
    Thanks,
    Dave.

    See if one of these help
    Order of SCA deployment at SOA startup
    Composite with dependency not working after soa server restart
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/sca_lifecycle.htm#CHDCAGEB
    Atul

  • Remote access and network services problem

    I have a Mac Pro with two IP configs:
    Ethernet 1: 69.##.##.## /255.255.255.248 [hidden for public forum security]
    Ethernet 2: 10.0.0.20/255.255.255.0
    My primary needs:
    Able to remotely access the Mac via Remote Desktop using the public IP. Local LAN connectivity using 10.##.##.##.
    Setup:
    I have a 10 public IP address from my ISP and using one of the 10 now. Everything pings OK.
    Question:
    How can I customize the network service so that I can select the Ethernet 1 or Ethernet 2 port to use? So far it forces me select Ethernet 1 for all of the services selected. I'd like to use FTP & Web Server & Remote Access on the Ethernet 2 (public). The rest is LAN. I notice that Appletalk is only allowable on a single IP.
    Quick experiment with the Internet sharing using Ethernet 2 (public) to Ethernet 1 failed to provide the desired forwarding result.
    Mac Pro   Mac OS X (10.4.9)  

    I think you need to go further into the settings and define FTP etc. to the specific Ethernet. There are also settings Automatic and where you define your connection. I have a 3 inch book that I will look at to see if they address it. I to plan to do something similar, but haven't got there yet.
    Michael

  • Optimize Powershell script (reboot remote Server and Check Services)

    Hi there,
    For my next maintenance Weekend i try to write a script to reboot all Servers and check after the reboot all automatic Service if there are running or not.
    Now the Script works fine for me so far, but it is not perfect. I would like to ask if anybody could help me to optimize it.
    # First Part: Reboot Servers
    $date = Get-Date -Format dd-MM-yyyy
    # Get list of Servers
    $Servers = Get-Content "D:\Scripts\Reboot\servers.txt"
    # Reboot each server
    ForEach ($Server in $Servers)
    "Computer $Server initiated reboot at $(Get-Date)" | Add-Content -Path D:\Logs\Reboot\Rebootlogs_$date.txt
    Restart-Computer $Server -Force -Wait
    # Check each Server
    forEach ($Server in $Servers)
    if (Test-Connection $Server -quiet) { "Computer $Server verified to be responding to ping at $(Get-Date)" | Add-Content -Path D:\Logs\Reboot\Rebootlogs_$date.txt }
    else { "Computer $Server unresponsive to ping at $(Get-Date)" | Add-Content -Path D:\Logs\Reboot\Rebootlogs_$date.txt }
    # Seconde Part: Check Services
    # Get list of Servers
    $Servers = Get-Content "D:\Scripts\Reboot\servers.txt"
    # Check Auto Services on each Server
    ForEach ($Server in $Servers)
    ForEach-Object {
    Write-Output $Server | Out-File -FilePath "D:\Logs\Reboot\services_$date.txt" -Append
    # get Auto that not Running:
    Get-WmiObject Win32_Service |
    Where-Object { $_.StartMode -eq 'Auto' -and $_.State -ne 'Running' } |
    # process them; in this example we just show them:
    Format-Table -AutoSize @(
    'Name'
    'DisplayName'
    @{ Expression = 'State'; Width = 9 }
    @{ Expression = 'StartMode'; Width = 9 }
    'StartName'
    ) | Out-File -FilePath "D:\Logs\Reboot\services_$date.txt" -Append
    As you can see i do it in two parts, the perfect way might be in one, where i check one server and write also just one log with all information.
    At the Moment the log files Looks like that:
    Reboot:
    Computer server1 initiated reboot at 04/28/2015 15:14:51
    Computer server2 initiated reboot at 04/28/2015 15:16:40
    Computer server1 verified to be responding to ping at 04/28/2015 15:17:41
    Computer server2 verified to be responding to ping at 04/28/2015 15:17:44
    Service:
    Server1
    Name           DisplayName         State   StartMode StartName                
    RemoteRegistry Remote Registry     Stopped Auto      NT AUTHORITY\LocalService
    sppsvc         Software Protection Stopped Auto      NT AUTHORITY\NetworkSer...
    Server2
    Name           DisplayName         State   StartMode StartName                
    RemoteRegistry Remote Registry     Stopped Auto      NT AUTHORITY\LocalService
    sppsvc         Software Protection Stopped Auto      NT AUTHORITY\NetworkSer...
    Now my Question is how to Change maybe my Loop or code to get one Log like that:
    Computer server1 initiated reboot at 04/28/2015 15:14:51
    Computer server1 verified to be responding to ping at 04/28/2015 15:17:41
    Name           DisplayName         State   StartMode StartName                
    RemoteRegistry Remote Registry     Stopped Auto      NT AUTHORITY\LocalService
    sppsvc         Software Protection Stopped Auto      NT AUTHORITY\NetworkSer...
    Computer server2 initiated reboot at 04/28/2015 15:16:40
    Computer server2 verified to be responding to ping at 04/28/2015 15:17:44
    Name           DisplayName         State   StartMode StartName                
    RemoteRegistry Remote Registry     Stopped Auto      NT AUTHORITY\LocalService
    sppsvc         Software Protection Stopped Auto      NT AUTHORITY\NetworkSer...
    Thanks for helping.

    You could probably have something nice using Function and CmdletBinding so you can get something like:
    function reboot-myservers { blablabla }function check-myservices { blablabla }$Servers = Get-Content "D:\Scripts\Reboot\servers.txt" $servers | reboot-myservers | check-myservices
    Bruce Jourdain de Coutance - Consultant MVP Exchange http://blog.brucejdc.fr

  • Realationship enterprise service - application/entity service

    I read some books about ESA and CAF but I still don't know the relationship between enterprise services in ESA and application and entity services in the Netweaver DevStudio (CAS framework).
    Are application/entity services also enterprise services? Or is there a difference?
    Thanks for your answers.
    Joachim

    You can consume SAP Enterprise Services. You can also participate in the definition of the Enterprise Services  through the ES Community (see ES Community under Enterprise SOA in SDN) and even create your own Enterprise Services. You can use whatever web development tools you like. In Netweaver Java stack, you can use CAF to implement or develop Application Services (where business logic is coded) leveraging Entity Services taping into your local or remote data model(s). Enterprise Services can be modeled and coded in CAF Application Services but you can use plain J2EE as well. In SAP case, the interfaces for Enterprise Services are defined in XI (input/output/exception). Their implementation happen in the appropriate SAP solutions like ERP where business logic can execute against appropriate data.
    Practically CAF Entity Services cannot be called Enterprise Services unless you want to. They just perform basic CRUD (create/read/update/delete) operations on an data object. They're more like utility services. But like Anton's mention of "Private Enterprise Services", what's private remains your own business!

  • Problem when creating CAF Entity Service finder Methods

    Guys,
    Can any one please suggest me appropriatly to the below problem.
    I am using NWDS 7.06. I have no problem when creating CAF project, Application Service and Entity Service even.
    But in the Entity Service:
    1. Add a string or longtext attribute.
    2. try to create a custom finder method in operations tab, during that operation i am  not finding the attribute which i have created in step1.
    That means i am not able to create the my own finder methods with parameters.
    I was able to do that in some version long ago but i have forgotten that NWDS version.
    summary of Problem Is: " Cannot create custom methods with custom parameters in Entity Service"
    Can you please suggest me the right version or a solution to this problem on urgent basis please.
    I promise you that i will give you full points to you who ever gives me the right solution.
    Please mail your suggestions to [email protected]

    Guys,
    I have solved the problem successfully. Thanks for your attention.

  • Batch file to start and stop services

    I've setup a CF Probe on my Development Server to ensure my
    CF Production server is up and running (services = Apache and CF
    Application Server). It checks the PROD login page and if it times
    out in 30 sec the probe fails. I understand I can execute a file
    (batch file with net start and net stop) but the problem is I need
    to have the probe somehow point to the .bat file on the PROD server
    and not on the local machine. How can I remotely access this batch
    file and execute it? I don't know how to point to the file on the
    other server... can anyone help?

    Hi Ken,
    You had pointed me in the right direction regarding the
    psstools in order to create a batch file that can remotely start
    and stop services.
    i used the psexec command and am able to successfully restart
    the services needed remotely... however when i pick the file in the
    coldfusion administrator (in the probes section) how to i point to
    the batch file to run? it seems like the probe is not running the
    script like i want... the file is located on the c:\ so i entered
    c:\test2.bat...
    Thanks,
    Matt
    Matt,
    You should review the online help in the cfadmin for probes
    and the links it points you to in the developer's guide. Basically
    you need to define a new probe in the cfadmin by clicking the
    "Define New Probe" button. One of the probe's attributes will be
    what action. Define the action as a program and point it at a batch
    file running psexec. You will probably need to run CFMX as a
    specific user and not as localsystem, which is the default.

  • EM Console Service/Reference Property for Endpoint Ignored

    We are trying to use the BPEL Service\Reference Properties to set the Endpoint for one of our web services (and were under the impression that the reference properties can be modified at runtime in the EM Console). However, the default soap:address location is being picked up from the WSDL within the BPEL process when testing, and the service reference properties set at runtime completely ignored. Is there something else we need to set to test the BPEL process with an updated endpoint? We want to avoid changing the WSDL imported in the BPEL process and creating a new compile for each environment we want to deploy to.  We are on version 11.1.1.6.0.

    To use the endpoint property you need to define the property endpoint in the composite under the partnerlink. like this.
    reference name="HelloWorldSample" ui:wsdlLocation="HelloWorldSample.wsdl">
        <interface.wsdl interface="http://xmlns.oracle.com/TestApplication/First/BPELProcess1#wsdl.interface(BPELProcess1)"/>
        <binding.ws port="http://xmlns.oracle.com/TestApplication/Second/BPELProcess1#wsdl.endpoint(bpelprocess1_client_ep/BPELProcess1_pt)"
                    location="http://localhost:8001/soa-infra/services/default/First/bpelprocess1_client_ep?WSDL">
          <property name="endpointURI">http://localhost:8001/soa-infra/services/default/Second/bpelprocess1_client_ep</property>
        </binding.ws>
      </reference>
    You can also use the deployment config plan for each environment to change the endpoint urls of each wsdls.
    http://docs.oracle.com/cd/E14571_01/integration.1111/e10224/sca_lifecycle.htm

  • How to persist local entity reference?

    I had a remote entity bean A hold a reference to a remote entity bean B's handle. Now I change them to local entity beans. But Local entity bean doesn't support Handle and I found local entity stub is not even Serializable (WebSphere5.0). How do I persist local entity bean B's reference? This is kind of non-container managed relationship. Why ejb2.0 spec doesn't support local entity Handle? How do you do non-container managed relationship without handle?

    "I had a remote entity bean A hold a reference to a remote entity bean B's handle."
    You hold a reference; as in an instance variable? If so, how did you use the handle? What did you do with the reference when the entity was stored or passivated?
    "Now I change them to local entity beans. But Local entity bean doesn't support Handle... Why ejb2.0 spec doesn't support local entity Handle? "
    Handle objects are intended to assist with holding for long-lived references to remote objects by avoiding the potential problems associated with holding a reference directly to the remote object. Since there are no concerns with respect to working remotely, Local objects do not need a Handle. Just hold reference to the Local directly, like you would any other object.
    "...and I found local entity stub is not even Serializable."
    Well of course not, it's not a remote object. One of the main points driving the use of local interfaces is to limit access to components. Hence only components within the same JVM as the Local can access it.
    "How do I persist local entity bean B's reference?"
    What do you mean by "persist"? Were you actually storing the Handle object into the database?! If so, then I see why you wanted a serializable Local Handle.

  • CAF  entity and application service

    hi
              when we are importing RFC or Webservice  for  external service 
               can we use application service directly  instead of  entity service
                   is it possible to use only  external service and  without entity  service  .

    Hi
    Yes you can do that.
    Entity Service is Used to Store the Persisitant data relavent to the Business Object.
    Application Service is used to Manipulate the Entity Service.
    Regards,
    Rajendra

  • Entity Services and Web Dynpro

    Hi,
    I want to implement a Web Dynpro with relation to a database (Entity Service and Application Services modeled with NWDS).
    I used the following tutorial
    , but when I want to add a "Used model", the selection list is empty and so its not possible to do that.
    Why is it empty, I implemented exactly after the tutorial?
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8b7059da-0c01-0010-e09c-9ecabaf58864">Example Tutorial (Page 16)</a>
    I really need help for that, because I want to implement a Info Callable Object, which shows Entries from the tables. The table should be filled within the actions, and so I need a relation to entity level.
    Thanks in advance
    Steve

    Hi Steve,
    In order to search the SDN forums effectively I suggest to:
    - Select 'Forums' (top menu bar)
    - Select topic of interest (in this case 'SAP NetWeaver > Developing Composites with CAF')
    - Enter your search keywords not in the upper left but in the upper middle search box 'Forum Search'
    This way the search is more likely to meet your expectations.
    Regards,
    Axel

  • Remote branch guest and Print services

    We are deploying guest internet services in our remote branches, using a setup of WLC4402 and LAPs.
    These guests require print services at the remote branch.
    The DMZ will not be routed to the remote branches, and we prefer if the remote branch printer is not given a
    permanent wireless guest account.
    Is there a solution whereby we can connect the printer to these wireless guests.

    Hi,
    Sorry for delaying in reply.
    Linux clients see page count. I've paused printing and checked some documents. Property page from a linux client document shows as this:
    Documents sent from windows clients show same but they've document name and page count.
    SPL archive copied from spooler printer on Windows server shows that info is present too:
    %!PS-Adobe-3.0
    %%Creator: cairo 1.9.5 (http://cairographics.org)
    %%CreationDate: Thu Jun 19 14:15:48 2014
    %%DocumentData: Clean7Bit
    %%LanguageLevel: 2
    %%DocumentMedia: Letter 612 792 0 () ()
    %%Orientation: Portrait
    %%For: (testuser)
    %%Title: (Phaser 5500 Descarga del archivo)
    %RBINumCopies: 1
    %%Pages: (atend)
    %%BoundingBox: (atend)
    %%EndComments
    %%BeginProlog
    %%BeginFeature: *JobPatchFile 1
    % Default Definitions
    userdict /xerox$pagedevice <<
    /MediaClass null
    /MediaPosition null
    /PageSize [612 792]
    /TraySwitch true
    /ManualFeed false
    /ImagingBBox null
    /ProcessColorModel /DeviceGray
    /DeviceRenderingInfo currentpagedevice 1 index get 1 dict copy
    /PostRenderingEnhance false
    /Install {
    xerox$old_install xerox$flip {
    currentpagedevice /PageSize get aload pop translate 180 rotate
    } if
    >> put
    <--- snip snip REMOVED FOR SIMPLICITY snip snip ------>
    showpage
    %%Trailer
    %%Pages: 1
    %%BoundingBox: 0 0 612 792
    %%EOF
    Linux client used official PPD file downloaded from xerox webpage for linux
    cups. Windows server uses Xerox Global Print Driver PS 5347.600.0.0 type 3 with
    Render print jobs on client computers as suggested by Alan before.
    Any other idea?

Maybe you are looking for

  • How to make the graph follows the position of the video frame

    Hai.. I want to open the video (. avi) and graph together in one VI.. The videos and graphs can be controlled (forwarded or rewind) in the desired position.. However, the graph should follow where's the position of the video frame..   The graph gener

  • How can I remove an old pc registered to my itunes account/

    I am just syncing my ipod with my new laptop and want to transfer purchases to my new laptop but it says that I have too many computers linked to my itunes account. My husband and 2 children have their pcs linked to it and now I want to add my new on

  • How to do this mapping in XI

    hi, My Source Structure is like Object_IND      FILENAME    FILEVALUE 0                     Column1       aaa0 0                     Column2       bbb0 0                     Coulmn3       ccc0 0                     Coulmn4       ddd0 0               

  • My first generation iPad has in the last few days taken to crashing whilst using Safari. Any suggestions what the problem might be please?

    This has only happened during the last few days. My iPad first generation has started to crash whilst using Safari. Any suggestions as to what might be the cause?

  • Changes to interest profile

    Hi experts, Requesting your  guidance /suggestions for the below issue. We have an interest profile maintained for our projects . Now the requirement is to to change the "currency" in this interest profile. ( customising t-code OPIB) . Here the "cuur