Webobjects and C# web services on IIS.

I've not been able to find any informationa about the level of interoperability of WebObjects and dotnet C# web services.
Here's the situation:
members of my programming group are writing an application as a web service. They come from a windows background so they're using Visual Studio.net and C# to write their functions.
I understand that the idea of web services/WebObjects is to output xml wrapped in soap, so that the client architecture etc are irrelevant. I also understand that IIS requires an adaptor to play nice with WebObjects.
Does this mean that I can develop my functions in WebObects and have them work as part of a web service written in dotnet and C#?
any help appreciated.

We used to be able to just add tomcat and the java SDK, if you have a BOE XI 3.1 installer I think you still can, but I don't think the edge and crystal reports server installers can. If you have either of them you will need to reinstall
Regards,
Tim

Similar Messages

  • Installing BOE Web Services on IIS

    Is it possible to install BOE Web Services onto IIS with BOE XI 3.1 SP 3? We ultimately plan on using Live Office and we weren't sure if we were going to have to use Tomcat or not.

    We used to be able to just add tomcat and the java SDK, if you have a BOE XI 3.1 installer I think you still can, but I don't think the edge and crystal reports server installers can. If you have either of them you will need to reinstall
    Regards,
    Tim

  • Web Service with IIS Web server feasible?

    Hi all,
    we have come up with the following architecture and would like to
    know whether we have mis-interpret anything. We would also like
    to know whether this architecture is feasbile or not.
         java client web page browser requesting for the WSDL
         application / of our web service.
              |
              |
         (Internet)
              |
              |
         Firewall 1 (only allow port 80 traffic)
              |
              |
         Microsoft IIS Web Server with iisproxy.dll installed.          
         (hostname : d3dpc1 port number : 80)
              |
              |
         Firewall 2 (only allow port 8100 traffic)
              |
              |
         WebLogic 7.1 Server with a web service deployed.      
         (hostname : d3dpc2 port number : 8100)
    Assumed that we have constructed a certain web service through
    the weblogic workshop and the web service page can be reached behind
    the Firewall 2 via the following URL:
    http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    Next, we'd like to access the same web service outside the Firewall 1.
    On our IS web server, we make use of the IIS plugin and wrote an
    iisproxy.ini as follows:
    WebLogicHost=d3dpc2
    WebLogicPort=8100
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    WLForwardPath=/weblogic
    PathTrim=/weblogic
    we insalled the IIS plugin accoring to the document
    "Using Web Server Plug-ins with WebLogic Server", starting
    with page 3-3, running through steps 1-7, 9-10.
    As a result, through the web page browser on the
    client machine outside the Firewall 1, we can
    obtain the WSDL through the following URL
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?WSDL
    At the bottom of the attached WSDL, we found that it appears as
    <service name="FileUpload">
    - <port name="FileUploadSoap" binding="s0:FileUploadSoap">
    <soap:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
    />
    </port>
    - <port name="FileUploadHttpGet" binding="s0:FileUploadHttpGet">
    <http:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
    />
    </port>
    - <port name="FileUploadHttpPost" binding="s0:FileUploadHttpPost">
    <http:address location="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws"
    />
    </port>
    </service>
    It presents to us the address is "http://d3dpc2:8100...."
    which is behind two of our Firewalls, which is, in turn,
    cannot be directly accessed by our client applications.
    As a result, if we run a java client applications to our web service by
    making use of
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?WSDL,
    we may obtain the WSDL but the subsequent method calls to our web service
    may be blocked. Are we mis-interpreting anything? Is it feasible
    for us to setup an IIS web service in between our client applications
    to our web service like that?
    We are pleased to provide further information, like our simple
    web service code, if not sufficient. Please offer help!
    Kenneth
    [FileUpload.wsdl]

    Hi Kenneth,
    You need to modify the file weblogic-jws-config.xml in your workshop project
    folder before you genereate the WSDL file.
    The <hostname> and <http-port> entity below will point to your webserver
    address, in this case it would be: <hostname>d3dpc1</hostname> and
    <port>80</port>
    Here is an example of the XML file:
    <config>
    <protocol>http</protocol>
    <hostname>d3dpc1</hostname>
    <http-port>80</http-port>
    <https-port>443</https-port>
    <jws>
    </jws>
    </config>
    Thanks,
    Ninou Sarwono
    "Kenneth Yue" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    Hi all,
    sorry for the messy format. I don't why the texts
    are present like this. Please kindly press the reply
    link and in the reply window, you will see a
    better format of my text. Sorry for any inconvenience
    caused.
    thanks
    cheers,
    Kenneth
    "Kenneth Yue" <[email protected]> wrote:
    Hi all,
    we have come up with the following architecture and would like to
    know whether we have mis-interpret anything. We would also like
    to know whether this architecture is feasbile or not.
    java client web page browser requesting for the WSDL
    application / of our web service.
    |
    |
    (Internet)
    |
    |
    Firewall 1 (only allow port 80 traffic)
    |
    |
    Microsoft IIS Web Server with iisproxy.dll installed.
    (hostname : d3dpc1 port number : 80)
    |
    |
    Firewall 2 (only allow port 8100 traffic)
    |
    |
    WebLogic 7.1 Server with a web service deployed.
    (hostname : d3dpc2 port number : 8100)
    Assumed that we have constructed a certain web service through
    the weblogic workshop and the web service page can be reached behind
    the Firewall 2 via the following URL:
    http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    Next, we'd like to access the same web service outside the Firewall 1.
    On our IS web server, we make use of the IIS plugin and wrote an
    iisproxy.ini as follows:
    WebLogicHost=d3dpc2
    WebLogicPort=8100
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    WLForwardPath=/weblogic
    PathTrim=/weblogic
    we insalled the IIS plugin accoring to the document
    "Using Web Server Plug-ins with WebLogic Server", starting
    with page 3-3, running through steps 1-7, 9-10.
    As a result, through the web page browser on the
    client machine outside the Firewall 1, we can
    obtain the WSDL through the following URL
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?W
    SDL
    >>
    At the bottom of the attached WSDL, we found that it appears as
    <service name="FileUpload">
    - <port name="FileUploadSoap" binding="s0:FileUploadSoap">
    <soap:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    />
    </port>
    - <port name="FileUploadHttpGet" binding="s0:FileUploadHttpGet">
    <http:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    />
    </port>
    - <port name="FileUploadHttpPost" binding="s0:FileUploadHttpPost">
    <http:addresslocation="http://d3dpc2:8100/treasuryWebService/FileOperation/FileUpload.jws
    />
    </port>
    </service>
    It presents to us the address is "http://d3dpc2:8100...."
    which is behind two of our Firewalls, which is, in turn,
    cannot be directly accessed by our client applications.
    As a result, if we run a java client applications to our web service
    by
    making use of
    http://d3dpc1:80/weblogic/treasuryWebService/FileOperation/FileUpload.jws?W
    SDL,
    we may obtain the WSDL but the subsequent method calls to our web service
    may be blocked. Are we mis-interpreting anything? Is it feasible
    for us to setup an IIS web service in between our client applications
    to our web service like that?
    We are pleased to provide further information, like our simple
    web service code, if not sufficient. Please offer help!
    Kenneth

  • SSO and ABAP Web Services

    I am opening this thread on behalf of my colleague Bala regarding SSO and ABAP Web Services.
    We have gone through single sign on options and found several options are available within 5.0.
    We would like to know the options available for SAP ABAP web services access from a Non-SAP system with user authorization but without Portal/ITS installation.
    Also I would like to avoid any hard coding of user id in Non-SAP system .
    Could you provide any information.
    Thanks,
    Bala

    We have gone through single sign on options and found several options are available within 5.0.
    Tell me what are the several options and what is your Non-SAP system?
    without Portal/ITS installation.
    ITS is now an integral part of ECC 5.0 system. So would not need a seperate installation, unlike earlier versions.
    AB

  • Front End internal and external web services

    Hi all,
    Can someone explain the purpose of internal and external web services URL in front end server. what does it do and what is it used for? and why the external traffic goes directly to it and not through reverse proxy?
    Thanks,

    They're for multiple purposes.  Address books, autodiscovery, meeting urls, mobile clients, etc.  There are two because they respond slightly differently based on whether the client is internal or external.  External traffic should always reach
    it through a reverse proxy, that reverse proxy should proxy traffic received on port 443 to port 4443 on your front end pool.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Standard Web Service and Customized Web Services with or without PI?

    Hi All,
    I want to know how I can use Standard Web Service available in SAP  and customized Web Services
    without PI Interface?
    And what is the best practice to expose services ,via PI Interface or directly?
    Thanks in advance!!
    Pushkar

    This is purely based on your requirement. If you use PI middleware to expose web services, you get standard functionalities such as certificate authentication, logging, message reprocessing for the failed messages etc.  If your requirement is so simple, then you might not need PI. In this case you can develop simple webdynpro for abap program to create webservice and expose the webservice in ECC webservice runtime. You can let anyone to consume within your network. other ways like exposing BAPI/RFC as webservice.  I would recommend going with PI.

  • Timestamp Error when calling Encrypt and Signed Web Service

    Hello,
    I maked one Web Service in the Oracle Service Bus 10gR3 that supports Encryption and Sign, basically inserting (manually) this on WSDL Contract:
    This two namespaces:
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    This Declarations:
    <wsp:UsingPolicy Required="true"/>
    <input>
    <wsp:Policy>
    <wsp:PolicyReference URI="policy:Encrypt.xml"/>
    </wsp:Policy>
    <soap:body use="literal" />
    </input>
    <wsp:Policy>
    <wsp:PolicyReference URI="policy:Sign.xml"/>
    </wsp:Policy>
    The above declarations was inserted in the correct points inside the WSDL Contract and the Web Service is working correctly.
    The Problem is related to Sign.xml declaration, when i insert this declaration:
    <wsp:Policy>
    <wsp:PolicyReference URI="policy:Sign.xml"/>
    </wsp:Policy>
    Then, the Web Service shows an error. Following the Request and Resonse (That shows the error):
    Request:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ger="http://www.abc.com.br/Service">
    <soapenv:Header/>
    <soapenv:Body>
    <ger:gerarHashSenha>
    <arg0>123456</arg0>
    </ger:gerarHashSenha>
    </soapenv:Body>
    </soapenv:Envelope>
    Response:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    *<faultstring>Can not retrieve header: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Timestamp</faultstring>*
    </env:Fault>
    </env:Body>
    </env:Envelope>
    Observation: I was invoking the WebService using the soapUI Tool.
    I Tryed change the request to bellow code, but doesn't work:
    <soapenv:Envelope xmlns:ger="http://www.abc.com.br/Service" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header>
    <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsu:Timestamp wsu:Id="Timestamp-447" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsu:Created>2010-05-27T21:40:55.667Z</wsu:Created>
    <wsu:Expires>2010-05-27T21:41:55.667Z</wsu:Expires>
    </wsu:Timestamp>
    </wsse:Security>
    </soapenv:Header>
    <soapenv:Body>
    <ger:gerarHashSenha>
    <arg0>123456</arg0>
    </ger:gerarHashSenha>
    </soapenv:Body>
    </soapenv:Envelope>
    Thanks.
    Victor Jabur.

    someone has any idea ?
    Thanks

  • EBS11i to provide Web services and receive Web services

    Our corporate direction is to have all major systems internal has to communicate to each other using web services. No more using pl/sql, dblink, FTP to communicate.
    we are using EBS 11i.
    1) Is that possible to have our EBS 11i able to receive web service call and make web service call to other systems?
    2) Will 'Oracle AS Adapter for Oracle Applications' is the solution for this? is this adapter install at EBS box to receive web service call and make web service call to other systems?

    Hi,
    WebDynPro Java/ABAP are primarily User Interface technologies. Webservices are faceless (without UI ) components that provide certain functionality. Using UI technologies like WebDynPro Java/ABAP etc, we can build a face( UI ) to the webservices.
    DnyPro itself means a screen & WebDynPro is for building web based applciations.
    Hope this resolves your question.
    Well, if you still want to use it as provider & if you have an existing web-service, the way to do it is, Right click on your WebDynPro ABAP component & select CREATE->Service Call. Build a Custom Controller or use the Component Controller to get the service using service type = Webservice proxy for your webservice. You can use this Component as a Used component in any other webdynpro components & use this to access webservices.
    Thanks,
    Phani
    Edited by: Phani Rajesh Mullapudi on Oct 8, 2009 10:41 PM

  • Lync control panel and internal web Services

    Hi,
    In our Lync 2013 deployment for web services we have set override  FQDN for internal Web Services asialyncpool.corp.contoso.com and External web services as web.contoso.com. The Control Panel URL has been set to https://admin.contoso.com
    When i launch Control panel, in the IE https://admin.contoso.com the control panel opens and but the url get changed to internal web services ie sialyncpool.corp.contoso.com. When i enter https://admin.contoso.com/cscp in the IE it ask for logon
    credentials and doen't accept the credentials at all, how many times i may try.

    Thanks for the response.
    https://admin.contoso.com,
    it will redirect to the URL of: https://asialyncpool.corp.contoso.com/cscp -
    This is exactly what is happening.
    When i use - https://asialyncpool.corp.contoso.com/cscp,
    it doesn't accept the credentials, it keep asking for right credentials, when i use Lync control panel, it does accept the credentials.

  • How to Create and Deploy Web Services Using Oracle 9i JDeveloper

    Hi,
    My Question is how to create and deploy Web Services using Oracle 9i JDeveloper.Anybody please give me a detailed Reply.Please Reply to [email protected]
    Hopr to Hear From you,
    Regards,
    G Sreekumar

    You could use datasources. You should do this in your BC4J Configuration. Then when deploying your applicaiton use the command -installDataSource (from admin.jar) to create the right datasource.
    You could probably use the name of your connection + "DS" so you can also use it locally in JDeveloper as JDev seesm to create this automaticly for your Connections.

  • ANN: Contest open, new tutorial and new Web services software

    The OTN Web Services Challenge is now open and accepting entries. Read the details, rules and requirements at:
    http://otn.oracle.com/tech/webservices/htdocs/challenge/content.html
    You could win a Dell Notebook worth USD$5,000 :-) First 500 real entries (that is one with source code and works) will get an Oracle Press book (my understanding is that it is one on Oracle9iAS).
    There are also a number of new things also available on the OTN Web Services Center:
    - A new Oracle9i Reports tutorial at:
    http://otn.oracle.com/tech/webservices/htdocs/series/reports/content.html
    - The Oracle9iAS Containers for J2EE Developer Preview (9.0.3) now supports document style Web Services and asynchronous Web services. Read all the content off the main page in the center:
    http://otn.oracle.com/tech/webservices/
    - A new paper talking about the Java XML Pack from Sun which Oracle is iterating its Oracle9iAS implementation towards:
    http://otn.oracle.com/tech/webservices/htdocs/standards/jax.html
    Mike.

    Currently the patch is only available on MetaLink (metalink.oracle.com) which requires a support account with Oracle. The patch number is 2367149 - see this post for instructions of how to get it from MetaLink:
    Re: Database or Client Level?
    Mike.

  • JDeveloper and Database Web Service Connection

    Hi all,
    I'm trying to publish a Java class as a web service. However, I'm getting the following error for the sample code below. Please help me out pubish this class as a Web service.
    The error:
    No methods were selected. Select one or more methods to publish as a web service.
    My code is below:
    package hr;
    import java.sql.Connection;
    import java.sql.SQLException;
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import oracle.xml.sql.query.OracleXMLQuery;
    import oracle.xml.parser.v2.*;
    public class DataHandler {
    public DataHandler() {
    String jdbcUrl = "jdbc:oracle:thin:@127.0.0.1:1521:orcl";
    String userid = "hr";
    String password = "mohammed";
    Connection conn;
    Statement stmt;
    ResultSet rset;
    String query;
    String sqlString;
    public void getDBConnection() throws SQLException{
    OracleDataSource ds;
    ds = new OracleDataSource();
    ds.setURL(jdbcUrl);
    conn=ds.getConnection(userid,password);
    public ResultSet getAllEmployees() throws SQLException{
    getDBConnection();
    stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    query = "SELECT * FROM Employees ORDER BY employee_id";
    System.out.println("\nExecuting query: " + query);
    rset = stmt.executeQuery(query);
    return rset;
    }

    Dear dvohra16,
    Thank you for the great book you're recommended. It's really a powerful tool that makes things much better for me.
    I've noticed that you're the author of this book. I'm really honered to discuss with the problems I have and
    I'm so lucky to get your responses for my questions.
    My current question is based on this book. How do I orchestrate a web service that inserts into an oracle database table and a web service that reads
    the contents of that table?
    In other words, the first web service inserts some values into a table and the second should read these values.
    So, how does BPEL orchestrate these web service such that the output of the first one is the input of the second?
    Your assistance is truly appreciated.
    Thank you for your time.

  • CF10 RESTful web services under IIS web root

    I've tried setting up RESTful web services in ColdFusion10 and found that it only works uder the CF web root, but not IIS web root. Does anyone have a solution for having this set up under the IIS web root?

    If each one is a separate WAR file, then at the OC4J level each one will need a separate root context as it gets bound into the default-web-app.
    I guess the corollary question here is if there is someway to combine multiple webservice endpoints into one WAR file -- which can then be mapped to a single root context.
    I'll try and get someone more WS savvy than myself to take a look at this for you.
    And Clever Apache is a viable option.
    cheers
    -steve-

  • HP Color LaserJet MFP M570dw and HP Web Services

    Hi,
    I have a HP Color LaserJet MFP M570dw printer and have tried to enable the HP Web Services, but without success.
    My printer is configured on a fixed ip-address, with a default gateway and of course with static DNS servers (8.8.8.8 and 8.8.4.4).
    Every time when I try to enable the Web Services feature I get the error message "Connection error. Check your internet connection.".
    My internet connection is working fine and the printer is able to communicate thru the firewall fine too. When I do some tracing I see the printer communicating to the public ip-address "23.21.172.122" but there is no response comming back. So I assume the problem is external and not related to my internal configuration. I have tested this with a fully opened firewall (allowing all communications from my LAN to the Internet) with exactly the same results. There is no answer comming back from the ip "23.21.172.122".
    Also I can't find the HP Color LaserJet MFP M570dw printer in the supported HP ePrint printerlist.
    The 400-series is supported, the 500-serie is not mentioned.
    But since the webinterface of my HP Color LaserJet MFP M570dw printer is giving me the HP Web Services configuration page, I asumed this type would be supported too...
    Does anyone have a clue how to get ePrint working on the HP Color LaserJet MFP M570dw printer?
    Is there anyone who got the HP Web Services working on a HP Color LaserJet MFP M570dw printer?
    Kind regards,
    Rene. 
    This question was solved.
    View Solution.

    Hi Rene,
    Have you tried updating its firmware version?
    The latest firmware should improve the web services connectivity and may help resolving such an issue:
    http://h20565.www2.hp.com/portal/site/hpsc/templat​e.PAGE/public/psi/swdDetails/?sp4ts.oid=5210913&sp​...
    Also be sure to follow its steps which may help resolving a connection issue:
    • Improvements made for connecting to HP Web Services.
    NOTE: After updating from firmware datecode 20121002 to firmware datecode 20121019, if a connection to HP's Web Services cannot be established a Security Reset should be performed. Use the following steps to perform a Security Reset.
    1. At the printer's touch screen control panel press the wrench & gear icon (Setup menu) at the top of the touch screen.
    2. Using the scroll arrows on the right side, scroll until Network Setup appears then press Network Setup.
    3. In the Network Setup menu select Security
    4. Using the scroll arrows on the right side, scroll until Reset All Security appears and then press Reset All Security. Allow the reset to complete before attempting to connect to HP's Web Services.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Issues with Using Data Dashboard and Using Web Service

    After running a system for many months it has suddenly decided to not work at all.  I am using Data Dashboard to read variables on a host.  I'll outline the system here to get a baseline:
    I'm running LV 2012 SP1 f5. 
    I collect data from one Ethernet port and interfact it to another Ethernet port to form a proxy.
    I use a fixed IP address from my DSL along with port forwarding/port triggering in my router for data observation and control.
    So, what have I done so far?
    1.  Repaired my original LV 2012 SP1 and tested system.
    2.  Upgraded to LV 2012 SP1 f5 and tested system.
    3.  Ran service.msc and checked all the NI services that should be operational.  Started and stopped several of them and rebooted computer.
    4.  Deployed all my SVs (multiple times)
    5.  Disconnected second Ethernet interface becasue sometimes the variables would deploy to this IP address.
    6.  Turned off my wireless because sometimes the variables would deploy to this IP address.
    7.  Checked "Web Server Configuration" "Application Web Server" for correct port number.
    8.  Checked "Web Services Management" and under "Deployed Web Services" there is one category:  SV is marked as running.  NOTE!!  WebService is NOT listed and this could be a problem
    I can use the following to retrieve data&colon;  localhost:<port number>/sv/variable.  But when I substitute my DSL IP number, I can no longer get any data.
    So, what am I missing?  
    Thanks,
    Paul.

    Siana,
    Thanks for your response.
    I haven't touched the NI code in months.  It is running on an XP laptop and I have the Windows updates turned off.  McAfee is running on it and of course that updates regularily.  This laptop is a dedicated machine that I only use for this function, nothing else.  I haven't added or subtracted any programs for many months.
    There have been no changes to the DSL from me.  AT&T is constantly trying to get us to upgrade to U-Verse but we have resisted.  All DSL modem and router hardware is the same.  
    Confusing, huh?

Maybe you are looking for

  • Flash element - change pointer from arrow to hand in Director

    Hi everyone, I build a pop-up box in flash that I want to use in Director. It is sort of a tab, that hides in a corner of the screen and when the user rolls over it, it slides out showing some buttons. How can I tell director to change the pointer in

  • Additonal partner functions at the business agreement

    Hi Experts, We have a requirement to pass on one of the partner functions to the clerk responsible field at the contract account in IS-U. For this ,we want to use the additional partner functions section at the buisness agreement level in CRM. We hav

  • Reporting Error After Upgrading to SCCM 2012 R2

    After upgrading from SCCM 2012 SP1 CU2 to SCCM 2012 R2, some users receive an error whenever they open a report.  This occurs in both the SCCM console and the SSRS web site.  What's odd is not all users receive the error.  In fact, for two users with

  • Using multiple attractor objects

    Hi, I thought I had this cracked, but alas no. Ignore the graphics, I'm trying to get the physics working first. http://www.electricsauce.net/particle_filter1B.mov This shows some varying sized particles in air going through an air filtration unit. I

  • In the control center it says safari then another time said box. Why is that?

    Hi I have noticed that in the control panel when you swipe up..well there has been safari listed and another time Box was listed. I use Box to upload my photos. Is this normal to appear here in control panel? I have ios 7.1.1 iPhone 5. Thank you in a