Testing a Batch Process using JUnit

Hello,
I have written a java batch in CC&B. I want now to check it through Junit. I have created a test case for this which implements BatchJobTestCase. It generates couple of methods. I want to know how I will pass soft parameters to batch and how to inovke that batch.
Thanks,
Usman Ashraf

For setting the soft parameters:
One of the overridden Methods is setupRun. Mine looks like this:
SubmissionParameters parameters = new SubmissionParameters();
Properties properties = new Properties();
properties.setProperty("PropertyName","PropertyValue");
properties.setProperty("PropertyName","PropertyValue");
properties.setProperty("PropertyName","PropertyValue");
properties.setProperty("PropertyName","PropertyValue");
parameters.setExtraParameters(properties);
return parameters;
I know that if you create a batch object and assign the result of this method to batch.setSubmissionParameters(result) the main thread of the batch can run.
It looks like calling "submitBatchJob(parameters)" is supposed to run the whole thing, but i keep getting a null pointer exception  in com.splwg.base.support.batch.BatchJobExecuter.create

Similar Messages

  • Is it possible following batch processing using javascript...?

    Hi Everyone,
    Is it possible with in javascript following batch processing?
    • Open all PDF files in folder
    • Get which font to be used
    • Get which color plate to be used (i.e.) CMYK or RGB
    • Get page trim size width and Height.
    • Close the file
    • Past in Excel or note pad
    Please help me,  i have do so many files do the same process.
    Thanks in advance.
    -yajiv

    Some time ago I was looking for a way to find out a pdf’s page-count and this was one of the solutions I was presented with (Bridge might offer a better sollution, though):
    #target photoshop
    thePageNumber = getPDFPageCount ( File.openDialog("select pdf"))
    alert (thePageNumber);
    // by jezz, based on something by xbytor i guess;
    function getPDFPageCount(f) {
    f.open ('r');
    var gotCount = false;
    while (! gotCount) {
    next_line = f.readln();
    if ( f.eof ) {alert("Aborting the script\nWe've got to the end of the file without finding a page count");
         f.close();
         exit();
         if (next_line.indexOf ("/N ") > 0 && next_line.slice(0, 9) != "<</Length" && next_line.slice(0, 9) != "[/Separat") {
         var p = next_line.match (/\/N (\d+)\/T/)[1];
         gotCount = true;
         else if (next_line.indexOf ("/Pages") > 0 ) {
    //      alert (next_line);
         var p = parseInt(next_line.substring(next_line.indexOf("/Pages") +6), 10)
         gotCount = true;
    f.close ();
    return Number(p);
    I suppose this approach could be modified to address some of the features you are looking for.
    But the issue might be a fairly complicated one, as a pdf may for example combine many different TrimBox-sizes.
    Have you asked over in the Bridge Scripting Forum, too?

  • Error testing my Business Process using Application View Control

    Hi there
    i'm using WLS 8.1 SP 4 and Sap Adapter 8.1
    I already could build my app view in app integration design console I can testing and everything works fine.
    I'm using adpater to sap and i able to see the results from SAP
    Now,,, i alreade created my app view control in order to use it in my business process but i get the following error:
    <Mar 3, 2006 10:34:53 AM CST> <Warning> <WLW> <000000> <Id=appViewControlTPA:0;
    Method=jpd.TPAAppView.serviceTPACompanyList(); Failure=com.bea.wlai.client.Appli
    cationViewException: Error invoking service 'serviceTPACompanyList' on Applicati
    onView 'TPAAppView': com.bea.xml.XmlException: Top level QName: {wlai/TPAAppView
    serviceTPACompanyListBAPI_COMPANYCODE_GETLIST_request}CompanyCode.GetList.Resp
    onse does not match the expected top level qname: {wlai/TPAAppView_serviceTPACom
    panyList_BAPI_COMPANYCODE_GETLIST_response}CompanyCode.GetList.Response in schem
    a type
    com.bea.xml.XmlException: Top level QName: {wlai/TPAAppView_serviceTPACompanyLis
    t_BAPI_COMPANYCODE_GETLIST_request}CompanyCode.GetList.Response does not match t
    he expected top level qname: {wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANY
    CODE_GETLIST_response}CompanyCode.GetList.Response in schema type
    at com.bea.wli.variables.XmlObjectVariableFactory.createProxy(Lcom.bea.w
    li.variables.ProcessXML;Ljava.lang.Class;Z)Lcom.bea.xml.XmlObject;(XmlObjectVari
    ableFactory.java:137)
    at com.bea.wli.variables.XmlObjectVariableFactory.createProxy(Lcom.bea.w
    li.variables.ProcessXML;Ljava.lang.Class;)Lcom.bea.xml.XmlObject;(XmlObjectVaria
    bleFactory.java:199).............
    these are my schemas:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema elementFormDefault="unqualified"
    targetNamespace="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request"
    xmlns="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="BAPI0002_1">
    <xsd:sequence>
    <xsd:element name="COMP_CODE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="4"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="COMP_NAME">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="25"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="CompanyCode.GetList">
    <xsd:complexType>
    <xsd:all>
    <xsd:element minOccurs="0"
    name="COMPANYCODE_LIST">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="unbounded"
    minOccurs="0"
    name="item"
    type="BAPI0002_1"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema elementFormDefault="unqualified"
    targetNamespace="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_response"
    xmlns="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_response"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="BAPIRETURN">
    <xsd:sequence>
    <xsd:element name="TYPE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="1"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="CODE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="5"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="220"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="LOG_NO">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="20"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="LOG_MSG_NO">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="6"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V1">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V2">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V3">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V4">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="BAPI0002_1">
    <xsd:sequence>
    <xsd:element name="COMP_CODE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="4"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="COMP_NAME">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="25"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="CompanyCode.GetList.Response">
    <xsd:complexType>
    <xsd:all>
    <xsd:element minOccurs="0"
    name="RETURN"
    type="BAPIRETURN"/>
    <xsd:element minOccurs="0"
    name="COMPANYCODE_LIST">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="unbounded"
    minOccurs="0"
    name="item"
    type="BAPI0002_1"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    and this is my xml i'm using as a request:
    <?xml version="1.0" encoding="UTF-8"?>
    <n1:CompanyCode.GetList xmlns:n1="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request" xmlns:xsi="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request">
         <COMPANYCODE_LIST>
              <item>
                   <COMP_CODE/>
                   <COMP_NAME/>
              </item>
         </COMPANYCODE_LIST>
    </n1:CompanyCode.GetList>
    i do not what it is wrong and i don't understand why i can test my app view since app int desing console succesfully but i get an error running my business process using workshop
    any idea?

    Try to send some valid data in COMP_CODE.
    It seems that SAP is returning some reply which is not fitting your response Schema.
    SAP Call is made and problem is in generating response document.
    Use the design console to test the view again. and try to see the XML resquest document and response document. Compare your request xml with that in design console.

  • How to delete silence in batch process using Audition CS6

    I've started using Audition CS6 recently.
    I'm able to delete silence at the beginning and end of the source audio files using delete silence effect (from diagnostics window).
    I'm not able to record this as new favorite so that I can apply it in the batch process.
    How can I delete silence at the beginning and end of the source audio files (1000 or more files) using batch process?
    It will be of great help if I can get guidance on this, instead of manually editing these files.
    Thanks in advance for any assistance.

    yes, the favorite is not aware of the diagnostic panel (and delete silence action).
    and the silence at the beginning and end varies between the files, is there any way to deal with?
    it doesn't look productive to scan for the silence and delete the silences manually for each individual file (for more than 1000 files).
    can we create a macro or use some scripting in audition to deal with this in a batch process?
    Or is there any other tool that's recommended to have this part done in a reliable manner?

  • Batch Processing using Bridge to PhotoShop

    - I am using CS4 on a PC.
    - I shoot RAW and from Bridge I go into Camera RAW and adjust my images.
    - Usually I save each one at a time however I would like to learn how to be able to edit each photo using Bridge and Camera RAW ( I’m already doing this), then be able to take all of the photos in the directory and batch process to save as a tiff or jpg for further manipulation.
    - I was using Canon’s DPP but want to do all my work in Adobe. The process in DPP is straightforward.
    I'm sure this is simple but I can't seem to find it in the menu's or Help.
    Thanks in advance for your help.

    Curt:
    Thank, this gave me the direction I needed. After a few tries I think I've got it down pat.
    Thanks again.

  • Batch processing using JPD suitability

    Hello,
    In our company, we are using Weblogic Integration 8.1.6 for batch DB processing mixed with some business logic. We have a few applications built around this: an event generator is fired and a JPD (with DB controls and other controls calling EJBs and WSs) runs to process large CSV files (8MB) into the DB, with some other queries for business data in between, on a daily basis.
    However, we have been facing (and still are facing) many problems with those JPDs. It seems to me that they are not such a good choice for long running batches. There is always something: memory is to low, memory is too high (yes! there was a time when we had to lower the instance memory from 1.5GB to 1GB, to prevent it from crashing, after endless trial and error), the transaction timeout is too short (in the descriptors or domain wide), processes cannot be monitored in the WLI console for unknown reasons, transaction handling is not clear (you cannot avoid transactions inside the JPD; it is forced by default - you can only disable it through the datasource) and more problems that happened throughout the past few years, which required rather tedious trial-and-error solving.
    My question is: are JPDs really suitable/intended for long batch processing? The event generators certainly invite you into using them for that purpose. Is anybody else using them for that? Or is everyone else happy with batch EXEs?
    Edited by: KhaledWLS on Sep 19, 2010 10:37 AM

    Please repost your question in the SOA Suite forum:
    SOA Suite
    This forum is for WebLogic Server and readers may not be familiar with WLI.

  • Batch process using Nik Software - is it possible?

    Hi,
    I'm using Nik Software (plug-ins) with Aperture and was wondering if there was any way to do a batch change? For example if I have to reduce the noise using Define2.0 and I have a profile I would like to use already, is there a faster way to process a set of pictures altogether rather than one by one (which I currently do now)? I've tried selecting multiple ones and opening it in Define2.0 but it seems that unless I view each picture in Define2.0 then some pictures still remain unprocessed.
    Thanks,
    Walter ...

    If you have the most up to date version of the Nik plugins, you can batch just as you are explaining. Simply select a handful of images and right click>edit with>Define, Viveza, Silver Efex Pro, etc.
    You do have a powerful graphic card to do this smoothly.
    Hope this helps,
    ChristopherDavid

  • Invoking a batch processing using ABAP proxy

    Hi guys,
    I need to develop a scenario where in the target a proxy starts a function module (or ?), but I need to run this function module then in a separate "thread", so the proxy processing would be finished. You know what I mean? Is it possible somehow?
    Thank you, Andrzej

    Hi Andrzej,
    You can Call the Function using Tasks in the ABAP Proxy.
    See:
    [http://wiki.sdn.sap.com/wiki/display/Snippets/ABAPparallelprocessingusingRFC]
    [http://wiki.sdn.sap.com/wiki/display/Snippets/Easilyimplementparallelprocessinginonlineandbatchprocessing]
    [http://wiki.sdn.sap.com/wiki/display/ABAP/Parallel+Processing]
    Best Regards.

  • How to test servlet using Junit test????

    Hello everybody
    Does anybody know how to test an servlet class using Junit without using Cactus test . Is it possible to test a servlet using Junit without cactus test.Plz tell me the process how to test a servlet using Junit test .
    Regards
    srikant

    1) Do yoiu mean how to "run" your servlet code with sample parameter? This call manual testing with a sample run of you code. You need a web server(eg Tomcat), create a webapp with your servlet then deploy it there in order to run it.
    2) httpunit and junit are framework to write test case code that can be automated and repeatable. Plz read their doc.
    3) Your sample code me a very wrong way to retrieve and convert servlet parameters.
    Get a java toturial and servlet tutorial book and read it over the weekend. You need to get at least the basic.

  • How to test the JSP pages and sevlets using JUnit. ?

    How to test the JSP pages using JUnit. How to configure what are all the steps to execute the JUnit test cases.

    Hi xiepei,
    since you are using modbus, a simple error checking is implicit in the protocol and is the comparison between returned checksum and the calculated one on the received message: checksum errors, if any, are an effect of communications errors (you should have at least 2 bits changed and on particular patterns to have the checksum be calculated correctly!). You won't be able to calculate BER on them, but you can calculate PER (Packet Error Rate).
    Another flag for communication errors, on the other direction, is to intercept error messages from the device: if it fully implements modbus protocol, it should return some warning in case of error (I seem to remember that in some cases it returns the reveived message with some error bits added: please check in modbus documentation).
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Batch process does not work in one service, but worked in another.

    Hi Fellows,
    We have here a batch process with a code encrypted, that runs daily in a production environment.
    Tonight this batch process did not work.
    It is expected that this process runs in about 20 seconds, but tonight this process used about 3 hours and did not finished.
    We checked if it was concurrency, killed some sessions and tried again, and nothing has changed.
    And then someone changed the service that this process uses, it was 'bat' and changed to 'dba'. And it worked succesfully in 11 seconds.
    Here is the tnsnames that the batch process uses:
    bat =
    (DESCRIPTION =
    (LOAD_BALANCE = OFF)
    (FAILOVER=ON)
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x2)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x3)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = bat)
    (FAILOVER_MODE =
    (BACKUP = dba)
    (TYPE = NONE)
    (METHOD = BASIC)
    (RETRIES = 20)
    (DELAY = 5)
    dba =
    (DESCRIPTION =
    (LOAD_BALANCE = OFF)
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x2)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.x.x3)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = dba)
    Do you guys know what could be the reason?
    Thanks in advance.

    We set the service which the app should connect.
    These services are set in srvctl:
    ora.cms.bat.cms1.srv ONLINE ONLINE on fastora1
    ora.cms.bat.cms2.srv ONLINE ONLINE on fastora2
    ora.cms.bat.cms3.srv ONLINE ONLINE on fastora3
    ora.cms.bat.cs ONLINE ONLINE on fastora1
    ora.cms.cms1.inst ONLINE ONLINE on fastora1
    ora.cms.cms2.inst ONLINE ONLINE on fastora2
    ora.cms.cms3.inst ONLINE ONLINE on fastora3
    ora.cms.cmsuser.cms1.srv ONLINE ONLINE on fastora1
    ora.cms.cmsuser.cms3.srv ONLINE ONLINE on fastora3
    ora.cms.cmsuser.cs ONLINE ONLINE on fastora1
    ora.cms.db ONLINE ONLINE on fastora1
    ora.cms.dba.cms1.srv ONLINE ONLINE on fastora1
    ora.cms.dba.cms2.srv ONLINE ONLINE on fastora2
    ora.cms.dba.cms3.srv ONLINE ONLINE on fastora3
    The batch process connects to a service [ bat ], but it hangs and don't finish. But when we change the service do dba is just pass in some seconds and finish succesfully.
    Connected to DB [issr@bat  ]
    PAYware CMS Version 8.0 - Module : E352 Release : 000000002
    Program: /cms/cmsissr/CMS/bin/issuer/mepcs352
    Release: 2
    PARAMETERS OK !!!
    NUMBER OF PROC.: 000001
    Number of transactions : +000047570
    Number of parallel processes: 000001
    Transactions by process: 000000000000047570
    Transactions Processed: 000010000

  • Batch Processing with an Action

    Hello everyone,
    I created an Action within Photoshop CS5.  I saved this action to an .atn file which then I loaded into the CORRECT directory for PSE 10. 
    Once in PSE I can go to Actions and I can see and properly use said Action.  So I know it works.
    My question/problem:  Is it possible to Batch process using "Process multiple files" or something else using this Action?  I know is CS5 the option is there and it is fairly straight forward, however I did not see this option anywhere within PSE.
    I am hopeful that I'm missing something or there is just some trick that I don't know about. 
    I appreciate any help that is provided.  Thanks in advance.

    You would need to open the BatchWin,atn file located in (this is for win 7 and vista x64) into cs5 (these are just actions that elements uses for process multiple files)
    (be sure to put a copy of the original file somewhere in case you ever need it)
    C:\Program Files (x86)\Adobe\Photoshop Elements 10\Locales\en_US\Support Files
    Then add your action to the list, without any open steps in the action and you'll have to add the save step at the end of the action (the format you want to save the files in).
    Then save the action set and put it back into Support Files Folder.
    example of an action added:
    example of how it looks in elements:

  • Batch process for Web & Devices possible??

    Hiya,
    Here's what I have going on.  I'm heavily involved with the DAZ3D community.  Over a year ago I create a huge and I mean huge texture pack for the Windy Wizard Robe and the Morphing Fantasy Robe found at Renderosity.  The pack, when zipped up is a whopping 333 Mb's.  I was hoping to get that file size cut in half.  I would do it one at a time but heck there are 151 texture maps in the pack.  That's really not seeming like something I want to do if I can avoid it.
    Is there a way to batch process using the Save for Web & Devices command??  It's settings are already set up to where I like them as I've completed a couple more packs and exported using that.  It complains since the size of the texture maps are usually around 3000 X 3000 but it still works perfectly and it really does cut the size, actually, by about 2/3rds!  Crazy but I really can't tell the difference when I compare a regularly saved map with one that's exported using that command.   It's pretty amazing.
    Thanks for the help!
    Richard ;-)~

    Quality level is just the degree of compression.  12 is max quality (minimum compression).  Depending on how media is viewed one might not tell the difference between level 10 and 5. Save for web uses the same dialog.
    This also is same dialog you get if you "save as" in jpeg.  Try a couple of different levels and see what the results are, and what satisfies your needs. 

  • Batch Processing Mass PDFs to Word. Constant "Save As".

    I have a huge amount of files to convert from PDF to MS Word for my job. I understand how to do a batch process using Action Wizard, however, the process has been painful because it has to actually open up every single document to convert.
    Before it moves to the next file it asks, "Save As" for every document which is taking forever and I need to meet deadlines.
    Is there a way around this?? I am using Windows 7 with Adobe Acrobat Pro XI 11.0.07.79
    Thanks

    If it goes into Not Responding and then comes back, don't worry at all. This is working properly.
    Many people think that "Not responding" always means some awful thing has happened and it must be fixed. No, you've just asked it to do something that takes a long time, and it's so busy that it doesn't respond when Windows asks if it is free for more work.
    It's a hint from Windows that something MIGHT be wrong, but not if it does finish and come back to normal.
    It also isn't the computer that goes "not responding", it's a single app. You can run other apps. But you certainly can't make Acrobat do something else while this is happening. It is a simple interactive tool designed for light use, so it isn't expected to be used for thousands of files.

  • Grey card batch processing

    Does anyone batch process using a photo of a grey card?  I would like to shoot a grey card and adjust for correct white balance using this picture as the correct color for a specific shot series.
    If anyone currently uses this technique in Aperture, I would appreciate a step be step how too. 
    Thanks in advance for any assistance.

    That's how it's done (shoot one in the field; lift and stamp in Aperture).  Completely effective in terms of applying the gray-card-derived WB to a group of photos exposed under the same illumination -- and also effective to show how much and how quickly WB can vary under natural daylight  .
    (All of the above assumes RAW captures.  Probably works with JPG -- but only within the pronounced limitations of WB adjustment that JPG presents.)
    Fwiw ( ) I used an XRite Passport for awhile -- a good tool -- but finally stopped using it when I realized that outside of scientific photography (extremely rare), WB is an aesthetic choice.  I now simply apply the WB I want for the pictures I produce.  It's quite helpful that my main camera -- Sony a850 -- does a superb job 95% of the time set at "auto-WB".  I have been making a lot of night-time captures recently, and these are all off -- but in these cases a gray-card-corrected WB isn't what I want, either.
    Note, though, that however one determines WB, using Aperture's "Lift & Stamp" feature is a great, easy way to apply it to a series of Images.

Maybe you are looking for

  • Routine

    Hi Experts, --> Here I come across this situation that I have to create a routine for our client in the pricing determination scenario, and this would be my first time to work with ROUTINE creation. Can anybody please suggest and let me know the step

  • Can you put a pay as you go sim in a bill pay phone?

    I bought my brothers iphone and while he was a bill pay customer iam a pay as you go customer with the same carrier. so i thought i could just but my sim in his phone and use it. Im now having trouble sending and recieving calls. I can sometimes make

  • Image with a Effect flicker

    How I can create a Image with Effect flicker Thanks

  • Can I copy an entire event into a project?

    This is day 2 with my new iMac after starting with Apple II 30 years ago and working with MS products for 25 years, so go easy on me. I have a Canon HV20 HD Camcorder (DV tape-based) and it imports easily into iMovie 08. Of course, if I have an hour

  • DataSource null in ReceiveStream and NewReceiveStreamEvent never called

    Hi, in a ReceiveStreamListener.update(ReceiveStreamEvent evt) implementation, when evt is instanceof StreamMappedEvent, the receiveStream.getDataSource() return null. Why? p.s. StreamMappedEvent is the only evt type called. No NewReceiveStreamEvent