Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ryebread

    HIPAA Accelerator Technique for BizTalk 2002

    I had mapped an XML to 837 X12 outbound using BT02. Did not like that they had claim level in there twice. So I only mapped to the not-self subscriber level for both and corrected the HL segments in a Scriptor function. I still had to check to see if it was self or not for deciding when to...
  2. ryebread

    ASHX and HTTPS

    Hey all, I am using a .ashx page to send an offline PDF file. The object behind the ashx file implements IHttpHandler. (sample code below) When running this page through a https url, I get a prompt asking if I want to display both the secure and nonsecure items. Is my PDF sent securely? How...
  3. ryebread

    GenRepoX Report Error

    I am getting this error on a test machine when we try to generate a report. "An error has occured within GenRepoX-run. GenRepoX tried to copy your report to a temporary file, but there was a problem. Make sure that you have all the rights and enough diskspace on your defined drive (C)ancel or...
  4. ryebread

    Session is not available in Application_Error?

    The way your session is setup might make a difference (inProc, state server, sql). Not sure if it will matter or not in your issue, but with others I have ran into it had.
  5. ryebread

    DataSet and writeXML issue

    Hello all... really could use your expert advice. I have datatable in which i insert a record at the first row position (dt.insertAt(foo,0);). When viewed in the debugger the table has the row in the correct position, row[0]. Then I add the table into a dataset then set a datarelation that...
  6. ryebread

    State Server, Sessions, and Timeout

    Isadore, thank you for your reply. Yes, if I was in the current session. The stored session ids are from sessions from other users. So when a new user would login they would have a new session. It is during this login process where I would need to check to see if the session ids from other...
  7. ryebread

    State Server, Sessions, and Timeout

    My ASP.net application involves limiting clients to a maximum number of concurrent logins. I have done this by storing the session id in a 'Shared' object property. I then depend on the session id to be removed when users log out, closes the window, or has a session timeout. Life was good untill...
  8. ryebread

    Do I Need BizTalk Orchestration??

    You have many options. Two options I use are: -Submit your file to Biztalk by implementing the IInterchange COM object -Create a receive function by using the Biztalk Server Administration program
  9. ryebread

    HIPAA

    According to Microsoft you can use the WPC OnlyConnect GAT to generate your Biztalk mapping files. https://www.microsoft.com/solutions/hipaa/partners/firststep.asp I am really interested in how well the mapping feature works in the Only Connect Gap tool. Do you use it for that purpose?
  10. ryebread

    How to insert a default value to output doc

    When using the Mapper, select the 'Values' tab in the bottom window. Then enter your value in the 'Destination Constant Value'.
  11. ryebread

    HIPAA

    I work for a HIS company who also provides EDI applications for direct claim submission. The "sidecar" approach seems to be the most common solution that I've heard about. Jalby is right, the only issue is that its not standardized; each hospital or clearing house system solution is...
  12. ryebread

    HIPAA

    If any of you use the HIPAA Accelerator, what is your opinion of the product?
  13. ryebread

    Biztalk newbie question

    i recommend the Wrox book. However, to truely understand the software reading the .chm files were far more helpful. Also we use biztalk to manage data going into sql server. I recommend looking into the sql adapter for biztalk. Visio is only required if you plan on using the orchestration...
  14. ryebread

    HIPAA

    A print image UB92 is insufficient to meet the needs of the 837I data requirements. You would have to data fill the additional required data fields with static (or deduced) values. This might not work if your receiver requires certain data not provided in the UB. The WPC published 837I specs...
  15. ryebread

    DataBase Integration with biztalk

    I have found the SQL Server Adapter convenient. It’s free; however it can only be used with MS SQL Server. There also are database functoids that can be used to pull data, but I would not recommend this practice. It is not very efficient. I find it easier to create an xml file using an...
  16. ryebread

    Load an assembly

    If this is a .Net dll, then I would first remove and reload the reference and set property 'copy local' to true. Good Luck!
  17. ryebread

    Attributes, Reflection, & Object References

    I have a group of form objects and have created a custom attribute. Each of my form objects has one of these attributes assigned to it. I need to find a way to get an object reference to each of these objects by using my custom attribute value. I assume that I would use reflection somehow. I...
  18. ryebread

    web statistics free software

    My favorite stat program is Analog http://www.analog.cx/
  19. ryebread

    converting invalid query characters

    I solved my problem. I used a SqlCommand object and passed all my variables in using parameters. Thanks
  20. ryebread

    session issues

    I use the session feature with a custom session object that holds all the user permissions, including user name. Once I access the custom object I could place the data anywhere I want to, even in textboxes. works great for me. this saves a session object; it is run when user logs in: Dim...

Part and Inventory Search

Back
Top