Block individual Bonjour (mDNSResponder) services (_appname._tcp)?

When you run Bonjour Browser (http://www.tildesoft.com/) you can see that multiple services are running, some with names like appname.tcp.
Is it possible to block one of these specific services, while leaving the rest of them running? I can't see any way to do this in either the OS X Firewall or Little Snitch, and would be grateful to learn how this can be done. Thanks for any help with this.

This should be easily recoverable.
In the first instance, you can open System Preferences -> Security -> Firewall, and the change it back to "Allow all..." and everything should work.
To use the more secure setting reliably, go back to "Set access..." and then click on the each of the items that says "block incoming connections", and (if appropriate for you) change it to "allow incoming connections".
Cheers,
Rodney

Similar Messages

  • Ability to block individual premium text messages

    I am receiving spam in the form of premium text messages from 33555.  My only option appears to be blocking receipt of all premium messages, which will not work for me.  I would like the ability to block individual premium text numbers.

    You will need to send a Text message with one of the opt-out keywords below to the code that the message is coming from which you stated (33555). This will stop future billing for the Premium Messaging. However, charges for Premium Messaging may appear on the your bill for up to two full bill cycles after the Premium Messaging block has been added to the account. This is due to timing of the bill cycle and the premium service subscription opt-in date.
    Quit,
    Cancel,
    End,
    Unsubscribe ,
    Stop,
    Stop All
     If opt-out confirmation not received meaning if you did not get a text right back stated the premium message has been stopped , then that's when we will have to go in and add the premium messaging block to stop you from receiving the alert and charge any further. Hope this Helps

  • Parallel participants blocks in External Routing Service

    I'm trying to configure an External Routing service (it implements IAssignmentService interface) as described in Developer's Guide for Oracle SOA Suite[1].
    The assignment stage configuration needed: one or more parallel participants blocks in the same stage, each one configured with different participants and voting rules.
    The CustomAssignmentService below shows my custom External Routing Service: when I try to add two or more parallel participants, only the first one it is assigned to the task.
    I haven't found documentation: how can I implement parallel participants blocks in External Routing Service?
    Product version: SOA Suite 11.1.1.6
    References:
    [1] http://docs.oracle.com/cd/E28389_01/dev.1111/e10224/bp_hwfmodel.htm#BABCFHCC
    ----------- CustomAssignmentService.java ------------------
    package br.com.iprocess;
    import java.util.Map;
    import oracle.bpel.services.workflow.metadata.routingslip.model.*;
    import oracle.bpel.services.workflow.metadata.routingslip.model.Participants;
    import oracle.bpel.services.workflow.metadata.routingslip.model.ParticipantsType.*;
    import oracle.bpel.services.workflow.task.IAssignmentService;
    import oracle.bpel.services.workflow.task.ITaskAssignee;
    import oracle.bpel.services.workflow.task.model.Task;
    import oracle.bpel.services.workflow.IWorkflowConstants;
    public class CustomAssignmentService implements IAssignmentService {
    private final String OUTCOME_APPROVE = "APPROVE";
    private final String OUTCOME_REJECT = "REJECT";
    public Participants onInitiation(Task task, Map propertyBag) {
    return createParticipant(task, propertyBag);
    public Participants onReinitiation(Task task, Map propertyBag) {
    return createParticipant(task, propertyBag);
    public Participants onOutcomeUpdated(Task task, Map propertyBag,
    String updatedBy, String outcome) {
    return null;
    public Participants onAssignmentSkipped(Task task, Map propertyBag) {
    return null;
    public java.util.List getAssigneesToRequestForInformation(Task task,
    Map propertyBag) {
    return null;
    public java.util.List getReapprovalAssignees(Task task, Map propertyBag,
    ITaskAssignee infoRequestedAssignee) {
    return null;
    public Participants createParticipant(Task task, Map propertyBag) {
    ObjectFactory objFactory = new ObjectFactory();
    Participants participants = objFactory.createParticipants();
    participants.getParticipantOrSequentialParticipantOrAdhoc().add(addParticipantsGroup1(objFactory));
    participants.getParticipantOrSequentialParticipantOrAdhoc().add(addParticipantsGroup2(objFactory));
    return participants;
    private Parallel addParticipantsGroup2(ObjectFactory objFactory) {
    Parallel parallelParticipant = objFactory.createParticipantsTypeParallel();
    ParallelCompletionCriteriaType vote = objFactory.createParallelCompletionCriteriaType();
    ParameterType defaultOutcome = objFactory.createParameterType(OUTCOME_REJECT);
    defaultOutcome.setType("STATIC");
    vote.setDefaultOutcome(defaultOutcome);
    String defaultPercentage = "51";
    ParameterType percentageOfOutcome = objFactory.createParameterType(defaultPercentage);
    percentageOfOutcome.setType("STATIC");
    vote.getOutcomePercentage().add(percentageOfOutcome);
    parallelParticipant.setAllResponders(vote);
    Resource resource = objFactory.createResource();
    resource.setValue("manager1, manager2");
    resource.setIsGroup(false);
    resource.setType("STATIC");
    parallelParticipant.getResourceOrRoutingSlip().add(resource);
    Resource resource2 = objFactory.createResource();
    resource2.setValue("manager3");
    resource2.setIsGroup(false);
    resource2.setType("STATIC");
    parallelParticipant.getResourceOrRoutingSlip().add(resource2);
    return parallelParticipant;
    private Parallel addParticipantsGroup1(ObjectFactory objFactory) {
    Parallel parallelParticipant = objFactory.createParticipantsTypeParallel();
    ParallelCompletionCriteriaType vote = objFactory.createParallelCompletionCriteriaType();
    ParameterType defaultOutcome = objFactory.createParameterType(OUTCOME_REJECT);
    defaultOutcome.setType("STATIC");
    vote.setDefaultOutcome(defaultOutcome);
    String defaultPercentage = "51";
    ParameterType percentageOfOutcome = objFactory.createParameterType(defaultPercentage);
    percentageOfOutcome.setType("STATIC");
    vote.getOutcomePercentage().add(percentageOfOutcome);
    parallelParticipant.setAllResponders(vote);
    Resource resource = objFactory.createResource();
    resource.setValue("operator1, operator2, operator3");
    resource.setIsGroup(false);
    resource.setType("STATIC");
    parallelParticipant.getResourceOrRoutingSlip().add(resource);
    return parallelParticipant;
    }

    I'm trying to configure an External Routing service (it implements IAssignmentService interface) as described in Developer's Guide for Oracle SOA Suite[1].
    The assignment stage configuration needed: one or more parallel participants blocks in the same stage, each one configured with different participants and voting rules.
    The CustomAssignmentService below shows my custom External Routing Service: when I try to add two or more parallel participants, only the first one it is assigned to the task.
    I haven't found documentation: how can I implement parallel participants blocks in External Routing Service?
    Product version: SOA Suite 11.1.1.6
    References:
    [1] http://docs.oracle.com/cd/E28389_01/dev.1111/e10224/bp_hwfmodel.htm#BABCFHCC
    ----------- CustomAssignmentService.java ------------------
    package br.com.iprocess;
    import java.util.Map;
    import oracle.bpel.services.workflow.metadata.routingslip.model.*;
    import oracle.bpel.services.workflow.metadata.routingslip.model.Participants;
    import oracle.bpel.services.workflow.metadata.routingslip.model.ParticipantsType.*;
    import oracle.bpel.services.workflow.task.IAssignmentService;
    import oracle.bpel.services.workflow.task.ITaskAssignee;
    import oracle.bpel.services.workflow.task.model.Task;
    import oracle.bpel.services.workflow.IWorkflowConstants;
    public class CustomAssignmentService implements IAssignmentService {
    private final String OUTCOME_APPROVE = "APPROVE";
    private final String OUTCOME_REJECT = "REJECT";
    public Participants onInitiation(Task task, Map propertyBag) {
    return createParticipant(task, propertyBag);
    public Participants onReinitiation(Task task, Map propertyBag) {
    return createParticipant(task, propertyBag);
    public Participants onOutcomeUpdated(Task task, Map propertyBag,
    String updatedBy, String outcome) {
    return null;
    public Participants onAssignmentSkipped(Task task, Map propertyBag) {
    return null;
    public java.util.List getAssigneesToRequestForInformation(Task task,
    Map propertyBag) {
    return null;
    public java.util.List getReapprovalAssignees(Task task, Map propertyBag,
    ITaskAssignee infoRequestedAssignee) {
    return null;
    public Participants createParticipant(Task task, Map propertyBag) {
    ObjectFactory objFactory = new ObjectFactory();
    Participants participants = objFactory.createParticipants();
    participants.getParticipantOrSequentialParticipantOrAdhoc().add(addParticipantsGroup1(objFactory));
    participants.getParticipantOrSequentialParticipantOrAdhoc().add(addParticipantsGroup2(objFactory));
    return participants;
    private Parallel addParticipantsGroup2(ObjectFactory objFactory) {
    Parallel parallelParticipant = objFactory.createParticipantsTypeParallel();
    ParallelCompletionCriteriaType vote = objFactory.createParallelCompletionCriteriaType();
    ParameterType defaultOutcome = objFactory.createParameterType(OUTCOME_REJECT);
    defaultOutcome.setType("STATIC");
    vote.setDefaultOutcome(defaultOutcome);
    String defaultPercentage = "51";
    ParameterType percentageOfOutcome = objFactory.createParameterType(defaultPercentage);
    percentageOfOutcome.setType("STATIC");
    vote.getOutcomePercentage().add(percentageOfOutcome);
    parallelParticipant.setAllResponders(vote);
    Resource resource = objFactory.createResource();
    resource.setValue("manager1, manager2");
    resource.setIsGroup(false);
    resource.setType("STATIC");
    parallelParticipant.getResourceOrRoutingSlip().add(resource);
    Resource resource2 = objFactory.createResource();
    resource2.setValue("manager3");
    resource2.setIsGroup(false);
    resource2.setType("STATIC");
    parallelParticipant.getResourceOrRoutingSlip().add(resource2);
    return parallelParticipant;
    private Parallel addParticipantsGroup1(ObjectFactory objFactory) {
    Parallel parallelParticipant = objFactory.createParticipantsTypeParallel();
    ParallelCompletionCriteriaType vote = objFactory.createParallelCompletionCriteriaType();
    ParameterType defaultOutcome = objFactory.createParameterType(OUTCOME_REJECT);
    defaultOutcome.setType("STATIC");
    vote.setDefaultOutcome(defaultOutcome);
    String defaultPercentage = "51";
    ParameterType percentageOfOutcome = objFactory.createParameterType(defaultPercentage);
    percentageOfOutcome.setType("STATIC");
    vote.getOutcomePercentage().add(percentageOfOutcome);
    parallelParticipant.setAllResponders(vote);
    Resource resource = objFactory.createResource();
    resource.setValue("operator1, operator2, operator3");
    resource.setIsGroup(false);
    resource.setType("STATIC");
    parallelParticipant.getResourceOrRoutingSlip().add(resource);
    return parallelParticipant;
    }

  • Can't turn off individual app location services in IOS 5.0.1

    I Can no longer turn off individual app location services after update. Anyone else?

    had to reset it and set up as new ipod. lost music, but it works fine now.

  • Bonjour Printer Services not working on Windows 7 anymore

    I have my HP Deskjet F4450 connected via USB on my IMAC running 10.6.8.
    I have it shared with everybody can print settings and can add it to both my Windows 7 laptops using Bonjour Printer Services 2.0.2 (it sees it and I can add it)
    But when I print from Windows 7 it says that the test page is spooling but nothing happens, Nothing prints.
    I have looked at a bunch of help files, but nothing has worked for me.
    Did some Windows 7 Updates break the Bonjour printer Services application?
    Thanks for any help.
    Update:  It worked about a month ago I know from each Windows laptop.
    It prints fine from my MacBook.

    I'm having the same issue, but with a Time Capsule.  My MBA can print fine to it, but my Windows 7 desktop cannot.  It sees the printer, and things queue up but never come out.  Worked fine about a month ago but stopped.

  • Bonjour Print Services Install: DLL could not be run

    Hi guys,
    When trying to install Bonjour Print Services on a newly installed copy of Win7, I am getting the following error
    There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor.
    I have tried searching Google for an answer but unfortunately it was in vain. Since this setup worked without a problem a few days ago before I refreshed my Win7 install (and I have updated all software since the refresh), I am very confused and do not know what to do. Please advise! Thanks in advance.

    Update - I have now tried a bit more of the Apple tech. article No. 304405. Having already downloaded a WIndows Update for VBScript, I then tried the fix to register it - this failed too: msg. "Loadlibrary(%filename%)failed GetError returned 0X00000485".
    I have also learnt about the Log - find your install logs in TEMP - filename format iTunesSetupAAA.log. Herebelow the last command that then fell into error:
    "Executing: "C:\WINDOWS\SYSTEM\msiexec.exe" /i "c:\windows\TEMP\IXP137.TMP\iTunes.msi"
    Returned: 1603
    Any thoguhts?
    Regards,
    Rich

  • Windows could not start block level backup engine service

    Hello,
                  Im
     trying to perform system state backup for one of the server its unable to run. Last week we have performed the system state backup without any issue.
    Operating System:2008
    OS Version: R2 Small Business Server 2011 x64 Edition Build 7600
    RAM-32 GB
    Following event ID is reported in the logs;
    Log Name:      Application
    Source:        Microsoft-Windows-Backup
    Date:          7/2/2013 2:25:35 PM
    Event ID:      754
    Task Category: None
    Level:         Information
    Keywords:     
    User:          SYSTEM
    Computer:      ABC
    The Block Level Backup Engine service has stopped.
    When we try to restart the Block Level Backup Engine service we get error as “Windows could not start the Block Level Backup Engine Service on Local Computer.
    Error 0x800700b7: Cannot create a file when that file already exists.”
    I have already restarted Virtual disk and Volume shadow copy service, but no luck.
    Any help in resolving this issue will be much appreciated.
    Thank you.
    Keshava

    All,
    Here is the solution which worked for me ;
    Services.msc >properties page of Block Level Backup Service Engine
    Changed to Log On tab
    Instead of Log On as Local System Account changed to Log On as
    [email protected] (select the account with admin creds), entered the password of admin and closed the properties page.
    Now restart the Block Level Backup Service Engine and re-run the job, backup completes without any issue.
    Thank you
    Keshava

  • BLOCK INDIVIDUAL NUMBERS

    Yo BB peeps. Would just like to know how I could block individual incoming calls from certain numbers? Is that a possibility & if so, could you kindly assist by advising me how to do so?
    If u any1 can assist may also invite me on d BBM (edit out personal information)
    Thanks

    That is a carrier feature if they offer it via their website or via phone. Contact your carrier. I know verizon you can go to their website to block a certain amount of numbers. But it is NOT a iphone feature.

  • How do I block individual pictures or images (not entire sites)

    .
    how do I block individual pictures or images (not entire sites) ?
    ------- '''SOLVED''' ------

    Someone told me to download 'adblock plus' It did the trick and more. I recommend it to everyone. Bill

  • Why are we paying over $300 a month for a family plan that doesn't include call blocking or decent voicemail services?

    I am a member of a shared family plan which as I see it posted our bill is over $300 a month, which does not include unlimited data, family protection (which allows you to permanently block numbers vs there 30 or 90 day limit if you are not covered) <---- this requires you to constantly be on alert of something so ridiculous that it shouldn't be concerned with, and finally they do not offer an upgraded voicemail service.  So my voicemail asks me to enter pin than right to messages.  It does not tell me the following:  The date the call was made, the time the call was made, nor any other pertinent information regarding the call aside from the number and than the message.  It's frustrating because I miss a lot of calls these days due to volume controls and silent modes and ring tones that aren't loud enough that I need to know when calls are received.  I don't ever remember having to pay for an upgraded voicemail service, that's like hiring a firm to handle all my incoming calls.  I want my answering machine back.  I have many other issues to include Verizon's online chat service which has at least one major issue.  I won't bring that up here.  The question is how much more money can they get for a simple cell phone plan?  For christ's sake.
    Message was edited by: NoMoreOriginalNames Grammar corrections

    The free voicemail is basic which gives you the date and time of the message. If you want more you should pay for more. Also, some Android phones with KitKat have free Visual Voicemail.
    Thank you for your feedback, but my phone gives me no choice and it most certainly does not state the date and time that the message was received.  The only way for me to know that is if I happen to check exactly the phone log around the same time that the message was left, else it is buried underneath other more recent and answered calls.  And seriously man, the whole pay more idea is getting a bit far-fetched.  There is no reason why I should be able to buy a portable mini answering machine for a one time payment of $14.99 with a reusable blank tape, they don't have these and we'd look ridiculous carrying them around with everything else, but the point is we are giving permission to charge for some ridiculous things that should not be paid more for.  My old answering machine worked just fine, and more importantly I have never paid for an "upgraded" voicemail service.  As I mentioned if I want that I can hire a service to do that, but I don't need that.  I hope you can understand my growing concerns.  We pay for every little in-app purchase, we are being programmed to pay for everything that should already be includedfdasf in an initial price, brought home and enjoyed for its duration.  Instead wesdfsdf are paying monthly fees and dues on objects that aren't covered by warranties or insurances which eventually break and leave people struggling to pick up the pieces.  These are serious issues because people now rely so much on their phones (of course this is all my opinion) that we've become depandent on them.  Anyway, thanks, appreciate all the feedback. 
    As for blocking this is what it states on my plan under the blocking feature tab:
    You can block calls and message from up to 5 phone numbers at no charge. 
    Expiration. Blocks expire after 90 days. Be sure to reapply the block if you wish to continue the service restriction. To permanently block numbers, subscribe to FamilyBase*.
    Limitations.
    You cannot block numbers within your account or non-10 digit numbers such as 911,411 or #MIN (checks minutes used).
    Apple® iMessage® won't be blocked. Messages from this service can be blocked by disabling the iMessage feature from within the Settings>Messages menu of your Apple device.
    Unblocking. To unblock a number, highlight and delete the number, then click "Submit".
    So there's the limits, but even worst is they don't include a simple field where I can put the name of the individual I am blocking.  So when it comes time to maybe rotate one out (this should be an unlimited number), one of the many 5 I can choose to block, I might not remember who is who or what is what.  I have a lot of responsibilities in my life, this is not one that should be pushed on the consumer.  It's ridiculous.

  • Credit block should not prevent service order creation

    An upgrade from 4.7 to  ECC6, without any changes made to the configuration or program change, has lead to the following issue. ECC6 is not creating a service order connected to a sales order, when the customer has exceeded the credit limit. The sales order of custom order type is getting saved with a warning message that credit limit has exceeded. However, earlier in 4.7, the message would not stop creating subsequent service order. What could be different, that prevent ECC6 environment to hold on to service order creation? A subsequent release of the credit block through VKM1 however triggers the service order being created.

    Are you using credit card processing in SAP to get the authorization?
    If you are then the authorization should not block the order.
    Or are you using credit card as a form of payment (without authorization) in which case this needs to be put on the customers account as a payment and then the order entered.
    Where are you holding the credit card details?

  • Is it possible to view individual SSL-proxy service usage (TPS)?

    Hi,
    Can the ACE provide any detail above and beyond just the overall ssl-connection rate for a particular context?
    I have an ACE with two contexts and multiple ssl-proxy services configured within each and it would be really helpful to know the ssl-connection rate associated with each service (current, average, peak, etc) as I've got the issue where the SSL resource limit for one of the contexts has been reached and I don't know which service has jumped up in usage;-
    Allocation
    Resource Current Peak Min Max Denied
    ssl-connections rate 0 250 250 250 351
    I can set up custom MIB pollers based on OID values within our SolarWinds network monitoring system so even if the information isn't directly available through the ACE CLI but has an associated OID I'd be grateful for the info if any one knows it (or even just the OIDs that contain the connection rate values from the 'sh resource usage' command so I can graph the overall usage against date/time within SolarWinds).
    Thanks
    Matthew

    Matthew,
    I do not know the OID to poll the service-policy info.
    But if you do a 'show service-policy ' at regular interval and compare the hitcon, you can compute the connection rate for each service policy individually.
    Gilles.

  • Only way to stop bonjour erros was to stop bonjour via services windows 7

    never had an iTunes issue with any version until i jumped on 9.1.079
    what stupid choice as while windows sees my iphones 3gs and i always manage iphonemanualy there are some parts i do sync.
    first sign of trouble was right after installation i usually rite click my iphone and choose backup when its open in iTunes which took forever!
    anytime i charge iphone or it's connected to computer and itunmes is open i show 4 erros in event viewer which i posted about in another post. only way to stop it was go into control panel>administrative tools>services> double click Bonjour and change for automatic to disable! hit apply/ok and done.
    still wether it's on or off diagnostics in iTunes shows all is well but it can't see iphone??? what it shows it in itunes it allows me to back it up add /remove songs change contacts/sync apps....but it reports it doesn't see iPhone.
    this i believe is all because of the bonjour not working properly.
    this is a clean install of windows 7 professional 64 bit.
    prior to this i ran vista ultimate 64 bit and didn't get any issues on same computer.
    i can't believe APPLE hasn't acknowledged a problem thats all over the internet as a google shows.

              Anamitra wrote:
              > Hi All
              > I was looking into how to stop an MDB from getting messages from a Queue. In case
              > of Weblogic 7.0 the only ways I could find was either to undeploy the bean or
              > to set the target off. Both the methods seemed a bit crude to me - especially
              > the first one. For the "off target" approach - I am not sure what Weblogic does
              > internally - whether it undeploys the bean or not.
              I'm not sure either, post to the ejb newsgroup for answers.
              In 7.0 and 8.1, you can also unset the target for the JMS server.
              This shuts down the JMS server. Resetting the target on the JMS
              server reboots it.
              >
              > If I look into Websphere 5 JMS implementation of MDB - they have a concept of
              > listeners where one can start or stop the lstener for an MDB - that seemed to
              > be a better design choice to me - this just turns off the tap from the App server
              > side rather than forcing the application to be undeployed.
              >
              > Is there any better way to stop an MDB from receiving messages in WLS 7.0 or 8.1?
              No. There are plans for addressing this issue in the next release.
              >
              > thanks
              > Anamitra
              Your welcome,
              Tom, BEA
              

  • Base data block on a web service

    Hy,
    I need to integrate an oracle forms application with data provided from other applications (via web services), like countries, cities, users ecc.
    there is a way to base a data block (in forms web 6/10 with Java Importer) on a data returned from a web service?
    Can i base block on a PL/SQL variable, returned from java, that contains data from web service?
    Thanks at all.
    Davide

    here is a snippet:
    PROCEDURE BT_Poll IS
    || Name      : BT_Poll
    ||
    || Aufgabe   : Hier werden Bücher bestellt
    ||
    || Autor     : 05.03.2006, VOL
    || Updates   :
      R_App  SPU_Type.T_App := Init_App ('BT_Poll');
      v_list             ORA_JAVA.JARRAY;
      R_String           Const_lokal.T_CSV_Datensatz;
      E_kein_Webservice  EXCEPTION;
      PRAGMA EXCEPTION_INIT (E_kein_Webservice, -105100);
      v_Akt_Record       NUMBER;
    BEGIN
      Go_block ('Workitems');
      v_Akt_Record := Akt.Record;
      Clear_Block;
    -- user, pw, server
      v_list := BpelWorkflowClient.getAllWorkItems (
        a0    => Const_lokal.usr_Buchbesteller,
        a1    => Const_lokal.pwd_Buchbesteller,
        a2    => Const_lokal.srv_Default);
    --  v_list_laenge := ORA_JAVA.get_array_length (v_list);
      :PARAMETER.PA_ANZ_POLLS := ORA_JAVA.get_array_length (v_list);
      FOR i in 0 .. :PARAMETER.PA_ANZ_POLLS - 1
      LOOP
        :WORKITEMS.ALL := ORA_JAVA.get_String_array_element (v_list, i);
        Get_CSV_Daten (:WORKITEMS.ALL, ';', R_String);
        :WORKITEMS.Task_Titel     := R_String.Wert_01;
        :WORKITEMS.Task_ID        := R_String.Wert_02;
        :WORKITEMS.ISBN           := R_String.Wert_03;
        :WORKITEMS.Buch_Titel     := R_String.Wert_04;
        :WORKITEMS.Autoren        := R_String.Wert_05;
        :WORKITEMS.Preis          := R_String.Wert_06;
        :WORKITEMS.Bestellername  := R_String.Wert_07;
        create_record;
      END LOOP;
      Go_Record (v_Akt_Record);
      IF :PARAMETER.PA_ANZ_POLLS = 0 THEN
        go_block ('BUECHER');
      END IF;
    EXCEPTION
      WHEN E_kein_Webservice THEN
      WHEN OTHERS THEN
    END;
      FUNCTION getAllWorkItems(
        a0    VARCHAR2,
        a1    VARCHAR2,
        a2    VARCHAR2) RETURN ORA_JAVA.JARRAY IS
      BEGIN
        args := JNI.CREATE_ARG_LIST(3);
        JNI.ADD_STRING_ARG(args, a0);
        JNI.ADD_STRING_ARG(args, a1);
        JNI.ADD_STRING_ARG(args, a2);
        RETURN JNI.CALL_OBJECT_METHOD(TRUE, NULL, 'de/opitzconsulting/bpel/wf/client/BpelWorkflowClient', 'getAllWorkItems', '(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;', args);
      END;
    [/pre]
    the getAllWorkItems is a generated Package which wraps the workflow-webservice-method
    try it
    Gerd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Need reasons for blocking Purchase requisition and service entry sheet.

    Hi All,
    I need reasons for blocking service entry sheet and purchase requisition.
    Also want the reasons for reversing the approval of service entry sheet.
    Its urgent ......

    Hi Nilesh,
    It is not possible to block a service entry sheet as such. You could only revoke a service entry sheet. Some of the possible reasons are, you are not satisfied with the quality of service provided by the vendor. Or it could also be due to change in the services to be performed or it could even be as simple as erronous entry of services in the entry sheet.
    However from ERP 2005, it should be possible to return the services by marking the returns indicator.In case of materials, it is possible to put a materials PO on hold. But in case of services, the hold option does not arise as a service cannot be performed/completed till all the approvals are received.
    Hope this answer helps you.

Maybe you are looking for

  • CS6 InDesign- can't change colors, text, etc.?

    My CS6 InDesign is having some major issues. I'm currently unable to change colors, text, photos, at times I can't even select the selection tool itself. I recently got so frustrated I wiped it from my PC and re-installed it... and STILL have the sam

  • Motion Vectors in AfterEffects

    Hi, The plugin i am developing needs Motion vectors. Looking at the SDK documentation the only  reference I have found in the sdk docs for motion vectors are in relation to the PF_CHANNELSUITE1, PF_GetLayerChannelTypedRefAndDesc. Which I read to only

  • Old photoshop - how to register

    i have an old Photoshop (version 8) - I want to install it on a new laptop. This is my only installation. Previous machines where I had this installed have crashed. How do I register this so that my installation will not shut down?

  • Weird performance problem

    Hey all, I have a query that is dog slow in production,takes about 13 minutes. The same query in test, which is a copy of production but a few months old runs in a split second. I created an outline for the query on production and brought it over to

  • Connecting SG300-10P to another SG300-10P

    please forgive the newbie question but trying to upgrade/expand my network beyond the simple linksys switch i currently use.  what is the proper way to connect a second SG300-10P to the system? current configuration is: cable modem to Cisco Router RV